.gobox-booking {
  --gobox-red: #ec2718;
  --gobox-yellow: #f5e32d;
  --gobox-bg: white;
  --gobox-card: #dfdfe1;
  --gobox-white: #ffffff;
  --gobox-text: #2e1f1f;
  --gobox-muted: #4f4747;
  --gobox-muted-2: #6a6161;
  --gobox-dark: #250505;
  --gobox-accent: #f31f12;
  --gobox-surface: #f4f4f6;
  --gobox-border: #d3d3d6;
  --gobox-radius: 10px;
  --gobox-shadow-soft: 0 10px 26px rgba(19, 12, 12, 0.08);
  --gobox-step-width: 960px;
  --gobox-step-title-size: clamp(40px, 2.85vw, 54px);
  --gobox-step-subtitle-size: clamp(18px, 1.1vw, 24px);
  --gobox-progress-scale: 0;

  margin: 0;
  width: 100%;
  overflow-x: hidden;
  padding-bottom: 20px;
  background: var(--gobox-bg);
  color: var(--gobox-text);
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
}

.gobox-booking,
.gobox-booking * {
  box-sizing: border-box;
}

.gobox-booking__content {
  max-width: 1460px;
  margin: 0 auto;
  padding: 42px 24px 52px;
}

.gobox-booking__progress {
  width: min(700px, calc(100% - 40px));
  margin: 0 auto 46px;
  height: 34px;
  background: #d8d8da;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 32px;
}

.gobox-booking__progress::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: #e4544f;
}

.gobox-booking__progress::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%) scaleX(var(--gobox-progress-scale));
  transform-origin: left center;
  background: var(--gobox-accent);
  transition: transform 0.28s ease;
}

.gobox-booking__progress span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f2a0a0;
  z-index: 1;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.gobox-booking__progress span.is-active {
  transform: scale(1.08);
  background: var(--gobox-accent);
  box-shadow: 0 0 0 3px rgba(243, 31, 18, 0.16);
}

.gobox-booking__layout {
  display: grid;
  grid-template-columns: minmax(0, var(--gobox-step-width)) 260px;
  column-gap: 48px;
  align-items: start;
  justify-content: center;
}

.gobox-booking__main {
  min-height: 0;
  max-width: var(--gobox-step-width);
}

.gobox-booking[data-current-step="1"] .gobox-booking__layout {
  grid-template-columns: minmax(0, var(--gobox-step-width));
}

.gobox-booking[data-current-step="1"] .gobox-booking__summary {
  display: none;
}

.gobox-booking__form {
  position: relative;
}

.gobox-booking__step {
  display: none;
  opacity: 0;
  transform: translateY(12px);
}

.gobox-booking__step.is-active {
  display: block;
}

.gobox-booking[data-step-direction="forward"] .gobox-booking__step.is-active {
  animation: gobox-step-enter-forward 0.3s ease forwards;
}

.gobox-booking[data-step-direction="backward"] .gobox-booking__step.is-active {
  animation: gobox-step-enter-backward 0.3s ease forwards;
}

.gobox-booking[data-step-direction="none"] .gobox-booking__step.is-active {
  animation: gobox-step-enter 0.3s ease forwards;
}

@keyframes gobox-step-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gobox-step-enter-forward {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gobox-step-enter-backward {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gobox-booking__step h2 {
  margin: 0 auto 10px;
  max-width: 100%;
  text-align: center;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: var(--gobox-step-title-size);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.15px;
  color: #2b191a;
}

.gobox-booking__step>p {
  margin: 0 auto 26px;
  max-width: 100%;
  text-align: center;
  color: #3e3535;
  font-size: var(--gobox-step-subtitle-size);
  line-height: 1.4;
}

.gobox-booking__service-cards,
.gobox-booking__size-cards {
  display: grid;
  gap: 46px;
  align-items: stretch;
}

.gobox-booking__service-cards {
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.gobox-booking__size-cards {
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 42px;
  max-width: 860px;
  margin: 0 auto;
}

.gobox-booking__service-card,
.gobox-booking__size-card {
  background: #dedee0;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  padding: 12px 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gobox-booking__size-card {
  position: relative;
  min-height: 460px;
  padding-bottom: 72px;
}

.gobox-booking__service-card:hover,
.gobox-booking__size-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.gobox-booking__service-card.is-selected,
.gobox-booking__size-card.is-selected {
  border-color: var(--gobox-accent);
  box-shadow: 0 12px 26px rgba(220, 29, 20, 0.24);
  transform: translateY(-2px);
}

.gobox-booking__service-image-wrap,
.gobox-booking__size-image-wrap {
  background: #f1f1f1;
  border: 1px solid #e2e2e2;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.gobox-booking__service-image-wrap {
  min-height: 176px;
}

.gobox-booking__size-image-wrap {
  min-height: 236px;
}

.gobox-booking__step[data-step="2"] .gobox-booking__size-image-wrap {
  min-height: 256px;
  margin-bottom: 16px;
}

.gobox-booking__service-image-wrap img,
.gobox-booking__size-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.28s ease;
}

.gobox-booking__service-image-wrap img {
  object-fit: cover;
}

.gobox-booking__service-card:hover .gobox-booking__service-image-wrap img,
.gobox-booking__size-card:hover .gobox-booking__size-image-wrap img {
  transform: scale(1.03);
}

.gobox-booking__service-btn {
  border: 0;
  background: var(--gobox-accent);
  color: #fff;
  border-radius: 5px;
  min-width: 146px;
  height: 44px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gobox-booking__service-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.gobox-booking__service-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.gobox-booking__size-dim {
  margin: 4px 0 0;
  color: #363030;
  font-size: clamp(18px, 1.05vw, 30px);
  line-height: 1.2;
}

.gobox-booking__step[data-step="2"] .gobox-booking__size-dim {
  margin-top: 2px;
  font-size: clamp(18px, 1.18vw, 28px);
  line-height: 1.18;
}

.gobox-booking__size-highlight {
  margin: 8px 0 14px;
  color: var(--gobox-accent);
  font-size: clamp(13px, 0.8vw, 18px);
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  font-weight: 700;
}

.gobox-booking__step[data-step="2"] .gobox-booking__size-highlight {
  margin: 8px 0 0;
  font-size: clamp(12px, 0.5vw, 17px);
  line-height: 1.18;
}

.gobox-booking__qty {
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-top: auto;
  margin-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gobox-accent);
  background: var(--gobox-accent);
}

.gobox-booking__step[data-step="2"] .gobox-booking__qty {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 4px;
  background: transparent;
  overflow: visible;
}

.gobox-booking__qty button {
  border: 0;
  width: 32px;
  height: 36px;
  background: var(--gobox-accent);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.18s ease;
}

.gobox-booking__qty button:hover {
  background: #ff3a2b;
}

.gobox-booking__qty span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 36px;
  padding: 0 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #2f2828;
  background: #fff;
  border-top: 1px solid var(--gobox-accent);
  border-bottom: 1px solid var(--gobox-accent);
  line-height: 1;
  letter-spacing: 0.1px;
}

.gobox-booking__qty button[data-qty-minus] {
  border-radius: 4px 0 0 4px;
}

.gobox-booking__qty button[data-qty-plus] {
  border-radius: 0 4px 4px 0;
}

.gobox-booking__duration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(255px, 1fr));
  gap: 20px 32px;
  max-width: 760px;
  margin: 0 auto;
}

.gobox-booking__duration-card,
.gobox-booking__placement-card,
.gobox-booking__rate-card {
  background: var(--gobox-surface);
  border: 1px solid var(--gobox-border);
  border-radius: var(--gobox-radius);
}

.gobox-booking__duration-card,
.gobox-booking__placement-card {
  width: 100%;
  min-height: 102px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title dot"
    "desc dot";
  align-items: center;
  text-align: left;
  row-gap: 4px;
  column-gap: 12px;
  padding: 16px 14px;
  cursor: pointer;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gobox-booking__duration-card .gobox-booking__duration-dot,
.gobox-booking__placement-card .gobox-booking__duration-dot {
  grid-area: dot;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #e7e7e7;
  background: #fff;
  justify-self: end;
  align-self: center;
}

.gobox-booking__duration-card.is-selected,
.gobox-booking__placement-card.is-selected {
  border-color: var(--gobox-accent);
  box-shadow: 0 7px 18px rgba(218, 31, 20, 0.17);
  transform: translateY(-1px);
}

.gobox-booking__duration-card.is-selected .gobox-booking__duration-dot,
.gobox-booking__placement-card.is-selected .gobox-booking__duration-dot {
  background: var(--gobox-accent);
  border-color: var(--gobox-accent);
}

.gobox-booking__duration-title,
.gobox-booking__placement-title {
  grid-area: title;
  display: block;
  color: #2c2323;
  font-size: clamp(22px, 1.3vw, 30px);
  font-weight: 700;
  line-height: 1.1;
}

.gobox-booking__duration-desc,
.gobox-booking__placement-desc {
  grid-area: desc;
  display: block;
  color: #453d3d;
  font-size: clamp(14px, 0.9vw, 18px);
  margin-top: 0;
}

.gobox-booking__field-block {
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.gobox-booking__field-block label {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(17px, 1.02vw, 22px);
  color: #2d2424;
  font-weight: 700;
  line-height: 1.2;
}

.gobox-booking__field-block input,
.gobox-booking__field-block textarea,
.gobox-booking__modal-fields input,
.gobox-booking__modal-fields textarea {
  width: 100%;
  border: 1px solid #cfcfd3;
  border-radius: 8px;
  background: #fff;
  min-height: 50px;
  padding: 0 14px;
  font-size: clamp(16px, 0.95vw, 18px);
  color: #2f2525;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gobox-booking__field-block input:focus,
.gobox-booking__field-block textarea:focus,
.gobox-booking__modal-fields input:focus,
.gobox-booking__modal-fields textarea:focus {
  outline: none;
  border-color: rgba(243, 31, 18, 0.45);
  box-shadow: 0 0 0 3px rgba(243, 31, 18, 0.12);
}

.gobox-booking__field-block textarea,
.gobox-booking__modal-fields textarea {
  min-height: 86px;
  padding-top: 10px;
  resize: vertical;
}

.gobox-booking__field-block input[data-delivery-address] {
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.gobox-booking__autocomplete-host {
  margin-bottom: 8px;
}

.gobox-booking__autocomplete-host .gobox-booking__place-autocomplete,
.gobox-booking__autocomplete-host gmp-place-autocomplete,
.gobox-booking__autocomplete-host gmp-basic-place-autocomplete {
  display: block;
  width: 100%;
  min-height: 50px;
}

.gobox-booking__address-input--fallback-hidden {
  display: none !important;
}

.gobox-booking__link-btn {
  border: 0;
  background: transparent;
  color: #4b4040;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 8px;
  padding: 0;
  font-size: clamp(14px, 0.88vw, 16px);
}

.gobox-booking__field-block textarea[data-manual-address] {
  display: none;
  margin-top: 10px;
}

.gobox-booking__field-block textarea[data-manual-address].is-visible {
  display: block;
}

.gobox-booking__field-block small {
  display: block;
  margin-top: 6px;
  color: #6c5f5f;
  font-size: 13px;
}

.gobox-booking__rate-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(255px, 1fr));
  gap: 32px;
  max-width: 760px;
  margin: 4px auto 0;
}

.gobox-booking__rate-card {
  padding: 18px 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.gobox-booking__rate-card h3 {
  margin: 0;
  color: #322929;
  font-size: clamp(28px, 1.15vw, 32px);
}

.gobox-booking__rate-card p {
  margin: 6px 0 0;
  color: #4a3f3f;
  font-size: clamp(16px, 0.92vw, 19px);
}

.gobox-booking__rate-card strong {
  margin-top: 8px;
  display: inline-block;
  color: #1e1515;
  font-size: clamp(32px, 1.1vw, 34px);
}

.gobox-booking__estimate-panel {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.gobox-booking__estimate-panel h3,
.gobox-booking__placement-wrap h3 {
  margin: 0 0 14px;
  font-size: clamp(29px, 1.7vw, 36px);
  color: #2f2424;
}

.gobox-booking__estimate-copy {
  margin: 0 0 18px;
  color: #3f3535;
  font-size: clamp(18px, 1.03vw, 24px);
  line-height: 1.35;
}

.gobox-booking__estimate-lines p {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(18px, 1.05vw, 24px);
  color: #332727;
}

.gobox-booking__estimate-lines strong {
  font-size: clamp(20px, 1.12vw, 26px);
}

.gobox-booking__placement-wrap {
  margin-top: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.gobox-booking__placement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(255px, 1fr));
  gap: 26px;
}

.gobox-booking__total-line {
  margin-top: 22px;
}

.gobox-booking__total-line strong {
  font-size: clamp(30px, 1.8vw, 40px);
  color: #221414;
}

.gobox-booking__total-line small {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  font-size: clamp(15px, 0.9vw, 20px);
  color: #4c4343;
}

.gobox-booking__message {
  text-align: center;
  margin: 32px auto 8px;
  max-width: 760px;
  color: var(--gobox-accent) !important;
  font-size: clamp(24px, 1.65vw, 34px);
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.gobox-booking__step-error {
  min-height: 24px;
  margin-top: 8px;
  color: #9c1238;
  text-align: center;
  font-size: clamp(16px, 0.95vw, 22px);
  font-weight: 700;
}

.gobox-booking__actions {
  margin: 20px auto 0;
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gobox-booking__actions--spread {
  justify-content: space-between;
}

.gobox-booking__btn {
  min-width: 150px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  padding: 0 20px;
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gobox-booking__btn:hover:not(:disabled) {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.06);
  box-shadow: 0 10px 20px rgba(21, 4, 4, 0.22);
}

.gobox-booking__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.gobox-booking__btn--dark {
  background: var(--gobox-dark);
  color: #fff;
}

.gobox-booking__btn--accent {
  background: var(--gobox-accent);
  color: #fff;
}

.gobox-booking__summary {
  max-width: 300px;
  margin-top: 88px;
  padding: 22px 18px 16px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid #d7d7db;
  border-radius: 10px;
  box-shadow: var(--gobox-shadow-soft);
  position: sticky;
  top: 22px;
}

.gobox-booking__summary.is-hidden {
  visibility: hidden;
}

.gobox-booking__summary h3 {
  margin: 0 0 12px;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: clamp(24px, 1.35vw, 32px);
  font-weight: 500;
  color: #2f2424;
  border-bottom: 1px solid #5b5b5b;
  padding-bottom: 10px;
}

.gobox-booking__summary-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #d7d7d7;
  padding: 10px 0;
  min-height: 54px;
}

.gobox-booking__summary-row.is-visible {
  display: flex;
}

.gobox-booking__summary-row span {
  color: #332a2a;
  font-size: clamp(14px, 0.85vw, 16px);
  line-height: 1.3;
}

.gobox-booking__summary-row i {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #1f1919;
  position: relative;
  flex: 0 0 auto;
}

.gobox-booking__summary-row.is-complete i::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  border-left: 2px solid #1f1919;
  border-bottom: 2px solid #1f1919;
  left: 3px;
  top: 4px;
  transform: rotate(-45deg);
}

.gobox-booking__summary-total,
.gobox-booking__summary-cta {
  display: none;
}

.gobox-booking__summary-total.is-visible {
  display: block;
  margin-top: 14px;
  font-size: clamp(16px, 1vw, 20px);
  color: #2a2020;
  font-weight: 600;
}

.gobox-booking__summary-cta.is-visible {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding-bottom: 10px;
}

.gobox-booking__runtime-notice {
  margin: 0 auto 18px;
  max-width: 860px;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 700;
}

.gobox-booking__runtime-notice.is-success {
  background: #e6fff1;
  border: 1px solid #47c17a;
  color: #135f37;
}

.gobox-booking__runtime-notice.is-error {
  background: #fff2f2;
  border: 1px solid #f0a1a1;
  color: #9f1239;
}

.gobox-booking__toasts {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 140;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 24px));
}

.gobox-booking__toast {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  transform: translateY(-8px);
  opacity: 0;
  animation: gobox-toast-in 0.22s ease forwards;
}

.gobox-booking__toast.is-error {
  background: #fff2f2;
  border-color: #f0a1a1;
  color: #9f1239;
}

.gobox-booking__toast.is-success {
  background: #e6fff1;
  border-color: #47c17a;
  color: #135f37;
}

.gobox-booking__toast.is-leaving {
  animation: gobox-toast-out 0.25s ease forwards;
}

@keyframes gobox-toast-in {
  from {
    transform: translateY(-8px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes gobox-toast-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-8px);
    opacity: 0;
  }
}

.gobox-booking__modal[hidden],
.gobox-booking__loading[hidden] {
  display: none;
}

.gobox-booking__modal {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
}

.gobox-booking__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 10, 10, 0.65);
  backdrop-filter: blur(1px);
}

.gobox-booking__modal-panel {
  position: relative;
  width: min(540px, calc(100% - 24px));
  border-radius: 10px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  animation: gobox-modal-in 0.25s ease;
}

@keyframes gobox-modal-in {
  from {
    transform: translateY(16px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.gobox-booking__modal-panel h3 {
  margin: 0;
  font-size: clamp(28px, 1.7vw, 34px);
}

.gobox-booking__modal-panel>p {
  margin: 8px 0 16px;
  font-size: clamp(18px, 1.05vw, 24px);
  color: #453737;
}

.gobox-booking__modal-fields {
  display: grid;
  gap: 10px;
}

.gobox-booking__modal-fields label {
  display: grid;
  gap: 5px;
  font-size: clamp(17px, 1vw, 23px);
  color: #261919;
}

.gobox-booking__modal-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.gobox-booking__loading {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(20, 12, 12, 0.5);
  z-index: 100;
}

.gobox-booking__spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  animation: gobox-spin 0.8s linear infinite;
}

@keyframes gobox-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1400px) {
  .gobox-booking__content {
    max-width: 1260px;
  }

  .gobox-booking__layout {
    grid-template-columns: minmax(0, 860px) 260px;
    column-gap: 42px;
  }
}

@media (max-width: 1220px) {
  .gobox-booking__layout {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .gobox-booking__main {
    min-height: 0;
  }

  .gobox-booking__summary {
    max-width: 760px;
    margin-top: 0;
    position: static;
    top: auto;
  }
}

@media (max-width: 960px) {
  .gobox-booking__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gobox-booking__step>p {
    font-size: 20px;
  }

  .gobox-booking__field-block label {
    font-size: 19px;
  }

  .gobox-booking__summary h3 {
    font-size: 24px;
  }

  .gobox-booking__message {
    font-size: 28px;
    margin-top: 24px;
  }

  .gobox-booking__service-cards,
  .gobox-booking__size-cards,
  .gobox-booking__duration-grid,
  .gobox-booking__rate-cards,
  .gobox-booking__placement-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }

  .gobox-booking__field-block,
  .gobox-booking__estimate-panel,
  .gobox-booking__placement-wrap {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .gobox-booking__content {
    padding: 24px 12px 34px;
  }

  .gobox-booking__progress {
    height: 30px;
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .gobox-booking__progress::before {
    left: 20px;
    right: 20px;
  }

  .gobox-booking__step h2 {
    font-size: clamp(28px, 7.8vw, 38px);
  }

  .gobox-booking__step>p {
    font-size: clamp(16px, 4.4vw, 18px);
    margin-bottom: 14px;
    line-height: 1.42;
  }

  .gobox-booking__field-block label {
    font-size: clamp(15px, 4.2vw, 17px);
    margin-bottom: 8px;
  }

  .gobox-booking__field-block,
  .gobox-booking__rate-cards,
  .gobox-booking__actions,
  .gobox-booking__message,
  .gobox-booking__summary {
    max-width: calc(100% - 8px);
    margin-left: auto;
    margin-right: auto;
  }

  .gobox-booking__service-card,
  .gobox-booking__size-card {
    padding: 10px 10px 12px;
  }

  .gobox-booking__size-card {
    padding-bottom: 64px;
  }

  .gobox-booking__service-image-wrap {
    min-height: 180px;
  }

  .gobox-booking__size-image-wrap {
    min-height: 180px;
  }

  .gobox-booking__service-btn,
  .gobox-booking__btn {
    min-width: 112px;
    font-size: 14px;
    height: 40px;
  }

  .gobox-booking__size-dim,
  .gobox-booking__duration-title,
  .gobox-booking__placement-title,
  .gobox-booking__estimate-panel h3,
  .gobox-booking__placement-wrap h3,
  .gobox-booking__total-line strong,
  .gobox-booking__summary h3 {
    font-size: 24px;
  }

  .gobox-booking__size-highlight,
  .gobox-booking__duration-desc,
  .gobox-booking__placement-desc,
  .gobox-booking__estimate-copy,
  .gobox-booking__estimate-lines p,
  .gobox-booking__total-line small,
  .gobox-booking__field-block input,
  .gobox-booking__field-block textarea,
  .gobox-booking__modal-fields input,
  .gobox-booking__modal-fields textarea,
  .gobox-booking__summary-row span,
  .gobox-booking__summary-total,
  .gobox-booking__step-error {
    font-size: 15px;
  }

  .gobox-booking__qty span {
    min-width: 94px;
    font-size: 20px;
    line-height: 34px;
  }

  .gobox-booking__qty button {
    height: 34px;
  }

  .gobox-booking__message {
    font-size: 20px;
    margin-top: 20px;
  }

  .gobox-booking__toasts {
    top: 10px;
    right: 10px;
    width: min(320px, calc(100vw - 20px));
  }
}

@media (min-width: 992px) and (max-height: 820px) {
  .gobox-booking__content {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .gobox-booking__progress {
    margin-bottom: 22px;
    height: 30px;
  }

  .gobox-booking__step h2 {
    font-size: clamp(34px, 2.2vw, 46px);
  }

  .gobox-booking__step>p {
    margin: 6px 0 22px;
    font-size: clamp(16px, 1.05vw, 20px);
  }

  .gobox-booking__service-cards,
  .gobox-booking__size-cards {
    gap: 24px;
  }

  .gobox-booking__service-image-wrap {
    min-height: 126px;
  }

  .gobox-booking__size-image-wrap {
    min-height: 162px;
  }

  .gobox-booking__message {
    margin-top: 18px;
    font-size: clamp(22px, 1.5vw, 30px);
  }

  .gobox-booking__actions {
    margin-top: 8px;
  }

  .gobox-booking__btn {
    height: 40px;
  }

  .gobox-booking__summary {
    margin-top: 72px;
  }
}

/* Booking UI refresh */
.gobox-booking {
  --gobox-bg: #f1f2f5;
  --gobox-bg-tint: #fdf8f4;
  --gobox-card: #ffffff;
  --gobox-text: #241919;
  --gobox-muted: #534949;
  --gobox-muted-2: #6a6060;
  --gobox-dark: #2a0c0c;
  --gobox-accent: #ef3a24;
  --gobox-surface: #f8f9fb;
  --gobox-border: #e4e2e6;
  --gobox-radius: 14px;
  --gobox-shadow-soft: 0 14px 34px rgba(22, 12, 12, 0.1);
  --gobox-shadow-card: 0 10px 26px rgba(18, 10, 10, 0.08);
  --gobox-step-width: 980px;
  --gobox-step-title-size: clamp(32px, 2.45vw, 46px);
  --gobox-step-subtitle-size: clamp(16px, 1.02vw, 20px);

  background:
    radial-gradient(1200px 500px at 100% -5%, rgba(236, 39, 24, 0.08), transparent 65%),
    radial-gradient(900px 420px at -5% 15%, rgba(245, 227, 45, 0.14), transparent 60%),
    linear-gradient(180deg, var(--gobox-bg-tint) 0%, var(--gobox-bg) 38%, #edeef1 100%);
  padding-bottom: 40px;
  line-height: 1.45;
}

.gobox-booking__content {
  max-width: 1480px;
  padding: 36px 24px 56px;
}

.gobox-booking__progress {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 36px;
  height: 30px;
  border: 1px solid #d7d7da;
  border-radius: 999px;
  padding: 0 26px;
  background: rgba(223, 223, 227, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.gobox-booking__progress::before,
.gobox-booking__progress::after {
  left: 26px;
  right: 26px;
  height: 3px;
  border-radius: 999px;
}

.gobox-booking__progress::before {
  background: #d3b7b6;
}

.gobox-booking__progress::after {
  background: linear-gradient(90deg, #ef3a24 0%, #f66b27 100%);
}

.gobox-booking__progress span {
  width: 11px;
  height: 11px;
  background: #ebb5b2;
}

.gobox-booking__layout {
  column-gap: 34px;
}

.gobox-booking__main {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e5dfdf;
  border-radius: 20px;
  box-shadow: var(--gobox-shadow-soft);
  padding: 38px clamp(20px, 3vw, 42px) 34px;
}

.gobox-booking__step h2 {
  margin: 0 auto 8px;
  max-width: 760px;
  letter-spacing: -0.2px;
  color: #231415;
}

.gobox-booking__step>p {
  margin: 0 auto 24px;
  max-width: 760px;
  line-height: 1.48;
  color: #4a4040;
}

.gobox-booking__service-cards {
  gap: 28px;
  max-width: 880px;
}

.gobox-booking__size-cards {
  gap: 28px;
}

.gobox-booking__service-card,
.gobox-booking__size-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border: 1px solid #e3e0e3;
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
  padding: 14px;
}

.gobox-booking__size-card {
  min-height: 430px;
}

.gobox-booking__service-card:hover,
.gobox-booking__size-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gobox-shadow-card);
}

.gobox-booking__service-card.is-selected,
.gobox-booking__size-card.is-selected {
  border-color: #ef3a24;
  box-shadow: 0 14px 28px rgba(231, 50, 31, 0.2);
}

.gobox-booking__service-image-wrap,
.gobox-booking__size-image-wrap {
  background: #f3f4f7;
  border: 1px solid #e2e5e9;
  border-radius: 12px;
}

.gobox-booking__service-image-wrap {
  min-height: 168px;
}

.gobox-booking__size-image-wrap {
  min-height: 226px;
}

.gobox-booking__step[data-step="2"] .gobox-booking__size-image-wrap {
  min-height: 238px;
}

.gobox-booking__service-btn {
  border-radius: 999px;
  min-width: 152px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15px;
  box-shadow: 0 8px 16px rgba(239, 58, 36, 0.25);
}

.gobox-booking__size-dim {
  font-size: clamp(18px, 1vw, 24px);
}

.gobox-booking__step[data-step="2"] .gobox-booking__size-dim {
  font-size: clamp(18px, 1.05vw, 24px);
}

.gobox-booking__size-highlight {
  margin: 8px 0 10px;
  font-size: clamp(12px, 0.82vw, 15px);
  letter-spacing: 0.3px;
}

.gobox-booking__step[data-step="2"] .gobox-booking__size-highlight {
  font-size: clamp(12px, 0.5vw, 15px);
}

.gobox-booking__qty button {
  width: 34px;
  font-size: 18px;
}

.gobox-booking__qty span {
  min-width: 100px;
  font-size: 18px;
}

.gobox-booking__duration-grid,
.gobox-booking__rate-cards,
.gobox-booking__placement-grid {
  gap: 22px;
}

.gobox-booking__duration-title,
.gobox-booking__placement-title {
  font-size: clamp(20px, 1.08vw, 24px);
}

.gobox-booking__duration-desc,
.gobox-booking__placement-desc {
  font-size: clamp(14px, 0.86vw, 16px);
}

.gobox-booking__field-block,
.gobox-booking__estimate-panel,
.gobox-booking__placement-wrap {
  max-width: 780px;
}

.gobox-booking__field-block {
  margin-bottom: 22px;
}

.gobox-booking__field-block label {
  margin-bottom: 9px;
  font-size: clamp(16px, 0.95vw, 20px);
}

.gobox-booking__field-block input,
.gobox-booking__field-block textarea,
.gobox-booking__modal-fields input,
.gobox-booking__modal-fields textarea {
  min-height: 52px;
  border-radius: 12px;
  border-color: #d7d8dd;
  padding: 0 15px;
  font-size: clamp(15px, 0.88vw, 17px);
}

.gobox-booking__field-block textarea,
.gobox-booking__modal-fields textarea {
  padding-top: 11px;
}

.gobox-booking__field-block input::placeholder,
.gobox-booking__field-block textarea::placeholder,
.gobox-booking__modal-fields input::placeholder,
.gobox-booking__modal-fields textarea::placeholder {
  color: #918787;
}

.gobox-booking__link-btn {
  color: #8f2519;
  font-size: clamp(13px, 0.8vw, 15px);
  font-weight: 600;
}

.gobox-booking__rate-cards {
  max-width: 780px;
}

.gobox-booking__rate-card {
  padding: 20px 20px 18px;
}

.gobox-booking__rate-card h3 {
  font-size: clamp(24px, 1.02vw, 28px);
}

.gobox-booking__rate-card p {
  margin-top: 5px;
  font-size: clamp(14px, 0.84vw, 16px);
}

.gobox-booking__rate-card strong {
  margin-top: 7px;
  font-size: clamp(28px, 1.02vw, 31px);
}

.gobox-booking__estimate-panel h3,
.gobox-booking__placement-wrap h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 1.45vw, 34px);
}

.gobox-booking__estimate-copy {
  margin-bottom: 16px;
  font-size: clamp(16px, 0.94vw, 19px);
}

.gobox-booking__estimate-lines p {
  padding: 9px 0;
  font-size: clamp(16px, 0.94vw, 19px);
}

.gobox-booking__estimate-lines strong {
  font-size: clamp(18px, 1vw, 22px);
}

.gobox-booking__total-line strong {
  font-size: clamp(28px, 1.5vw, 34px);
}

.gobox-booking__total-line small {
  font-size: clamp(14px, 0.84vw, 16px);
}

.gobox-booking__message {
  margin: 28px auto 8px;
  font-size: clamp(20px, 1.25vw, 26px);
}

.gobox-booking__step-error {
  font-size: clamp(14px, 0.84vw, 17px);
}

.gobox-booking__actions {
  margin-top: 24px;
}

.gobox-booking__btn {
  min-width: 158px;
  height: 48px;
  font-size: clamp(15px, 0.9vw, 17px);
  font-weight: 700;
}

.gobox-booking__summary {
  max-width: 320px;
  margin-top: 22px;
  padding: 24px 20px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5dfdf;
  box-shadow: var(--gobox-shadow-soft);
}

.gobox-booking__summary h3 {
  margin-bottom: 11px;
  padding-bottom: 11px;
  font-size: clamp(28px, 1.55vw, 34px);
  font-weight: 600;
  border-bottom: 1px solid #cec6c6;
}

.gobox-booking__summary-row {
  min-height: 52px;
  padding: 9px 0;
  border-bottom: 1px solid #e1dddd;
}

.gobox-booking__summary-row span {
  font-size: clamp(14px, 0.82vw, 15px);
}

.gobox-booking__summary-row i {
  border-color: #3c2f2f;
}

.gobox-booking__summary-row.is-complete i {
  border-color: #ef3a24;
  background: rgba(239, 58, 36, 0.1);
}

.gobox-booking__summary-row.is-complete i::after {
  border-left-color: #ef3a24;
  border-bottom-color: #ef3a24;
}

.gobox-booking__summary-total.is-visible {
  margin-top: 15px;
  font-size: clamp(16px, 0.95vw, 18px);
}

.gobox-booking__summary-cta .gobox-booking__btn {
  width: 100%;
}

.gobox-booking__service-btn:focus-visible,
.gobox-booking__btn:focus-visible,
.gobox-booking__duration-card:focus-visible,
.gobox-booking__placement-card:focus-visible,
.gobox-booking__field-block input:focus-visible,
.gobox-booking__field-block textarea:focus-visible,
.gobox-booking__link-btn:focus-visible,
.gobox-booking__modal-fields input:focus-visible,
.gobox-booking__modal-fields textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 58, 36, 0.2);
}

@media (max-width: 1220px) {
  .gobox-booking__main {
    padding: 34px 24px 28px;
  }

  .gobox-booking__summary {
    max-width: 100%;
    margin-top: 2px;
    position: static;
    top: auto;
  }
}

@media (max-width: 960px) {
  .gobox-booking__content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .gobox-booking__main {
    border-radius: 18px;
    padding: 30px 20px 24px;
  }

  .gobox-booking__step>p {
    font-size: clamp(16px, 2.2vw, 18px);
  }
}

@media (max-width: 768px) {
  .gobox-booking__content {
    padding: 22px 10px 30px;
  }

  .gobox-booking__progress {
    height: 26px;
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .gobox-booking__progress::before,
  .gobox-booking__progress::after {
    left: 16px;
    right: 16px;
  }

  .gobox-booking__main {
    border-radius: 14px;
    padding: 22px 14px 18px;
  }

  .gobox-booking__step h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .gobox-booking__field-block,
  .gobox-booking__rate-cards,
  .gobox-booking__actions,
  .gobox-booking__message,
  .gobox-booking__summary {
    max-width: 100%;
  }

  .gobox-booking__actions {
    gap: 10px;
  }

  .gobox-booking__actions .gobox-booking__btn {
    flex: 1;
    min-width: 0;
  }

  .gobox-booking__summary {
    padding: 18px 14px 14px;
  }
}

/* Frontend UI final: consolidated booking-request layer (keep this at file end). */
.gobox-booking {
  --gobox-ui-font: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --gobox-ui-heading: "Merriweather", "Bitter", "Georgia", serif;
  --gobox-ui-ink: #241919;
  --gobox-ui-copy: #534646;
  --gobox-ui-copy-soft: #756868;
  --gobox-ui-card: #ffffff;
  --gobox-ui-card-soft: #f7f9fc;
  --gobox-ui-border: #e2d8d8;
  --gobox-ui-border-strong: #d4c5c5;
  --gobox-ui-accent: #ef3a24;
  --gobox-ui-accent-dark: #c52c19;
  --gobox-ui-focus: rgba(239, 58, 36, 0.18);
  --gobox-ui-shadow: 0 20px 40px rgba(20, 10, 10, 0.1);
  --gobox-ui-shadow-soft: 0 10px 22px rgba(20, 10, 10, 0.08);
  --gobox-ui-radius: 18px;
  --gobox-ui-step-title-size: clamp(2.05rem, 2.65vw, 3.05rem);
  --gobox-ui-step-copy-size: clamp(1rem, 1.02vw, 1.18rem);
  --gobox-ui-label-size: clamp(0.98rem, 0.9vw, 2.08rem);
  --gobox-ui-input-size: clamp(0.98rem, 0.9vw, 1.58rem);
  --gobox-ui-title-size: clamp(1.36rem, 1.16vw, 1.7rem);
  --gobox-ui-price-size: clamp(1.76rem, 1.62vw, 2.2rem);
  --gobox-ui-summary-title-size: clamp(1.88rem, 1.68vw, 2.28rem);

  background:
    radial-gradient(940px 380px at 100% -10%, rgba(239, 58, 36, 0.1), transparent 66%),
    radial-gradient(740px 320px at -5% 14%, rgba(245, 227, 45, 0.16), transparent 62%),
    linear-gradient(180deg, #f8f7f5 0%, #f0f2f5 42%, #eaedf2 100%);
  color: var(--gobox-ui-ink);
  font-family: var(--gobox-ui-font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.gobox-booking,
.gobox-booking input,
.gobox-booking textarea,
.gobox-booking button {
  font-family: var(--gobox-ui-font);
}

.gobox-booking__step h2,
.gobox-booking__summary h3,
.gobox-booking__estimate-panel h3,
.gobox-booking__placement-wrap h3,
.gobox-booking__modal-panel h3 {
  font-family: var(--gobox-ui-heading);
}

.gobox-booking__content {
  max-width: 1380px;
  padding: 38px 20px 58px;
}

.gobox-booking__progress {
  width: min(760px, calc(100% - 24px));
  margin: 0 auto 30px;
  padding: 0 26px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #d9d2d2;
  background: rgba(225, 227, 232, 0.82);
}

.gobox-booking__progress::before,
.gobox-booking__progress::after {
  left: 26px;
  right: 26px;
  height: 3px;
  border-radius: 999px;
}

.gobox-booking__progress::before {
  background: #dac6c6;
}

.gobox-booking__progress::after {
  background: linear-gradient(90deg, #ef3a24 0%, #f36b2a 100%);
}

.gobox-booking__progress span {
  width: 11px;
  height: 11px;
  background: #e2b4b2;
}

.gobox-booking__layout {
  grid-template-columns: minmax(0, 1fr) minmax(282px, 338px);
  column-gap: 30px;
  row-gap: 20px;
}

.gobox-booking[data-current-step="1"] .gobox-booking__layout {
  grid-template-columns: minmax(0, 1fr);
}

.gobox-booking__main {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gobox-ui-border);
  border-radius: 22px;
  box-shadow: var(--gobox-ui-shadow);
  padding: clamp(28px, 3vw, 38px) clamp(16px, 3vw, 40px) clamp(24px, 2.5vw, 34px);
}

.gobox-booking__step h2 {
  margin: 0 auto 8px;
  max-width: 760px;
  color: var(--gobox-ui-ink);
  font-size: var(--gobox-ui-step-title-size);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.14;
  text-wrap: balance;
}

.gobox-booking__step>p {
  margin: 0 auto 24px;
  max-width: 60ch;
  color: var(--gobox-ui-copy);
  font-size: var(--gobox-ui-step-copy-size);
  line-height: 1.55;
  text-wrap: pretty;
}

.gobox-booking__service-cards,
.gobox-booking__size-cards,
.gobox-booking__duration-grid,
.gobox-booking__rate-cards,
.gobox-booking__placement-grid {
  gap: 20px;
}

.gobox-booking__service-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 940px;
  margin: 0 auto;
}

.gobox-booking__size-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 940px;
  margin: 0 auto;
}

.gobox-booking__service-card,
.gobox-booking__size-card,
.gobox-booking__duration-card,
.gobox-booking__placement-card,
.gobox-booking__rate-card {
  border: 1px solid var(--gobox-ui-border);
  border-radius: var(--gobox-ui-radius);
  background: linear-gradient(180deg, var(--gobox-ui-card) 0%, var(--gobox-ui-card-soft) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86);
}

.gobox-booking__service-card,
.gobox-booking__size-card {
  padding: 14px 14px 16px;
  text-align: center;
}

.gobox-booking__size-card {
  position: relative;
  min-height: 0;
  padding-bottom: 84px;
  overflow: visible;
}

.gobox-booking__size-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 4;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, #f55a3c 0%, #e02010 55%, #c41a0b 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px;
  word-break: break-word;
  clip-path: polygon(50% 0%, 61% 10%, 74% 5%, 79% 18%,
      93% 18%, 92% 32%, 100% 40%, 93% 50%,
      100% 60%, 91% 67%, 93% 82%, 79% 82%,
      74% 95%, 61% 90%, 50% 100%, 39% 90%,
      26% 95%, 21% 82%, 7% 82%, 9% 67%,
      0% 60%, 7% 50%, 0% 40%, 8% 32%,
      7% 18%, 21% 18%, 26% 5%, 39% 10%);
  filter: drop-shadow(0 6px 14px rgba(200, 28, 12, 0.5));
}

.gobox-booking__service-card:hover,
.gobox-booking__size-card:hover,
.gobox-booking__duration-card:hover,
.gobox-booking__placement-card:hover,
.gobox-booking__rate-card:hover {
  box-shadow: var(--gobox-ui-shadow-soft);
}

.gobox-booking__service-card.is-selected,
.gobox-booking__size-card.is-selected,
.gobox-booking__duration-card.is-selected,
.gobox-booking__placement-card.is-selected {
  border-color: var(--gobox-ui-accent);
  box-shadow: 0 14px 28px rgba(239, 58, 36, 0.19);
}

.gobox-booking__service-image-wrap,
.gobox-booking__size-image-wrap {
  border-radius: 14px;
  border-color: #e7ebef;
  background: linear-gradient(180deg, #fbfcfd 0%, #f2f5f8 100%);
  overflow: hidden;
}

.gobox-booking__service-image-wrap {
  min-height: 190px;
  margin-bottom: 14px;
}

.gobox-booking__size-image-wrap {
  min-height: 190px;
  margin-bottom: 12px;
}

.gobox-booking__service-btn {
  min-width: 172px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #f54f35 0%, #e73621 100%);
  color: #fff;
  font-size: clamp(0.95rem, 0.88vw, 3.04rem);
  font-weight: 700;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.gobox-booking__service-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 8px 16px rgba(23, 9, 9, 0.2);
}

.gobox-booking__service-btn:disabled {
  opacity: 0.64;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
}

.gobox-booking__size-dim {
  margin: 5px 0 0;
  color: #322929;
  font-size: clamp(0.98rem, 0.9vw, 1.58rem);
  font-weight: 600;
  line-height: 1.34;
}

.gobox-booking__size-highlight {
  margin: 6px 0 0;
  color: #ca341f;
  font-size: clamp(0.74rem, 0.72vw, 0.84rem);
  line-height: 1.32;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 800;
}

.gobox-booking__qty {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 38px minmax(88px, auto) 38px;
  align-items: stretch;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(239, 58, 36, 0.38);
  background: #fff;
  box-shadow: 0 10px 18px rgba(17, 7, 7, 0.12);
}

.gobox-booking__qty button {
  width: 38px;
  height: 38px;
  border: 0;
  background: #ef3a24;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.gobox-booking__qty button:hover {
  background: #d92e1b;
}

.gobox-booking__qty button:disabled {
  background: #f3b4ab;
  color: rgba(255, 255, 255, 0.94);
  cursor: not-allowed;
}

.gobox-booking__qty span {
  min-width: 88px;
  height: 38px;
  padding: 0 12px;
  border-top: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(239, 58, 36, 0.3);
  border-right: 1px solid rgba(239, 58, 36, 0.3);
  background: #fff;
  color: #2f2525;
  font-size: clamp(0.94rem, 0.88vw, 1.04rem);
  font-weight: 700;
}

.gobox-booking__duration-title,
.gobox-booking__placement-title {
  color: #251b1b;
  font-size: clamp(1.16rem, 1.04vw, 3.42rem);
}

.gobox-booking__duration-card,
.gobox-booking__placement-card {
  min-height: 114px;
  padding: 16px 16px;
  row-gap: 6px;
  column-gap: 14px;
}

.gobox-booking__duration-desc,
.gobox-booking__placement-desc {
  color: var(--gobox-ui-copy);
  font-size: clamp(0.92rem, 0.84vw, 1.28rem);
}

.gobox-booking__duration-card .gobox-booking__duration-dot,
.gobox-booking__placement-card .gobox-booking__duration-dot {
  border-color: #c0b8b8;
}

.gobox-booking__duration-card.is-selected .gobox-booking__duration-dot,
.gobox-booking__placement-card.is-selected .gobox-booking__duration-dot {
  border-color: var(--gobox-ui-accent);
}

.gobox-booking__field-block,
.gobox-booking__estimate-panel,
.gobox-booking__placement-wrap,
.gobox-booking__rate-cards,
.gobox-booking__actions {
  max-width: 790px;
}

.gobox-booking__field-block {
  margin-bottom: 20px;
}

.gobox-booking__field-block label,
.gobox-booking__modal-fields label {
  margin-bottom: 8px;
  color: #2f2323;
  font-size: var(--gobox-ui-label-size);
  font-weight: 700;
  line-height: 1.32;
}

.gobox-booking__field-block input,
.gobox-booking__field-block textarea,
.gobox-booking__modal-fields input,
.gobox-booking__modal-fields textarea {
  min-height: 52px;
  border: 1px solid #d4d8de;
  border-radius: 12px;
  background: #fff;
  color: var(--gobox-ui-ink);
  font-size: var(--gobox-ui-input-size);
  line-height: 1.35;
  padding: 0 15px;
}

.gobox-booking__field-block textarea,
.gobox-booking__modal-fields textarea {
  min-height: 92px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.gobox-booking__field-block input::placeholder,
.gobox-booking__field-block textarea::placeholder,
.gobox-booking__modal-fields input::placeholder,
.gobox-booking__modal-fields textarea::placeholder {
  color: #8d8181;
  opacity: 1;
}

.gobox-booking__field-block input:focus,
.gobox-booking__field-block textarea:focus,
.gobox-booking__modal-fields input:focus,
.gobox-booking__modal-fields textarea:focus {
  border-color: rgba(239, 58, 36, 0.55);
  box-shadow: 0 0 0 3px var(--gobox-ui-focus);
}

.gobox-booking__autocomplete-host {
  margin-bottom: 9px;
}

.gobox-booking__autocomplete-host .gobox-booking__place-autocomplete,
.gobox-booking__autocomplete-host gmp-place-autocomplete,
.gobox-booking__autocomplete-host gmp-basic-place-autocomplete {
  display: block;
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid #d4d8de;
  background: #fff;
  overflow: hidden;
}

.gobox-booking__autocomplete-host .gobox-booking__place-autocomplete:focus-within,
.gobox-booking__autocomplete-host gmp-place-autocomplete:focus-within,
.gobox-booking__autocomplete-host gmp-basic-place-autocomplete:focus-within {
  border-color: rgba(239, 58, 36, 0.55);
  box-shadow: 0 0 0 3px var(--gobox-ui-focus);
}

.gobox-booking__autocomplete-host .gobox-booking__place-autocomplete::part(input),
.gobox-booking__autocomplete-host gmp-place-autocomplete::part(input),
.gobox-booking__autocomplete-host gmp-basic-place-autocomplete::part(input) {
  min-height: 52px;
  font-family: var(--gobox-ui-font);
  font-size: var(--gobox-ui-input-size);
  color: var(--gobox-ui-ink);
}

.gobox-booking__field-block input[data-delivery-address],
.gobox-booking__field-block input[data-pickup-address],
.gobox-booking__field-block input.gm-err-autocomplete {
  background-image: none !important;
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.gobox-booking__link-btn {
  margin-top: 8px;
  color: #7a271d;
  font-size: clamp(0.84rem, 0.8vw, 0.95rem);
  font-weight: 700;
  text-underline-offset: 2px;
}

.gobox-booking__field-block small {
  margin-top: 7px;
  color: var(--gobox-ui-copy-soft);
  font-size: 0.82rem;
}

.gobox-booking__rate-card {
  padding: 22px 20px 18px;
}

.gobox-booking__rate-card h3 {
  margin-bottom: 6px;
  color: #261d1d;
  font-size: var(--gobox-ui-title-size);
  line-height: 1.2;
}

.gobox-booking__rate-card p {
  margin-top: 5px;
  color: #4d4141;
  font-size: clamp(0.92rem, 0.84vw, 1.02rem);
  line-height: 1.46;
}

.gobox-booking__rate-card strong {
  margin-top: 8px;
  color: #211515;
  font-size: var(--gobox-ui-price-size);
  line-height: 1.1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.22rem 0.46rem;
}

.gobox-booking__gst-note {
  display: inline-block;
  color: #6f5f5f;
  font-size: clamp(0.72rem, 0.64vw, 0.84rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.gobox-booking__gst-note--summary {
  font-size: clamp(0.7rem, 0.6vw, 0.8rem);
}

.ui-datepicker {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
}

.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}

.ui-datepicker th,
.ui-datepicker td {
  text-align: center;
}

.ui-helper-hidden-accessible {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

.gobox-booking__datepicker.ui-datepicker {
  position: fixed !important;
  z-index: 2147483645 !important;
  padding: 0.75rem;
  border: 1px solid #d5c9c9;
  border-radius: 18px;
  background: #fffdfd;
  box-shadow: 0 20px 44px rgba(30, 15, 15, 0.18);
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
}

.gobox-booking__datepicker .ui-datepicker-header {
  border: 0;
  border-radius: 14px;
  background: #fff3f0;
  color: #2b191a;
  padding: 0.8rem 0.85rem;
}

.gobox-booking__datepicker .ui-datepicker-title {
  margin: 0 2.2rem;
  font-weight: 700;
  font-size: 1.04rem;
  line-height: 1.2;
  text-align: center;
}

.gobox-booking__datepicker .ui-datepicker-prev,
.gobox-booking__datepicker .ui-datepicker-next {
  top: 0.72rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.16s ease, box-shadow 0.16s ease;
  cursor: pointer;
}

.gobox-booking__datepicker .ui-datepicker-prev {
  left: 0.72rem;
}

.gobox-booking__datepicker .ui-datepicker-next {
  right: 0.72rem;
}

.gobox-booking__datepicker .ui-datepicker-prev span,
.gobox-booking__datepicker .ui-datepicker-next span {
  display: none;
}

.gobox-booking__datepicker .ui-datepicker-prev::before,
.gobox-booking__datepicker .ui-datepicker-next::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b2a20;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.gobox-booking__datepicker .ui-datepicker-prev::before {
  content: "‹";
}

.gobox-booking__datepicker .ui-datepicker-next::before {
  content: "›";
}

.gobox-booking__datepicker .ui-datepicker-prev:hover,
.gobox-booking__datepicker .ui-datepicker-next:hover {
  background: rgba(243, 31, 18, 0.1);
  border: 0;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(243, 31, 18, 0.12);
}

.gobox-booking__datepicker table {
  margin: 0.7rem 0 0;
}

.gobox-booking__datepicker th {
  padding: 0.52rem 0.2rem;
  color: #625454;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gobox-booking__datepicker td {
  padding: 0.16rem;
}

.gobox-booking__datepicker td a,
.gobox-booking__datepicker td span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.gobox-booking__datepicker td a {
  color: #2b1d1d;
  background: linear-gradient(180deg, #ffffff 0%, #fff9f8 100%);
  border-color: rgba(219, 204, 204, 0.7);
  cursor: pointer;
}

.gobox-booking__datepicker td a:focus,
.gobox-booking__datepicker td a:hover {
  border-color: rgba(243, 31, 18, 0.34);
  background: #fff2ee;
  color: #8e170f;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(243, 31, 18, 0.12);
  outline: none;
}

.gobox-booking__datepicker td a:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(243, 31, 18, 0.1);
}

.gobox-booking__datepicker .ui-datepicker-today a,
.gobox-booking__datepicker .ui-datepicker-today span {
  border-color: rgba(243, 31, 18, 0.48);
  box-shadow: inset 0 0 0 1px rgba(243, 31, 18, 0.18);
}

.gobox-booking__datepicker .ui-state-active,
.gobox-booking__datepicker .ui-widget-content .ui-state-active,
.gobox-booking__datepicker .ui-widget-header .ui-state-active {
  border-color: #f31f12;
  background: #f31f12;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(243, 31, 18, 0.16);
}

.gobox-booking__datepicker td.gobox-booking__date--weekend span {
  background: #f4f4f6;
  border-color: #e1e1e4;
  color: #988b8b;
}

.gobox-booking__datepicker td.gobox-booking__date--holiday span {
  background: #fff1df;
  border-color: #f2cf9a;
  color: #9a5f10;
}

.gobox-booking__datepicker td.gobox-booking__date--weekend.gobox-booking__date--holiday span {
  background: #fbe6e3;
  border-color: #efb6aa;
  color: #a64033;
}

.gobox-booking__datepicker .ui-state-disabled,
.gobox-booking__datepicker .ui-datepicker-unselectable {
  opacity: 1;
  cursor: not-allowed;
}

.gobox-booking__datepicker .ui-state-disabled span,
.gobox-booking__datepicker .ui-datepicker-unselectable span {
  cursor: not-allowed;
}

.gobox-booking__datepicker .ui-datepicker-buttonpane {
  display: none;
}

.gobox-booking__rate-card small {
  display: block;
  margin-top: 7px;
  color: #5f5353;
  font-size: clamp(0.82rem, 0.76vw, 0.92rem);
  font-weight: 600;
  line-height: 1.35;
}

.gobox-booking__rate-cards[data-rate-state="empty"][data-rate-count="1"] {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.gobox-booking__rate-card--placeholder {
  text-align: center;
}

.gobox-booking__rate-cards[data-rate-state="empty"][data-rate-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 790px;
}

.gobox-booking__rate-cards[data-rate-state="empty"][data-rate-count="2"] .gobox-booking__rate-card--placeholder {
  text-align: left;
}

.gobox-booking__rate-cards[data-rate-state="empty"][data-rate-count="2"] .gobox-booking__rate-card--placeholder h3 {
  margin-bottom: 7px;
}

.gobox-booking__rate-cards[data-rate-state="empty"][data-rate-count="2"] .gobox-booking__rate-card--placeholder p {
  margin-top: 4px;
}

.gobox-booking__rate-cards[data-rate-state="empty"][data-rate-count="2"] .gobox-booking__rate-card--placeholder small {
  display: block;
  margin-top: 6px;
  color: #605555;
  font-size: clamp(0.82rem, 0.76vw, 0.92rem);
  line-height: 1.35;
}

.gobox-booking__rate-card--placeholder strong {
  color: #6a5d5d;
  letter-spacing: 0.3px;
}

.gobox-booking__rate-cards.is-loading {
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.gobox-booking__estimate-panel h3,
.gobox-booking__placement-wrap h3 {
  margin-bottom: 12px;
  color: #251a1a;
}

.gobox-booking__estimate-copy {
  margin-bottom: 16px;
  color: var(--gobox-ui-copy);
  font-size: clamp(0.98rem, 0.9vw, 1.58rem);
  line-height: 1.55;
}

.gobox-booking__estimate-lines p {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #e5dcdc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #322727;
  font-size: clamp(0.96rem, 0.89vw, 1.05rem);
}

.gobox-booking__estimate-lines strong {
  color: #1f1515;
  font-size: clamp(1.02rem, 0.96vw, 1.14rem);
}

.gobox-booking [data-cost-storage-row][hidden],
.gobox-booking [data-cost-storage-row].is-force-hidden {
  display: none !important;
}

.gobox-booking__transport-cheatsheet {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #e2d8d8;
  border-radius: 12px;
  background: #fff;
}

.gobox-booking__transport-cheatsheet[hidden] {
  display: none !important;
}

.gobox-booking__transport-cheatsheet h4 {
  margin: 0 0 8px;
  color: #241a1a;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.02rem, 0.95vw, 1.16rem);
  font-weight: 700;
  line-height: 1.3;
}

.gobox-booking__transport-cheatsheet p {
  margin: 0 0 6px;
  color: #352929;
  font-size: clamp(0.9rem, 0.84vw, 1rem);
  line-height: 1.4;
}

.gobox-booking__transport-cheatsheet p.is-route {
  margin-bottom: 10px;
  color: #241a1a;
  font-weight: 700;
}

.gobox-booking__transport-cheatsheet p:last-child {
  margin-bottom: 0;
}

.gobox-booking__transport-cheatsheet p.is-total {
  margin-top: 3px;
  font-weight: 700;
  color: #201414;
}

.gobox-booking__transport-cheatsheet p.is-reference {
  color: #5f5353;
  font-style: italic;
}

.gobox-booking__transport-cheatsheet p.is-cheatsheet-title {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #d8cdcd;
  color: #8a2316;
  font-weight: 700;
}

.gobox-booking__cheat-sheet-table {
  margin-top: 16px;
  padding: 10px 0 2px;
}

.gobox-booking__cheat-sheet-table[hidden] {
  display: none !important;
}

.gobox-booking__cheat-sheet-table h4 {
  margin: 0 0 10px;
  color: #201717;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1rem, 0.94vw, 1.12rem);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: underline;
}

.gobox-booking__cheat-table-grid {
  width: 100%;
  border-collapse: collapse;
  background: #f2f2f2;
}

.gobox-booking__cheat-table-grid th,
.gobox-booking__cheat-table-grid td {
  border: 1px solid #7f7f7f;
  padding: 9px 8px;
  text-align: center;
  vertical-align: middle;
  color: #262020;
  font-size: clamp(0.84rem, 0.8vw, 0.95rem);
  line-height: 1.25;
}

.gobox-booking__cheat-table-grid thead th {
  background: #ececec;
  color: #1f1717;
  font-weight: 700;
}

.gobox-booking__cheat-table-grid .gobox-booking__cheat-size {
  width: 78px;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.02rem, 0.98vw, 1.16rem);
  font-weight: 700;
}

.gobox-booking__cheat-table-grid .gobox-booking__cheat-service {
  width: 108px;
  font-weight: 700;
}

.gobox-booking__cheat-table-grid tr.is-onsite td {
  color: #2b2323;
  font-weight: 700;
}

.gobox-booking__cheat-table-grid tr.is-c2c td {
  color: #1ba5e5;
  font-weight: 700;
  font-style: italic;
}

.gobox-booking__cheat-table-grid tr.is-warehouse td {
  color: #ef2f2f;
  font-weight: 700;
}

.gobox-booking__total-line {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #d9cccc;
  text-align: center;
}

.gobox-booking__total-line strong {
  display: block;
  color: #221616;
  font-size: clamp(1.36rem, 1.32vw, 1.72rem);
  line-height: 1.22;
}

.gobox-booking__total-line small {
  display: block;
  margin-top: 8px;
  color: #5a4d4d;
  font-size: clamp(0.84rem, 0.8vw, 0.94rem);
  line-height: 1.45;
}

.gobox-booking__message {
  margin-top: 24px;
  color: var(--gobox-ui-accent) !important;
  font-size: clamp(1.06rem, 1.02vw, 1.26rem);
  font-weight: 700;
}

.gobox-booking__step-error {
  min-height: 22px;
  margin-top: 10px;
  color: #9f1239;
  font-size: clamp(0.9rem, 0.86vw, 1rem);
  font-weight: 700;
  text-align: center;
}

.gobox-booking__actions {
  margin-top: 24px;
  gap: 12px;
}

.gobox-booking__actions--spread {
  justify-content: space-between;
}

.gobox-booking__btn {
  min-width: 168px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-size: clamp(0.97rem, 0.9vw, 3.06rem);
  font-weight: 700;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.gobox-booking__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 18px rgba(22, 8, 8, 0.2);
}

.gobox-booking__btn:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
}

.gobox-booking__btn--dark {
  background: linear-gradient(180deg, #3a1a1a 0%, #240909 100%);
}

.gobox-booking__btn--accent {
  background: linear-gradient(180deg, #f04c31 0%, #da2f1c 100%);
}

.gobox-booking__service-btn:focus-visible,
.gobox-booking__btn:focus-visible,
.gobox-booking__duration-card:focus-visible,
.gobox-booking__placement-card:focus-visible,
.gobox-booking__field-block input:focus-visible,
.gobox-booking__field-block textarea:focus-visible,
.gobox-booking__link-btn:focus-visible,
.gobox-booking__modal-fields input:focus-visible,
.gobox-booking__modal-fields textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--gobox-ui-focus);
}

.gobox-booking__summary {
  max-width: 336px;
  margin-top: 0;
  padding: 22px 20px 18px;
  border: 1px solid var(--gobox-ui-border-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--gobox-ui-shadow);
  backdrop-filter: blur(2px);
}

.gobox-booking__summary h3 {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6cbcb;
  color: var(--gobox-ui-ink);
  font-size: var(--gobox-ui-summary-title-size);
  font-weight: 700;
  line-height: 1.12;
}

.gobox-booking__summary-row {
  min-height: 48px;
  padding: 8px 0;
  border-bottom-color: #e6dddd;
}

.gobox-booking__summary-row span {
  color: #312727;
  font-size: clamp(15px, 0.82vw, 15px);
  line-height: 1.34;
}

.gobox-booking__summary-row i {
  border-color: #493c3c;
}

.gobox-booking__summary-row.is-complete i {
  border-color: var(--gobox-ui-accent);
  background: rgba(239, 58, 36, 0.08);
}

.gobox-booking__summary-row.is-complete i::after {
  border-left-color: var(--gobox-ui-accent-dark);
  border-bottom-color: var(--gobox-ui-accent-dark);
}

.gobox-booking__summary-total.is-visible {
  font-size: clamp(1.02rem, 0.98vw, 1.16rem);
  font-weight: 700;
}

.gobox-booking__summary-cta {
  margin-top: 14px;
}

.gobox-booking__summary-cta .gobox-booking__btn {
  width: 100%;
}

.gobox-booking__runtime-notice {
  border-radius: 12px;
  border-width: 1px;
  box-shadow: 0 10px 18px rgba(17, 10, 10, 0.06);
  font-size: 0.95rem;
}

.gobox-booking__toasts {
  right: 18px;
  top: 16px;
}

.gobox-booking__modal-panel {
  border-radius: 18px;
  border: 1px solid var(--gobox-ui-border);
  box-shadow: 0 22px 44px rgba(20, 10, 10, 0.26);
}

.gobox-booking__modal-panel>p {
  color: var(--gobox-ui-copy);
}

.gobox-booking__field-block select {
  width: 100%;
  border: 1px solid #d4d8de;
  border-radius: 12px;
  background: #fff;
  color: var(--gobox-ui-ink);
  min-height: 52px;
  padding: 0 42px 0 15px;
  font-size: var(--gobox-ui-input-size);
  line-height: 1.35;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6f6565 50%),
    linear-gradient(135deg, #6f6565 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.gobox-booking__field-block select:focus-visible {
  outline: none;
  border-color: var(--gobox-ui-accent);
  box-shadow: 0 0 0 3px var(--gobox-ui-focus);
}

.gobox-booking__field-block--step5 {
  max-width: 790px;
}

.gobox-booking__placement-wrap h3 {
  margin-bottom: 10px;
}

.gobox-booking__driveway-wrap {
  margin-top: 12px;
}

.gobox-booking__driveway-wrap[hidden] {
  display: none !important;
}

.gobox-booking__driveway-wrap h4 {
  margin: 0 0 10px;
  color: #2f2323;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: var(--gobox-ui-label-size);
  font-weight: 700;
  line-height: 1.3;
}

.gobox-booking__placement-grid--driveway {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 16px 22px;
}

.gobox-booking__placement-grid--driveway .gobox-booking__placement-card {
  min-height: 82px;
  padding: 14px 14px;
  grid-template-areas: "title dot";
}

.gobox-booking__placement-grid--driveway .gobox-booking__placement-title {
  margin: 0;
  font-size: clamp(1.1rem, 1vw, 1.34rem);
  font-weight: 700;
}

.gobox-booking__placement-grid--driveway .gobox-booking__placement-desc {
  display: none;
}

.gobox-booking__field-block--comments {
  margin-top: 14px;
}

.gobox-booking__placement-help {
  display: block;
  margin: 0 0 8px;
  color: #8e2a1d;
  font-size: clamp(0.88rem, 0.84vw, 0.96rem);
  line-height: 1.38;
}

.gobox-booking__field-block--comments textarea[data-placement-comments] {
  min-height: 92px;
}

@media (max-width: 1220px) {
  .gobox-booking__layout {
    grid-template-columns: 1fr;
  }

  .gobox-booking__size-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gobox-booking__summary {
    position: static;
    top: auto;
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .gobox-booking__content {
    padding: 26px 12px 34px;
  }

  .gobox-booking__main {
    border-radius: 18px;
    padding: 28px 16px 24px;
  }

  .gobox-booking__step h2 {
    font-size: clamp(1.84rem, 7.4vw, 2.34rem);
  }

  .gobox-booking__step>p {
    margin-bottom: 20px;
    font-size: clamp(0.98rem, 3.85vw, 1.12rem);
  }

  .gobox-booking__service-cards,
  .gobox-booking__duration-grid,
  .gobox-booking__rate-cards,
  .gobox-booking__placement-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
  }

  .gobox-booking__service-cards,
  .gobox-booking__size-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gobox-booking__field-block,
  .gobox-booking__estimate-panel,
  .gobox-booking__placement-wrap,
  .gobox-booking__rate-cards,
  .gobox-booking__actions,
  .gobox-booking__summary {
    max-width: 100%;
  }

  .gobox-booking__placement-grid--driveway {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gobox-booking__content {
    padding: 22px 10px 30px;
  }

  .gobox-booking__progress {
    margin-bottom: 22px;
    width: min(740px, calc(100% - 16px));
    padding: 0 14px;
  }

  .gobox-booking__progress::before,
  .gobox-booking__progress::after {
    left: 14px;
    right: 14px;
  }

  .gobox-booking__step h2 {
    font-size: clamp(1.58rem, 8.8vw, 1.98rem);
  }

  .gobox-booking__field-block input,
  .gobox-booking__field-block textarea,
  .gobox-booking__modal-fields input,
  .gobox-booking__modal-fields textarea,
  .gobox-booking__autocomplete-host .gobox-booking__place-autocomplete,
  .gobox-booking__autocomplete-host gmp-place-autocomplete,
  .gobox-booking__autocomplete-host gmp-basic-place-autocomplete {
    min-height: 48px;
  }

  .gobox-booking__service-cards,
  .gobox-booking__size-cards {
    grid-template-columns: 1fr;
  }

  .gobox-booking__size-card {
    padding-bottom: 80px;
  }

  .gobox-booking__qty {
    bottom: 14px;
  }

  .gobox-booking__qty span {
    min-width: 80px;
  }

  .gobox-booking__actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gobox-booking__actions .gobox-booking__btn {
    width: 100%;
    min-width: 0;
  }

  .gobox-booking__summary {
    padding: 18px 14px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .gobox-booking *,
  .gobox-booking *::before,
  .gobox-booking *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Permanent edge-to-edge alignment layer for step header, timeline, and layout stability. */
.gobox-booking {
  --gobox-ui-font: "Roboto", "Segoe UI", Arial, sans-serif;
  --gobox-ui-heading: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  background: #ffffff !important;
  color: #261a1a;
}

.gobox-booking__content {
  max-width: 1360px;
  padding: 36px 24px 56px;
}

.gobox-booking__progress {
  --gobox-progress-pad: 38px;
  width: min(780px, calc(100% - 30px));
  height: 38px;
  margin: 0 auto 42px;
  border: 0;
  border-radius: 3px;
  background: #ededf0;
  padding: 0 var(--gobox-progress-pad);
  justify-content: space-between;
}

.gobox-booking__progress::before {
  left: var(--gobox-progress-pad);
  right: var(--gobox-progress-pad);
  height: 2px;
  border-radius: 99px;
  background: #d7a5a5;
}

.gobox-booking__progress::after {
  left: var(--gobox-progress-pad);
  right: auto;
  width: calc((100% - (var(--gobox-progress-pad) * 2)) * var(--gobox-progress-scale));
  height: 2px;
  border-radius: 99px;
  transform: translateY(-50%);
  transform-origin: left center;
  background: #ef3a24;
  transition: width 0.42s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.gobox-booking__progress span {
  width: 10px;
  height: 10px;
  background: #e9a9a4;
  transition: transform 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.gobox-booking__progress span.is-active {
  background: #ef3a24;
  box-shadow: 0 0 0 2px rgba(239, 58, 36, 0.16);
  transform: scale(1.05);
}

.gobox-booking__hero {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.gobox-booking__hero h2 {
  margin: 0 auto 10px;
  color: #2b1c1c;
  font-family: var(--gobox-ui-heading);
  font-size: clamp(30px, 1.9vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.2px;
}

.gobox-booking__hero p {
  margin: 0 auto;
  color: #3e3434;
  font-family: var(--gobox-ui-font);
  font-size: clamp(14px, 0.9vw, 20px);
  font-weight: 400;
  line-height: 1.35;
}

.gobox-booking__step>h2,
.gobox-booking__step>p:first-of-type {
  display: none !important;
}

.gobox-booking__layout {
  grid-template-columns: minmax(0, 980px) minmax(0, 270px);
  column-gap: 52px;
  align-items: start;
  justify-content: center;
}

.gobox-booking__main {
  max-width: 980px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gobox-booking[data-current-step="1"] .gobox-booking__layout {
  grid-template-columns: minmax(0, 980px);
}

.gobox-booking[data-current-step="1"] .gobox-booking__summary {
  display: none !important;
}

.gobox-booking__step {
  will-change: transform, opacity;
}

.gobox-booking[data-step-direction="forward"] .gobox-booking__step.is-active {
  animation: gobox-step-enter-forward-smooth 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.gobox-booking[data-step-direction="backward"] .gobox-booking__step.is-active {
  animation: gobox-step-enter-backward-smooth 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes gobox-step-enter-forward-smooth {
  from {
    opacity: 0;
    transform: translateX(22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gobox-step-enter-backward-smooth {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gobox-booking__summary {
  max-width: 270px;
  margin: 0;
  padding: 0 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.gobox-booking__summary h3 {
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(45, 31, 31, 0.45);
  color: #2e1f1f;
  font-family: var(--gobox-ui-heading);
  font-size: clamp(20px, 1.3vw, 26px);
  font-weight: 400;
  line-height: 1.08;
}

.gobox-booking__summary-row {
  min-height: 48px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(45, 31, 31, 0.12);
}

.gobox-booking__summary-row span {
  color: #302424;
  font-size: clamp(15px, 0.82vw, 15px);
  line-height: 1.3;
}

.gobox-booking__summary-total.is-visible {
  font-size: clamp(14px, 0.9vw, 17px);
}

.gobox-booking__summary-cta .gobox-booking__btn {
  font-size: clamp(12px, 0.78vw, 14px);
}

.gobox-booking__actions {
  max-width: 100%;
}

@media (max-width: 1220px) {
  .gobox-booking__layout {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 28px;
  }

  .gobox-booking__summary {
    max-width: 100%;
    margin-top: 4px;
  }
}

@media (max-width: 960px) {
  .gobox-booking__content {
    padding: 28px 12px 36px;
  }

  .gobox-booking__hero {
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .gobox-booking__hero h2 {
    font-size: clamp(28px, 5.8vw, 36px);
  }

  .gobox-booking__hero p {
    font-size: clamp(14px, 3.2vw, 17px);
  }

  .gobox-booking__summary h3 {
    font-size: clamp(19px, 4.9vw, 24px);
  }
}

@media (max-width: 640px) {
  .gobox-booking__progress {
    --gobox-progress-pad: 20px;
    margin-bottom: 26px;
    height: 30px;
    width: min(760px, calc(100% - 8px));
  }
}

/* Final nav-button alignment and color override */
.gobox-booking {
  --gobox-summary-col-width: 270px;
  --gobox-layout-col-gap: 52px;
}

.gobox-booking .gobox-booking__actions.gobox-booking__actions--spread {
  max-width: none;
  width: calc(100% + var(--gobox-summary-col-width) + var(--gobox-layout-col-gap));
  margin-right: calc(-1 * (var(--gobox-summary-col-width) + var(--gobox-layout-col-gap)));
}

.gobox-booking .gobox-booking__actions [data-back],
.gobox-booking .gobox-booking__actions [data-next] {
  background: #250505 !important;
  color: #fff !important;
}

.gobox-booking .gobox-booking__actions [data-back]:hover:not(:disabled),
.gobox-booking .gobox-booking__actions [data-next]:hover:not(:disabled) {
  filter: brightness(1.08);
}

@media (max-width: 1220px) {
  .gobox-booking .gobox-booking__actions.gobox-booking__actions--spread {
    width: 100%;
    margin-right: 0;
  }
}

/* Final toast placement: center screen (not top-right) */
.gobox-booking .gobox-booking__toasts {
  position: fixed;
  inset: 0;
  z-index: 21474836400;
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 24px;
  gap: 12px;
  pointer-events: none;
}

.gobox-booking .gobox-booking__toasts::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(23, 8, 8, 0.2) 0%, rgba(23, 8, 8, 0.28) 100%);
  opacity: 0;
  transition: opacity 0.24s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.gobox-booking .gobox-booking__toasts.is-active::before {
  opacity: 1;
}

.gobox-booking .gobox-booking__toast {
  width: min(700px, calc(100vw - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 16px 56px 16px 54px;
  border-radius: 14px;
  border-width: 1px;
  border-style: solid;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  box-shadow: 0 16px 40px rgba(22, 9, 9, 0.26);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: auto;
}

.gobox-booking .gobox-booking__toast::before {
  content: "!";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
}

.gobox-booking .gobox-booking__toast.is-error {
  background: linear-gradient(180deg, #fff8f8 0%, #ffecec 100%);
  border-color: #f5b7b7;
  color: #7c1d1d;
}

.gobox-booking .gobox-booking__toast.is-error::before {
  background: #f04438;
  color: #fff;
}

.gobox-booking .gobox-booking__toast.is-success {
  background: linear-gradient(180deg, #f4fff8 0%, #e9fff2 100%);
  border-color: #9adfb6;
  color: #115d37;
}

.gobox-booking .gobox-booking__toast.is-success::before {
  content: "✓";
  background: #17b26a;
  color: #fff;
}

.gobox-booking .gobox-booking__toast-text {
  display: block;
}

.gobox-booking .gobox-booking__toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(48, 28, 28, 0.14);
  color: #3a2323;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gobox-booking .gobox-booking__toast-close:hover {
  background: rgba(48, 28, 28, 0.26);
  transform: scale(1.06);
}

.gobox-booking .gobox-booking__toast-close:focus-visible {
  outline: 2px solid rgba(36, 14, 14, 0.36);
  outline-offset: 1px;
}

@media (max-width: 640px) {
  .gobox-booking .gobox-booking__toasts {
    padding: 12px;
  }

  .gobox-booking .gobox-booking__toast {
    width: calc(100vw - 24px);
    padding: 14px 46px 14px 48px;
    font-size: 15px;
  }

  .gobox-booking .gobox-booking__toast-close {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 19px;
  }
}

/* Hard override: global full-screen centered toast layer */
.gobox-booking__toasts--global {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  transform: none !important;
  z-index: 21474830000 !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  gap: 12px !important;
  pointer-events: none !important;
}

.gobox-booking__toasts--global::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(23, 8, 8, 0.2) 0%, rgba(23, 8, 8, 0.28) 100%);
  opacity: 0;
  transition: opacity 0.24s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none !important;
}

.gobox-booking__toasts--global.is-active::before {
  opacity: 1;
}

.gobox-booking__toasts--global .gobox-booking__toast {
  width: fit-content !important;
  max-width: calc(100vw - 48px) !important;
  position: relative !important;
  z-index: 2 !important;
  pointer-events: auto !important;
}

.gobox-booking__toasts--global .gobox-booking__toast-text {
  display: inline-block !important;
  padding-right: 48px !important;
}

.gobox-booking__toasts--global .gobox-booking__toast-close {
  position: absolute !important;
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%) !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(52, 24, 24, 0.25) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  color: #3a2323 !important;
  font-size: 26px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  z-index: 3 !important;
  pointer-events: auto !important;
}

.gobox-booking__toasts--global .gobox-booking__toast-close:hover {
  background: #fff !important;
  transform: translateY(-50%) scale(1.05) !important;
}

@media (max-width: 640px) {
  .gobox-booking__toasts--global {
    padding: 12px !important;
  }

  .gobox-booking__toasts--global .gobox-booking__toast {
    width: fit-content !important;
    max-width: calc(100vw - 24px) !important;
  }

  .gobox-booking__toasts--global .gobox-booking__toast-text {
    padding-right: 42px !important;
  }

  .gobox-booking__toasts--global .gobox-booking__toast-close {
    width: 30px !important;
    height: 30px !important;
    right: 8px !important;
    font-size: 22px !important;
  }
}

/* Unified inline step-error spacing across step sections */
.gobox-booking .gobox-booking__step[data-step] .gobox-booking__step-error {
  display: block;
  min-height: 34px;
  margin-top: 26px !important;
  margin-bottom: 30px !important;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 640px) {
  .gobox-booking .gobox-booking__step[data-step] .gobox-booking__step-error {
    min-height: 30px;
    margin-top: 20px !important;
    margin-bottom: 24px !important;
  }
}

/* Final modal UX layer: left summary + strict validation + success state */
html.gobox-booking-modal-open,
body.gobox-booking-modal-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.gobox-booking-modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.gobox-booking .gobox-booking__modal {
  z-index: 2147483646 !important;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  isolation: isolate;
}

.gobox-booking .gobox-booking__modal-backdrop {
  z-index: 0;
}

.gobox-booking .gobox-booking__modal-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 22px;
}

.gobox-booking .gobox-booking__loading {
  z-index: 2147483647 !important;
}

.gobox-booking .gobox-booking__distance-warning[hidden] {
  display: none !important;
}

.gobox-booking .gobox-booking__distance-warning {
  position: fixed;
  inset: 0;
  z-index: 2147483646 !important;
  display: grid;
  place-items: center;
  padding: 18px;
}

.gobox-booking .gobox-booking__distance-warning-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 10, 10, 0.54);
  backdrop-filter: blur(2px);
}

.gobox-booking .gobox-booking__distance-warning-panel {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 24px));
  border-radius: 22px;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid rgba(239, 58, 36, 0.14);
  box-shadow: 0 22px 60px rgba(33, 15, 15, 0.25);
  text-align: center;
}

.gobox-booking .gobox-booking__distance-warning-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff3f0 0%, #ffe0d9 100%);
  color: #ef3a24;
  border: 2px solid rgba(239, 58, 36, 0.18);
  box-shadow: 0 12px 28px rgba(239, 58, 36, 0.16);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.gobox-booking .gobox-booking__distance-warning-panel h3 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 1.9vw, 2.1rem);
  line-height: 1.14;
  color: #241717;
}

.gobox-booking .gobox-booking__distance-warning-message {
  margin: 0 auto 18px;
  max-width: 34ch;
  font-size: 1.58rem;
  line-height: 1.56;
  color: #584e4e;
}

.gobox-booking .gobox-booking__distance-warning-details {
  margin: 0 auto 22px;
  max-width: 320px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.gobox-booking .gobox-booking__distance-warning-details>div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 12px 14px;
  border-radius: 14px;
  background: #faf6f5;
  border: 1px solid rgba(36, 23, 23, 0.08);
}

.gobox-booking .gobox-booking__distance-warning-details dt {
  margin: 0;
  font-weight: 700;
  color: #382828;
}

.gobox-booking .gobox-booking__distance-warning-details dd {
  margin: 0;
}

.gobox-booking .gobox-booking__distance-warning-details a {
  color: #ef3a24;
  font-weight: 700;
  text-decoration: none;
}

.gobox-booking .gobox-booking__distance-warning-details a:hover,
.gobox-booking .gobox-booking__distance-warning-details a:focus-visible {
  text-decoration: underline;
}

.gobox-booking .gobox-booking__distance-warning-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gobox-booking .gobox-booking__distance-warning-actions .gobox-booking__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 52px;
  padding-inline: 24px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.gobox-booking .gobox-booking__modal-body {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.gobox-booking .gobox-booking__modal-summary-panel {
  border: 1px solid #e4e0df;
  border-radius: 14px;
  padding: 16px 14px;
  background: linear-gradient(180deg, #fffefe 0%, #faf8f8 100%);
  box-shadow: 0 8px 16px rgba(20, 10, 10, 0.05);
}

.gobox-booking .gobox-booking__modal-summary-panel h4 {
  margin: 0 0 6px;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.24rem, 1.16vw, 1.41rem);
  color: #251717;
}

.gobox-booking .gobox-booking__modal-summary-panel p {
  margin: 0 0 12px;
  font-size: clamp(1.03rem, 0.98vw, 1.11rem);
  line-height: 1.42;
  color: #564b4b;
}

.gobox-booking .gobox-booking__modal-summary-list {
  margin: 0;
}

.gobox-booking .gobox-booking__modal-summary-list>div {
  display: grid;
  gap: 4px;
  padding: 9px 0;
  border-top: 1px solid rgba(37, 23, 23, 0.12);
}

.gobox-booking .gobox-booking__modal-summary-list>div:first-child {
  border-top: 0;
  padding-top: 0;
}

.gobox-booking .gobox-booking__modal-summary-list dt {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6e6060;
}

.gobox-booking .gobox-booking__modal-summary-list dd {
  margin: 0;
  color: #231818;
  font-size: clamp(1.09rem, 1.08vw, 1.19rem);
  line-height: 1.34;
}

.gobox-booking .gobox-booking__modal-form-wrap h3 {
  margin: 0 0 6px;
  font-size: clamp(31px, 1.9vw, 37px);
  line-height: 1.12;
}

.gobox-booking .gobox-booking__modal-form-wrap>p {
  margin: 0 0 14px;
  font-size: clamp(21px, 1.2vw, 27px);
  line-height: 1.4;
}

.gobox-booking .gobox-booking__modal-fields label {
  gap: 7px;
  font-size: clamp(20px, 1.14vw, 26px);
}

.gobox-booking .gobox-booking__modal-fields input,
.gobox-booking .gobox-booking__modal-fields textarea {
  min-height: 58px;
  font-size: clamp(19px, 1.08vw, 25px);
  padding-left: 17px;
  padding-right: 17px;
}

.gobox-booking .gobox-booking__modal-fields textarea {
  min-height: 116px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.gobox-booking .gobox-booking__modal-actions .gobox-booking__btn {
  min-height: 52px;
  font-size: 19px;
}

.gobox-booking .gobox-booking__modal-form-wrap .gobox-booking__step-error {
  min-height: 24px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.45;
}

.gobox-booking .gobox-booking__modal-fields input.is-invalid,
.gobox-booking .gobox-booking__modal-fields textarea.is-invalid {
  border-color: #ef3a24 !important;
  box-shadow: 0 0 0 3px rgba(239, 58, 36, 0.16) !important;
}

.gobox-booking .gobox-booking__modal-success {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: 26px 18px;
  animation: gobox-modal-success-in 0.26s ease;
}

.gobox-booking .gobox-booking__modal-success-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #17b26a 0%, #109455 100%);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(16, 148, 85, 0.26);
}

.gobox-booking .gobox-booking__modal-success h3 {
  margin: 0;
  font-size: clamp(1.64rem, 1.55vw, 2.19rem);
}

.gobox-booking .gobox-booking__modal-success p {
  margin: 0;
  max-width: 52ch;
  color: #332929;
  font-size: clamp(1.17rem, 1.15vw, 1.31rem);
  line-height: 1.45;
}

.gobox-booking .gobox-booking__modal-success small {
  margin-top: 4px;
  color: #5f5454;
  font-size: 1.07rem;
}

.gobox-booking .gobox-booking__modal-success small span {
  display: inline-block;
  min-width: 1ch;
  font-weight: 700;
  color: #2c1a1a;
}

.gobox-booking [data-modal-form-view][hidden],
.gobox-booking [data-modal-success-view][hidden] {
  display: none !important;
}

@keyframes gobox-modal-success-in {
  from {
    transform: scale(0.98) translateY(10px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .gobox-booking .gobox-booking__modal-panel {
    width: min(760px, calc(100% - 20px));
    padding: 14px;
  }

  .gobox-booking .gobox-booking__modal-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gobox-booking .gobox-booking__modal-summary-panel {
    order: 1;
  }

  .gobox-booking .gobox-booking__modal-form-wrap {
    order: 2;
  }

  .gobox-booking .gobox-booking__distance-warning-panel {
    width: min(520px, calc(100% - 20px));
    padding: 22px 18px 18px;
  }
}

/* Final inline-message alignment + spacing layer */
.gobox-booking .gobox-booking__step[data-step] .gobox-booking__step-error {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 0;
  min-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  color: transparent !important;
}

.gobox-booking .gobox-booking__step[data-step] .gobox-booking__message {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 56px !important;
  margin-bottom: 56px !important;
  padding-top: 6px;
  padding-bottom: 22px;
  text-align: center;
  color: #ef3a24 !important;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 1.4vw, 34px);
  line-height: 1.25;
}

/* Align message center with hero title/subtitle center when summary column is visible */
@media (min-width: 1221px) {

  .gobox-booking[data-current-step="2"] .gobox-booking__step[data-step="2"] .gobox-booking__message,
  .gobox-booking[data-current-step="3"] .gobox-booking__step[data-step="3"] .gobox-booking__message,
  .gobox-booking[data-current-step="4"] .gobox-booking__step[data-step="4"] .gobox-booking__message,
  .gobox-booking[data-current-step="5"] .gobox-booking__step[data-step="5"] .gobox-booking__message {
    width: calc(100% + 308px);
    max-width: none;
    margin-right: -308px;
  }
}

@media (min-width: 1221px) and (max-width: 1400px) {

  .gobox-booking[data-current-step="2"] .gobox-booking__step[data-step="2"] .gobox-booking__message,
  .gobox-booking[data-current-step="3"] .gobox-booking__step[data-step="3"] .gobox-booking__message,
  .gobox-booking[data-current-step="4"] .gobox-booking__step[data-step="4"] .gobox-booking__message,
  .gobox-booking[data-current-step="5"] .gobox-booking__step[data-step="5"] .gobox-booking__message {
    width: calc(100% + 302px);
    margin-right: -302px;
  }
}

.gobox-booking .gobox-booking__modal-form-wrap .gobox-booking__step-error {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 18px !important;
  margin-bottom: 18px !important;
  text-align: center;
  color: #ef3a24 !important;
}

@media (max-width: 640px) {
  .gobox-booking .gobox-booking__step[data-step] .gobox-booking__message {
    margin-top: 38px !important;
    margin-bottom: 36px !important;
    padding-bottom: 16px;
    font-size: clamp(20px, 5.2vw, 26px);
  }
}

/* Async loading polish: step-4 rate skeleton + global request overlay */
.gobox-booking .gobox-booking__rate-cards {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.gobox-booking .gobox-booking__rate-cards.is-loading {
  opacity: 1;
  pointer-events: none;
}

.gobox-booking .gobox-booking__rate-cards[data-rate-state="ready"] .gobox-booking__rate-card {
  animation: gobox-rate-card-in 0.32s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.gobox-booking .gobox-booking__rate-card--loading {
  position: relative;
  overflow: hidden;
  border-color: #d8d1d1;
  background: linear-gradient(180deg, #f8f8f8 0%, #f2f2f2 100%);
}

.gobox-booking .gobox-booking__rate-card--loading::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.48) 45%,
      rgba(255, 255, 255, 0) 100%);
  animation: gobox-rate-shimmer 1.1s ease-in-out infinite;
}

.gobox-booking .gobox-booking__rate-card--loading h3 {
  color: #4f4545;
}

.gobox-booking .gobox-booking__rate-skeleton-line {
  display: block;
  width: 62%;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: #ddd4d4;
}

.gobox-booking .gobox-booking__rate-skeleton-line.is-wide {
  width: 84%;
}

.gobox-booking .gobox-booking__rate-card--loading strong {
  color: #5a4f4f;
  letter-spacing: 0.5px;
}

.gobox-booking .gobox-booking__rate-loading-note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  text-align: center;
  color: #5d5050;
  font-size: clamp(0.9rem, 0.82vw, 0.98rem);
  font-weight: 600;
}

@keyframes gobox-rate-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@keyframes gobox-rate-card-in {
  from {
    opacity: 0;
    transform: translateY(9px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gobox-booking .gobox-booking__loading {
  opacity: 0;
  transition: opacity 0.2s ease;
  background: rgba(18, 10, 10, 0.56);
  backdrop-filter: blur(2px);
}

.gobox-booking .gobox-booking__loading.is-active {
  opacity: 1;
}

.gobox-booking .gobox-booking__loading-panel {
  width: min(420px, calc(100% - 24px));
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e3dcdc;
  box-shadow: 0 20px 42px rgba(20, 10, 10, 0.3);
  padding: 22px 22px 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.gobox-booking .gobox-booking__spinner {
  width: 54px;
  height: 54px;
  border-width: 4px;
  border-color: rgba(239, 58, 36, 0.16);
  border-top-color: #ef3a24;
  border-right-color: #6f1008;
  box-shadow: 0 0 0 6px rgba(239, 58, 36, 0.07);
}

.gobox-booking .gobox-booking__loading-label {
  margin: 0;
  text-align: center;
  color: #2d1f1f;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.02rem, 0.98vw, 1.16rem);
  line-height: 1.35;
}

.gobox-booking .gobox-booking__loading-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 10px;
}

.gobox-booking .gobox-booking__loading-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ef3a24;
  opacity: 0.25;
  animation: gobox-loading-dot 1s ease-in-out infinite;
}

.gobox-booking .gobox-booking__loading-dots span:nth-child(2) {
  animation-delay: 0.14s;
}

.gobox-booking .gobox-booking__loading-dots span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes gobox-loading-dot {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.28;
  }

  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .gobox-booking .gobox-booking__loading-panel {
    width: min(360px, calc(100% - 18px));
    padding: 18px 16px 14px;
    border-radius: 14px;
  }

  .gobox-booking .gobox-booking__loading-label {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .gobox-booking .gobox-booking__rate-card--loading::after,
  .gobox-booking .gobox-booking__loading-dots span,
  .gobox-booking .gobox-booking__rate-cards[data-rate-state="ready"] .gobox-booking__rate-card,
  .gobox-booking .gobox-booking__spinner {
    animation: none !important;
  }
}

/* Desktop alignment guard for Step 4 content */
@media (min-width: 1221px) {

  .gobox-booking[data-current-step="4"] .gobox-booking__step[data-step="4"] .gobox-booking__field-block,
  .gobox-booking[data-current-step="4"] .gobox-booking__step[data-step="4"] .gobox-booking__rate-cards {
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Step 5 driveway cards: dynamic image layout */
.gobox-booking .gobox-booking__placement-grid--driveway {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gobox-booking .gobox-booking__placement-card--driveway {
  min-height: 300px;
  padding: 12px;
  grid-column: span 1;
  grid-row: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-areas:
    "title dot"
    "image image";
  row-gap: 10px;
  align-content: start;
  border-radius: 16px;
  border-color: rgba(155, 82, 68, 0.3);
}

.gobox-booking .gobox-booking__placement-card--driveway .gobox-booking__placement-title {
  margin: 0;
  font-size: clamp(1.05rem, 0.98vw, 1.3rem);
  font-weight: 700;
}

.gobox-booking .gobox-booking__placement-image-wrap {
  grid-area: image;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(155, 82, 68, 0.2);
  background: #f2f2f2;
}

.gobox-booking .gobox-booking__placement-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.gobox-booking .gobox-booking__placement-card--driveway .gobox-booking__placement-desc {
  margin: 2px 0 0;
  color: #5c4f4f;
  font-size: 0.9rem;
  line-height: 1.35;
}

@media (max-width: 960px) {
  .gobox-booking .gobox-booking__placement-grid--driveway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gobox-booking .gobox-booking__placement-card--driveway {
    min-height: 260px;
  }

}

@media (max-width: 640px) {
  .gobox-booking .gobox-booking__placement-grid--driveway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gobox-booking .gobox-booking__placement-card--driveway {
    min-height: 220px;
  }

}

/* Step 5 delivery fee: transport info icon + popup summary */
.gobox-booking .gobox-booking__estimate-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gobox-booking .gobox-booking__transport-info-btn {
  width: 21px;
  height: 21px;
  border-radius: 999px;
  border: 1px solid rgba(139, 43, 22, 0.5);
  background: #fff;
  color: #8a2316;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gobox-booking .gobox-booking__transport-info-btn:hover {
  background: #ef3a24;
  border-color: #ef3a24;
  color: #fff;
  transform: translateY(-1px);
}

.gobox-booking .gobox-booking__transport-info-btn:focus-visible {
  outline: 2px solid rgba(239, 58, 36, 0.28);
  outline-offset: 2px;
}

.gobox-booking .gobox-booking__transport-info-btn[hidden] {
  display: none !important;
}

.gobox-booking .gobox-booking__transport-cheatsheet {
  display: none !important;
}

.gobox-booking .gobox-booking__transport-popup[hidden] {
  display: none !important;
}

.gobox-booking .gobox-booking__transport-popup {
  position: fixed;
  inset: 0;
  z-index: 2147482800;
  display: grid;
  place-items: center;
  padding: 20px;
}

.gobox-booking .gobox-booking__transport-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 10, 0.56);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.gobox-booking .gobox-booking__transport-popup-panel {
  position: relative;
  width: min(560px, calc(100% - 24px));
  max-height: min(72vh, 640px);
  overflow: auto;
  border-radius: 14px;
  border: 1px solid #e2d8d8;
  background: #fff;
  box-shadow: 0 24px 48px rgba(21, 9, 9, 0.34);
  padding: 18px 20px 16px;
}

.gobox-booking .gobox-booking__transport-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #d8cece;
  background: #fff;
  color: #453737;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gobox-booking .gobox-booking__transport-popup-close:hover {
  background: #f9f6f6;
  border-color: #cdbfbf;
  color: #231717;
}

.gobox-booking .gobox-booking__transport-popup-close:focus-visible {
  outline: 2px solid rgba(239, 58, 36, 0.28);
  outline-offset: 2px;
}

.gobox-booking .gobox-booking__transport-popup-content h4 {
  margin: 0 0 10px;
  padding-right: 34px;
  color: #241a1a;
  font-family: "Roboto Slab", "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.04rem, 0.95vw, 1.16rem);
  font-weight: 700;
  line-height: 1.32;
}

.gobox-booking .gobox-booking__transport-popup-content p {
  margin: 0 0 7px;
  color: #352929;
  font-size: clamp(0.91rem, 0.84vw, 1rem);
  line-height: 1.42;
}

.gobox-booking .gobox-booking__transport-popup-content p:last-child {
  margin-bottom: 0;
}

.gobox-booking .gobox-booking__transport-popup-content p.is-route {
  margin-bottom: 10px;
  color: #241a1a;
  font-weight: 700;
}

.gobox-booking .gobox-booking__transport-popup-content p.is-total {
  margin-top: 3px;
  font-weight: 700;
  color: #201414;
}

.gobox-booking .gobox-booking__transport-popup-content p.is-reference {
  color: #5f5353;
  font-style: italic;
}

.gobox-booking .gobox-booking__transport-popup-content p.is-cheatsheet-title {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #d8cdcd;
  color: #8a2316;
  font-weight: 700;
}

.gobox-booking .gobox-booking__transport-popup-fee-summary {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #e2d8d8;
  border-radius: 10px;
  background: #fcf9f9;
}

.gobox-booking .gobox-booking__transport-popup-fee-summary p.is-cheatsheet-title {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.gobox-booking .gobox-booking__transport-popup-fee-summary p.is-formula {
  margin-top: 6px;
  color: #5b4f4f;
  font-style: italic;
}

@media (max-width: 768px) {
  .gobox-booking .gobox-booking__transport-popup {
    padding: 12px;
  }

  .gobox-booking .gobox-booking__transport-popup-panel {
    width: min(96vw, 460px);
    max-height: 78vh;
    border-radius: 12px;
    padding: 14px 14px 12px;
  }

  .gobox-booking .gobox-booking__transport-popup-content h4 {
    font-size: 1.02rem;
    line-height: 1.3;
  }

  .gobox-booking .gobox-booking__transport-popup-content p {
    font-size: 0.93rem;
    line-height: 1.4;
  }
}

/* Desktop: if exactly two cards are present in a 3-column row, align them to the right side */
@media (min-width: 1221px) {

  .gobox-booking .gobox-booking__service-cards>.gobox-booking__service-card:first-child:nth-last-child(2),
  .gobox-booking .gobox-booking__size-cards>.gobox-booking__size-card:first-child:nth-last-child(2) {
    grid-column: 2;
  }

  .gobox-booking .gobox-booking__service-cards>.gobox-booking__service-card:first-child:nth-last-child(2)+.gobox-booking__service-card,
  .gobox-booking .gobox-booking__size-cards>.gobox-booking__size-card:first-child:nth-last-child(2)+.gobox-booking__size-card {
    grid-column: 3;
  }
}

.gobox-booking__link-btn {
  display: none;
}

/* Book Now CTA button in summary sidebar */
.gobox-booking__summary-cta {
  display: none;
}

.gobox-booking__summary-cta.is-visible {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding-bottom: 10px;
}

.gobox-booking__summary-cta .gobox-booking__btn {
  width: 100%;
  min-height: 52px;
  font-size: clamp(14px, 0.9vw, 16px);
}

.gobox-booking__btn--book-now {
  background: linear-gradient(180deg, #f5e32d 0%, #e8d218 100%);
  color: #250505;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(230, 205, 10, 0.35);
  border: 1.5px solid rgba(200, 170, 0, 0.3);
}

.gobox-booking__btn--book-now:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow: 0 10px 22px rgba(230, 205, 10, 0.45);
}