/* ── Bay Area Experiences — Custom Styles ─────────────────────────────────── */

/* Hero Banner */
.hero-banner {
  position: relative;
  z-index: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Index page: navbar is fixed so it overlays the hero */
.page-index .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-banner > .container {
  position: relative;
  z-index: 1;
}

/* Experience Cards */
.experience-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.experience-card-img {
  width: 245px;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

/* Brand Colors */
:root {
  --bae-gold: #ffc107;
  --bae-dark: #212529;
}

/* Navbar */
.navbar-brand img {
  max-height: 40px;
  width: auto;
}


/* Admin drag handle */
#experienceList tr {
  cursor: grab;
}
#experienceList tr:active {
  cursor: grabbing;
}
#experienceList tr.sortable-ghost {
  opacity: 0.4;
  background: #fff3cd;
}

/* Booking flow step badges */
.booking-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Timeslot selector buttons */
#timeslotList .btn {
  min-width: 120px;
}

/* Footer */
footer {
  margin-top: auto;
}

/* Accessibility: focus outlines */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--bae-gold);
  outline-offset: 2px;
}

/* Mobile responsive tweaks */
@media (max-width: 576px) {
  .hero-banner {
    min-height: 60vh;
  }
  .hero-banner h1 {
    font-size: 2rem;
  }
  .display-3 {
    font-size: 2.2rem;
  }
}

/* ── Preference Engine — Persona Cards & Interest Tags ─────────────────────── */

.bae-persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.bae-persona-card {
  background: #ffffff;
  border: 1.5px solid #D0D8E0;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  user-select: none;
}
.bae-persona-card:hover {
  border-color: #A8B4C0;
  transform: translateY(-1px);
}
.bae-persona-card.selected {
  border-color: #C9952A;
  background: #FDF6EC;
}
.bae-persona-card.selected .bae-persona-check { display: flex; }
.bae-persona-icon  { font-size: 32px; margin-bottom: 8px; }
.bae-persona-name  { font-size: 13px; font-weight: 500; color: #1C1C1E; }
.bae-persona-desc  { font-size: 11px; color: #5A6A7A; margin-top: 4px; line-height: 1.4; }
.bae-persona-check {
  display: none;
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #C9952A; color: #fff;
  font-size: 11px; align-items: center; justify-content: center;
}
.bae-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.bae-tag-chip {
  background: #ffffff;
  border: 1px solid #D0D8E0;
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 12px;
  color: #5A6A7A;
  cursor: pointer;
  transition: all 0.12s;
  font-family: 'Inter', sans-serif;
}
.bae-tag-chip:hover { border-color: #A8B4C0; color: #1C1C1E; }
.bae-tag-chip.selected {
  background: #EFF4F9;
  border-color: #1A3557;
  color: #1A3557;
  font-weight: 500;
}

/* ── Discount Pricing (BAE-PRD-DISCOUNT-v1.1) ──────────────────────────────── */

/* Experience Card */
.bae-discount-badge {
  display: inline-block;
  background: #C9952A;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.bae-original-price {
  font-size: 14px;
  color: #9AABBF;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.bae-discounted-price {
  font-size: 22px;
  font-weight: 600;
  color: #1558A7;
  line-height: 1.1;
}

.bae-price-sub {
  font-size: 12px;
  color: #5A6A7A;
  margin-top: 4px;
}

/* Experience Detail Page */
.bae-detail-badge {
  display: inline-block;
  background: #C9952A;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bae-detail-orig-price {
  font-size: 20px;
  color: #9AABBF;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.bae-detail-disc-price {
  font-size: 36px;
  font-weight: 600;
  color: #1558A7;
  line-height: 1;
}

.bae-detail-savings {
  font-size: 13px;
  color: #1558A7;
  font-weight: 500;
  margin-top: 4px;
}

/* Checkout summary */
.bae-checkout-discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.bae-checkout-discount-label,
.bae-checkout-discount-amount {
  font-size: 13px;
  color: #1558A7;
  font-weight: 500;
}

/* Booking confirmation savings */
.bae-savings-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #2D7A4F;
  font-weight: 500;
  margin-top: 4px;
}

/* Admin / account discount indicator */
.bae-discount-indicator {
  font-size: 11px;
  color: #1558A7;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

/* ── Weather Widget (homepage) ──────────────────────────────────────────── */
.bae-weather-widget {
  padding: 1rem 0 1.25rem;
  background: #fff;
}
.bae-weather-label {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.bae-city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.bae-city-pill {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 0.5px solid #dee2e6;
  background: #f8f9fa;
  color: #6c757d;
  cursor: pointer;
  transition: all .12s;
  line-height: 1.5;
}
.bae-city-pill:hover {
  border-color: #ced4da;
  color: #1C1C1E;
}
.bae-city-pill.active {
  background: #1A3557;
  border-color: #1A3557;
  color: #fff;
  font-weight: 500;
}
.bae-weather-card {
  background: #fff;
  border: 0.5px solid #e9ecef;
  border-radius: 12px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 110px;
}
.bae-weather-now {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  min-width: 120px;
  gap: 2px;
  flex-shrink: 0;
}
.bae-current-emoji {
  font-size: 28px;
  line-height: 1;
}
.bae-current-temp {
  font-size: 22px;
  font-weight: 500;
  color: #1C1C1E;
  margin-top: 4px;
}
.bae-current-cond {
  font-size: 11px;
  color: #6c757d;
  text-align: center;
}
.bae-weather-vdivider {
  width: 0.5px;
  background: #e9ecef;
  flex-shrink: 0;
}
.bae-forecast-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  flex: 1;
  min-width: 0;
}
.bae-forecast-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  gap: 2px;
  border-right: 0.5px solid #e9ecef;
  font-size: 11px;
  text-align: center;
}
.bae-forecast-day:last-child {
  border-right: none;
}
.bae-forecast-day.bae-today {
  background: #f8f9fa;
}
.bae-day-label {
  font-weight: 500;
  color: #6c757d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bae-forecast-day.bae-today .bae-day-label {
  color: #C9952A;
}
.bae-day-date {
  color: #adb5bd;
  font-size: 10px;
}
.bae-day-emoji {
  font-size: 18px;
  margin: 3px 0;
}
.bae-day-high {
  font-size: 14px;
  font-weight: 500;
  color: #1C1C1E;
}
.bae-day-low {
  font-size: 11px;
  color: #6c757d;
}
.bae-rain-pct {
  font-size: 10px;
  color: #1558A7;
  margin-top: 2px;
}
.bae-skeleton {
  background: #f8f9fa;
  animation: bae-shimmer 1.4s infinite;
}
@keyframes bae-shimmer {
  0%, 100% { opacity: .6; }
  50%       { opacity: 1;  }
}
.bae-weather-attribution {
  font-size: 10px;
  color: #adb5bd;
  text-align: right;
  margin-top: 6px;
}
.bae-weather-attribution a {
  color: #adb5bd;
  text-decoration: none;
}
.bae-weather-attribution a:hover {
  color: #6c757d;
}

/* ── Weather — Booking Confirmation ────────────────────────────────────── */
.bae-confirm-weather {
  background: #F2F5F8;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}
.bae-confirm-weather-header {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #5A6A7A;
  margin-bottom: 12px;
}
.bae-confirm-forecast-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 12px;
}
.bae-confirm-forecast-day {
  flex: 0 0 72px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
  border: 1px solid #E5EAF0;
}
.bae-confirm-tour-day {
  background: #FDF6EC;
  border-color: #C9952A;
}
.bae-confirm-day-label {
  font-size: 10px;
  font-weight: 600;
  color: #1A3557;
  margin-bottom: 2px;
}
.bae-confirm-tour-day .bae-confirm-day-label {
  color: #C9952A;
}
.bae-confirm-day-date  { font-size: 9px; color: #888; margin-bottom: 4px; }
.bae-confirm-day-emoji { font-size: 1.3rem; margin-bottom: 4px; }
.bae-confirm-day-high  { font-size: 13px; font-weight: 700; color: #1C1C1E; }
.bae-confirm-day-low   { font-size: 11px; color: #888; }
.bae-confirm-rain      { font-size: 9px; color: #1558A7; margin-top: 2px; }
.bae-confirm-weather-tip {
  background: #fff;
  border-left: 3px solid #C9952A;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 13px;
  color: #1C1C1E;
  margin-bottom: 8px;
}
.bae-confirm-weather-attr {
  font-size: 11px;
  color: #aaa;
  text-align: right;
}
.bae-confirm-weather-attr a { color: #aaa; }

/* ── Weather — Staff Briefing Chip ─────────────────────────────────────── */
.brief-weather-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EFF4F9;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.brief-weather-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brief-weather-emoji  { font-size: 2rem; line-height: 1; }
.brief-weather-cond   { font-size: 14px; font-weight: 600; color: #1A3557; }
.brief-weather-city   { font-size: 11px; color: #888; margin-top: 2px; }
.brief-weather-right  { text-align: right; }
.brief-weather-temps  { font-size: 18px; font-weight: 700; color: #1A3557; }
.brief-weather-rain   { font-size: 12px; color: #1558A7; margin-top: 2px; }

/* ── Weather Widget — Index Page ───────────────────────────────────────── */
#weatherWidget {
  background: #1A3557;
  padding: 20px 0;
}
.w-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.w-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C9952A;
  margin-bottom: 10px;
}
.w-label svg { flex-shrink: 0; }

/* City pills */
.w-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.w-pill {
  background: rgba(255,255,255,.12);
  color: #d0dce8;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.w-pill:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.w-pill.active {
  background: #C9952A;
  color: #fff;
  border-color: #C9952A;
}

/* Main card */
.w-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 20px;
}

/* Current conditions (left) */
.w-now {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  flex-shrink: 0;
}
.w-emoji { font-size: 2.4rem; line-height: 1; }
.w-temp  { font-size: 1.6rem; font-weight: 700; color: #fff; margin-top: 4px; }
.w-cond  { font-size: 12px; color: #a8bfd4; text-align: center; margin-top: 2px; }

/* Vertical divider */
.w-vdiv {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.18);
  margin: 0 20px;
  flex-shrink: 0;
}

/* Forecast strip (right) */
.w-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
  gap: 6px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.w-strip::-webkit-scrollbar { display: none; }

.w-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 52px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 8px 6px;
  gap: 3px;
}
.w-day.today {
  background: rgba(201,149,42,.25);
  border: 1px solid rgba(201,149,42,.4);
}
.w-dname  { font-size: 10px; font-weight: 600; color: #a8bfd4; text-transform: uppercase; letter-spacing: .05em; }
.w-ddate  { font-size: 10px; color: #7a96b0; }
.w-demoji { font-size: 1.4rem; line-height: 1; margin: 2px 0; }
.w-dhigh  { font-size: 13px; font-weight: 700; color: #fff; }
.w-dlow   { font-size: 11px; color: #7a96b0; }
.w-drain  { font-size: 10px; color: #7ab8e8; margin-top: 2px; }

/* Skeleton loading state */
.w-skeleton {
  min-height: 90px;
  background: linear-gradient(90deg, rgba(255,255,255,.06) 25%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 75%);
  background-size: 200% 100%;
  animation: w-shimmer 1.4s infinite;
}
@keyframes w-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 575px) {
  .w-card { flex-direction: column; gap: 14px; }
  .w-vdiv { width: 100%; height: 1px; margin: 0; align-self: auto; }
  .w-now  { flex-direction: row; gap: 14px; min-width: unset; width: 100%; justify-content: center; }
}

/* ── Provider Incentives — Apply page ───────────────────────────────────────── */

.bae-tier-feature-earned {
  color: #2D7A4F;
  font-weight: 500;
}

.bae-provider-incentives {
  background: #F2F5F8;
  border-radius: 12px;
  padding: 36px 28px;
}

.bae-incentive-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}

/* Rate pathway */
.bae-rate-pathway {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.bae-pathway-step {
  text-align: center;
  flex: 1;
}

.bae-pathway-rate {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6c757d;
}

.bae-pathway-label {
  font-size: .72rem;
  color: #6c757d;
  line-height: 1.3;
}

.bae-pathway-active .bae-pathway-rate  { color: #C9952A; }
.bae-pathway-active .bae-pathway-label { color: #C9952A; }

.bae-pathway-locked .bae-pathway-rate  { color: #2D7A4F; }
.bae-pathway-locked .bae-pathway-label { color: #2D7A4F; }

.bae-pathway-arrow {
  color: #adb5bd;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Referral steps */
.bae-referral-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bae-ref-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
}

.bae-ref-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1A3557;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.bae-ref-num-reward {
  background: #2D7A4F;
}

/* Best-case banner */
.bae-best-case-banner {
  background: #1A3557;
  color: #fff;
  border-radius: 10px;
  padding: 18px 24px;
}

.bae-best-case-figure {
  color: #F5C97A;
  font-weight: 700;
  font-size: 1.1rem;
}


/* ── Featured Experiences Section ─────────────────────────────────────────── */

.bae-featured-section {
  background: #F2F5F8;
  padding: 60px 0 48px;
}

.bae-featured-header {
  text-align: center;
  margin-bottom: 36px;
}

.bae-feat-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2E7D8C;
  margin-bottom: 8px;
}

.bae-feat-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #1A3557;
  margin-bottom: 12px;
  line-height: 1.3;
}

.bae-feat-title em {
  color: #2E7D8C;
  font-style: italic;
}

.bae-feat-view-all {
  font-size: 14px;
  color: #1A3557;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.bae-feat-view-all:hover {
  opacity: 1;
  text-decoration: underline;
}

.bae-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bae-feat-card {
  background: #fff;
  border-radius: 16px;
  border: 0.5px solid #D0D8E0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bae-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 53, 87, 0.12);
}

.bae-feat-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.bae-feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.bae-feat-card:hover .bae-feat-img {
  transform: scale(1.04);
}

.bae-feat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.bae-feat-duration {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bae-feat-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 3px 9px;
  border-radius: 20px;
}

.slots-good   { background: rgba(45, 122, 79, 0.85); }
.slots-medium { background: rgba(201, 149, 42, 0.88); }
.slots-low    { background: rgba(176, 58, 46, 0.82); }

.bae-feat-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bae-feat-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5A6A7A;
}

.bae-feat-name {
  font-size: 16px;
  font-weight: 700;
  color: #1A3557;
  margin: 0;
  line-height: 1.3;
}

.bae-feat-desc {
  font-size: 13px;
  color: #5A6A7A;
  line-height: 1.5;
  margin: 0;
}

.bae-feat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bae-feat-pill {
  background: #EFF4F9;
  border: none;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #1A3557;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.bae-feat-pill:hover,
.bae-feat-pill.selected {
  background: #1A3557;
  color: #fff;
}

.bae-feat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.bae-feat-cta {
  display: inline-block;
  background: #1A3557;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

.bae-feat-cta:hover {
  background: #2E7D8C;
  color: #fff;
}

.bae-feat-shuffle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.bae-feat-shuffle-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1.5px solid #1A3557;
  color: #1A3557;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.bae-feat-shuffle-btn:hover:not(:disabled) {
  background: #1A3557;
  color: #fff;
}

.bae-feat-shuffle-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bae-feat-shuffle-note {
  font-size: 12px;
  color: #5A6A7A;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .bae-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .bae-feat-title {
    font-size: 22px;
  }
}


/* ── Sample Itinerary Section ──────────────────────────────────────────────── */

.bae-sample-itinerary {
  background: #F2F5F8;
  padding: 48px 0 52px;
  border-top: 1px solid #D0D8E0;
  border-bottom: 1px solid #D0D8E0;
}

.bae-si-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.bae-si-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C9952A;
  margin-bottom: 6px;
}

.bae-si-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #1A3557;
  margin: 0 0 10px;
  line-height: 1.2;
}

.bae-si-intro {
  font-size: 15px;
  color: #5A6A7A;
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.bae-si-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.bae-si-duration-chip {
  background: #1A3557;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.bae-si-pickup-note {
  font-size: 12px;
  color: #5A6A7A;
  font-style: italic;
}

.bae-si-stops {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}

.bae-si-stop {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 20px;
  min-height: 100px;
}

.bae-si-time-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.bae-si-time {
  font-size: 12px;
  font-weight: 600;
  color: #2E7D8C;
  white-space: nowrap;
  background: #E1F2F5;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .02em;
}

.bae-si-connector {
  width: 1.5px;
  flex: 1;
  background: #D0D8E0;
  margin-top: 6px;
}

.bae-si-stop-body {
  padding-bottom: 28px;
  padding-top: 2px;
}

.bae-si-stop-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bae-si-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1A3557;
  flex-shrink: 0;
}

.bae-si-stop-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A3557;
  margin: 0;
  line-height: 1.2;
}

.bae-si-stop-duration {
  font-size: 11px;
  color: #5A6A7A;
  background: #F2F5F8;
  border: 0.5px solid #D0D8E0;
  padding: 2px 8px;
  border-radius: 9999px;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

.bae-si-stop-desc {
  font-size: 14px;
  color: #5A6A7A;
  line-height: 1.6;
  margin: 0 0 10px;
}

.bae-si-highlight {
  font-size: 13px;
  color: #1A3557;
  font-style: italic;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.bae-si-highlight-icon {
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bae-si-return {
  font-size: 14px;
  color: #1A3557;
  font-weight: 500;
  padding: 14px 18px;
  background: #EFF4F9;
  border-radius: 10px;
  border-left: 3px solid #1A3557;
  margin: 8px 0 20px;
  max-width: 720px;
}

.bae-si-disclaimer {
  font-size: 12px;
  color: #5A6A7A;
  background: #FDF6EC;
  border: 0.5px solid #E8D5A3;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 720px;
  line-height: 1.5;
}

.bae-si-disclaimer-icon { font-size: 14px; flex-shrink: 0; }

.bae-si-disclaimer-link {
  color: #2E7D8C;
  font-weight: 500;
  text-decoration: none;
  margin-left: 4px;
  white-space: nowrap;
}

.bae-si-disclaimer-link:hover { text-decoration: underline; }

/* Skeleton / generating state */
.bae-sample-skeleton .bae-skel-line {
  height: 14px;
  background: linear-gradient(
    90deg, #E8EEF4 25%, #D8E4EC 50%, #E8EEF4 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: bae-skel-shimmer 1.4s infinite;
}

@keyframes bae-skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.bae-skel-stop {
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  border: 0.5px solid #D0D8E0;
  margin-bottom: 10px;
}

.bae-si-generating-note {
  font-size: 13px;
  color: #5A6A7A;
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

@media (max-width: 768px) {
  .bae-si-header { flex-direction: column; }
  .bae-si-meta   { align-items: flex-start; }
  .bae-si-stop   { grid-template-columns: 64px 1fr; gap: 0 12px; }
  .bae-si-time   { font-size: 11px; }
  .bae-si-stop-name { font-size: 15px; }
}

/* ============================================================
   BAY AREA EXPERIENCES — Related Experiences Section
   BAE-PRD-RELATED-EXP-v1.0
   Placement: experience detail page, below reviews
   ============================================================ */

.bae-related-section {
  background: #ffffff;
  padding: 52px 0 60px;
  border-top: 1px solid #D0D8E0;
}

.bae-related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.bae-related-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C9952A;
  margin-bottom: 6px;
}
.bae-related-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #1A3557;
  margin: 0;
  line-height: 1.2;
}
.bae-related-title-em {
  font-style: italic;
  color: #2E7D8C;
}
.bae-related-viewall {
  font-size: 13px;
  font-weight: 500;
  color: #2E7D8C;
  text-decoration: none;
  border-bottom: 1px solid #2E7D8C;
  padding-bottom: 1px;
  white-space: nowrap;
  margin-bottom: 4px;
  opacity: .85;
  transition: opacity .15s;
}
.bae-related-viewall:hover { opacity: 1; }

.bae-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .bae-related-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .bae-related-grid::-webkit-scrollbar { display: none; }
  .bae-related-grid { -ms-overflow-style: none; scrollbar-width: none; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .bae-related-grid { grid-template-columns: repeat(2, 1fr); }
}

.bae-related-card {
  background: #ffffff;
  border-radius: 14px;
  border: 0.5px solid #D0D8E0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  min-width: 240px;
  scroll-snap-align: start;
}
.bae-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,53,87,.09);
}

.bae-related-img-link { display: block; text-decoration: none; }
.bae-related-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.bae-related-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.bae-related-card:hover .bae-related-img-el { transform: scale(1.04); }
.bae-related-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,53,87,0) 50%, rgba(26,53,87,.45) 100%);
  pointer-events: none;
}
.bae-related-duration {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(26,53,87,.82);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.bae-related-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #C9952A;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 1;
  letter-spacing: .02em;
}

.bae-related-body { padding: 14px 14px 0; flex: 1; }
.bae-related-category {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2E7D8C;
  margin-bottom: 5px;
}
.bae-related-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bae-related-name-link { color: #1A3557; text-decoration: none; }
.bae-related-name-link:hover { color: #2E7D8C; }

.bae-related-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.bae-related-star { color: #C9952A; font-size: 12px; }
.bae-related-rating-val { font-size: 12px; font-weight: 600; color: #1A3557; }
.bae-related-review-count { font-size: 11px; color: #5A6A7A; }

.bae-related-footer {
  padding: 10px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.bae-related-price { display: flex; flex-direction: column; }
.bae-related-price-sub { font-size: 10px; color: #5A6A7A; margin-top: 1px; }
.bae-related-cta {
  display: inline-block;
  background: #1A3557;
  color: #fff;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.bae-related-cta:hover { background: #2E7D8C; color: #fff; }


/* ─── BAE Luxury — Tab Switcher ─────────────────────────────────────────────── */
.bae-tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #D0D8E0;
  margin-bottom: 36px;
}
.bae-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5A6A7A;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.bae-tab:hover { color: #1A3557; }
.bae-tab.active {
  color: #1A3557;
  border-bottom-color: #1A3557;
  font-weight: 600;
}
.bae-tab#tabLuxury.active {
  color: #C9952A;
  border-bottom-color: #C9952A;
}
.bae-tab-icon { font-size: 16px; }
.bae-tab-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #C9952A;
  color: #fff;
  padding: 2px 7px;
  border-radius: 9999px;
  margin-left: 4px;
}
.bae-tab-panel { display: block; }


/* ─── BAE Luxury — Section Header ───────────────────────────────────────────── */
.bae-luxury-header { margin-bottom: 36px; }
.bae-luxury-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C9952A;
  margin-bottom: 8px;
}
.bae-luxury-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: #1A3557;
  margin: 0 0 10px;
}
.bae-luxury-title em { font-style: italic; color: #C9952A; }
.bae-luxury-desc {
  font-size: 15px;
  color: #5A6A7A;
  max-width: 520px;
  line-height: 1.6;
}
.bae-luxury-empty {
  padding: 40px 0;
  color: #5A6A7A;
  font-size: 15px;
}
.bae-luxury-empty a { color: #C9952A; }


/* ─── BAE Luxury — Grid ─────────────────────────────────────────────────────── */
.bae-luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .bae-luxury-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .bae-luxury-grid::-webkit-scrollbar { display: none; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .bae-luxury-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ─── BAE Luxury — Card ─────────────────────────────────────────────────────── */
.bae-lux-card {
  background: #0D1A2A;
  border-radius: 14px;
  border: 0.5px solid rgba(201,149,42,.27);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  scroll-snap-align: start;
  transition: transform .22s ease, box-shadow .22s ease;
}
.bae-lux-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,149,42,.18);
}

.bae-lux-img-link { display: block; text-decoration: none; }
.bae-lux-img { position: relative; height: 180px; overflow: hidden; }
.bae-lux-img-el {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .38s ease;
  filter: brightness(.85) saturate(.9);
}
.bae-lux-card:hover .bae-lux-img-el { transform: scale(1.05); }
.bae-lux-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,26,42,0) 40%, rgba(13,26,42,.75) 100%);
}

.bae-lux-vehicle-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(201,149,42,.92);
  color: #0D1A2A;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.bae-lux-vehicle-icon { font-size: 12px; }
.bae-lux-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(13,26,42,.82);
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.bae-lux-body { padding: 16px 16px 0; flex: 1; }
.bae-lux-category {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C9952A;
  margin-bottom: 6px;
}
.bae-lux-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bae-lux-name-link { color: #F0E8D8; text-decoration: none; }
.bae-lux-name-link:hover { color: #C9952A; }
.bae-lux-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: rgba(255,255,255,.65);
}
.bae-lux-star { color: #C9952A; }
.bae-lux-review-ct { color: rgba(255,255,255,.4); }

.bae-lux-footer {
  padding: 12px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid rgba(201,149,42,.25);
  gap: 8px;
}
.bae-price-lux { color: #C9952A; font-size: 22px; font-weight: 700; }
.bae-lux-price-sub { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 2px; }
.bae-lux-cta {
  display: inline-block;
  background: #C9952A;
  color: #0D1A2A;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.bae-lux-cta:hover { background: #E8B84B; color: #0D1A2A; }


/* ─── BAE Luxury — Detail Page Vehicle Block ─────────────────────────────────── */
.bae-lux-vehicle-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0D1A2A;
  border-left: 4px solid #C9952A;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0 0;
}
.bae-lux-vb-icon  { font-size: 28px; }
.bae-lux-vb-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #C9952A; }
.bae-lux-vb-name  { font-size: 18px; font-weight: 600; color: #F0E8D8; }
.bae-lux-vb-sub   { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }

/* Detail page luxury CTA button */
.bae-lux-book-btn {
  background: #C9952A;
  color: #0D1A2A;
  border: none;
}
.bae-lux-book-btn:hover { background: #E8B84B; color: #0D1A2A; }
