/* New booking wizard layout */
.nb-service {
  padding: 64px 64px;
  background: #f5f5f5;
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  /* Prevent any inner wizard UI from breaking the whole page on mobile */
  overflow-x: clip;
}

/* =========================
   Paged wizard redesign
   ========================= */
.nb-service--paged .nb-service-step {
  display: none;
}
.nb-service--paged .nb-service-step.is-active {
  display: block;
}
.nb-service--paged .nb-service-step__header {
  display: none; /* hide accordion headers in paged mode */
}
.nb-service--paged .nb-service-step__body {
  display: block !important; /* override accordion hide rule */
}
.nb-service--paged .nb-service-step[data-step="2"] .nb-service__next-btn {
  display: none !important; /* replaced by paged nav buttons */
}
.nb-service--paged .nb-service-summary-card__cta {
  display: none !important; /* use the book button on the final confirmation step */
}
.nb-service-stepper {
  position: sticky;
  top: calc(var(--nb-header-offset, 0px) + 12px);
  z-index: 1001; /* under header (1002) but above page content */
  margin: 14px 0 18px;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.55);
  max-width: 100%;
  overflow: hidden; /* prevent the pill from forcing page overflow */
  width: 100%;
  box-sizing: border-box;
}
.nb-service-stepper__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  min-width: 0;
}
.nb-service-stepper__list::-webkit-scrollbar {
  display: none;
}
.nb-service-stepper__item {
  flex: 0 0 auto;
}
.nb-stepper-item {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f7f7f7;
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font:
    800 16px/1 "DM Sans",
    sans-serif;
  color: #111;
  cursor: pointer;
  white-space: nowrap;
}
.nb-stepper-item.is-current {
  background: #1e1e1e;
  border-color: #1e1e1e;
  color: #fff;
}
.nb-stepper-item:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.nb-stepper-item__icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font:
    900 18px/1 "DM Sans",
    sans-serif;
  color: #111;
  background: rgba(255, 255, 255, 0.85);
}
.nb-stepper-item.is-done .nb-stepper-item__icon {
  background: #ff8000;
  color: #1e1e1e;
}
.nb-stepper-item.is-current .nb-stepper-item__icon {
  background: #ff8000;
  color: #1e1e1e;
}
.nb-stepper-item__label {
  font-weight: 800;
}

@media (max-width: 640px) {
  .nb-service-stepper {
    padding: 8px;
  }
  .nb-stepper-item {
    padding: 8px 10px;
    gap: 8px;
    font-size: 14px;
  }
  .nb-stepper-item__icon {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
}

.nb-service-paged-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.nb-service-paged-nav__meta {
  font:
    600 13px/1.2 "DM Sans",
    sans-serif;
  color: #666;
}
.nb-service-paged-nav__btn {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font:
    700 14px/1 "DM Sans",
    sans-serif;
  cursor: pointer;
}
.nb-service-paged-nav__btn--primary {
  background: #0b3a4f;
  border-color: #0b3a4f;
  color: #fff;
}
.nb-service-paged-nav__btn--ghost {
  background: #f7f7f7;
}

/* Bike services: show one bike section at a time */
.nb-service--paged .nb-service-packages-bike {
  display: none;
}
.nb-service--paged .nb-service-packages-bike.is-bike-active {
  display: block;
}

/* Confirmation page */
.nb-service-confirm__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 16px;
  font-family: "DM Sans", sans-serif;
}
.nb-service-confirm__title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 16px;
  color: #0a344c;
}
.nb-service-confirm__h {
  margin: 14px 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: #111;
}
.nb-service-confirm__list {
  margin: 0;
  padding-left: 18px;
}
.nb-service-confirm__row {
  margin: 6px 0;
  color: #333;
}

/* Confirmation page: per-bike services list (readable for many selections) */
.nb-service-confirm__bike-services + .nb-service-confirm__bike-services {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.nb-service-confirm__bike-title {
  font-weight: 800;
  color: #111;
  margin: 0 0 6px;
}
.nb-service-confirm__svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nb-service-confirm__svc-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  padding-left: 14px;
  line-height: 1.35;
  color: #333;
}
.nb-service-confirm__svc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff8000;
}
.nb-service-confirm__svc-name {
  overflow: visible;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.nb-service-confirm__svc-price {
  flex-shrink: 0;
  font-size: 12px;
  color: #555;
  font-weight: 800;
}
.nb-service__book-btn {
  margin-top: 16px;
  width: 100%;
  border-radius: 999px;
  padding: 14px 18px;
  border: 0;
  background: #0b3a4f;
  color: #fff;
  font:
    800 16px/1 "DM Sans",
    sans-serif;
  cursor: pointer;
}

.nb-service__book-disclaimer {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #444;
}
.nb-service__book-disclaimer p {
  margin: 0 0 8px;
}
.nb-service__book-disclaimer p:last-child {
  margin-bottom: 0;
}
.nb-service__book-disclaimer a {
  color: #ff8000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nb-service__book-disclaimer--summary {
  text-align: left;
}

.nb-service__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 570px);
  gap: 30px;
  box-sizing: border-box;
}

.nb-service__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
  box-sizing: border-box;
}

.nb-service__column--left {
  align-items: stretch;
}

.nb-service__column--right {
  align-items: stretch;
}

.nb-service__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nb-service__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
}

.nb-service__intro {
  margin: 0;
  color: #494949;
  font-size: 16px;
  line-height: 1.5;
}

.nb-service__intro p {
  margin: 0 0 0.5rem 0;
}

.nb-service__intro p:last-child {
  margin-bottom: 0;
}

/* Steps (accordions) on the left */
.nb-service-step {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 16px;
  padding: 30px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.nb-service-step + .nb-service-step {
  margin-top: 0;
}

.nb-service-step__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nb-service-step__header-main {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.nb-service-step__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nb-service-step__header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nb-service-step__label {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
}

.nb-service-step__muted {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #494949;
}

.nb-service-step__chevron {
  border: none;
  background: #1e1e1e;
  width: 42px;
  height: 42px;
  border-radius: 49.7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease-out;
}

.nb-service-step__chevron svg {
  transition: transform 0.18s ease-out;
}

.nb-service-step:not(.nb-service-step--open) .nb-service-step__chevron svg {
  transform: rotate(180deg);
}

.nb-service-step__body {
  margin-top: 24px;
}

.nb-service-step:not(.nb-service-step--open) .nb-service-step__body {
  display: none;
}

.nb-service-step--locked {
  opacity: 0.5;
}

.nb-service-step--locked .nb-service-step__header,
.nb-service-step--locked [data-step-body] {
  pointer-events: none;
}

.nb-service__next-btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Bike cards */
.nb-service-bikes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nb-service-bike {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.nb-service-bike__main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nb-service-bike__thumb {
  width: 109px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.nb-service-bike__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nb-service-bike__thumb-placeholder {
  width: 100%;
  height: 100%;
}

.nb-service-bike__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nb-service-bike__name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Hide serial UI in step 1 – moved visually to step 2 */
.nb-service-bike__serial {
  display: none;
}

.nb-service-bike__controls {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  margin-top: auto;
}

.nb-service-bike__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nb-service-bike__toggle-indicator {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 0.5px solid #6b6b6b;
  display: none;
}

.nb-service-bike__checkbox {
  display: none;
}

.nb-service-bike.is-active .nb-service-bike__toggle-indicator {
  background: #ff8000;
}

.nb-service-bike__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #1e1e1e;
  color: #fff;
}

.nb-service-bike__qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: #1e1e1e;
  color: #ffffff;
  cursor: pointer;
  outline: 2px solid white;
}

.nb-service-bike__qty-value {
  min-width: 30px;
  text-align: center;
  font-family: "Roboto Condensed", system-ui, sans-serif;
  font-weight: 600;
}

/* Next step button */
.nb-service__next-btn {
  margin-top: 24px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #000000;
  background: #151515;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.nb-service__next-btn span {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Service packages (step 2) */
.nb-service-packages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nb-service-packages__empty {
  margin: 0;
  font-size: 14px;
  color: #666666;
}

.nb-service-packages-bike {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 16px 16px 14px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nb-service-packages-bike__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nb-service-packages-bike__label {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.nb-service-packages-bike__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.nb-service-packages-bike__serial-input {
  border-radius: 30px;
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  background: #f8f8f8;
  padding: 4px 12px;
  font-size: 12px;
  color: #9b9b9b;
  min-width: 180px;
}

.nb-service-packages-bike__serial-input:focus {
  outline: none;
}

.nb-service-pkg {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 17px;
  border-radius: 16px;
  border: none;
  background: #1e1e1e;
  cursor: pointer;
  color: #ffffff;
}

.nb-service-pkg .nb-service-pkg__info {
  background: #ff8000;
  color: #1e1e1e;
  border: none;
  width: 18px;
  height: 18px;
}

.nb-service-pkg__left {
  display: flex;
  gap: 20px;
}

.nb-service-pkg__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ff8000;
  position: relative;
  flex-shrink: 0;
}

.nb-service-pkg__icon::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 12px;
  color: #1e1e1e;
  font-weight: 700;
}

.nb-service-pkg__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.nb-service-pkg__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nb-service-pkg__text p {
  margin: 0;
}

.nb-service-pkg__name {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.nb-service-pkg__desc {
  margin: 0;
  font-size: 14px;
  color: #d3d3d3;
}

/* Service package descriptions in two columns (featured cards) */
.nb-service-pkg:not(.nb-service-pkg--simple) .nb-service-pkg__desc {
  column-count: 2;
  column-gap: 16px;
}

.nb-service-pkg__right {
  display: flex;
  align-items: flex-end;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 12px;
  width: 30%;
  text-wrap: nowrap;
}

.nb-service-pkg__price {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
}

.nb-service-pkg__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.nb-service-pkg__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ff8000;
  color: #1e1e1e;
  font:
    900 11px/1 "DM Sans",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.nb-service-pkg__price--regular {
  color: #bdbdbd;
  font-weight: 700;
  font-size: 14px;
  text-decoration: line-through;
}
.nb-service-pkg__price--sale {
  color: #fff;
}

.nb-service-pkg__check {
  width: 18.5px;
  height: 18.5px;
  border-radius: 2px;
  border: 0.5px solid #6b6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.nb-service-pkg__check::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  background: transparent;
}

.nb-service-pkg.is-selected .nb-service-pkg__check {
  border-color: #6b6b6b;
}

.nb-service-pkg.is-selected .nb-service-pkg__check::before {
  background: #ff8000;
}

/* Other service groups (accordion-style) */
.nb-service-packages-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nb-service-packages-group--featured {
  gap: 8px;
  margin-bottom: 16px;
}

.nb-service-packages-group--other {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  padding: 10px 0;
}

.nb-service-packages-group__head {
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

.nb-service-packages-group__title {
  text-align: left;
}

.nb-service-packages-group__chevron {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.18s ease-out;
}

.nb-service-packages-group__chevron::before {
  content: "";
  width: 12px;
  height: 7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M5.65484 4.6L10.2548 0L11.3086 1.05375L5.65484 6.7075L0.00109247 1.05375L1.05484 0L5.65484 4.6Z' fill='black'/%3E%3C/svg%3E")
    no-repeat center/contain;
  transform: translateY(1px);
}

.nb-service-packages-group.is-open .nb-service-packages-group__chevron {
  transform: rotate(180deg);
}

.nb-service-packages-group__body {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nb-service-packages-group:not(.is-open) .nb-service-packages-group__body {
  display: none;
}

/* Simpler styling for non-servicepaket services */
.nb-service-pkg--simple {
  padding: 8px 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #1e1e1e;
}

.nb-service-pkg--simple .nb-service-pkg__left {
  gap: 10px;
}

.nb-service-pkg--simple .nb-service-pkg__right {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.nb-service-pkg--simple .nb-service-pkg__prices {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.nb-service-pkg--simple .nb-service-pkg__badge {
  padding: 3px 8px;
  font-size: 10px;
}
.nb-service-pkg--simple .nb-service-pkg__price--regular {
  font-size: 12px;
}

.nb-service-pkg--simple .nb-service-pkg__icon {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff8000;
}

.nb-service-pkg--simple .nb-service-pkg__icon::before {
  content: "";
}

.nb-service-pkg--simple .nb-service-pkg__name {
  font-size: 14px;
}

.nb-service-pkg--simple .nb-service-pkg__desc {
  font-size: 13px;
  color: #555555;
  column-count: 1;
}

.nb-service-pkg__text > ul {
  padding-left: 10px;
  margin-left: 0;
  margin-bottom: 0px;
  columns: 2;
  column-gap: 35px;
  text-align: left;
  color: #d3d3d3;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.nb-service-pkg--simple .nb-service-pkg__price {
  font-size: 13px;
  color: #555555;
}

.nb-service-pkg--simple .nb-service-pkg__check {
  width: 14px;
  height: 14px;
  padding: 1px;
}

.nb-service-pkg--simple .nb-service-pkg__check::before {
  width: 10px;
  height: 10px;
}

.nb-service-packages-group__body .nb-service-pkg__info {
  background: #ff8000;
  color: #fff;
  border: none;
  width: 15px;
  height: 15px;
}

.nb-service-pkg__info {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #1e1e1e;
  cursor: pointer;
}

.nb-service-pkg__info::before {
  content: "i";
}

/* Modal for "other services" descriptions */
.nb-service-info-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.nb-service-info-modal.is-open {
  display: flex;
}

.nb-service-info-modal__dialog {
  max-width: 540px;
  width: 90%;
  background: #eaeaea;
  border-radius: 10px;
  padding: 25px;
  position: relative;
  font-family: "DM Sans", sans-serif;
  box-sizing: border-box;
}

.nb-service-info-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #eaeaea;
  border: none;
  cursor: pointer;
}

.nb-service-info-modal__close::before,
.nb-service-info-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: #000000;
}

.nb-service-info-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nb-service-info-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nb-service-info-modal__body {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}

.nb-service-info-modal__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.nb-service-info-modal__body ul {
  padding-left: 18px;
}

/* Contact form (step 3) */
.nb-service-contact-intro {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #404040;
}

.nb-service-contact-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nb-service-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nb-service-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nb-service-contact__field--full {
  grid-column: 1 / -1;
}

.nb-service-contact__field label {
  font-size: 16px;
  font-weight: 400;
}

.nb-service-contact__field input,
.nb-service-contact__field textarea {
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0;
  padding: 12px 0;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
}

.nb-service-contact__field textarea {
  min-height: 180px;
  resize: vertical;
}

.nb-service-contact__help {
  margin: 0;
  font-size: 14px;
  color: #000000;
}

.nb-service-contact__map-toggle {
  border: none;
  background: none;
  padding: 0;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

.nb-service-contact__pickup {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.nb-service-contact__pickup[hidden] {
  display: none !important;
}

.nb-service-contact__zone-message {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 14px;
}
.nb-service-contact__zone-message.is-ok {
  color: #146c43;
}
.nb-service-contact__zone-message.is-error {
  color: #b02a37;
}

.nb-service-contact__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.nb-service-contact__checkbox input {
  display: none;
}

.nb-service-contact__checkbox-box {
  width: 18.5px;
  height: 18.5px;
  border-radius: 2px;
  border: 0.5px solid #6b6b6b;
  background: #ffffff;
  position: relative;
}

.nb-service-contact__checkbox
  input:checked
  + .nb-service-contact__checkbox-box::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 2px;
  background: #ff8000;
}

.nb-service-contact__checkbox-label {
  font-size: 18px;
}

.nb-service-contact__pickup-help {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ff8000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.nb-service-contact__checkbox--terms .nb-service-contact__checkbox-label {
  font-size: 14px;
}

.nb-service-contact__terms-link {
  text-decoration: underline;
}

.nb-service-contact__cta {
  margin-top: 8px;
  align-self: stretch;
  border-radius: 30px;
  border: 1px solid #000000;
  background: #1e1e1e;
  color: #ffffff;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* Map modal */
.nb-service-map-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.nb-service-map-modal.is-open {
  display: flex;
}

.nb-service-map-modal__dialog {
  max-width: 860px;
  width: 90%;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px 24px;
  position: relative;
}

.nb-service-map-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: #ffffff;
  cursor: pointer;
}

.nb-service-map-modal__close::before,
.nb-service-map-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: #000000;
}

.nb-service-map-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nb-service-map-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Right column summary card */
.nb-service-summary-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 150px;
}

.nb-service-summary-card__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.4;
  font-weight: 700;
}

.nb-service-summary-card > .nb-service-summary-section:nth-child(3) {
  display: none;
}

.nb-service-summary-section {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.nb-service-summary-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nb-service-summary-section__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nb-service-summary-section__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nb-service-summary-section__label p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.nb-service-summary-section__change {
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 12px;
}

.nb-service-summary-section__change-icon {
  width: 10px;
  height: 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='11' viewBox='0 0 10 11'%3E%3Cpath d='M5.747 0.26l.707.708L2.206 5.216l4.248 4.247-.707.708L.79 5.216 5.747.26z' fill='%23000'/%3E%3C/svg%3E")
    no-repeat center/contain;
}

.nb-service-summary-section__body {
  margin-top: 16px;
}

.nb-service-summary-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.nb-service-summary-contact-row:last-child {
  border-bottom: none;
}

.nb-service-summary-contact-label {
  font-weight: 500;
  color: #404040;
}

.nb-service-summary-contact-value {
  flex: 1;
  text-align: right;
  color: #000000;
}

.nb-service-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
}

.nb-service-summary-bike {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nb-service-summary-bike__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nb-service-summary-bike__thumb {
  width: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.nb-service-summary-bike__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nb-service-summary-bike__main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nb-service-summary-bike__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.nb-service-summary-bike__serial {
  margin: 0;
  font-size: 13px;
  color: #666666;
}

.nb-service-summary-bike__services-row {
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nb-service-summary-bike__services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #333333;
}

.nb-service-summary-bike__service {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
  position: relative;
  padding-left: 14px;
  line-height: 1.35;
}

.nb-service-summary-bike__service-name {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  word-break: break-word;
  /* Keep long lists readable while avoiding huge rows */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.nb-service-summary-bike__service-price {
  flex-shrink: 0;
  font-size: 12px;
  color: #555;
  font-weight: 700;
}

.nb-service-summary-bike__service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff8000;
}

.nb-service-summary-card__cta {
  margin-top: 10px;
  width: 100%;
  border-radius: 30px;
  padding: 10px 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 128, 0, 0.55);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.nb-service-summary-total {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

/* Summary totals (incl. pickup fee + progress) */
.nb-service-summary-total__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}
.nb-service-summary-total__label {
  color: #333;
  font-weight: 600;
}
.nb-service-summary-total__value {
  color: #111;
  font-weight: 800;
}
.nb-service-summary-total__row--grand {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nb-service-pickup-progress {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
}
.nb-service-pickup-progress__text {
  font:
    700 13px/1.3 "DM Sans",
    sans-serif;
  color: #0b3a4f;
  margin-bottom: 8px;
}
.nb-service-pickup-progress__bar {
  height: 8px;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.nb-service-pickup-progress__bar > span {
  display: block;
  height: 100%;
  width: 0%;
  background: #ff8000;
  border-radius: 999px;
  transition: width 0.25s ease;
}

/* Responsive */
@media (max-width: 960px) {
  .nb-service {
    padding: 48px 24px;
  }

  .nb-service__inner {
    grid-template-columns: 1fr;
  }

  .nb-service-summary-card {
    order: -1;
  }

  .nb-service__column--right {
    display: none;
  }
}

@media (max-width: 640px) {
  .nb-service {
    padding: 40px 16px;
  }

  .nb-service-contact {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   Legacy styles (kept for backwards compatibility with old markup)
   ------------------------------------------------------------------ */
.nb-service__list {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.nb-service__group {
  margin-bottom: 50px;
}
.nb-service__group-title {
  margin: 0 0 8px;
  font: 700 20px/1.3 "DM Sans";
  color: #0a344c;
}
.nb-service__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}
.nb-service__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  font-family: "DM Sans";
}
.nb-service__left,
.nb-service__right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nb-service__right {
  margin-left: auto;
}
.nb-service__box {
  width: 18px;
  height: 18px;
  border: 2px solid #c9c9c9;
  border-radius: 4px;
  background: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}
.nb-service__item.is-selected .nb-service__box {
  background: #0b3a4f;
  border-color: #0b3a4f;
  box-shadow: inset 0 0 0 2px #fff;
}
.nb-service__info {
  appearance: none;
  border: 1px solid #0b3a4f;
  color: #0b3a4f;
  background: #fff;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
}
.nb-service__item:hover {
  border-color: #0b3a4f;
}
.nb-service__item.is-selected {
  border-color: #0b3a4f;
  box-shadow: 0 0 0 2px rgba(11, 58, 79, 0.08);
  background: #f9fcfd;
}
.nb-service__check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nb-service__name {
  font-family: "DM Sans";
  font-weight: 300;
  color: #000;
}
.nb-service__price {
  font-family: "DM Sans";
  color: #000;
  font-weight: 700;
}
.nb-service__quote {
  font-family: "DM Sans";
  color: #0b3a4f;
  font-weight: 700;
}
.nb-service__form {
  max-width: 800px;
  width: 100%;
  margin: 16px auto 0;
}

.nb-service-form__grid p {
  margin: 0;
}

.nb-bike {
  margin: 50px auto 50px auto;
  font-family: "DM Sans";
  max-width: 800px;
  width: 100%;
}
.nb-bike__title {
  margin: 0 0 8px;
  font: 700 20px/1.3 "DM Sans";
  color: #0a344c;
}
.nb-bike__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.nb-bike__check {
  display: none;
}
.nb-bike__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.nb-bike__item.is-selected {
  border-color: #0b3a4f;
  box-shadow: 0 0 0 2px rgba(11, 58, 79, 0.08);
  background: #f9fcfd;
}
.nb-bike__item:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 52, 76, 0.15);
}
.nb-bike__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nb-bike__item.is-selected .nb-bike__qty {
  display: inline-flex;
}

.nb-bike__qty {
  display: none;
  align-items: center;
  gap: 6px;
}
.nb-bike__qty[aria-hidden="true"] {
  opacity: 0.5;
}
.nb-bike__btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  background: #fff;
  cursor: pointer;
}
.nb-bike__input {
  width: 52px;
  text-align: center;
  padding: 6px 8px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
}
.nb-bike__summary {
  margin: 10px 0;
  padding: 10px 12px;
  border: 1px dashed #dcdcdc;
  border-radius: 8px;
  background: #fafafa;
  font-family: "DM Sans";
  color: #000;
}

.nb-service span.wpcf7-checkbox {
  font-family: "DM Sans";
  font-weight: 700;
  color: #000;
  font-size: 16px;
}

.nb-bike__summary ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 700px) {
  .nb-bike__list {
    grid-template-columns: 1fr;
  }
}

h3.nb-service__map-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #0a344c;
  font-family: "DM Sans";

  text-align: center;
}

.nb-service__map-intro {
  font-family: "DM Sans";
  font-size: 14px;
  color: #404040;
  margin: 0 0 12px;
  width: 100%;
  text-align: center;
}

.nb-service__map {
  max-width: 800px;
  width: 100%;
  height: 260px;
  margin: 12px auto;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.nb-service__zone-message {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 8px;
  font-family: "DM Sans";
  font-size: 14px;
}
.nb-service__zone-message.is-ok {
  color: #146c43; /* green */
}
.nb-service__zone-message.is-error {
  color: #b02a37; /* red */
}
.wpcf7 form .wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
}
.wpcf7 form label {
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form textarea {
  padding: 10px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-family: "DM Sans";
}
.nb-service-selected {
  display: none !important; /* keep submitted but hide UI */
}
.nb-service__summary {
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px dashed #dcdcdc;
  border-radius: 8px;
  background: #fafafa;
  font-family: "DM Sans";
  color: #000;
}
.nb-service__summary ul {
  margin: 0;
  padding-left: 18px;
}
.nb-service__summary li {
  margin: 2px 0;
}
.nb-service__total {
  margin-top: 8px;
  font-weight: 700;
  color: #0a344c;
}
.wpcf7 form input[type="submit"] {
  border-radius: 999px;
  background: #0b3a4f;
  border: 1px solid #0b3a4f;
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  font-size: 18px;
}

/* Collapsible: other jobs */
.nb-service__more-wrap {
  max-width: 800px;
  width: 100%;
  margin: 8px auto 0;
}
.nb-service__toggle {
  appearance: none;
  border: 1px solid #0b3a4f;
  background: #fff;
  color: #0b3a4f;
  border-radius: 999px;
  padding: 8px 12px;
  font-family: "DM Sans";
  font-weight: 700;
  cursor: pointer;
  display: block;
  margin: 0 auto 50px;
  font-size: 18px;
}
.nb-service__toggle[aria-expanded="true"] {
  background: #0b3a4f;
  color: #fff;
}
.nb-service__more[hidden] {
  display: none !important;
}

.nb-service__success {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nb-service__success[hidden] {
  display: none !important;
}
.nb-service__success-inner {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  width: 90%;
  max-width: 360px;
  text-align: center;
  font-family: "DM Sans";
}

.nb-service__success-progress {
  height: 4px;
  width: 100%;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 12px;
}
.nb-service__success-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 40%;
  background: #ff8000;
  border-radius: 999px;
  animation: nbServiceProgress 1.1s ease-in-out infinite;
}
@keyframes nbServiceProgress {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(280%);
  }
}

.nb-service__success-spinner {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: #ff8000;
  margin: 0 auto 10px;
  animation: nbServiceSpin 0.9s linear infinite;
}
@keyframes nbServiceSpin {
  to {
    transform: rotate(360deg);
  }
}

.nb-service__success-details {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
}

.nb-service__info-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nb-service__info-modal[hidden] {
  display: none !important;
}
.nb-service__info-modal__inner {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 640px;
  padding: 16px;
  font-family: "DM Sans";
  position: relative;
}
.nb-service__info-title {
  margin: 0 0 8px;
  font: 700 18px/1.3 "DM Sans";
}
.nb-service__info-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}
.nb-service__success button {
  margin-top: 10px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 12px;
  cursor: pointer;
}

/* Booking submit loading state */
.nb-service [data-book-service].is-loading {
  opacity: 0.7;
}

/* Admin-only: RepairDesk device finder */
.nb-service-rd {
  max-width: 1280px;
  width: 90%;
  margin: 20px auto 0;
  border: 1px solid #e6e6e6;
  background: #fff;
}
.nb-service-rd__inner {
  padding: 16px;
  font-family: "DM Sans", sans-serif;
}
.nb-service-rd__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}
.nb-service-rd__help {
  margin: 0 0 12px;
  color: #444;
  font-size: 13px;
}
.nb-service-rd__controls {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
.nb-service-rd__field span {
  display: block;
  font-size: 12px;
  color: #333;
  margin-bottom: 4px;
}
.nb-service-rd__field input {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 0 12px;
  box-sizing: border-box;
}
.nb-service-rd__btn {
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.nb-service-rd__status {
  margin-top: 10px;
  font-size: 13px;
  color: #1a1a1a;
}
.nb-service-rd__status.is-error {
  color: #b00020;
}
.nb-service-rd__results {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.nb-service-rd__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #eee;
  background: #fafafa;
}
.nb-service-rd__name {
  font-weight: 700;
  font-size: 13px;
}
.nb-service-rd__company {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}
.nb-service-rd__idwrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.nb-service-rd__copy {
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #0b3a4f;
  background: #fff;
  color: #0b3a4f;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}
@media (max-width: 720px) {
  .nb-service-rd__controls {
    grid-template-columns: 1fr;
  }
  .nb-service-rd__btn {
    width: 100%;
  }
  .nb-service-rd__row {
    flex-direction: column;
    align-items: stretch;
  }
  .nb-service-rd__idwrap {
    justify-content: space-between;
  }

  .nb-service-bike {
    flex-direction: column;
    gap: 0;
  }
  .nb-service-step__chevron {
    width: 30px;
    height: 30px;
  }
  .nb-service-step {
    padding: 20px 10px;
  }
  .nb-service-step__label {
    font-size: 18px;
  }
  .nb-service-pkg__text > ul {
    columns: 1;
  }
}

@media (max-width: 700px) {
  .nb-service {
    padding: 75px 0;
    width: 90%;
    margin: 0 auto;
  }
  .nb-service__grid {
    grid-template-columns: 1fr;
  }
}
