/* ================================================================
   Vivid Escapades — Design System v2
   Mobile-first · Professional · Consistent
   ================================================================ */

/* ── Custom properties ── */
:root {
  /* Brand */
  --ve-rose:       #e11d48;
  --ve-rose-dark:  #9f1239;
  --ve-rose-mid:   #fb7185;
  --ve-rose-pale:  #ffe4e6;
  --ve-rose-faint: #fff1f5;
  --ve-purple:     #7c3aed;

  /* Neutrals */
  --ve-ink:        #111827;
  --ve-body:       #374151;
  --ve-muted:      #6b7280;
  --ve-subtle:     #9ca3af;
  --ve-border:     #f0e4ea;
  --ve-border-mid: #e5d0d9;
  --ve-surface:    #ffffff;
  --ve-bg:         #fafafa;
  --ve-bg-warm:    #fff7f9;

  /* Gradients */
  --ve-grad-brand: linear-gradient(135deg, #e11d48 0%, #7c3aed 100%);
  --ve-grad-soft:  linear-gradient(150deg, #fff1f5 0%, #fce7f3 55%, #f3e8ff 100%);
  --ve-grad-hero:  linear-gradient(160deg, #fff5f8 0%, #fce7f3 100%);

  /* Shadows */
  --ve-sh-xs: 0 1px 2px rgba(0,0,0,0.06);
  --ve-sh-sm: 0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --ve-sh:    0 4px 16px rgba(225,29,72,0.09), 0 2px 6px rgba(0,0,0,0.06);
  --ve-sh-md: 0 8px 28px rgba(225,29,72,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --ve-sh-lg: 0 20px 56px rgba(225,29,72,0.14), 0 8px 20px rgba(0,0,0,0.1);

  /* Radii */
  --ve-r-sm:  8px;
  --ve-r:     14px;
  --ve-r-lg:  20px;
  --ve-r-xl:  28px;
  --ve-r-pill:999px;

  /* Fonts */
  --ve-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ve-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Section rhythm — mobile */
  --ve-sec: 3rem;
}

@media (min-width: 768px)  { :root { --ve-sec: 5rem; } }
@media (min-width: 1200px) { :root { --ve-sec: 6.5rem; } }

/* ================================================================
   Reset & Base
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--ve-sans);
  background: var(--ve-bg);
  color: var(--ve-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  margin: 0;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6 {
  font-family: var(--ve-serif);
  color: var(--ve-ink);
  line-height: 1.18;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p { line-height: 1.72; color: var(--ve-body); }

a { color: var(--ve-rose); text-decoration: none; }
a:hover { color: var(--ve-rose-dark); text-decoration: underline; }

/* ── Gradient text ── */
.gradient-text {
  background: var(--ve-grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ================================================================
   Buttons — touch-first (min 44px)
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--ve-sans);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  border-radius: var(--ve-r-pill);
  padding: 0.72rem 1.5rem;
  min-height: 44px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  text-decoration: none !important;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--ve-rose);
  border-color: var(--ve-rose);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(225,29,72,0.28);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ve-rose-dark);
  border-color: var(--ve-rose-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(225,29,72,0.35);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 3px 10px rgba(225,29,72,0.22); }

.btn-outline-primary {
  background: transparent;
  border-color: var(--ve-rose);
  color: var(--ve-rose) !important;
}
.btn-outline-primary:hover, .btn-outline-primary:focus-visible {
  background: var(--ve-rose);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-vivid {
  background: var(--ve-grad-brand);
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(124,58,237,0.28);
}
.btn-vivid:hover { color: #fff !important; filter: brightness(1.08); transform: translateY(-1px); }

.btn-outline-light {
  border-radius: var(--ve-r-pill);
  font-weight: 600;
  min-height: 44px;
  border-width: 2px;
}

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; min-height: 52px; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; min-height: 36px; }

/* ================================================================
   Forms — large touch targets
   ================================================================ */
.form-control, .form-select {
  border-radius: var(--ve-r-sm);
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--ve-border-mid);
  font-size: 1rem;
  min-height: 48px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background: #fff;
  color: var(--ve-ink);
  width: 100%;
  font-family: var(--ve-sans);
}
.form-control:focus, .form-select:focus {
  border-color: var(--ve-rose-mid);
  box-shadow: 0 0 0 3px rgba(225,29,72,0.1);
  outline: none;
}
.form-control::placeholder { color: var(--ve-subtle); }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ve-ink);
  margin-bottom: 0.4rem;
}
.form-text { font-size: 0.8rem; color: var(--ve-muted); margin-top: 0.3rem; }
.form-check-input:checked { background-color: var(--ve-rose); border-color: var(--ve-rose); }
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(225,29,72,0.12); }

textarea.form-control { min-height: 100px; resize: vertical; }

/* ================================================================
   Navigation
   ================================================================ */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--ve-border);
  padding: 0.625rem 0;
  transition: box-shadow 0.25s ease;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  font-family: var(--ve-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ve-ink) !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}
.brand-mark {
  background: var(--ve-grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-toggler {
  border: 1.5px solid var(--ve-border-mid);
  border-radius: var(--ve-r-sm);
  padding: 0.45rem 0.65rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
}
.navbar-toggler:focus { outline: none; box-shadow: 0 0 0 3px rgba(225,29,72,0.12); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23374151' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 22px;
  height: 22px;
}

.nav-link {
  color: var(--ve-body) !important;
  font-weight: 500;
  font-size: 0.925rem;
  padding: 0.55rem 0.85rem !important;
  border-radius: var(--ve-r-sm);
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover {
  background: var(--ve-rose-faint);
  color: var(--ve-rose) !important;
}

/* Mobile nav */
.navbar-collapse {
  background: #fff;
  border-radius: 0 0 var(--ve-r) var(--ve-r);
}
@media (max-width: 991.98px) {
  .navbar-collapse.show, .navbar-collapse.collapsing {
    border-top: 1px solid var(--ve-border);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
  }
  .navbar-nav .nav-link { padding: 0.75rem 1rem !important; border-radius: 0; }
  .navbar-nav .nav-link:hover { background: var(--ve-rose-faint); }
  .navbar-nav .btn { margin: 0.5rem 1rem 0.25rem; width: calc(100% - 2rem); justify-content: center; }
}

/* ================================================================
   Sections & layout helpers
   ================================================================ */
.section { padding: var(--ve-sec) 0; }
.section-sm { padding: calc(var(--ve-sec) * 0.6) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ve-rose);
  font-family: var(--ve-sans);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ve-grad-brand);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ================================================================
   Hero
   ================================================================ */
.ve-hero {
  position: relative;
  background: var(--ve-grad-hero);
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}
.ve-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ve-hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(225,29,72,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ve-rose);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ve-grad-brand);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ve-ink);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--ve-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.82rem;
  color: var(--ve-muted);
  font-weight: 500;
}
.hero-proof span { display: flex; align-items: center; gap: 0.35rem; }
.hero-proof i { color: var(--ve-rose); font-size: 0.9em; }

.hero-image {
  width: 100%;
  border-radius: var(--ve-r-xl);
  overflow: hidden;
  box-shadow: var(--ve-sh-lg);
  aspect-ratio: 4 / 3;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .ve-hero { padding: 5rem 0 6rem; }
  .hero-image { aspect-ratio: 3 / 2; }
}
@media (min-width: 992px) {
  .ve-hero { padding: 6rem 0 7rem; }
  .hero-image { aspect-ratio: 4 / 3; }
}

/* ================================================================
   Trust strip
   ================================================================ */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--ve-border);
  border-bottom: 1px solid var(--ve-border);
  padding: 1.1rem 0;
}
.trust-strip-inner {
  display: flex;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ve-muted);
  white-space: nowrap;
}
.trust-item i {
  color: var(--ve-rose);
  font-size: 0.95em;
}

/* ================================================================
   Trip cards
   ================================================================ */
.trip-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--ve-border);
  border-radius: var(--ve-r);
  background: var(--ve-surface);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none !important;
  color: inherit !important;
}
.trip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ve-sh-md);
  text-decoration: none !important;
  color: inherit !important;
}
.trip-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.trip-card-body {
  padding: 1.1rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trip-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.trip-card-title {
  font-family: var(--ve-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ve-ink);
  line-height: 1.3;
  margin: 0;
}
.trip-card-summary {
  font-size: 0.875rem;
  color: var(--ve-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ve-border);
  font-size: 0.82rem;
  color: var(--ve-muted);
}
.trip-price {
  font-weight: 700;
  color: var(--ve-ink);
  font-size: 1rem;
}
.trip-price-label { font-weight: 400; font-size: 0.78rem; color: var(--ve-muted); }

.badge-location {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--ve-rose-pale);
  color: var(--ve-rose-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--ve-r-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.badge-soft-pink { /* kept for compatibility */
  display: inline-flex;
  align-items: center;
  background: var(--ve-rose-pale);
  color: var(--ve-rose-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--ve-r-pill);
}

/* ================================================================
   How-it-works steps
   ================================================================ */
.how-step { text-align: center; }
.how-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ve-grad-brand);
  color: #fff;
  font-family: var(--ve-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(225,29,72,0.28);
}
.how-step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.how-step p { font-size: 0.875rem; color: var(--ve-muted); margin: 0; }

/* ================================================================
   FAQ / Accordion
   ================================================================ */
.ve-accordion .accordion-item {
  border: 1px solid var(--ve-border) !important;
  border-radius: var(--ve-r-sm) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.ve-accordion .accordion-button {
  font-family: var(--ve-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ve-ink) !important;
  background: #fff !important;
  padding: 1rem 1.25rem;
  min-height: 56px;
  box-shadow: none !important;
}
.ve-accordion .accordion-button:not(.collapsed) { color: var(--ve-rose) !important; }
.ve-accordion .accordion-button:focus { box-shadow: none !important; }
.ve-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--ve-muted);
  padding: 0.5rem 1.25rem 1rem;
  line-height: 1.7;
}

/* ================================================================
   CTA band
   ================================================================ */
.cta-band {
  background: var(--ve-grad-brand);
  padding: 3.5rem 0;
  text-align: center;
  color: #fff;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,0.82); }
.cta-band .btn-outline-light {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5);
}
.cta-band .btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ================================================================
   Trip detail
   ================================================================ */
.trip-detail-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 240px;
  overflow: hidden;
  background: var(--ve-border);
}
@media (min-width: 768px) {
  .trip-detail-hero { aspect-ratio: 21 / 9; }
}
@media (min-width: 1200px) {
  .trip-detail-hero { min-height: 420px; }
}

.trip-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trip-detail-hero .carousel-inner,
.trip-detail-hero .carousel-item { height: 100%; }
.trip-detail-hero .carousel-item > .trip-media-trigger {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.trip-detail-hero .carousel-control-prev,
.trip-detail-hero .carousel-control-next { z-index: 3; width: 8%; }
.trip-detail-hero .carousel-indicators { z-index: 3; }
.trip-media-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(0,0,0,0.55); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; pointer-events: none;
}
.trip-media-thumbs { padding: 0; }
.trip-media-thumb {
  position: relative;
  display: inline-block;
  width: 88px;
  height: 60px;
  max-width: 88px;
  max-height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ve-border);
  cursor: zoom-in;
  flex-shrink: 0;
  vertical-align: top;
}
.trip-thumb-fill {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}
.trip-media-thumb img {
  width: 88px;
  height: 60px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.trip-media-thumb:hover { border-color: var(--ve-primary, #e94560); }
.trip-media-thumb-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(0,0,0,0.35); font-size: 1.5rem;
}
.trip-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,4,8,0.72) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .trip-detail-hero-overlay { padding: 2.5rem; }
}

.trip-detail-hero-text { color: #fff; }
.trip-detail-hero-text .breadcrumb-item a { color: rgba(255,255,255,0.75); }
.trip-detail-hero-text .breadcrumb-item.active { color: rgba(255,255,255,0.55); }
.trip-detail-hero-text h1 {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #fff;
  margin: 0.5rem 0 0.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.trip-detail-hero-text p { color: rgba(255,255,255,0.85); margin: 0; }

/* Booking card */
.booking-card {
  background: #fff;
  border: 1px solid var(--ve-border);
  border-radius: var(--ve-r-lg);
  padding: 1.5rem;
  box-shadow: var(--ve-sh-md);
}
.booking-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ve-ink);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ve-border);
}

/* Ticket rows */
.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--ve-border);
  gap: 1rem;
}
.ticket-row:last-child { border-bottom: none; }
.ticket-info { flex: 1; min-width: 0; }
.ticket-name { font-weight: 600; font-size: 0.9rem; color: var(--ve-ink); }
.ticket-price { font-size: 0.8rem; color: var(--ve-muted); }

.qty-control { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--ve-rose);
  background: transparent;
  color: var(--ve-rose);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  padding: 0;
  line-height: 1;
}
.qty-btn:hover { background: var(--ve-rose); color: #fff; }
.qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.qty-val {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ve-ink);
}

.booking-trust {
  font-size: 0.78rem;
  color: var(--ve-muted);
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.5;
}
.booking-trust i { color: var(--ve-rose); margin-top: 0.1rem; flex-shrink: 0; }

/* Cart bar */
#cartBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--ve-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 0.875rem 1rem;
  z-index: 1040;
}
.cart-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cart-bar-summary { font-size: 0.9rem; color: var(--ve-muted); }
.cart-bar-summary strong { color: var(--ve-ink); font-size: 1rem; }

/* ================================================================
   Auth / Wizard
   ================================================================ */
.auth-shell {
  min-height: calc(100svh - 64px);
  background: var(--ve-grad-soft);
  padding: 2rem 1rem 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: var(--ve-r-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--ve-sh-lg);
  border: 1px solid var(--ve-border);
}
@media (min-width: 576px) {
  .auth-card { padding: 2.5rem 2.25rem; }
}

.auth-logo {
  font-family: var(--ve-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ve-ink);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.auth-card h1 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}
.auth-card .auth-sub {
  font-size: 0.9rem;
  color: var(--ve-muted);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

/* OTP reveal box */
.otp-box {
  background: var(--ve-rose-faint);
  border: 1.5px solid rgba(225,29,72,0.15);
  border-radius: var(--ve-r);
  padding: 1.25rem 1.25rem 1.5rem;
  margin-top: 1.25rem;
}
.otp-box-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ve-rose);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Wizard stepper */
.wizard-stepper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.wizard-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.wizard-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 15px);
  right: calc(-50% + 15px);
  height: 2px;
  background: var(--ve-border-mid);
}
.wizard-step-item.done:not(:last-child)::after,
.wizard-step-item.active:not(:last-child)::after {
  background: var(--ve-rose-pale);
}
.wizard-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--ve-border-mid);
  background: #fff;
  color: var(--ve-subtle);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-bottom: 0.3rem;
  flex-shrink: 0;
}
.wizard-step-item.active .wizard-dot {
  background: var(--ve-rose);
  border-color: var(--ve-rose);
  color: #fff;
  box-shadow: 0 3px 10px rgba(225,29,72,0.3);
}
.wizard-step-item.done .wizard-dot {
  background: var(--ve-grad-brand);
  border-color: transparent;
  color: #fff;
}
.wizard-step-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ve-subtle);
  text-align: center;
}
.wizard-step-item.active .wizard-step-label { color: var(--ve-rose); }
.wizard-step-item.done .wizard-step-label { color: var(--ve-rose-dark); }

/* ================================================================
   Footer
   ================================================================ */
.site-footer {
  background: #0c0508;
  color: #d4b8c3;
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid transparent;
  border-image: var(--ve-grad-brand) 1;
}
.footer-brand {
  font-family: var(--ve-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: #a08090;
  line-height: 1.6;
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ve-rose-mid);
  margin-bottom: 0.85rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: #a08090;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 3rem;
  padding-top: 1.25rem;
  font-size: 0.78rem;
  color: #705060;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom a { color: #a08090; }
.footer-bottom a:hover { color: #fff; }

/* ================================================================
   Document / content pages
   ================================================================ */
.doc-hero {
  background: var(--ve-grad-hero);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--ve-border);
}
.doc-breadcrumb .breadcrumb-item a { color: var(--ve-muted); font-size: 0.85rem; }
.doc-breadcrumb .breadcrumb-item.active { color: var(--ve-rose); font-size: 0.85rem; font-weight: 500; }
.doc-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--ve-border-mid); }

.markdown-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ve-body);
}
.markdown-body h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ve-rose-pale);
}
.markdown-body h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  color: var(--ve-rose-dark);
}
.markdown-body p { margin-bottom: 1.1rem; }
.markdown-body ul, .markdown-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
}
.markdown-body li { margin-bottom: 0.35rem; }
.markdown-body a { color: var(--ve-rose); }
.markdown-body blockquote {
  border-left: 4px solid var(--ve-rose-pale);
  padding: 0.75rem 1.25rem;
  background: var(--ve-bg-warm);
  border-radius: 0 var(--ve-r-sm) var(--ve-r-sm) 0;
  margin: 1.5rem 0;
  color: var(--ve-muted);
}
.markdown-body code {
  background: var(--ve-rose-faint);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.875em;
  color: var(--ve-rose-dark);
}

/* ================================================================
   Modals — bottom sheet on mobile
   ================================================================ */
.modal-content {
  border-radius: var(--ve-r-lg);
  border: 1px solid var(--ve-border);
  box-shadow: var(--ve-sh-lg);
  overflow: hidden;
}
.modal-header {
  background: var(--ve-grad-soft);
  border-bottom: 1px solid var(--ve-border);
  padding: 1.25rem 1.5rem;
}
.modal-title {
  font-family: var(--ve-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ve-ink);
}
.modal-body { padding: 1.5rem; }

@media (max-width: 575.98px) {
  .modal-dialog {
    margin: 0;
    max-width: 100%;
    display: flex;
    align-items: flex-end;
    min-height: 100%;
  }
  .modal.fade .modal-dialog { transform: translateY(100%); }
  .modal.show .modal-dialog { transform: none; }
  .modal-content {
    border-radius: var(--ve-r-xl) var(--ve-r-xl) 0 0;
    border-bottom: none;
  }
}

/* ================================================================
   Alerts
   ================================================================ */
.alert { border-radius: var(--ve-r-sm); font-size: 0.88rem; border-width: 1px; }
.alert-danger  { background: #fff1f2; border-color: #fecdd3; color: #9f1239; }
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.alert-info    { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }

/* ================================================================
   Error pages
   ================================================================ */
.error-shell {
  min-height: calc(100svh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ve-grad-soft);
  padding: 3rem 1rem;
}
.error-code {
  font-size: clamp(4rem, 18vw, 8rem);
  font-family: var(--ve-serif);
  font-weight: 700;
  background: var(--ve-grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ================================================================
   Utility
   ================================================================ */
.bg-soft-pink    { background: var(--ve-bg-warm); }
.bg-gradient-soft { background: var(--ve-grad-soft); }
.rounded-xl      { border-radius: var(--ve-r-lg) !important; }
.rounded-2xl     { border-radius: var(--ve-r-xl) !important; }
.shadow-sm-pink  { box-shadow: var(--ve-sh-sm); }
.text-rose       { color: var(--ve-rose) !important; }
.fw-serif        { font-family: var(--ve-serif); }

/* Sticky booking on desktop */
@media (min-width: 992px) {
  .sticky-booking { position: sticky; top: 88px; }
}

/* Better scrollbar on overflow containers */
.overflow-auto { scrollbar-width: thin; scrollbar-color: var(--ve-rose-pale) transparent; }
