/* ── Booking form ── */
.booking {
  --font-sans: Inter, system-ui, sans-serif;
  --white: #ffffff;
  --purple: #059669;
  --purple-dark: #047857;
  --purple-light: #ecfdf5;
  --purple-selected: #a7f3d0;
  --input-border: #d1d5db;
  --form-text: rgb(19, 22, 40);
  --gray-inactive: #d1d5db;
  --gray-muted: #9ca3af;
  --booking-bg: #ffffff;
  text-align: left;
  margin: 0 auto;
  width: 460px;
  max-width: 100%;
  background: var(--booking-bg);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.15rem 1.25rem 1.25rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.booking__progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 0;
}

.booking__divider {
  height: 1px;
  background: #e5e7eb;
  border: none;
  margin: 1rem 0 1.15rem;
}

.booking__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 5.5rem;
}

.booking__step-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c9d0;
  margin-bottom: 0.4rem;
  transition: background 0.25s, transform 0.25s;
}

.booking__step--active .booking__step-dot {
  background: var(--purple);
  transform: scale(1.2);
}

.booking__step--done .booking__step-dot {
  background: #c4c9d0;
  transform: none;
}

.booking__step-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-muted);
}

.booking__step--active .booking__step-label {
  color: var(--purple);
  font-weight: 600;
}

.booking__step--done .booking__step-label {
  color: var(--gray-muted);
  font-weight: 500;
}

.booking__panel--form.is-submitted #booking-form-content {
  display: none;
}

#booking-form-content {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.booking__panel--form.is-leaving #booking-form-content {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.booking__calendar-meta {
  display: none;
  margin-bottom: 0.85rem;
}

.booking__panel--form.is-submitted .booking__calendar-meta {
  display: block;
  animation: bookingStepIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking__panel--form.is-submitted .booking__calendar-wrap {
  animation: bookingStepIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

@keyframes bookingStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking__calendar-meta-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--form-text);
  line-height: 1.3;
  margin: 0 0 0.45rem;
}

.booking__calendar-meta-duration,
.booking__calendar-meta-detail {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--form-text);
  line-height: 1.35;
  margin: 0 0 0.3rem;
}

.booking__calendar-meta-detail {
  margin-bottom: 0;
}

.booking__calendar-meta-duration .booking__calendar-meta-icon,
.booking__calendar-meta-detail .booking__calendar-meta-icon {
  color: var(--form-text);
}

.booking__calendar-meta-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.35;
  margin: 0 0 0.25rem;
}

.booking__calendar-meta-row:last-child {
  margin-bottom: 0;
}

.booking__calendar-meta-icon {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: #9ca3af;
}

.booking__panel--form {
  display: flex;
  flex-direction: column;
}

.booking__calendar-section {
  margin-top: 1rem;
  max-height: 120rem;
  opacity: 1;
  overflow: visible;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, margin-top 0.4s ease;
}

.booking__calendar-section.is-hidden {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

.booking__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--form-text);
  line-height: 1.3;
  margin-bottom: 0.4rem;
  text-align: left;
}

.booking__intro {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #5c6670;
  line-height: 1.55;
  text-align: left;
  margin-bottom: 0.9rem;
}

.booking__intro p + p {
  margin-top: 1.5em;
}

.booking__fields {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.booking__field {
  margin-bottom: 0.75rem;
}

.booking__field:last-of-type {
  margin-bottom: 0;
}

.booking__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--form-text);
  margin-bottom: 0.3rem;
}

.booking__input,
.booking__select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--form-text);
  background: #f3f4f6;
  border: 1px solid var(--input-border);
  border-radius: 7px;
  padding: 0.58rem 0.75rem;
  min-height: 2.55rem;
  transition: border-color 0.15s, border-width 0.15s, background 0.15s;
}

.booking__input::placeholder {
  color: #9ca3af;
}

.booking__input:focus,
.form-combo__trigger:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.55);
  border-width: 2px;
  padding: calc(0.58rem - 1px) calc(0.75rem - 1px);
  box-shadow: none;
}

.booking__field-error {
  display: none;
  font-size: 0.68rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

.booking__field-error.is-visible {
  display: block;
}

.phone-field {
  display: flex;
  align-items: stretch;
  min-height: 2.55rem;
  background: #f3f4f6;
  border: 2px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  position: relative;
}

.phone-field.is-empty-pulse {
  animation: phone-border-pulse 1.2s ease-in-out infinite;
}

@keyframes phone-border-pulse {
  0%, 16.67%, 83.33%, 100% {
    border-color: rgba(0, 0, 0, 0.16);
  }
  50% {
    border-color: rgba(0, 0, 0, 0.88);
  }
}

.phone-field.is-empty-pulse:focus-within:not(.is-open) {
  animation: phone-border-pulse 1.2s ease-in-out infinite;
}

.phone-field.is-open {
  animation: none;
  border-color: rgba(0, 0, 0, 0.55);
  box-shadow: none;
}

.phone-field:focus-within:not(.is-open):not(.is-empty-pulse) {
  border-color: rgba(0, 0, 0, 0.55);
  border-width: 2px;
}

.phone-field__input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--form-text);
  background: #f3f4f6;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0.58rem 0.75rem;
}

.phone-field__input::placeholder {
  color: #9ca3af;
}

.phone-field__input:focus {
  outline: none;
  box-shadow: none;
}

.booking__phone-row {
  display: block;
}

.country-combo {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-self: stretch;
}

.country-combo__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  min-width: 6.25rem;
  align-self: stretch;
  padding: 0 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--form-text);
  background: #e9ecef;
  border: none;
  border-right: 1px solid #d1d5db;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: none;
  white-space: nowrap;
}

.country-combo__trigger:hover,
.country-combo.is-open .country-combo__trigger {
  background: #e3e7ea;
  box-shadow: none;
}

.country-combo__flag {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0;
}

.country-combo__code {
  font-weight: 600;
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 0;
}

.country-combo__chevron {
  font-size: 0.55rem;
  color: #6b7280;
  flex-shrink: 0;
  margin-left: auto;
}

.country-combo__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 30;
  min-width: 100%;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  padding: 0.3rem;
  margin: 0;
}

.country-combo__menu[hidden] {
  display: none;
}

.country-combo__option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.45rem 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--form-text);
  background: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
}

.country-combo__option:hover,
.country-combo__option.is-selected {
  background: var(--purple-light);
}

.booking__name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.form-combo {
  position: relative;
}

.form-combo.is-open {
  z-index: 20;
}

.form-combo__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.form-combo__label {
  color: var(--form-text);
}

.form-combo__label.is-placeholder {
  color: #9ca3af;
}

.form-combo__chevron {
  font-size: 0.65rem;
  color: #6b7280;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.form-combo__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 30;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  padding: 0.3rem;
  margin: 0;
}

.form-combo__menu[hidden] {
  display: none;
}

.form-combo__option {
  display: block;
  width: 100%;
  padding: 0.55rem 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--form-text);
  background: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
}

.form-combo__option:hover,
.form-combo__option.is-selected {
  background: var(--purple-light);
}

.form-combo.is-open .form-combo__trigger {
  border-color: rgba(0, 0, 0, 0.55);
  border-width: 2px;
  padding: calc(0.58rem - 1px) calc(0.75rem - 1px);
}

.booking__extra {
  display: grid;
  gap: 0.75rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, margin-top 0.4s ease;
}

.booking__extra.is-visible {
  max-height: 42rem;
  opacity: 1;
  margin-top: 0.75rem;
  overflow: visible;
}

.booking__privacy {
  font-size: 0.68rem;
  line-height: var(--leading);
  color: #6b7280;
  margin: 0.75rem 0 0.75rem;
}

.booking__privacy a {
  color: var(--form-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--purple);
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.booking__submit:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.booking__submit svg {
  width: 0.95rem;
  height: 0.95rem;
}

.booking__calendar-wrap {
  position: relative;
  background: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.5rem 0.15rem 0.25rem;
  overflow: visible;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
}

.booking__calendar-view {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.booking__calendar-view[hidden] {
  display: none !important;
}

.booking__calendar-view.is-entering {
  animation: bookingStepIn 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking__calendar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  z-index: 2;
  border-radius: 10px;
  transition: opacity 0.3s, visibility 0.3s;
}

.booking__calendar-overlay p {
  color: var(--form-text);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: var(--leading);
  letter-spacing: var(--tracking);
  max-width: 15rem;
}

.booking__calendar-wrap--unlocked .booking__calendar-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.booking__calendar-wrap--locked .booking__calendar-nav button {
  pointer-events: none;
  opacity: 0.45;
}

.booking__calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.booking__calendar-month {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--form-text);
}

.booking__calendar-nav {
  display: flex;
  gap: 0.35rem;
}

.booking__calendar-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  color: var(--form-text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.booking__calendar-nav button:hover {
  background: var(--purple-light);
  border-color: #bbf7d0;
  color: var(--purple-dark);
}

.booking__calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.booking__cal-dayname {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-muted);
  text-align: center;
  padding: 0.35rem 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking__cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--form-text);
  cursor: default;
  padding: 0.15rem 0;
  transition: background 0.15s, color 0.15s;
}

.booking__cal-day-num {
  line-height: 1;
}

.booking__cal-day-dot {
  width: 5px;
  height: 5px;
  border: none;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 0;
}

.booking__cal-day--empty {
  visibility: hidden;
}

.booking__cal-day--disabled {
  color: var(--gray-inactive);
  cursor: not-allowed;
}

.booking__cal-day--disabled .booking__cal-day-dot {
  display: none;
}

.booking__cal-day--available {
  cursor: pointer;
}

.booking__cal-day--available:hover {
  background: #f3f4f6;
}

.booking__cal-day--available:hover .booking__cal-day-dot {
  background: var(--purple-dark);
}

.booking__cal-day--selected {
  background: var(--purple-light) !important;
  color: var(--purple-dark) !important;
  font-weight: 600;
}

.booking__cal-day--selected .booking__cal-day-dot {
  background: var(--purple-dark);
}

.booking__times-panel {
  display: flex;
  flex-direction: column;
}

.booking__times-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eef0f2;
}

.booking__times-head .booking__times-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--form-text);
  line-height: 1.3;
}

.booking__times-head .booking__times-heading { display: none; }

.booking__confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.booking__confirm-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--purple);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking__confirm-link:hover {
  color: var(--purple-dark);
}

.booking__times-top {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eef0f2;
}

.booking__times-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-family: var(--font-sans);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--form-text);
  cursor: pointer;
  transition: color 0.15s, opacity 0.15s;
  flex-shrink: 0;
  padding: 0.05rem 0.45rem 0 0;
  margin-top: -0.05rem;
}

.booking__times-back:hover {
  color: var(--purple-dark);
  opacity: 0.75;
}

.booking__times-top-text {
  flex: 1;
  min-width: 0;
  padding-top: 0.05rem;
}

.booking__times-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--form-text);
  line-height: 1.3;
}

.booking__times-heading {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b7280;
  margin-top: 0.2rem;
}

.booking__times-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: 14rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}
.booking__times-list::-webkit-scrollbar { width: 4px; }
.booking__times-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 999px; }

.booking__times {
  margin-top: 0;
  padding-top: 0;
}

.booking__times-label {
  display: none;
}

.booking__times-grid {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.booking__time-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.72rem 0.9rem;
  min-height: 2.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: var(--white);
  color: var(--form-text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  text-align: left;
}

.booking__time-slot-label {
  line-height: 1.2;
}

.booking__time-slot-status { display: none; }

.booking__time-slot:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.booking__time-slot--selected {
  background: var(--purple-light);
  border-color: var(--purple);
  color: var(--purple-dark);
  font-weight: 600;
  box-shadow: none;
}

.booking__time-slot--loading {
  animation: slotPulse 0.7s ease-in-out infinite alternate;
}

@keyframes slotPulse {
  from { opacity: 1; }
  to   { opacity: 0.55; }
}

.booking__time-slot--booked,
.booking__time-slot--booked:disabled {
  background: #f9fafb;
  border-color: #eceff2;
  color: #b0b7c0;
  cursor: not-allowed;
  opacity: 1;
}

.booking__time-slot--booked .booking__time-slot-label {
  text-decoration: line-through;
  text-decoration-color: #c4c9d0;
}

.booking__time-slot--booked:hover {
  background: #f3f4f6;
  box-shadow: none;
}

.booking__confirm-panel {
  display: flex;
  flex-direction: column;
}

.booking__confirm-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking__confirm-greeting {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--form-text);
  margin: 0;
  line-height: 1.35;
}

.booking__confirm-details {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  background: #f9fafb;
  border: 1px solid #eef0f2;
  border-radius: 10px;
}

.booking__confirm-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.35;
}

.booking__confirm-label {
  color: #6b7280;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 0;
}

.booking__confirm-value {
  color: var(--form-text);
  font-weight: 600;
  text-align: right;
}

.booking__confirm-next {
  padding-top: 0.15rem;
}

.booking__confirm-next-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--form-text);
  margin: 0 0 0.35rem;
}

.booking__confirm-next-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

.booking__confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  background: var(--purple);
  border: none;
  border-radius: 10px;
  padding: 0.78rem 1rem;
  min-height: 2.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.25rem;
}

.booking__confirm-btn:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.booking__success {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
  color: var(--form-text);
}

.booking__success.is-visible {
  display: block;
  animation: bookingStepIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking__success-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.booking__success h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.booking__success p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 540px) {
  .booking {
    max-width: 100%;
    padding: 1rem;
  }

  .booking__name-row {
    grid-template-columns: 1fr;
  }
}
.booking-section {
  margin-top: 3rem;
  padding: 0;
  background: transparent;
}

.hero-booking-intro {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--hero-text, rgb(19, 22, 40));
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
}

.booking-section__inner {
  max-width: 520px;
  margin: 0 auto;
}

.booking-contact {
  margin-top: 2.25rem;
  text-align: center;
}

.booking-contact__label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgb(19, 22, 40);
  margin-bottom: 0.3rem;
}

.booking-contact__phone {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.booking-contact__phone a {
  color: var(--accent, #1a7a4c);
  text-decoration: none;
}

.booking-contact__phone a:hover {
  text-decoration: underline;
}

/* closedform — 12h/24h segmented pill toggle */
.closedform-toggle-pill {
  display: inline-flex;
  background: #f0f0f5;
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
  margin-top: 0;
}

.closedform-toggle-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.closedform-toggle-btn.is-active {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.booking__times-panel {
  border-top: 1px solid #eef0f2;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}
