/* ============================================================
   Hotel National Koblenz — Booking System
   Aesthetic: Boutique Editorial — warm luxury meets handcraft
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Nunito:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  /* Brand — warm lighter red */
  --hotel-red: #D4524A;
  --hotel-red-light: #E0706A;
  --hotel-red-dark: #C0392B;
  --hotel-red-glow: rgba(192, 57, 43, 0.12);

  /* Warm Palette */
  --cream: #FBF5ED;
  --cream-dark: #F3E8D9;
  --parchment: #EDE4D8;
  --warm-white: #FFFDF9;
  --linen: #F7F0E6;

  /* Text — warm brown tones */
  --ink: #2C1810;
  --ink-soft: #4A3728;
  --ink-muted: #8B7355;
  --ink-faint: #BCA88A;

  /* Accents */
  --gold: #B8860B;
  --gold-light: #D4A937;
  --sage: #7A8B6F;
  --sage-light: #A3B096;
  --sky: #6B8FA3;

  /* Calendar Price Colors */
  --price-low: #7A8B6F;
  --price-mid: #C49B5C;
  --price-high: #D4213D;
  --price-low-bg: rgba(122, 139, 111, 0.08);
  --price-mid-bg: rgba(196, 155, 92, 0.08);
  --price-high-bg: rgba(212, 33, 61, 0.08);

  /* Surfaces */
  --card-bg: #FFFFFF;
  --card-border: rgba(0, 0, 0, 0.06);
  --card-shadow: 0 1px 3px rgba(26, 22, 20, 0.04), 0 8px 24px rgba(26, 22, 20, 0.06);
  --card-shadow-hover: 0 2px 8px rgba(26, 22, 20, 0.06), 0 16px 40px rgba(26, 22, 20, 0.10);
  --card-shadow-active: 0 1px 2px rgba(26, 22, 20, 0.06), 0 4px 12px rgba(26, 22, 20, 0.08);

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', -apple-system, sans-serif;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Reset & Base --- */
.booking-overlay *,
.booking-overlay *::before,
.booking-overlay *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Noise texture removed — caused rendering performance issues */

/* ============================================================
   OVERLAY
   ============================================================ */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--cream);
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
}

.booking-overlay.active {
  display: block;
}

/* ============================================================
   HEADER BAR
   ============================================================ */
.booking-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 32px;
  height: 64px;
  background: var(--cream);
  border-bottom: 1px solid var(--card-border);
}

.booking-header__logo {
  font-family: 'Tangerine', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--hotel-red);
  letter-spacing: 0.5px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.booking-header__logo span {
  color: var(--hotel-red);
  margin-top: 0.25em;
  font-family: 'Tangerine', cursive;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
}

.booking-close {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s var(--ease-out-back);
  color: var(--ink-muted);
}

.booking-close:hover {
  background: var(--cream-dark);
  transform: scale(1.1);
  color: var(--ink);
}

.booking-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ============================================================
   STEP INDICATOR
   ============================================================ */
.booking-steps {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 32px;
}

.booking-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  position: relative;
}

.booking-step-item:not(:last-child)::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ink-faint);
  margin: 0 16px;
  transition: background 0.4s;
}

.booking-step-item.completed:not(:last-child)::after {
  background: var(--hotel-red);
}

.booking-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--ink-faint);
  color: var(--ink-faint);
  background: transparent;
  transition: all 0.4s var(--ease-out-expo);
}

.booking-step-item.active .booking-step-dot {
  border-color: var(--hotel-red);
  background: var(--hotel-red);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--hotel-red-glow);
}

.booking-step-item.completed .booking-step-dot {
  border-color: var(--hotel-red);
  background: var(--hotel-red);
  color: white;
}

.booking-step-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.booking-step-item.active .booking-step-label,
.booking-step-item.completed .booking-step-label {
  color: var(--ink);
}

@media (max-width: 768px) {
  .booking-step-label { display: none; }
  .booking-step-item:not(:last-child)::after { width: 24px; margin: 0 8px; }
  .booking-steps { justify-content: center; }
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */
.booking-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 32px 120px;
}

@media (max-width: 768px) {
  .booking-main { padding: 24px 16px 140px; }
}

.booking-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.booking-section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ============================================================
   STEP TRANSITIONS
   ============================================================ */
.booking-step-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.booking-step-content.active {
  display: block;
  animation: stepReveal 0.6s var(--ease-out-expo) forwards;
}

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

/* ============================================================
   PRICE CALENDAR
   ============================================================ */
.calendar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .calendar-container { grid-template-columns: 1fr; gap: 24px; }
}

.calendar-month {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.calendar-month__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--card-border);
}

.calendar-month__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.calendar-nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--card-border);
  background: var(--warm-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.2s;
}

.calendar-nav-btn:hover {
  background: var(--cream-dark);
  border-color: var(--ink-faint);
  transform: scale(1.05);
}

.calendar-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 12px 16px 8px;
}

.calendar-weekday {
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  border: 2px solid transparent;
  min-height: 52px;
}

.calendar-day:hover:not(.calendar-day--disabled):not(.calendar-day--empty) {
  background: var(--hotel-red-glow);
  border-color: var(--hotel-red-light);
  transform: scale(1.05);
}

.calendar-day--empty {
  cursor: default;
}

.calendar-day--disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.calendar-day--today {
  border-color: var(--gold);
}

.calendar-day--selected,
.calendar-day--range-start,
.calendar-day--range-end {
  background: var(--hotel-red) !important;
  border-color: var(--hotel-red) !important;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(212, 33, 61, 0.3);
}

.calendar-day--selected .calendar-day__number,
.calendar-day--range-start .calendar-day__number,
.calendar-day--range-end .calendar-day__number {
  color: white;
}

.calendar-day--selected .calendar-day__price,
.calendar-day--range-start .calendar-day__price,
.calendar-day--range-end .calendar-day__price {
  color: rgba(255, 255, 255, 0.85);
}

.calendar-day--in-range {
  background: var(--hotel-red-glow);
  border-color: rgba(212, 33, 61, 0.15);
}

.calendar-day__number {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.calendar-day__price {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  margin-top: 2px;
  line-height: 1;
}

.calendar-day__price--low { color: var(--price-low); }
.calendar-day__price--mid { color: var(--price-mid); }
.calendar-day__price--high { color: var(--price-high); }

.calendar-day__minstay {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Guest Selector */
.guest-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

.guest-selector__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  flex: 1;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guest-counter__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.guest-counter__btn:hover {
  border-color: var(--hotel-red);
  color: var(--hotel-red);
  transform: scale(1.1);
}

.guest-counter__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  min-width: 28px;
  text-align: center;
}

/* Date Summary */
.date-summary {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-top: 24px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-muted);
}

.date-summary__block { display: contents; }

.date-summary__label { display: none; }

.date-summary__value {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}

.date-summary__arrow {
  margin: 0 0.6rem;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

.date-summary__nights {
  margin-left: auto;
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.date-summary__nights-value {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}

.date-summary__nights-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-muted);
  text-transform: none;
  letter-spacing: 0;
}

.date-summary__guests {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--card-border);
}

.date-summary__guests-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  .date-summary__guests {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 0.5rem;
  }
}

/* ============================================================
   ROOM CARDS
   ============================================================ */
.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.room-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 2px solid var(--card-border);
  overflow: hidden;
  transition: all 0.35s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(16px);
  animation: cardDeal 0.5s var(--ease-out-expo) forwards;
}

.room-card:nth-child(1) { animation-delay: 0.05s; }
.room-card:nth-child(2) { animation-delay: 0.15s; }
.room-card:nth-child(3) { animation-delay: 0.25s; }

@keyframes cardDeal {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.room-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.room-card.selected {
  border-color: var(--hotel-red);
  box-shadow: var(--card-shadow-hover), 0 0 0 4px var(--hotel-red-glow);
}

.room-card__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}

@media (max-width: 768px) {
  .room-card__inner { grid-template-columns: 1fr; }
}

.room-card__image {
  height: 100%;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 768px) {
  .room-card__image { height: 160px; }
}

.room-card__image::after {
  display: none;
}

.room-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.room-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.room-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.room-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.room-card__price-block {
  text-align: right;
  flex-shrink: 0;
}

.room-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--hotel-red);
  line-height: 1;
}

.room-card__price-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 2px;
}

.room-card__description {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-card__amenity {
  padding: 4px 12px;
  background: var(--linen);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  gap: 12px;
  flex-wrap: wrap;
}

.room-card__total {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
}

.room-card__total strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-left: 4px;
}

/* Breakfast Toggle */
.breakfast-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--linen);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.breakfast-toggle:hover {
  background: var(--cream-dark);
}

.breakfast-toggle.active {
  border-color: var(--gold);
  background: rgba(196, 155, 92, 0.08);
}

.breakfast-toggle__switch {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--ink-faint);
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}

.breakfast-toggle.active .breakfast-toggle__switch {
  background: var(--gold);
}

.breakfast-toggle__switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform 0.3s var(--ease-out-back);
}

.breakfast-toggle.active .breakfast-toggle__switch::after {
  transform: translateX(20px);
}

.breakfast-toggle__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
}

.breakfast-toggle__price {
  font-weight: 700;
  color: var(--gold);
}

/* Min Stay Warning */
.min-stay-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(196, 155, 92, 0.08), rgba(196, 155, 92, 0.04));
  border: 1px solid rgba(196, 155, 92, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.min-stay-notice__icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.min-stay-notice__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.min-stay-notice__extend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 6px 16px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.min-stay-notice__extend:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Select Room Button */
.room-card__select {
  padding: 12px 28px;
  background: var(--hotel-red);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.room-card__select::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15));
  opacity: 0;
  transition: opacity 0.3s;
}

.room-card__select:hover {
  background: var(--hotel-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 33, 61, 0.3);
}

.room-card__select:hover::before {
  opacity: 1;
}

.room-card__select:active {
  transform: translateY(0);
  box-shadow: var(--card-shadow-active);
}

.room-card__select.added {
  background: var(--sage);
}

/* ============================================================
   GUEST FORM
   ============================================================ */
.guest-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  position: relative;
}

.form-group__label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.form-group__input,
.form-group__select,
.form-group__textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group__input:focus,
.form-group__select:focus,
.form-group__textarea:focus {
  border-color: var(--hotel-red);
  box-shadow: 0 0 0 4px var(--hotel-red-glow);
}

.form-group__input::placeholder {
  color: var(--ink-faint);
}

.form-group__textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group__error {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--hotel-red);
  margin-top: 6px;
  display: none;
}

.form-group--error .form-group__input {
  border-color: var(--hotel-red);
}

.form-group--error .form-group__error {
  display: block;
}

/* ============================================================
   PAYMENT STEP (Stripe + Policy)
   ============================================================ */
.payment-section {
  max-width: 560px;
}

.stripe-card-container {
  padding: 20px 24px;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  transition: border-color 0.2s;
}

.stripe-card-container:focus-within {
  border-color: var(--hotel-red);
  box-shadow: 0 0 0 4px var(--hotel-red-glow);
}

.stripe-card-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 12px;
  display: block;
}

.card-not-charged {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(122, 139, 111, 0.08), rgba(122, 139, 111, 0.03));
  border: 1px solid rgba(122, 139, 111, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.card-not-charged__icon {
  color: var(--sage);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.card-not-charged__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.card-not-charged__text strong {
  color: var(--sage);
}

/* Cancellation Policy Box */
.cancel-policy-box {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(212, 33, 61, 0.04), rgba(212, 33, 61, 0.02));
  border: 1px solid rgba(212, 33, 61, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.cancel-policy-box__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.cancel-policy-box__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Checkboxes */
.consent-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.consent-item__checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink-faint);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
}

.consent-item__checkbox.checked {
  background: var(--hotel-red);
  border-color: var(--hotel-red);
}

.consent-item__checkbox.checked svg {
  opacity: 1;
}

.consent-item__checkbox svg {
  width: 14px;
  height: 14px;
  stroke: white;
  stroke-width: 3;
  fill: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.consent-item__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.consent-item__label a {
  color: var(--hotel-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   CONFIRMATION SCREEN
   ============================================================ */
.confirmation {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 0;
}

.confirmation__check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hotel-red), var(--hotel-red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: checkPop 0.6s var(--ease-spring) forwards;
  opacity: 0;
  transform: scale(0.5);
}

@keyframes checkPop {
  from { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.confirmation__check svg {
  width: 36px;
  height: 36px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

.confirmation__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  animation: fadeUp 0.5s 0.2s var(--ease-out-expo) both;
}

.confirmation__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.3s var(--ease-out-expo) both;
}

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

.confirmation__ref {
  display: inline-block;
  padding: 12px 32px;
  background: var(--linen);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--hotel-red);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.4s var(--ease-out-expo) both;
}

.confirmation__summary {
  text-align: left;
  padding: 24px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.5s var(--ease-out-expo) both;
}

.confirmation__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  font-family: var(--font-body);
  font-size: 14px;
}

.confirmation__summary-row:last-child {
  border-bottom: none;
  padding-top: 14px;
  font-weight: 700;
  font-size: 16px;
}

.confirmation__summary-label {
  color: var(--ink-muted);
}

.confirmation__summary-value {
  color: var(--ink);
  font-weight: 600;
}

.confirmation__calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--hotel-red);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  animation: fadeUp 0.5s 0.6s var(--ease-out-expo) both;
  text-decoration: none;
}

.confirmation__calendar-btn:hover {
  background: var(--hotel-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 33, 61, 0.3);
}

/* ============================================================
   BOTTOM BAR (Running Total + Navigation)
   ============================================================ */
.booking-bottombar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10002;
  padding: 16px 32px;
  background: var(--warm-white);
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.booking-overlay.active .booking-bottombar {
  transform: translateY(0);
}

.bottombar__total {
  display: flex;
  flex-direction: column;
}

.bottombar__total-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

.bottombar__total-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
}

.bottombar__total-amount span {
  font-size: 16px;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-weight: 400;
  margin-left: 4px;
}

.bottombar__actions {
  display: flex;
  gap: 12px;
}

.btn-back {
  padding: 14px 24px;
  background: transparent;
  border: 2px solid var(--card-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-back:hover {
  border-color: var(--ink-muted);
  background: var(--cream-dark);
}

.btn-next {
  padding: 14px 32px;
  background: var(--hotel-red);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  min-width: 160px;
  position: relative;
  overflow: hidden;
}

.btn-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-next:hover {
  background: var(--hotel-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 33, 61, 0.3);
}

.btn-next:hover::before { opacity: 1; }

.btn-next:disabled {
  background: var(--ink-faint);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-next:disabled:hover::before { opacity: 0; }

/* Loading spinner */
.btn-next.loading {
  color: transparent;
  pointer-events: none;
}

.btn-next.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* ============================================================
   LANGUAGE SELECTOR
   ============================================================ */
.lang-selector {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--cream-dark);
  border-radius: var(--radius-pill);
}

.lang-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.lang-btn.active {
  background: var(--card-bg);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Stripe error */
.stripe-error {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--hotel-red);
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--hotel-red-glow);
  border-radius: var(--radius-sm);
  display: none;
}

.stripe-error.visible {
  display: block;
  animation: shake 0.4s var(--ease-out-expo);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
.booking-overlay::-webkit-scrollbar {
  width: 8px;
}

.booking-overlay::-webkit-scrollbar-track {
  background: var(--cream);
}

.booking-overlay::-webkit-scrollbar-thumb {
  background: var(--ink-faint);
  border-radius: 4px;
}

.booking-overlay::-webkit-scrollbar-thumb:hover {
  background: var(--ink-muted);
}

/* ============================================================
   MOBILE BOOKING ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
  .booking-header {
    padding: 0.6rem 16px;
  }
  .booking-bottombar {
    padding: 12px 16px;
  }
  .guest-form {
    max-width: 100%;
  }
  .payment-section {
    max-width: 100%;
  }
  .btn-next, .btn-back {
    min-height: 48px;
    font-size: 1rem;
  }
}
