/** Shopify CDN: Minification failed

Line 1106:0 Unexpected "}"

**/
.db-booking {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: #f4e9da;
}

.db-booking__layout {
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  align-items: start;
  justify-content: center;
  gap: 48px;
}

.db-booking__container {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.db-booking__panel {
  display: none;
  opacity: 0;
  transform: translateX(30px);
}

.db-booking__panel.is-active {
  display: block;
  animation: dbPanelIn 0.35s ease forwards;
}

.db-booking__step {
  margin: 0 0 18px;
  color: #e06a24;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.db-booking__title {
  margin: 0;
  color: #111111;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
}

.db-booking__subtitle {
  max-width: 520px;
  margin: 28px auto 42px;
  color: #333333;
  font-size: 20px;
  line-height: 1.5;
}

.db-booking__field {
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
}

.db-booking__field label {
  display: block;
  margin-bottom: 10px;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
}

.db-booking__field input {
  width: 100%;
  box-sizing: border-box;
  padding: 18px 20px;
  border: 2px solid #e06a24;
  border-radius: 14px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 18px;
}

.db-booking__actions {
  margin-top: 32px;
}

.db-booking__button {
  min-width: 220px;
  padding: 17px 34px;
  border: 0;
  border-radius: 999px;
  background: #e06a24;
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
}

.db-booking__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.db-booking__event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}

.db-booking__event-card {
  padding: 24px 18px;
  border: 2px solid rgba(224, 106, 36, 0.3);
  border-radius: 16px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.db-booking__event-card:hover {
  transform: translateY(-2px);
  border-color: #e06a24;
}

.db-booking__event-card.is-selected {
  border-color: #e06a24;
  background: #e06a24;
  color: #ffffff;
}

.db-booking__actions--split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.db-booking__back {
  min-width: 160px;
  padding: 17px 24px;
  border: 2px solid #e06a24;
  border-radius: 999px;
  background: transparent;
  color: #e06a24;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
}

.db-booking__location-note {
  margin: 12px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.4;
}

@keyframes dbPanelIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@media screen and (max-width: 640px) {
  .db-booking__event-grid {
    grid-template-columns: 1fr;
  }

  .db-booking__actions--split {
    flex-direction: column-reverse;
  }

  .db-booking__button,
  .db-booking__back {
    width: 100%;
  }.db-booking__guest-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 auto 34px;
}

.db-booking__counter-button {
  width: 62px;
  height: 62px;
  border: 2px solid #e06a24;
  border-radius: 50%;
  background: #ffffff;
  color: #e06a24;
  font: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.db-booking__counter-button:hover {
  background: #e06a24;
  color: #ffffff;
  transform: scale(1.05);
}

.db-booking__guest-number {
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.db-booking__guest-number span {
  color: #111111;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}

.db-booking__guest-number small {
  margin-top: 8px;
  color: #666666;
  font-size: 15px;
}

.db-booking__recommendation,
.db-booking__custom-quote {
  max-width: 560px;
  margin: 0 auto;
  padding: 28px;
  border: 2px solid rgba(224, 106, 36, 0.35);
  border-radius: 22px;
  background: #ffffff;
  text-align: left;
}

.db-booking__recommendation-label {
  margin: 0 0 8px;
  color: #e06a24;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.db-booking__recommendation h3,
.db-booking__custom-quote h3 {
  margin: 0;
  color: #111111;
  font-size: 30px;
}

.db-booking__package-details {
  margin: 20px 0;
  padding-left: 20px;
  color: #333333;
  line-height: 1.8;
}

.db-booking__package-price {
  margin: 0;
  color: #e06a24;
  font-size: 36px;
  font-weight: 800;
}

.db-booking__custom-quote {
  text-align: center;
}

.db-booking__custom-quote p {
  margin: 14px 0 0;
  color: #555555;
  line-height: 1.6;
}
}.db-booking__flavour-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(224, 106, 36, 0.12);
  color: #e06a24;
  font-size: 15px;
  font-weight: 800;
}

.db-booking__flavour-message {
  min-height: 24px;
  margin: 0 auto 20px;
  color: #b54d13;
  font-size: 14px;
  font-weight: 700;
}

.db-booking__flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.db-booking__flavour-card {
  position: relative;
  min-height: 190px;
  padding: 22px 16px;
  border: 2px solid rgba(224, 106, 36, 0.25);
  border-radius: 20px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.db-booking__flavour-card:hover {
  transform: translateY(-3px);
  border-color: #e06a24;
  box-shadow: 0 12px 28px rgba(85, 50, 25, 0.1);
}

.db-booking__flavour-card.is-selected {
  border-color: #e06a24;
  background: #fff7ef;
  box-shadow: 0 12px 28px rgba(224, 106, 36, 0.16);
  transform: translateY(-3px);
}

.db-booking__flavour-visual {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255, 255, 255, 0.8),
      transparent 26%
    ),
    var(--flavour-color, #f4e9da);
  box-shadow:
    inset 0 -8px 14px rgba(0, 0, 0, 0.08),
    0 7px 16px rgba(0, 0, 0, 0.08);
}

.db-booking__flavour-name {
  display: block;
  color: #111111;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.db-booking__flavour-price {
  display: block;
  margin-top: 7px;
  color: #e06a24;
  font-size: 14px;
  font-weight: 700;
}

.db-booking__flavour-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e06a24;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.db-booking__flavour-card.is-selected .db-booking__flavour-check {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 760px) {
  .db-booking__flavour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .db-booking__flavour-grid {
    grid-template-columns: 1fr;
  }
}.db-booking__customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.db-booking__customer-grid .db-booking__field {
  max-width: none;
  margin: 0;
}

.db-booking__field--full {
  grid-column: 1 / -1;
}

.db-booking__field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 18px 20px;
  border: 2px solid #e06a24;
  border-radius: 14px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 17px;
  resize: vertical;
}

.db-booking__final-review {
  max-width: 620px;
  margin: 0 auto;
  padding: 32px;
  border: 2px solid rgba(224, 106, 36, 0.3);
  border-radius: 22px;
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
}

.db-booking__deposit-note {
  margin: 20px 0;
  font-weight: 700;
}

.db-booking__checkout-button {
  width: 100%;
  padding: 18px 28px;
  border: 0;
  border-radius: 999px;
  background: #e06a24;
  color: #ffffff;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
}

.db-booking__checkout-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.db-booking__summary {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 2px solid rgba(224, 106, 36, 0.28);
  border-radius: 24px;
  background: #ffffff;
  text-align: left;
  box-shadow: 0 18px 45px rgba(87, 53, 28, 0.1);
}

.db-booking__summary-eyebrow {
  margin: 0 0 8px;
  color: #e06a24;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.db-booking__summary-title {
  margin: 0 0 24px;
  color: #111111;
  font-size: 28px;
  line-height: 1.1;
}

.db-booking__summary-list {
  margin: 0;
}

.db-booking__summary-list > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.db-booking__summary-list dt {
  color: #777777;
  font-size: 13px;
  font-weight: 700;
}

.db-booking__summary-list dd {
  margin: 0;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.db-booking__summary-pricing {
  margin-top: 24px;
}

.db-booking__summary-pricing > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.db-booking__summary-pricing span {
  color: #555555;
  font-size: 14px;
}

.db-booking__summary-pricing strong {
  color: #111111;
  font-size: 21px;
}

.db-booking__summary-deposit strong {
  color: #e06a24;
}

.db-booking__summary-note {
  margin: 18px 0 0;
  color: #777777;
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 980px) {
  .db-booking__layout {
    grid-template-columns: minmax(0, 760px);
  }

  .db-booking__summary {
    position: static;
    order: -1;
  }
}

@media screen and (max-width: 640px) {
  .db-booking__customer-grid {
    grid-template-columns: 1fr;
  }

  .db-booking__field--full {
    grid-column: auto;
  }
}.db-booking__extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.db-booking__extra-card {
  position: relative;
  min-height: 165px;
  padding: 24px;
  border: 2px solid rgba(224, 106, 36, 0.25);
  border-radius: 20px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.db-booking__extra-card:hover {
  transform: translateY(-3px);
  border-color: #e06a24;
  box-shadow: 0 12px 28px rgba(85, 50, 25, 0.1);
}

.db-booking__extra-card.is-selected {
  border-color: #e06a24;
  background: #fff7ef;
  box-shadow: 0 12px 28px rgba(224, 106, 36, 0.16);
}

.db-booking__extra-name {
  display: block;
  padding-right: 36px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.db-booking__extra-description {
  display: block;
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
}

.db-booking__extra-price {
  display: block;
  margin-top: 16px;
  color: #e06a24;
  font-size: 16px;
  font-weight: 800;
}

.db-booking__extra-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(224, 106, 36, 0.35);
  border-radius: 50%;
  background: #ffffff;
  color: transparent;
  font-size: 14px;
  font-weight: 900;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.db-booking__extra-card.is-selected .db-booking__extra-check {
  border-color: #e06a24;
  background: #e06a24;
  color: #ffffff;
  transform: scale(1.05);
}

.db-booking__extras-total {
  margin: 24px 0 0;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
}

@media screen and (max-width: 640px) {
  .db-booking__extras-grid {
    grid-template-columns: 1fr;
  }
}/* V3 — Step 4 definitive layout */

.db-booking__panel[data-step="4"] {
  padding-bottom: 20px;
}

.db-booking__panel[data-step="4"] .db-booking__subtitle {
  margin-bottom: 46px;
}

.db-booking__guest-slider {
  max-width: 620px;
  margin: 0 auto 48px;
  padding: 34px 38px;
  border: 2px solid rgba(224, 106, 36, 0.25);
  border-radius: 24px;
  background: #ffffff;
}

.db-booking__guest-value {
  margin-bottom: 32px;
  text-align: center;
}

.db-booking__guest-value span {
  display: block;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.db-booking__guest-value small {
  display: block;
  margin-top: 10px;
  color: #666666;
  font-size: 15px;
  font-weight: 700;
}

.db-booking__range {
  display: block;
  width: 100%;
  height: 10px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  cursor: pointer;
}

.db-booking__range::-webkit-slider-thumb {
  width: 30px;
  height: 30px;
  appearance: none;
  -webkit-appearance: none;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #e06a24;
  box-shadow: 0 4px 14px rgba(82, 46, 20, 0.25);
}

.db-booking__range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  color: #777777;
  font-size: 13px;
  font-weight: 700;
}

.db-booking__pan-recommendation {
  max-width: 620px;
  margin: 0 auto 52px;
  padding: 30px;
  border-radius: 22px;
  background: rgba(224, 106, 36, 0.1);
}

.db-booking__pan-recommendation h3 {
  margin: 12px 0 14px;
  font-size: 34px;
}

.db-booking__pan-section {
  max-width: 760px;
  margin: 0 auto;
}

.db-booking__pan-heading {
  margin: 0 0 14px;
  line-height: 1.25;
}

.db-booking__pan-subtitle {
  margin: 0 auto 34px;
  line-height: 1.6;
}

.db-booking__pan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.db-booking__pan-card {
  position: relative;
  min-height: 174px;
  padding: 24px 12px 20px;
  border: 2px solid rgba(224, 106, 36, 0.25);
  border-radius: 18px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.db-booking__pan-card:hover {
  transform: translateY(-3px);
  border-color: #e06a24;
}

.db-booking__pan-card.is-selected {
  border-color: #e06a24;
  background: #fff5eb;
  box-shadow: 0 12px 28px rgba(224, 106, 36, 0.16);
  transform: translateY(-3px);
}

.db-booking__pan-card.is-recommended::before {
  content: "Recommended";
  position: absolute;
  top: -11px;
  left: 50%;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e06a24;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: translateX(-50%);
}

.db-booking__pan-number {
  display: block;
  color: #e06a24;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.db-booking__pan-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
}

.db-booking__pan-price {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 800;
}

.db-booking__pan-flavours {
  display: block;
  margin-top: 7px;
  color: #777777;
  font-size: 11px;
  line-height: 1.35;
}

.db-booking__pan-message {
  min-height: 24px;
  margin: 24px 0 0;
  color: #b54d13;
  font-size: 14px;
  font-weight: 700;
}

.db-booking__panel[data-step="4"] .db-booking__actions {
  margin-top: 42px;
}

@media screen and (max-width: 760px) {
  .db-booking__pan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}/* =========================================================
   V3 — STEP 4 PREMIUM POLISH
========================================================= */

.db-booking__panel[data-step="4"] .db-booking__pan-grid {
  grid-template-columns: repeat(5, minmax(145px, 1fr));
  gap: 18px;
}

.db-booking__panel[data-step="4"] .db-booking__pan-card {
  min-height: 190px;
  padding: 28px 16px 22px;
  border-radius: 22px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.db-booking__panel[data-step="4"] .db-booking__pan-card:hover {
  transform: translateY(-4px);
  border-color: #e06a24;
  box-shadow: 0 18px 36px rgba(70, 42, 24, 0.1);
}

.db-booking__panel[data-step="4"] .db-booking__pan-card.is-selected {
  transform: translateY(-5px);
  border-color: #e06a24;
  background: #fff7ef;
  box-shadow:
    0 20px 38px rgba(70, 42, 24, 0.11),
    0 0 0 1px rgba(224, 106, 36, 0.08);
}

.db-booking__panel[data-step="4"] .db-booking__pan-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e06a24;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.db-booking__panel[data-step="4"] .db-booking__pan-card.is-recommended::before {
  content: "★ Recommended";
  top: -13px;
  padding: 6px 12px;
  font-size: 10px;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(224, 106, 36, 0.22);
}

.db-booking__panel[data-step="4"] .db-booking__pan-number {
  font-size: 48px;
}

.db-booking__panel[data-step="4"] .db-booking__pan-label {
  margin-top: 10px;
  font-size: 13px;
}

.db-booking__panel[data-step="4"] .db-booking__pan-price {
  margin-top: 20px;
  font-size: 18px;
}

.db-booking__panel[data-step="4"] .db-booking__pan-flavours {
  margin-top: 9px;
  font-size: 12px;
}

/* Slider più grande e più comodo */

.db-booking__panel[data-step="4"] .db-booking__range {
  height: 12px;
}

.db-booking__panel[data-step="4"]
  .db-booking__range::-webkit-slider-thumb {
  width: 36px;
  height: 36px;
  border-width: 5px;
  box-shadow:
    0 5px 16px rgba(82, 46, 20, 0.28),
    0 0 0 1px rgba(224, 106, 36, 0.12);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.db-booking__panel[data-step="4"]
  .db-booking__range::-webkit-slider-thumb:active {
  transform: scale(1.12);
  box-shadow:
    0 7px 20px rgba(82, 46, 20, 0.32),
    0 0 0 7px rgba(224, 106, 36, 0.12);
}

.db-booking__panel[data-step="4"]
  .db-booking__range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: #e06a24;
  box-shadow: 0 5px 16px rgba(82, 46, 20, 0.28);
}

/* Più respiro tra le sezioni */

.db-booking__panel[data-step="4"] .db-booking__guest-slider {
  margin-bottom: 58px;
}

.db-booking__panel[data-step="4"] .db-booking__pan-recommendation {
  margin-bottom: 62px;
}

.db-booking__panel[data-step="4"] .db-booking__pan-subtitle {
  margin-bottom: 40px;
}

.db-booking__panel[data-step="4"] .db-booking__pan-message {
  margin-top: 30px;
  font-size: 15px;
}

/* Responsive */

@media screen and (max-width: 1100px) {
  .db-booking__panel[data-step="4"] .db-booking__pan-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .db-booking__panel[data-step="4"] .db-booking__pan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .db-booking__panel[data-step="4"] .db-booking__pan-card {
    min-height: 175px;
    padding: 25px 12px 20px;
  }
}/* =========================================================
   V3 — CUSTOMER FORM VALIDATION
========================================================= */

.db-booking__customer-grid .db-booking__field {
  position: relative;
}

.db-booking__customer-grid input,
.db-booking__customer-grid textarea {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.db-booking__customer-grid
  .db-booking__field.is-valid
  input {
  border-color: #30865f;
  background-color: #f5fbf7;
  box-shadow: 0 0 0 3px rgba(48, 134, 95, 0.1);
}

.db-booking__customer-grid
  .db-booking__field.is-invalid
  input {
  border-color: #c54535;
  background-color: #fff8f6;
  box-shadow: 0 0 0 3px rgba(197, 69, 53, 0.1);
}

.db-booking__validation-message {
  min-height: 20px;
  margin: 8px 2px 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.db-booking__field.is-valid
  .db-booking__validation-message {
  color: #30865f;
}

.db-booking__field.is-invalid
  .db-booking__validation-message {
  color: #c54535;
}

.db-booking__field.is-valid label::after {
  content: " ✓";
  color: #30865f;
}

.db-booking__panel[data-step="7"]
  .db-booking__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
}/* ==========================================
   MINIMAL TOP PROGRESS
========================================== */

.db-booking__top-progress{
    margin:0 0 48px;
}

.db-booking__top-progress-step{
    margin:0 0 12px;
    color:#E06A24;
    font-size:13px;
    font-weight:800;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.db-booking__top-progress-track{
    width:100%;
    height:4px;
    background:#ecd9ca;
    border-radius:999px;
    overflow:hidden;
}

.db-booking__top-progress-fill{
    width:12.5%;
    height:100%;
    background:#E06A24;
    border-radius:999px;
    transition:width .35s ease;
}/* =========================================================
   V3 — FINAL REVIEW
========================================================= */

.db-booking__final-review {
  max-width: 760px;
  margin: 0 auto;
  padding: 38px;
  border: 2px solid rgba(224, 106, 36, 0.24);
  border-radius: 26px;
  background: #ffffff;
  text-align: left;
  box-shadow: 0 20px 45px rgba(75, 45, 25, 0.08);
}

.db-booking__review-title {
  margin: 0 0 28px;
  color: #111111;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
}

.db-booking__review-summary {
  display: grid;
  gap: 18px;
}

.db-booking__review-section {
  padding: 24px;
  border-radius: 18px;
  background: #fff8f1;
}

.db-booking__review-section h4 {
  margin: 0 0 16px;
  color: #e06a24;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.db-booking__review-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
}

.db-booking__review-row:last-child {
  border-bottom: 0;
}

.db-booking__review-row span {
  color: #777777;
  font-size: 14px;
}

.db-booking__review-row strong {
  color: #111111;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.db-booking__review-pricing {
  margin-top: 26px;
  padding: 25px 0;
  border-top: 2px solid rgba(224, 106, 36, 0.2);
  border-bottom: 2px solid rgba(224, 106, 36, 0.2);
}

.db-booking__review-pricing > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
}

.db-booking__review-pricing span {
  color: #555555;
  font-size: 15px;
}

.db-booking__review-pricing strong {
  color: #111111;
  font-size: 21px;
}

.db-booking__review-pricing > div:nth-child(2) strong {
  color: #e06a24;
  font-size: 28px;
}

.db-booking__checkout-button {
  width: 100%;
  margin-top: 28px;
  padding: 19px 28px;
  border: 0;
  border-radius: 999px;
  background: #e06a24;
  color: #ffffff;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.db-booking__checkout-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(224, 106, 36, 0.24);
}

.db-booking__checkout-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

@media screen and (max-width: 640px) {
  .db-booking__final-review {
    padding: 24px 18px;
  }

  .db-booking__review-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}/* Step 4 — servizio incluso più evidente */

.db-booking__panel[data-step="4"] .db-booking__pan-message {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 17px 24px;
  border-radius: 14px;
  background: rgba(224, 106, 36, 0.11);
  color: #b94e12;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.015em;
}/* =========================================================
   V3 — PAYMENT TERMS AND CONSENTS
========================================================= */

.db-booking__payment-information {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #fff7ef;
  color: #4f4035;
  font-size: 14px;
  line-height: 1.55;
}

.db-booking__payment-information p {
  margin: 0;
}

.db-booking__payment-information p + p {
  margin-top: 8px;
}

.db-booking__consents {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.db-booking__consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(224, 106, 36, 0.22);
  border-radius: 14px;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.db-booking__consent input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: #e06a24;
  cursor: pointer;
}

.db-booking__consent a {
  color: #c65318;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.db-booking__consent:has(input:checked) {
  border-color: #e06a24;
  background: #fff8f1;
}

.db-booking__consent-message {
  margin: 0;
  color: #b54d13;
  font-size: 13px;
  font-weight: 700;
}

.db-booking__consents.is-complete
  .db-booking__consent-message {
  color: #30865f;
}.db-booking__time-slot-section {
  margin-top: 28px;
}

.db-booking__field-label {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}

.db-booking__time-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.db-booking__time-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 110px;
  padding: 20px;
  border: 2px solid #e7ddd1;
  border-radius: 18px;
  background: #fffaf4;
  color: #171717;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.db-booking__time-slot:hover:not(:disabled) {
  border-color: #e06a24;
  transform: translateY(-2px);
}

.db-booking__time-slot.is-selected {
  border-color: #e06a24;
  background: #fff0e4;
}

.db-booking__time-slot.is-unavailable {
  opacity: 0.45;
  cursor: not-allowed;
}

.db-booking__time-slot-title {
  font-size: 17px;
  font-weight: 700;
}

.db-booking__time-slot-hours {
  margin-top: 7px;
  font-size: 14px;
  color: #6c655e;
}

.db-booking__time-slot-status {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #a13a32;
}

.db-booking__time-slot-message {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.db-booking__time-slot-message.is-neutral {
  color: #6c655e;
}

.db-booking__time-slot-message.is-success {
  color: #276738;
}

.db-booking__time-slot-message.is-error {
  color: #a13a32;
}

.db-booking__field-help {
  margin: 9px 0 0;
  font-size: 14px;
  color: #6c655e;
}

@media screen and (max-width: 749px) {
  .db-booking__time-slots {
    grid-template-columns: 1fr;
  }
}#db-event-time {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #d9cfc4;
  border-radius: 12px;
  background-color: #ffffff;
  color: #171717;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
}

#db-event-time:focus {
  border-color: #e06a24;
  outline: 2px solid rgba(224, 106, 36, 0.15);
  outline-offset: 1px;
}.db-booking__approval-notice {
  margin: 0 auto 32px;
  padding: 22px 24px;
  max-width: 760px;
  border: 1px solid rgba(224, 106, 36, 0.25);
  border-radius: 18px;
  background: rgba(244, 233, 218, 0.55);
  text-align: left;
}

.db-booking__approval-notice strong {
  display: block;
  margin-bottom: 7px;
  color: #e06a24;
  font-size: 16px;
}

.db-booking__approval-notice p {
  margin: 0;
  color: #333;
  line-height: 1.55;
}

.db-booking__review-section-heading {
  margin-bottom: 18px;
}

.db-booking__review-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #e06a24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.db-booking__review-section-heading h4 {
  margin: 0;
}

.db-booking__review-row--notes {
  align-items: flex-start;
}

.db-booking__review-row--notes strong {
  max-width: 65%;
  white-space: normal;
  text-align: right;
}

.db-booking__pricing-note {
  margin: 18px 0 0;
  color: #777;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}