/* ═══════════════════════════════════════════════════════════════════
   PAGES — Booking, Contact, Impressum/Legal, Page-spezifische Styles
   ═══════════════════════════════════════════════════════════════════ */

   BOOKING SYSTEM
   =========================== */

.booking-system-container {
  max-width: 800px;
  margin: 0 auto;
}

.booking-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.booking-step h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--text-primary);
}

.booking-step .step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.booking-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-option-card {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.booking-option-card:hover {
  border-color: var(--accent);
  background: var(--bg-warm);
}

.booking-option-card.selected {
  border-color: var(--accent);
  background: rgba(166, 123, 91, 0.08);
}

.booking-option-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.booking-option-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}

.booking-option-card .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
}

/* Time slots */
.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.time-slot {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.time-slot:hover {
  border-color: var(--accent);
  background: var(--bg-warm);
}

.time-slot.selected {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}

.time-slot.booked {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--border);
}

/* Form fields */
.modern-field {
  display: block;
  margin-bottom: 1.5rem;
}

.modern-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.modern-field input,
.modern-field select,
.modern-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--surface);
}

.modern-field input:focus,
.modern-field select:focus,
.modern-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--accent);
  font-weight: 500;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .nav-wrap {
    min-height: 70px;
    flex-wrap: wrap;
  }
  
  .site-nav {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  
  .site-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  .site-nav a {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
  
  .site-nav .button-small {
    margin-left: auto;
    flex-shrink: 0;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .button {
    width: 100%;
  }
  
  .premium-service-grid {
    grid-template-columns: 1fr;
  }
  
  .price-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-hero {
    padding: 3rem 0 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .premium-price-overview-card {
    padding: 2rem 1.5rem;
  }
  
  .booking-step {
    padding: 1.5rem;
  }
  
  .time-slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================

   IMPRESSUM / LEGAL PAGES
   =========================== */

.impressum-content {
  max-width: 900px;
  margin: 0 auto;
}

.impressum-block {
  margin-bottom: 2.5rem;
}

.impressum-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.impressum-block h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem 0;
}

.impressum-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.impressum-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-secondary);
}

.impressum-card a {
  color: var(--accent);
  text-decoration: none;
}

.impressum-card a:hover {
  text-decoration: underline;
}

.impressum-card strong {
  color: var(--text-primary);
}

/* ===========================
   BOOKING SYSTEM — NEWSOUL STYLE
   =========================== */

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

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

.booking-main {
  max-width: 100%;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.booking-step h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Treatment Grid */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

@media (max-width: 640px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }
}

.treatment-card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
}

.treatment-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.treatment-card:hover {
  border-color: var(--accent);
  background: var(--bg-soft);
  /* translateY(-2px) ENTFERNT: gleicher Hover-Jitter-Fehler wie bei .button:hover.
     Karte bewegt sich 2px weg → Hover verloren → zurück → Hover wieder → Flackern. */
  transform: translateY(0);
  box-shadow: 0 0 0 2px rgba(196,164,107,0.3), 0 4px 14px rgba(0,0,0,0.3);
}

.treatment-card.selected {
  border-color: var(--accent);
  background: rgba(166, 123, 91, 0.08);
  box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.15);
}

.treatment-card.highlight {
  border-color: var(--accent-soft);
}

.treatment-card.highlight.selected {
  box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.25);
}

.treatment-card-content {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  flex-direction: column;
}

.treatment-image-price {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  width: 100%;
}

.treatment-image {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  background-color: var(--bg-soft);
}

.treatment-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}

.treatment-info {
  flex: 1;
  min-width: 0;
}

.treatment-info h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.treatment-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
  line-height: 1.4;
  display: block;
}

.treatment-durations {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.duration-badge {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-soft);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 1;
}

.treatment-price {
  text-align: right;
  flex-shrink: 0;
  min-width: 60px;
  padding-top: 0.25rem;
}

.price-from {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.price-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Small inline badge (used in booking step headers, etc.) */
.popular-badge-small {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 99px;
}

/* Duration Selection */
.duration-selection {
  max-width: 400px;
}

/* Date/Time Grid */
.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .datetime-grid {
    grid-template-columns: 1fr;
  }
}

/* Time Slots Visual */
.time-slots-visual {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.slot-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Staff availability legend */
.staff-legend {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.staff-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.staff-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.staff-dot.m1 { background: #3B82F6; }
.staff-dot.m2 { background: #10B981; }
.staff-dot.team { background: #8B5CF6; }
.staff-dot.blocked { background: var(--border); }

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
}

.time-slot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot-time {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.time-slot-staff {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.time-slot-staff .staff-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: all 0.2s;
}

.time-slot-staff .staff-dot.available {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}

.time-slot-staff .staff-dot.blocked {
  opacity: 0.25;
}

.time-slot:hover:not(.booked) {
  border-color: var(--accent);
  background: var(--bg-soft);
}

.time-slot.selected {
  background: var(--accent);
  border-color: var(--accent);
}

.time-slot.selected .time-slot-time {
  color: #fff;
}

.time-slot.selected .time-slot-staff .staff-dot {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.time-slot.booked {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--border);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Booking Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

/* Summary Card — Dark Premium Design */
.booking-summary-card {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(44,48,43,0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Kicker Badge */
.booking-summary-card .premium-kicker {
  margin: 0;
  padding: 1rem 1.5rem 0;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.booking-summary-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  padding: 0.5rem 1.5rem 1.25rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Gold accent line under header */
.booking-summary-card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.75rem;
  border-radius: 1px;
}

.summary-list {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  transition: background 0.2s;
}

.summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-row span {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.summary-row strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Placeholder text for empty values */
.summary-row strong:empty::after,
.summary-row strong:-moz-only-whitespace::after {
  content: '—';
  color: var(--text-muted);
  font-weight: 400;
  opacity: 0.5;
}

.summary-total {
  padding-top: 1.1rem;
  margin-top: 0.25rem;
  border-top: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(196,164,107,0.08) 0%, transparent 100%);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.25rem;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.summary-total span {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

.summary-total strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent) !important;
  text-shadow: 0 0 20px rgba(196,164,107,0.15);
}

/* Info Card — Dark Premium Design */
.booking-info-card {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(44,48,43,0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.booking-info-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.booking-info-card h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.5rem;
  border-radius: 1px;
}

.booking-info-card ol,
.booking-info-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  counter-reset: step-counter;
}

.booking-info-card ol {
  counter-reset: step-counter;
}

.booking-info-card ol li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 0.75rem;
}

.booking-info-card ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(196,164,107,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  line-height: 1.6rem;
}

.booking-info-card li {
  margin-bottom: 0.5rem;
}

.info-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

.info-list {
  list-style: disc;
}

/* Modern Field Improvements */
.modern-field {
  display: block;
  margin-bottom: 1.5rem;
}

.modern-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.modern-field input,
.modern-field select,
.modern-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--surface);
  color: var(--text-primary);
}

.modern-field input:focus,
.modern-field select:focus,
.modern-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.1);
}

/* Admin Form Fields - Override for light theme */
.admin-edit-form .modern-field input,
.admin-edit-form .modern-field select,
.admin-edit-form .modern-field textarea,
.admin-login-form .modern-field input,
.admin-filter-field input,
.admin-filter-field select {
  background: var(--admin-surface) !important;
  color: var(--admin-text-primary) !important;
  border-color: var(--admin-border) !important;
}

/* Customer History Modal */
.customer-history-modal {
  max-width: 600px;
}

.customer-history-list {
  max-height: 300px;
  overflow-y: auto;
  margin: 1rem 0;
}

.customer-history-item {
  padding: 0.75rem;
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.customer-history-item:last-child {
  border-bottom: none;
}

.customer-history-date {
  font-weight: 600;
  color: var(--admin-text-primary);
}

.customer-history-treatment {
  font-size: 0.85rem;
  color: var(--admin-text-secondary);
}

/* Search Bar */
.admin-search-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.admin-search-bar input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--admin-border);
  border-radius: var(--radius-sm);
  background: var(--admin-surface);
  color: var(--admin-text-primary);
  font-size: 0.9rem;
}

.admin-search-bar input:focus {
  outline: none;
  border-color: var(--admin-accent);
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Cancellation Reason Field */
.cancellation-reason-field {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.cancellation-reason-field label {
  display: block;
  font-weight: 600;
  color: #742a2a;
  margin-bottom: 0.5rem;
}

.cancellation-reason-field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--admin-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
}

/* Revenue Stats Card */
.admin-stat-card.revenue {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  border: none;
}

.admin-stat-card.revenue span {
  color: rgba(255, 255, 255, 0.9);
}

.admin-stat-card.revenue strong {
  color: #fff;
  font-size: 2rem;
}

/* Mobile Calendar Improvements */
@media (max-width: 768px) {
  .admin-calendar-toolbar {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .admin-calendar-toolbar h3 {
    order: -1;
    width: 100%;
  }
  
  .admin-calendar-view-switch {
    width: 100%;
    justify-content: center;
  }
  
  .admin-calendar-grid {
    font-size: 0.8rem;
  }
  
  .admin-calendar-cell {
    min-height: 60px;
    padding: 0.25rem;
  }
  
  .admin-calendar-booking {
    font-size: 0.65rem;
    padding: 0.2rem 0.3rem;
  }
  
  .admin-today-timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .admin-today-actions {
    width: 100%;
    justify-content: flex-end;
  }
  
  /* Swipe actions for mobile */
  .admin-appointment-card {
    position: relative;
    overflow: hidden;
  }
  
  .admin-appointment-card::before {
    content: '✓';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--admin-success);
    color: #fff;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: right 0.3s;
  }
  
  .admin-appointment-card.swipe-confirm::before {
    right: 0;
  }
}

.modern-field textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.booking-form .button.button-large {
  margin-top: 1rem;
}

/* Scrollbar for treatment grid on mobile */
@media (max-width: 640px) {
  .treatment-grid {
    max-height: 500px;
    overflow-y: auto;
  }
}


/* ===========================
   BOOKING SUCCESS SCREEN
   =========================== */

.booking-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.booking-success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 12px rgba(123, 168, 138, 0.15);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.booking-success h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.booking-success-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.booking-success-details {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 0 auto 2rem;
  max-width: 420px;
  text-align: left;
}

.success-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.success-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.success-detail-row span {
  color: var(--text-muted);
}

.success-detail-row strong {
  color: var(--text-primary);
}

.success-warn {
  background: rgba(191, 163, 109, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.booking-success-next {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 0 auto 1.5rem;
  max-width: 420px;
  text-align: left;
}

.booking-success-next p {
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.booking-success-next ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-success-next ul li {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.booking-success-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.booking-success-contact p {
  width: 100%;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.booking-success-phone,
.booking-success-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
}

.booking-success-phone {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.booking-success-phone:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.booking-success-whatsapp {
  background: #25D366;
  color: #fff;
}

.booking-success-whatsapp:hover {
  background: #20bf5a;
}

/* ===========================
   PAARMASSAGE BADGE (Booking)
   =========================== */

.pair-massage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(191, 163, 109, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  margin-top: 0.4rem;
}

/* ===========================
