/**
 * booking.css — modern appointment booking (Booking.com–inspired layout)
 */

.booking-shell {
  margin-bottom: var(--spacing-3xl);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--spacing-xl);
  align-items: start;
}

.booking-main {
  background: #fff;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 2px 16px rgba(20, 20, 20, 0.08), 0 0 1px rgba(20, 20, 20, 0.06);
  overflow: hidden;
}

.booking-header {
  padding: var(--spacing-xl) var(--spacing-2xl);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.booking-header h2 {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.02em;
  margin: 0 0 var(--spacing-xs);
  color: var(--text-color);
}

.booking-header-sub {
  margin: 0 0 var(--spacing-lg);
  font-size: var(--font-size-sm);
  color: var(--text-light);
  line-height: 1.55;
}

.booking-steps {
  display: flex;
  gap: var(--spacing-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.booking-step {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--text-lighter);
  background: var(--bg-light);
  border: 1px solid transparent;
}

.booking-step::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: var(--font-weight-semibold);
  background: rgba(20, 20, 20, 0.08);
  color: var(--text-light);
}

.booking-step.is-active {
  color: var(--primary-color);
  background: var(--primary-lighter);
  border-color: rgba(26, 92, 86, 0.15);
}

.booking-step.is-active::before {
  background: var(--primary-color);
  color: #fff;
}

.booking-step.is-done {
  color: var(--success-color);
}

.booking-step.is-done::before {
  content: "✓";
  background: var(--success-color);
  color: #fff;
  font-size: 0.6rem;
}

.booking-panel {
  padding: var(--spacing-xl) var(--spacing-2xl) var(--spacing-2xl);
}

.booking-panel + .booking-panel {
  border-top: 1px solid rgba(20, 20, 20, 0.06);
}

.booking-panel-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin: 0 0 var(--spacing-lg);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
}

.booking-panel-title i {
  color: var(--primary-color);
  font-size: 1rem;
}

.booking-week-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.booking-week-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--border-radius-lg);
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.booking-week-tab:hover {
  border-color: var(--primary-light);
}

.booking-week-tab.is-active {
  border-color: var(--primary-color);
  background: var(--primary-lighter);
  box-shadow: 0 0 0 1px var(--primary-color);
}

.booking-week-tab-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
}

.booking-week-tab-range {
  font-size: 0.7rem;
  color: var(--text-lighter);
}

.booking-date-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.booking-date-chip {
  min-width: 0;
  padding: 0.65rem 0.35rem;
  border: 1.5px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--border-radius-lg);
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.booking-date-chip:hover:not(:disabled):not(.is-past) {
  border-color: var(--primary-light);
}

.booking-date-chip:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.booking-date-chip.is-selected {
  border-color: var(--primary-color);
  background: var(--primary-lighter);
  box-shadow: 0 0 0 1px var(--primary-color);
}

.booking-date-chip.is-past {
  opacity: 0.38;
  background: var(--bg-light);
  border-style: dashed;
  border-color: rgba(20, 20, 20, 0.08);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(20, 20, 20, 0.2);
}

.booking-date-chip.is-past .booking-date-chip-num {
  color: var(--text-lighter);
}

.booking-date-chip.is-sunday {
  background: #f5f5f5;
  border-color: rgba(20, 20, 20, 0.08);
  color: var(--text-light);
}

.booking-date-chip.is-sunday.is-selected {
  border-color: var(--text-light);
  background: #ececec;
  box-shadow: 0 0 0 1px rgba(20, 20, 20, 0.15);
}

.booking-date-chip.is-sunday:not(.is-selected):hover {
  border-color: rgba(20, 20, 20, 0.25);
  background: #efefef;
}

.booking-date-chip.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-date-chip-day {
  display: block;
  font-size: 0.65rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-lighter);
  margin-bottom: 0.15rem;
}

.booking-date-chip-num {
  display: block;
  font-size: 1.15rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.1;
  color: var(--text-color);
}

.booking-date-chip-mon {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.booking-date-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-calendar-toggle {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  width: 100%;
  margin-bottom: var(--spacing-md);
  padding: 0.8rem 1rem;
  border: 1px dashed rgba(20, 20, 20, 0.16);
  border-radius: var(--border-radius-lg);
  background: #fff;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.booking-calendar-toggle:hover {
  border-color: rgba(26, 92, 86, 0.35);
  background: rgba(26, 92, 86, 0.03);
}

.booking-calendar-toggle:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.booking-calendar-toggle.is-open {
  margin-bottom: var(--spacing-sm);
  border-style: solid;
  border-color: rgba(26, 92, 86, 0.22);
  background: rgba(26, 92, 86, 0.04);
  box-shadow: 0 2px 8px rgba(26, 92, 86, 0.06);
}

.booking-calendar-toggle-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  background: rgba(26, 92, 86, 0.08);
  color: var(--primary-color);
  font-size: 0.95rem;
}

.booking-calendar-toggle-labels {
  flex: 1;
  text-align: left;
}

.booking-calendar-toggle-chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-light);
  transition: transform 0.2s ease;
}

.booking-calendar-toggle.is-open .booking-calendar-toggle-chevron {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.booking-calendar-panel {
  margin-bottom: var(--spacing-xl);
}

.booking-calendar-panel.hidden {
  display: none;
}

.booking-calendar {
  padding: var(--spacing-lg);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--border-radius-lg);
  background: #fafafa;
}

.booking-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-md);
}

.booking-calendar-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
}

.booking-calendar-nav {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: var(--border-radius-md);
  background: #fff;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-calendar-nav:hover:not(:disabled) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.booking-calendar-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: var(--spacing-xs);
  text-align: center;
  font-size: 0.65rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-lighter);
}

.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking-cal-cell {
  aspect-ratio: 1;
  min-height: 2.25rem;
  border: none;
  border-radius: var(--border-radius-md);
  background: #fff;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}

.booking-cal-cell:hover:not(:disabled):not(.is-past) {
  background: var(--primary-lighter);
  color: var(--primary-color);
}

.booking-cal-cell.is-selected {
  background: var(--primary-color);
  color: #fff;
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 2px 8px rgba(26, 92, 86, 0.3);
}

.booking-cal-cell.is-in-active-week:not(.is-selected):not(.is-past) {
  box-shadow: inset 0 0 0 1px rgba(26, 92, 86, 0.12);
}

.booking-cal-cell.is-past {
  background: transparent;
  color: rgba(20, 20, 20, 0.25);
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-cal-cell.is-sunday:not(.is-selected) {
  background: #eee;
  color: var(--text-lighter);
}

.booking-cal-cell.is-sunday:not(.is-selected):hover {
  background: #e2e2e2;
}

.booking-cal-cell.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.booking-cal-cell-empty {
  aspect-ratio: 1;
  min-height: 2.25rem;
}

/* ── Booking notices (info, request, empty states) ── */

.booking-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding: 1rem 1.15rem;
  border-radius: var(--border-radius-lg);
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 1px 3px rgba(20, 20, 20, 0.04);
}

.booking-notice.hidden {
  display: none;
}

.booking-notice__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  line-height: 1;
}

.booking-notice__content {
  flex: 1;
  min-width: 0;
}

.booking-notice__title {
  margin: 0 0 0.3rem;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
  line-height: 1.35;
}

.booking-notice__text {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.55;
  color: var(--text-light);
}

.booking-notice__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-md);
  padding: 0.6rem 1rem;
  border: 1.5px solid rgba(26, 92, 86, 0.25);
  border-radius: var(--border-radius-md);
  background: #fff;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.booking-notice__action:hover {
  background: var(--primary-lighter);
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(26, 92, 86, 0.1);
}

.booking-notice__action:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.booking-notice--success {
  border-color: rgba(26, 92, 86, 0.14);
  background: linear-gradient(180deg, #fff 0%, rgba(26, 92, 86, 0.04) 100%);
}

.booking-notice--success .booking-notice__icon {
  background: var(--primary-lighter);
  color: var(--primary-color);
}

.booking-notice--success .booking-notice__title {
  color: var(--primary-dark);
}

.booking-notice--request .booking-notice__icon {
  background: var(--bg-light);
  color: var(--text-light);
}

.booking-notice--request.is-active {
  border-color: rgba(26, 92, 86, 0.18);
  background: linear-gradient(180deg, #fff 0%, rgba(26, 92, 86, 0.03) 100%);
}

.booking-notice--request.is-active .booking-notice__action {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.booking-notice--request.is-active .booking-notice__action:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.booking-notice--empty .booking-notice__icon {
  background: var(--bg-light);
  color: var(--text-light);
}

.booking-notice--empty.is-day-ended .booking-notice__icon {
  background: #eee;
  color: #888;
}

.booking-notice--empty.is-fully-booked {
  border-color: rgba(180, 120, 40, 0.18);
}

.booking-notice--empty.is-fully-booked .booking-notice__icon {
  background: rgba(180, 120, 40, 0.1);
  color: #b47828;
}

.booking-notice--inline {
  display: block;
  margin-bottom: var(--spacing-md);
  padding: 0.65rem 0.9rem;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--primary-dark);
  border-color: rgba(26, 92, 86, 0.12);
  background: rgba(26, 92, 86, 0.04);
  box-shadow: none;
}

.booking-submit-label.hidden {
  display: none;
}

.booking-times-hint {
  margin: 0 0 var(--spacing-md);
  font-size: var(--font-size-sm);
  color: var(--text-light);
}

.booking-times-hint.is-hidden {
  display: none;
}

.booking-times-hint.is-error {
  color: var(--error-color);
}

.booking-times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: var(--spacing-sm);
  min-height: 0;
}

.booking-times-grid.is-hidden {
  display: none;
}

.booking-times-grid.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.booking-time-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 3.25rem;
  padding: 0.65rem 0.5rem;
  border: 1.5px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--border-radius-lg);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.booking-time-slot:hover {
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

.booking-time-slot:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.booking-time-slot.is-selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 92, 86, 0.25);
}

.booking-time-slot.is-selected .booking-time-slot-end {
  color: rgba(255, 255, 255, 0.85);
}

.booking-time-slot-start {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
}

.booking-time-slot-end {
  font-size: 0.7rem;
  color: var(--text-lighter);
}

.booking-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-md) var(--spacing-lg);
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-color);
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: var(--border-radius-lg);
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: var(--text-color);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 92, 86, 0.12);
  outline: none;
}

.booking-field textarea {
  resize: vertical;
  min-height: 5rem;
}

.booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  width: 100%;
  margin-top: var(--spacing-xl);
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-lg);
  background: var(--primary-color);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(26, 92, 86, 0.28);
}

.booking-submit:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.booking-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.booking-summary {
  position: sticky;
  top: calc(var(--header-sticky-offset, 80px) + 1rem);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.booking-summary-card {
  background: #fff;
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 2px 16px rgba(20, 20, 20, 0.06);
  padding: var(--spacing-xl);
}

.booking-summary-badge {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  padding: 0.2rem 0.55rem;
  border-radius: var(--border-radius-full);
  background: var(--primary-lighter);
  color: var(--primary-color);
  font-size: 0.65rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-summary-clinic {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
}

.booking-summary-list {
  margin: 0 0 var(--spacing-lg);
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(20, 20, 20, 0.06);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: 0.35rem 0;
  font-size: var(--font-size-sm);
}

.booking-summary-row dt {
  color: var(--text-light);
  font-weight: var(--font-weight-normal);
}

.booking-summary-row dd {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
  text-align: right;
}

.booking-summary-row dd.is-empty {
  color: var(--text-lighter);
  font-weight: var(--font-weight-normal);
}

.booking-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.booking-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--font-size-xs);
  color: var(--text-light);
  line-height: 1.45;
}

.booking-trust-list i {
  color: var(--success-color);
  margin-top: 0.1rem;
}

.booking-summary-urgent {
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: #fff;
  box-shadow: 0 2px 12px rgba(20, 20, 20, 0.05);
}

.booking-summary-urgent.is-active {
  border-color: rgba(26, 92, 86, 0.22);
  box-shadow: 0 2px 16px rgba(26, 92, 86, 0.1);
}

.booking-summary-urgent-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  background: var(--bg-light);
  color: var(--text-light);
  font-size: 0.95rem;
}

.booking-summary-urgent.is-active .booking-summary-urgent-icon {
  background: var(--primary-lighter);
  color: var(--primary-color);
}

.booking-summary-urgent-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-color);
}

.booking-summary-urgent-text {
  margin: 0 0 var(--spacing-md);
  font-size: var(--font-size-xs);
  line-height: 1.55;
  color: var(--text-light);
}

.booking-summary-urgent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid rgba(26, 92, 86, 0.22);
  border-radius: var(--border-radius-md);
  background: #fff;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.booking-summary-urgent-btn:hover {
  background: var(--primary-lighter);
  border-color: var(--primary-color);
}

.booking-summary-urgent.is-active .booking-summary-urgent-btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.booking-summary-urgent.is-active .booking-summary-urgent-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.booking-summary-urgent-btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.booking-success-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
  padding: var(--spacing-2xl);
  background: #fff;
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(45, 106, 79, 0.2);
  box-shadow: 0 4px 24px rgba(45, 106, 79, 0.08);
}

.booking-success-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.12);
  color: var(--success-color);
  font-size: 1.5rem;
}

.booking-success-card h2 {
  font-family: var(--font-body);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin: 0 0 var(--spacing-sm);
}

.booking-success-card p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
    order: -1;
  }

  .booking-summary-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: start;
  }

  .booking-summary-clinic {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .booking-summary-list {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }

  .booking-trust-list {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .booking-header,
  .booking-panel {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
  }

  .booking-fields-grid {
    grid-template-columns: 1fr;
  }

  .booking-date-strip {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .booking-date-chip {
    padding: 0.5rem 0.2rem;
  }

  .booking-date-chip-day,
  .booking-date-chip-mon {
    font-size: 0.6rem;
  }

  .booking-date-chip-num {
    font-size: 1rem;
  }

  .booking-calendar {
    padding: var(--spacing-md);
  }

  .booking-times-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-summary-card {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    flex-wrap: wrap;
  }
}
