/* ============================================================
   Tripvia — Design System
   Aesthetic: Clean Travel Marketplace (GetYourGuide-inspired)
   Font: Outfit
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --cream:        #F7F8FA;
  --cream-dark:   #EEF0F4;
  --ink:          #1A1A2E;
  --ink-soft:     #374151;
  --amber:        #FF7A00;
  --amber-light:  #FFF3E0;
  --amber-muted:  #FFB366;
  --forest:       #16A34A;
  --forest-light: #DCFCE7;
  --muted:        #6B7280;
  --border:       #E5E7EB;
  --border-soft:  #F3F4F6;
  --white:        #FFFFFF;
  --blue:         #0066CC;
  --blue-dark:    #0052A3;
  --blue-light:   #EBF4FF;

  --shadow-xs:  0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.16);

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --nav-h: 60px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ── Typography helpers ─────────────────────────────────────── */
.font-display {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* Staggered card reveals */
.tours-grid .tour-card,
.cities-grid .city-card {
  animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tours-grid .tour-card:nth-child(1),  .cities-grid .city-card:nth-child(1)  { animation-delay: 0.04s; }
.tours-grid .tour-card:nth-child(2),  .cities-grid .city-card:nth-child(2)  { animation-delay: 0.09s; }
.tours-grid .tour-card:nth-child(3),  .cities-grid .city-card:nth-child(3)  { animation-delay: 0.14s; }
.tours-grid .tour-card:nth-child(4),  .cities-grid .city-card:nth-child(4)  { animation-delay: 0.19s; }
.tours-grid .tour-card:nth-child(5),  .cities-grid .city-card:nth-child(5)  { animation-delay: 0.24s; }
.tours-grid .tour-card:nth-child(6),  .cities-grid .city-card:nth-child(6)  { animation-delay: 0.29s; }
.tours-grid .tour-card:nth-child(7),  .cities-grid .city-card:nth-child(7)  { animation-delay: 0.33s; }
.tours-grid .tour-card:nth-child(8),  .cities-grid .city-card:nth-child(8)  { animation-delay: 0.37s; }
.tours-grid .tour-card:nth-child(n+9), .cities-grid .city-card:nth-child(n+9) { animation-delay: 0.40s; }


/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  height: var(--nav-h);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.navbar-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-logo:hover .logo-mark {
  transform: scale(1.12) translateY(-1px);
}

.logo-text {
  font-family: 'Outfit', system-ui, sans-serif;
  font-style: normal;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Search (hidden — search is in hero on homepage) */
.navbar-search { display: none; }

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex-shrink: 0;
}

.navbar-nav > span {
  display: contents;
}

.nav-link, .nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 11px;
  color: var(--ink-soft);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-link:hover, .nav-btn:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-svg {
  width: 17px;
  height: 17px;
}

.cart-link { position: relative; }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  background: var(--blue);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1.5px solid var(--white);
}

.logout-form { display: inline; }

/* Subnav */
.subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.subnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }

.subnav a {
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
  display: block;
}

.subnav a:hover { color: var(--amber); }
.subnav a.active { color: var(--ink); border-bottom-color: var(--amber); }


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.04) 0%,
    rgba(0,0,0,.22) 100%);
  z-index: 1;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.hero-arrow:hover { background: rgba(255,255,255,.28); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 640px;
  width: 100%;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-eyebrow { display: none; }

.hero-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-title em {
  font-style: normal;
  color: var(--white);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-search {
  display: flex;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
  max-width: 560px;
  margin: 0 auto;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 22px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}

::placeholder { color: #B0B7C3; }
.hero-search input::placeholder { color: #B0B7C3; }

.hero-search button {
  background: var(--blue);
  border: none;
  color: var(--white);
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 50px;
  margin: 4px;
}

.hero-search button:hover { background: var(--blue-dark); }

/* Scroll hint removed */


/* ═══════════════════════════════════════════════════════════
   LAYOUT — Sections
   ═══════════════════════════════════════════════════════════ */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-sm {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.section-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}

.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color .15s;
  flex-shrink: 0;
}
.section-link:hover { color: #A66B2E; text-decoration: underline; text-underline-offset: 3px; }

.section-bg {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}


/* ═══════════════════════════════════════════════════════════
   CITY CARDS
   ═══════════════════════════════════════════════════════════ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.city-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--ink);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s ease,
              opacity 0.3s ease;
  filter: brightness(0.95) saturate(1.05);
}

.city-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.88) saturate(1.1);
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(15,10,6,.28) 55%,
    rgba(15,10,6,.75) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  transition: background .3s;
}

.city-card:hover .city-card-overlay {
  background: linear-gradient(
    to bottom,
    transparent 15%,
    rgba(15,10,6,.3) 50%,
    rgba(15,10,6,.88) 100%
  );
}

.city-card-name {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: transform .3s ease;
}

.city-card:hover .city-card-name {
  transform: translateY(0);
}

.city-card-country {
  color: rgba(255,255,255,.68);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

.city-card:hover .city-card-country {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════
   TOUR CARDS
   ═══════════════════════════════════════════════════════════ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.tour-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-dark);
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.06);
}

/* Warm tint on hover */
.tour-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(193,125,57,.0);
  transition: background .4s ease;
  pointer-events: none;
}

.tour-card:hover .tour-card-img::after {
  background: rgba(193,125,57,.08);
}

.badge-sell-out {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  z-index: 2;
}

.tour-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tour-card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 5px;
}

.tour-card-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  margin-bottom: 7px;
}

.stars {
  color: var(--amber);
  letter-spacing: -1px;
  font-size: 12px;
  line-height: 1;
}

.rating-value {
  font-weight: 700;
  color: var(--ink);
  font-size: 12.5px;
}

.rating-count {
  color: var(--muted);
  font-size: 12px;
}

.tour-card-info {
  font-size: 13px;
  /*color: var(--muted); FEZ*/
  color: darkslategray;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.tour-card-info span + span::before {
  content: '·';
  margin-right: 6px;
  color: var(--border);
}

.tour-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.tour-card-free-cancel {
  /*font-size: 11px; FEZ*/
  font-size: 12px;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 3px;
}

.tour-card-price {
  text-align: right;
  flex-shrink: 0;
}

.tour-card-price .from {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.tour-card-price .amount {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}


/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 20px;
  background: var(--white);
}

.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.trust-item { padding: 14px 12px; }

.trust-item-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--ink);
}

.trust-item-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.trust-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}


/* ═══════════════════════════════════════════════════════════
   SCROLL ROW
   ═══════════════════════════════════════════════════════════ */
.scroll-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  padding-left: 2px;
  padding-right: 2px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Top destinations — 2-row fixed grid */
.cities-2row-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* Scroll nav arrows */
.scroll-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.scroll-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.scroll-nav-btn:hover {
  background: var(--cream);
  border-color: var(--ink);
}
.scroll-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}


/* ═══════════════════════════════════════════════════════════
   HOW LOCALGUIDE WORKS
   ═══════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px;
}

.how-it-works-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.how-it-works-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  text-align: center;
}

.how-it-works-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.how-step-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--amber);
}

.how-step h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.how-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.how-step-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   TOURS HOME GRID  (2 rows × 4 cols)
   ═══════════════════════════════════════════════════════════ */
.tours-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


/* ═══════════════════════════════════════════════════════════
   FILTERS BAR
   ═══════════════════════════════════════════════════════════ */
.filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 20px;
}
.filters-bar::-webkit-scrollbar { display: none; }

.filters-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  padding: 12px 0;
  white-space: nowrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, box-shadow .15s;
  white-space: nowrap;
  text-decoration: none;
}

.filter-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}


/* ═══════════════════════════════════════════════════════════
   CITY PAGE HEADER
   ═══════════════════════════════════════════════════════════ */
.city-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--ink);
}

.city-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.9);
}

.city-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,12,10,.72) 0%,
    rgba(15,12,10,.28) 55%,
    transparent 100%
  );
}

.city-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  max-width: 1280px;
  margin: 0 auto;
  left: 0; right: 0;
}

.city-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
}

.city-hero-title {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 10px;
}

.city-hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 560px;
}

/* section count label */
.section-count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  flex-shrink: 0;
}

/* empty state */
.empty-state {
  text-align: center;
  padding: 64px 20px;
  color: var(--muted);
}
.empty-state-icon { font-size: 48px; margin-bottom: 14px; }
.empty-state h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.empty-state p { font-size: 15px; margin-bottom: 20px; }


/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════ */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
}

.breadcrumb a { transition: color .15s; }
.breadcrumb a:hover { color: var(--amber); }

.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--ink-soft); font-weight: 500; }


/* ═══════════════════════════════════════════════════════════
   TOUR DETAIL
   ═══════════════════════════════════════════════════════════ */
/* ── Tour hero (full-width image above layout) ── */
.tour-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 0;
  position: relative;
}

.tour-hero img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  filter: brightness(1.12) saturate(1.05);
}

.tour-hero .badge-sell-out {
  position: absolute;
  top: 32px;
  left: 32px;
}

.tour-detail-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px 64px;
  display: grid;
  grid-template-columns: 1fr 348px;
  gap: 48px;
}

.tour-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-light);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.tour-detail-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.tour-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: var(--muted);
}

.tour-detail-meta .rating-value {
  font-weight: 700;
  color: var(--ink);
}

.detail-provider {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.free-cancel-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--forest);
  font-weight: 500;
  font-size: 13px;
}

/* ── Tour Quick-Feature Strip (GYG-style) ──────────────────── */
.tour-quick-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  padding: 16px 0 4px;
  margin-top: 14px;
}

.tqs-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.tqs-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-soft);
}

.tqs-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.tqs-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.tqs-icon-green {
  background: var(--forest-light);
  color: var(--forest);
}

/* ────────────────────────────────────────────────────────── */
.detail-section {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-section h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

.detail-section p, .detail-section li {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Includes / Excludes lists */
.detail-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  /*gap: 9px; FEZ*/
}

.detail-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.detail-section ul li::before {
  content: '✓';
  color: var(--forest);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  background: var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-section ul.excludes li::before {
  content: '×';
  color: #B33;
  background: #FEF2F2;
  font-size: 13px;
}

.detail-section ul.not-allowed li::before {
  content: '!';
  color: var(--amber);
  background: var(--amber-light);
}

/* Highlights */
.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.highlights-list li {
  display: flex;
  gap: 12px;
  padding: 5px 0; FEZ
  font-size: 15px;
  color: var(--ink-soft);
  /*border-bottom: 1px solid var(--border-soft); FEZ*/
  line-height: 1.55;
}

.highlights-list li:first-child { padding-top: 0; }
.highlights-list li:last-child { border-bottom: none; padding-bottom: 0; }

.highlights-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 5px;
}

/* Info rows */
.info-row {
  display: flex;
  gap: 14px;
  font-size: 15px;
  margin-bottom: 14px;
}

.info-row:last-child { margin-bottom: 0; }

.info-row-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-row-content {}
.info-row-label { font-weight: 600; font-size: 13px; color: var(--ink); margin-bottom: 2px; }
.info-row-value { color: var(--muted); font-size: 13.5px; line-height: 1.5; }


/* ═══════════════════════════════════════════════════════════
   BOOKING WIDGET
   ═══════════════════════════════════════════════════════════ */
.booking-widget {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  align-self: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}

/* ── Booking Widget — price row ─────────────────────────────── */
.bw-sellout-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DC2626;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.bw-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.bw-from {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
}

.bw-amount {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.bw-per {
  font-size: 14px;
  color: var(--muted);
  margin-left: 3px;
}

.bw-instant-badge {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* ── Booking Widget — field rows (GYG style) ─────────────────── */
.bw-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  margin-bottom: 8px;
  background: var(--white);
  user-select: none;
}

.bw-field:hover { border-color: #C0B4AA; }

.bw-field:focus-within,
.bw-field.open {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255,122,0,.10);
  outline: none;
}

.bw-field:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255,122,0,.10);
  outline: none;
}

.bw-field-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-soft);
}

.bw-field-body { flex: 1; min-width: 0; }

.bw-field-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.bw-field-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bw-field-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.bw-field-chevron {
  flex-shrink: 0;
  color: var(--muted);
  pointer-events: none;
  transition: transform .2s;
}

.bw-field.open .bw-field-chevron { transform: rotate(180deg); }

/* ── Free cancellation note ──────────────────────────────────── */
.bw-free-cancel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #16a34a;
  margin: 4px 0 10px;
}

/* ── Custom calendar dropdown ────────────────────────────────── */
.bw-calendar {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  padding: 14px 10px 10px;
  margin-bottom: 8px;
  animation: calFadeIn .15s ease both;
}

@keyframes calFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bw-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 4px;
}

.bw-cal-nav-btn {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
  transition: border-color .15s, background .15s, color .15s;
  flex-shrink: 0;
}

.bw-cal-nav-btn:hover:not(:disabled) {
  border-color: var(--amber);
  background: var(--amber-light);
  color: var(--amber);
}

.bw-cal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bw-cal-month-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  flex: 1;
  letter-spacing: -0.01em;
}

.bw-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 3px;
}

.bw-cal-weekdays span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  padding: 4px 0;
}

.bw-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.bw-cal-empty { aspect-ratio: 1; }

.bw-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border: none;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .12s, color .12s;
  font-family: 'Outfit', sans-serif;
}

.bw-cal-day:hover:not(:disabled):not(.selected) {
  background: var(--cream-dark);
}

.bw-cal-day.today:not(.selected) {
  font-weight: 800;
  color: var(--amber);
  box-shadow: inset 0 0 0 1.5px var(--amber);
}

.bw-cal-day.selected {
  background: var(--amber);
  color: #fff;
  font-weight: 700;
}

.bw-cal-day.past,
.bw-cal-day:disabled {
  color: var(--border);
  cursor: not-allowed;
  background: none;
}

.btn-book {
  /*width: 100%;*/
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background .15s, transform .15s;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.btn-book:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-book:active {
  transform: translateY(0);
}

.booking-widget-perks {
  margin-top: 5px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.perk-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}

.perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  background: var(--cream-dark);
}

.perk-free { color: var(--forest); font-weight: 600; }


/* ═══════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.includes-excludes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 12px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-light), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: var(--amber);
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.reviewer-country {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

.review-card .stars {
  font-size: 11px;
  flex-shrink: 0;
}

.review-card-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}

.review-card-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--forest);
  font-weight: 500;
  margin-top: 10px;
}


/* ═══════════════════════════════════════════════════════════
   CART
   ═══════════════════════════════════════════════════════════ */
.cart-layout {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 52px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.cart-page-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cart-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 72px 20px;
  max-width: 440px;
  margin: 0 auto;
}

.cart-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.cart-empty h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cart-empty p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}

.cart-item:first-child { padding-top: 0; }

.cart-item-img {
  width: 96px;
  height: 76px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-dark);
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-body { flex: 1; min-width: 0; }

.cart-item-city {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 3px;
}

.cart-item-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.cart-item-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  margin-top: 6px;
  display: block;
  transition: color .15s;
  font-family: 'Outfit', sans-serif;
}
.cart-item-remove:hover { color: #C0392B; }

.cart-clear-wrap {
  margin-top: 12px;
  text-align: center;
}
.cart-clear-form { display: inline; }

.cart-item-price { text-align: right; flex-shrink: 0; }
.cart-item-price .sub { font-size: 11px; color: var(--muted); display: block; }
.cart-item-price .amount {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.order-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  box-shadow: var(--shadow-sm);
}

.order-summary h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 6px 0;
  color: var(--muted);
}

.order-summary-row.total {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  border-top: 1px solid var(--border);
  margin-top: 10px;
  padding-top: 14px;
}

.order-summary-row.total .amount-total {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 22px;
  font-style: normal;
  letter-spacing: -0.03em;
}


/* ═══════════════════════════════════════════════════════════
   BUTTONS — Shared
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .15s;
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-primary.full {
  width: 100%;
  margin-top: 18px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--ink);
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border: 1.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--amber);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  padding: 0;
  text-decoration: none;
  transition: color .15s;
}
.btn-ghost:hover { color: #A66B2E; }


/* ═══════════════════════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════════════════════ */
.alert {
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.3s ease;
}

.alert-success {
  background: var(--forest-light);
  color: var(--forest);
  border: 1px solid rgba(45,106,79,.2);
}

.alert-error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid rgba(185,28,28,.2);
}

.alert-info {
  background: var(--amber-light);
  color: var(--amber);
  border: 1px solid rgba(193,125,57,.25);
}


/* ═══════════════════════════════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════════════════════════════ */
.auth-container {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background: var(--cream-dark);
  background-image: radial-gradient(circle at 20% 50%, rgba(193,125,57,.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(45,106,79,.04) 0%, transparent 60%);
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  animation: scaleIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-card .auth-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.auth-card .auth-logo .logo-text {
  font-family: 'Outfit', system-ui, sans-serif;
  font-style: normal;
  font-size: 20px;
  color: var(--ink);
  font-weight: 700;
}

.auth-card h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 5px;
  color: var(--ink);
}

.auth-card .subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.auth-card .form-group {
  margin-bottom: 16px;
}

.auth-card .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.auth-card .form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}

.auth-card .form-group input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(193,125,57,.12);
}

.auth-card .btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-top: 8px;
  background: var(--blue);
}
.auth-card .btn-primary:hover { background: var(--blue-dark); }

.auth-links {
  text-align: center;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
}

.auth-links a {
  color: var(--amber);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════════════════════════ */
.checkout-layout {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 52px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.checkout-page-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.checkout-section {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
}

.checkout-section h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.checkout-section-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.checkout-item-wrap {
  margin-bottom: 20px;
}

.checkout-cart-item {
  padding: 12px 0;
}

.checkout-confirm-btn {
  max-width: 400px;
}

.order-summary-perks {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.perk-icon-green {
  color: var(--forest);
}

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

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
}

.form-group input[readonly] {
  background: var(--cream);
  color: var(--muted);
  cursor: not-allowed;
}

.field-error {
  display: block;
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  margin-top: 5px;
}

.form-group input.input-invalid,
.form-group select.input-invalid,
.form-group textarea.input-invalid {
  border-color: #ef4444 !important;
}

.form-group input.input-invalid:focus,
.form-group select.input-invalid:focus,
.form-group textarea.input-invalid:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}


/* ═══════════════════════════════════════════════════════════
   BOOKING CONFIRMATION
   ═══════════════════════════════════════════════════════════ */
.confirmation-page {
  max-width: 620px;
  margin: 0 auto;
  padding: 52px 20px;
  text-align: center;
  animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 20px;
}

.confirmation-page h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.confirmation-subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.confirmation-code-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 20px 0 6px;
}

.confirmation-code-hint {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-details-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

.booking-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}

.booking-detail-row:last-child { border-bottom: none; }

.booking-detail-row .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 116px;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-detail-row .value {
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.booking-detail-total {
  background: var(--amber-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 4px;
}

.booking-detail-total .label { color: var(--ink); font-weight: 700; }
.booking-detail-total .value {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--amber);
}


/* ═══════════════════════════════════════════════════════════
   MY BOOKINGS
   ═══════════════════════════════════════════════════════════ */
.bookings-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 20px 52px;
}

.bookings-container h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.booking-row {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  transition: box-shadow .2s, transform .2s;
}

.booking-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.booking-row-img {
  width: 92px;
  height: 74px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-dark);
}

.booking-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.booking-row-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 7px;
  line-height: 1.3;
}

.booking-row-status {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-code {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.booking-row-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.booking-action-link {
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
  transition: color .15s;
}
.booking-action-link:hover { color: #A66B2E; }

.booking-cancel-btn {
  background: none;
  border: none;
  font-size: 12px;
  color: #B91C1C;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: 'Outfit', sans-serif;
  padding: 0;
  transition: color .15s;
}
.booking-cancel-btn:hover { color: #991B1B; }

.booking-row-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-CONFIRMED { background: var(--forest-light); color: var(--forest); }
.status-CANCELLED { background: #FEF2F2; color: #B91C1C; }
.status-PENDING { background: var(--amber-light); color: var(--amber); }


/* ═══════════════════════════════════════════════════════════
   SEARCH PAGE
   ═══════════════════════════════════════════════════════════ */
.search-page-bar {
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  background: var(--white);
}

.search-page-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.search-page-form {
  max-width: 600px;
  box-shadow: var(--shadow-sm);
}

.search-query-highlight {
  color: var(--amber);
}


/* ═══════════════════════════════════════════════════════════
   ACCOUNT
   ═══════════════════════════════════════════════════════════ */
.account-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 52px;
}

.account-container h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.account-section {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
}

.account-section h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ink);
}

.account-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  transition: color .15s;
}
.account-link:hover { color: #A66B2E; }

.account-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.account-meta-label {
  color: var(--muted);
  min-width: 120px;
  flex-shrink: 0;
}

.account-meta-value {
  color: var(--ink);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.55);
  padding: 56px 20px 24px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 240px;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-style: normal;
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: 13.5px;
  margin-bottom: 9px;
  transition: color .15s;
}

.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

.footer-tagline {
  font-family: 'Outfit', system-ui, sans-serif;
  font-style: normal;
  color: rgba(255,255,255,.25);
  font-size: 13px;
}


/* ═══════════════════════════════════════════════════════════
   AUTH MODAL
   ═══════════════════════════════════════════════════════════ */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 900;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.auth-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.auth-modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 40px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.96) translateY(10px);
  transition: transform .22s cubic-bezier(0.22, 1, 0.36, 1);
  margin: auto;
}

.auth-modal-overlay.open .auth-modal-box {
  transform: scale(1) translateY(0);
}

.auth-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background .15s, color .15s;
}

.auth-modal-close:hover {
  background: var(--border);
  color: var(--ink);
}

.auth-modal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.auth-modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  padding: 11px 8px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}

.auth-tab:hover { color: var(--ink); }

.auth-tab.active {
  color: var(--ink);
  border-bottom-color: var(--amber);
}

/* Provider modal tabs — same style as auth-tab but separate class to avoid main.js interference */
.provider-tab {
  flex: 1;
  padding: 11px 8px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.provider-tab:hover { color: var(--ink); }
.provider-tab.active {
  color: var(--ink);
  border-bottom-color: var(--amber);
}

.auth-panel { animation: fadeIn .18s ease both; }

.auth-panel .form-group {
  margin-bottom: 14px;
}

.auth-panel .form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.auth-panel .form-group input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}

.auth-panel .form-group input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255,122,0,.1);
}

.auth-modal-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.auth-modal-footer a {
  color: var(--amber);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Inline link-style button (e.g. "Forgot your password?") */
.auth-modal-link {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-modal-link:hover { color: var(--ink); }

/* Back button in forgot-password panel */
.auth-modal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s;
}
.auth-modal-back-btn:hover { color: var(--ink); }

/* Panel headings (signin / register titles — replaces tabs) */
.auth-panel-heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

/* Headings inside forgot panel */
.auth-panel-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.auth-panel-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

/* Provider modal — wider box for two-column form */
.provider-modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 40px 32px;
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.96) translateY(10px);
  transition: transform .22s cubic-bezier(0.22, 1, 0.36, 1);
}
.auth-modal-overlay.open .provider-modal-box {
  transform: scale(1) translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   PROVIDER LANDING
   ═══════════════════════════════════════════════════════════ */
.provider-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2D1A0E 60%, #1A0E06 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px 88px;
}

.provider-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,122,0,.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(255,122,0,.08) 0%, transparent 50%);
  pointer-events: none;
}

.provider-hero-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.provider-hero-eyebrow {
  display: inline-block;
  background: rgba(255,122,0,.15);
  color: var(--amber);
  border: 1px solid rgba(255,122,0,.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.provider-hero-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.provider-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.provider-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-provider-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: background .15s, transform .15s;
  letter-spacing: 0.01em;
}

.btn-provider-cta:hover {
  background: #E06E00;
  transform: translateY(-1px);
  color: var(--white);
}

.btn-provider-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .15s;
}

.btn-provider-secondary:hover {
  background: rgba(255,255,255,.18);
  color: var(--white);
}

/* Stats strip */
.provider-stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.provider-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.provider-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-num {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* How it works steps */
.provider-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.provider-step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 28px 24px;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--amber);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.provider-step h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}

.provider-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.provider-step-divider {
  width: 48px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
}

/* Benefits grid */
.provider-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.provider-benefit {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--amber);
}

.provider-benefit h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.provider-benefit p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   PROVIDER LANDING — enhanced sections
   ═══════════════════════════════════════════════════════════ */

/* Split hero */
.prov-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2D1A0E 70%, #1A0E06 100%);
  position: relative;
  overflow: hidden;
}

.prov-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(255,122,0,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 15% 80%, rgba(255,122,0,.07) 0%, transparent 50%);
  pointer-events: none;
}

.prov-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.prov-hero-text {
  padding: 80px 0 72px;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.prov-hero-visual {
  position: relative;
  align-self: flex-end;
}

.prov-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: block;
}

/* Floating earnings card */
.prov-hero-card {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.prov-hero-card-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.prov-hero-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.prov-hero-card-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* Rating badge */
.prov-hero-badge {
  position: absolute;
  top: 20px;
  right: -12px;
  background: var(--amber);
  color: white;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,122,0,.4);
  animation: fadeInUp 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  white-space: nowrap;
}

/* Benefit pills */
.prov-hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.prov-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.prov-testimonials {
  padding: 72px 20px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prov-testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.prov-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.prov-testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
}

.prov-testimonial-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.prov-testimonial-quote {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.prov-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prov-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.prov-testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.prov-testimonial-role {
  font-size: 12px;
  color: var(--muted);
}

/* ── City strip ───────────────────────────────────────────── */
.prov-cities {
  padding: 64px 20px 72px;
  background: white;
}

.prov-cities-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.prov-cities-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  margin-top: 32px;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.prov-cities-scroll::-webkit-scrollbar { display: none; }

.prov-city-card {
  flex-shrink: 0;
  width: 175px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.prov-city-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.prov-city-card:hover img { transform: scale(1.06); }

.prov-city-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: white;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 820px) {
  .prov-hero-inner { grid-template-columns: 1fr; }
  .prov-hero-visual { display: none; }
  .prov-hero-text { padding: 64px 0 56px; text-align: center; }
  .prov-hero-actions { justify-content: center !important; }
  .prov-hero-pills { justify-content: center; }
  .prov-testimonials-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   PROVIDER REGISTER
   ═══════════════════════════════════════════════════════════ */
.provider-register-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  width: 100%;
  max-width: 860px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  animation: scaleIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.provider-register-card h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 5px;
}

.form-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 24px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}

/* Business type cards */
.business-type-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 4px;
}

.type-card {
  flex: 1;
  cursor: pointer;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s, background .15s;
  overflow: hidden;
}

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

.type-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.type-card-icon {
  width: 36px;
  height: 36px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-soft);
  transition: color .15s, background .15s;
}
.type-card.selected .type-card-icon {
  background: rgba(255,122,0,.15);
  color: var(--amber);
}

.type-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.type-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.type-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.type-card:hover {
  border-color: var(--amber-muted);
  background: var(--amber-light);
}

.type-card.selected {
  border-color: var(--amber);
  background: var(--amber-light);
  box-shadow: 0 0 0 3px rgba(255,122,0,.12);
}

.type-card.selected .type-card-title {
  color: var(--amber);
}

/* Two-column form grid */
.provider-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 4px;
}

.provider-form-col {}

.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--white);
  resize: vertical;
  transition: border-color .15s;
  min-height: 80px;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.provider-terms {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

.provider-terms a {
  color: var(--amber);
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════
   PROVIDER DASHBOARD
   ═══════════════════════════════════════════════════════════ */
.provider-dashboard-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

/* Pending state */
.provider-pending-state {
  text-align: center;
  padding: 64px 20px 48px;
  max-width: 560px;
  margin: 0 auto;
  animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pending-icon {
  width: 72px;
  height: 72px;
  background: var(--amber-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--amber);
}

.provider-pending-state h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.provider-pending-state > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pending-details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}

.pending-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
}

.pending-detail-row:last-child { border-bottom: none; }

.pending-label {
  font-weight: 600;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pending-value {
  color: var(--ink);
  font-weight: 500;
}

.pending-info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--amber-light);
  border: 1px solid rgba(255,122,0,.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  text-align: left;
}

.pending-info-box svg { color: var(--amber); }
.pending-info-box a { color: var(--amber); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Active dashboard */
.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.dashboard-header h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.dashboard-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--muted);
  flex-wrap: wrap;
}

.provider-approved-badge {
  display: inline-flex;
  align-items: center;
  background: var(--forest-light);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.dashboard-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.dash-stat {
  flex: 1;
  min-width: 160px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-xs);
}

.dash-stat-num {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 2px;
}

.dash-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-xs);
}

.dashboard-section-header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.dashboard-section-header h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.dashboard-empty-tours {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}

.dash-empty-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--muted);
}

.dashboard-empty-tours h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.dashboard-empty-tours p {
  font-size: 15px;
  color: var(--muted);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.6;
}

.dashboard-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dash-info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
}

.dash-info-row:last-child { border-bottom: none; }

.dash-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-top: 1px;
}

.dash-info-value {
  color: var(--ink);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════
   ADMIN DASHBOARD
   ═══════════════════════════════════════════════════════════ */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}

.admin-stat-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.admin-stat-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.admin-stat-num {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.admin-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.admin-stat-alert {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  background: var(--amber-light);
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 4px;
  display: inline-block;
  width: fit-content;
}

.admin-actions-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-action-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: box-shadow .2s, border-color .15s, transform .15s;
  box-shadow: var(--shadow-xs);
  position: relative;
}

.admin-action-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  transform: translateY(-1px);
}

.admin-action-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-action-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-action-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.admin-action-desc {
  font-size: 13px;
  color: var(--muted);
}

.admin-action-badge {
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  flex-shrink: 0;
}

.admin-action-arrow {
  color: var(--muted);
  flex-shrink: 0;
}

.admin-pending-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--amber-light);
  border: 1px solid rgba(255,122,0,.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink-soft);
}

.admin-pending-alert a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════
   ADMIN PROVIDERS
   ═══════════════════════════════════════════════════════════ */
.admin-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.admin-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.admin-header h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.admin-badge {
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.admin-section-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  margin-bottom: 8px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.admin-table thead tr {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  padding: 12px 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  white-space: nowrap;
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink-soft);
  vertical-align: middle;
}

.admin-table tbody tr:last-child td { border-bottom: none; }

.admin-table tbody tr:hover td { background: var(--cream); }

.admin-provider-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 2px;
}

.admin-provider-user {
  font-size: 12px;
  color: var(--muted);
}

.admin-type-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.type-individual {
  background: var(--blue-light);
  color: var(--blue);
}

.type-company {
  background: var(--amber-light);
  color: var(--amber);
}

.admin-status-approved {
  display: inline-block;
  background: var(--forest-light);
  color: var(--forest);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.admin-status-pending {
  display: inline-block;
  background: var(--amber-light);
  color: var(--amber);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.admin-status-rejected {
  display: inline-block;
  background: #FEE2E2;
  color: #DC2626;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.btn-approve {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background .15s, transform .15s;
  white-space: nowrap;
}

.btn-approve:hover {
  background: #15803D;
  transform: translateY(-1px);
}

.btn-reject {
  background: transparent;
  color: var(--red, #DC2626);
  border: 1px solid var(--red, #DC2626);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.btn-reject:hover {
  background: var(--red, #DC2626);
  color: var(--white);
}

.admin-no-pending {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-light);
  color: var(--forest);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tour-detail-layout { grid-template-columns: 1fr 300px; gap: 28px; }
  .tour-hero img { height: 325px; }
}

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .tour-detail-layout { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .tour-hero img { height: 260px; border-radius: var(--radius-lg); }
  .reviews-grid { grid-template-columns: 1fr; }
  .includes-excludes-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-links { gap: 28px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tours-home-grid { grid-template-columns: repeat(3, 1fr); }
  .tours-grid { grid-template-columns: repeat(3, 1fr); }
  .cities-2row-grid { grid-template-columns: repeat(4, 1fr); }
  .how-it-works-steps { gap: 0; }
  .city-hero { height: 280px; }
}

@media (max-width: 640px) {
  .hero { height: 400px; }
  .hero-title { font-size: clamp(28px, 8vw, 40px); }
  .hero-arrow { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .cities-2row-grid { grid-template-columns: repeat(3, 1fr); }
  .how-step-divider { display: none; }
  .how-it-works-steps { flex-direction: column; gap: 28px; }
  .how-step { padding: 0; }
  .tours-home-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .city-hero { height: 240px; }
  .city-hero-desc { display: none; }
  .auth-card { padding: 28px 22px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .logo-text { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-detail-row .label { min-width: 90px; }

  .provider-form-grid { grid-template-columns: 1fr; gap: 0; }
  .provider-register-card { padding: 28px 20px; }
  .business-type-selector { flex-direction: column; }
  .provider-step-divider { display: none; }
  .provider-stats-inner { gap: 28px; }
  .dashboard-stats { flex-direction: column; }
}

@media (max-width: 420px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cities-2row-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-home-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-price { width: 100%; text-align: left; }
  .nav-link span:last-child, .nav-btn span:last-child { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   MONETIZATION — Fee breakdown, badges, trip protection
   ═══════════════════════════════════════════════════════════ */

/* Fee breakdown table in checkout */
.fee-breakdown {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-soft);
}
.fee-row-total {
  font-weight: 600;
  color: var(--ink);
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 6px;
}
.fee-row-trip {
  color: var(--forest);
}

/* Featured badge on tour cards */
.badge-featured {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FFF9C4;
  color: #92400E;
  border: 1px solid #FDE68A;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 2;
}

/* Instant confirmation badge on tour detail */
.badge-instant {
  background: #EEF2FF;
  color: #4338CA;
  border: 1px solid #C7D2FE;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  display: inline-block;
}

/* Trip protection opt-in box at checkout */
.trip-protection-box {
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trip-protection-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.trip-protection-icon { font-size: 20px; }
.trip-protection-badge {
  background: #DCFCE7;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trip-protection-price {
  margin-left: auto;
  font-weight: 700;
  color: var(--forest);
}
.trip-protection-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.trip-protection-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink);
}
.trip-protection-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--forest);
}

/* Payment card UI */
.payment-card-logos {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 3px 8px;
  border-radius: 5px;
  border: 1.5px solid #d1d5db;
  line-height: 1;
}
.card-logo-visa {
  background: #1a1f71;
  color: #fff;
  border-color: #1a1f71;
  font-style: italic;
  font-size: 11px;
}
.card-logo-mc {
  background: linear-gradient(135deg, #eb001b 0%, #ff5f00 50%, #f79e1b 100%);
  color: #fff;
  border-color: #f79e1b;
}
.card-logo-amex {
  background: #007bc1;
  color: #fff;
  border-color: #007bc1;
}
.payment-secure-badge {
  margin-top: .75rem;
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Commission rate pill on provider dashboard */
.commission-rate-pill {
  display: inline-block;
  background: var(--amber-light);
  color: var(--amber);
  border: 1px solid #FFD9A8;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Admin table (shared with provider dashboard) */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.admin-table th {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
.admin-table tbody tr:hover { background: var(--cream); }

/* ── Availability Panel ─────────────────────────────────────── */
.avail-panel {
  margin-top: 4px;
}

.avail-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.avail-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.avail-spots {
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
}

.avail-option-card {
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
}

.avail-option-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}

.avail-option-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.avail-meeting-row {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.avail-time-section {
  margin: 14px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}

.avail-time-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 4px;
}

.avail-date-label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.avail-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.time-slot-btn {
  padding: 6px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.time-slot-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.time-slot-btn.selected {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

.time-slot-btn.disabled,
.time-slot-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

.time-slot-btn .slot-spots {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--amber);
  margin-top: 1px;
}

.time-slot-btn.selected .slot-spots {
  color: rgba(255,255,255,.85);
}

.avail-loading,
.avail-error,
.avail-empty-msg {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 4px;
}

.avail-error { color: #DC2626; }

/* ── Provider availability page ── */
/* ── Availability onboarding banner ──────────────────────── */
.avail-onboarding-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ECFDF5;
  border: 1.5px solid #6EE7B7;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.avail-onboarding-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avail-onboarding-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
}

.avail-onboarding-body strong {
  font-size: 15px;
  color: #065F46;
}

.avail-onboarding-body span {
  font-size: 13px;
  color: #065F46;
  opacity: .85;
}

.avail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.avail-breadcrumb a { color: var(--amber); }
.avail-breadcrumb-sep { color: var(--border); }

.avail-empty-state {
  text-align: center;
  padding: 32px 16px;
  color: var(--muted);
}
.avail-empty-state h3 { margin-bottom: 6px; font-size: 15px; color: var(--ink); }
.avail-empty-state p  { font-size: 13px; }

.avail-add-form { margin-top: 16px; }

.avail-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.avail-form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 160px;
}

.avail-form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.avail-form-field select,
.avail-form-field input[type="time"],
.avail-form-field input[type="number"] {
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}

.avail-form-field select:focus,
.avail-form-field input[type="time"]:focus,
.avail-form-field input[type="number"]:focus {
  border-color: var(--amber);
}

.avail-form-submit { min-width: 120px; }

.avail-delete-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-family: inherit;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}

.avail-delete-btn:hover {
  border-color: #DC2626;
  color: #DC2626;
}

.avail-cancel-row {
  font-size: 12px;
  margin: 10px 0 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
}

.avail-total-row {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.avail-total-row strong {
  color: var(--ink);
  font-size: 18px;
}

.avail-back-btn {
  width: 100%;
  margin-top: 8px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  padding: 6px 0;
  text-align: center;
  transition: color .15s;
}

.avail-back-btn:hover { color: var(--ink); }

/* ── Wishlist / Heart Button ────────────────────────────────── */
.heart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color .15s, background .15s, transform .2s;
  z-index: 2;
  flex-shrink: 0;
}
.heart-btn:hover {
  background: var(--white);
  color: var(--amber);
  transform: scale(1.1);
}
.heart-btn.active {
  color: var(--amber);
}
.heart-btn.active svg {
  fill: var(--amber);
}

/* Detail page heart button — not absolutely positioned */
.heart-btn-detail {
  position: relative;
  top: auto;
  right: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Wishlist nav badge — same pattern as cart-badge */
.wishlist-link { position: relative; }

.wishlist-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  background: var(--amber);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1.5px solid var(--white);
}

/* Wishlist page */
.wishlist-grid {
  margin-top: 24px;
}

.wishlist-card {
  cursor: pointer;
}

.wishlist-card .tour-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ── Review System ───────────────────────────────────────────── */

/* Flash messages */
.review-flash {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: .9rem;
  font-weight: 500;
}
.review-flash-success {
  background: var(--forest-light);
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.review-flash-error {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}

/* Summary header */
.review-summary {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.review-summary-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 100px;
}

.review-score-big {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.review-score-stars {
  display: flex;
  gap: 2px;
}

.review-score-stars .star {
  font-size: 1.1rem;
  color: var(--border);
}

.review-score-stars .star.filled {
  color: var(--amber);
}

.review-score-count {
  font-size: .8rem;
  color: var(--muted);
  white-space: nowrap;
}

/* Rating distribution bars */
.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-bar-label {
  font-size: .82rem;
  color: var(--ink-soft);
  width: 26px;
  text-align: right;
  flex-shrink: 0;
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--cream-dark);
  border-radius: 99px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 99px;
  transition: width .4s ease;
}

.rating-bar-count {
  font-size: .82rem;
  color: var(--muted);
  width: 20px;
  text-align: right;
  flex-shrink: 0;
}

/* Empty state */
.reviews-empty {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 24px;
}

/* Review form section */
.review-form-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.review-cta-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.review-cta-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.review-already-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--forest-light);
  border-radius: var(--radius);
  color: #15803d;
  font-size: .9rem;
  font-weight: 500;
}

.review-already-icon {
  font-size: 1.1rem;
}

/* Review form */
.review-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.review-form-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--ink);
}

/* Star input */
.star-input-group {
  margin-bottom: 16px;
}

.star-input-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.star-input {
  display: flex;
  gap: 4px;
  cursor: pointer;
  user-select: none;
}

.star-btn {
  font-size: 2rem;
  color: var(--border);
  transition: color .15s, transform .1s;
  line-height: 1;
}

.star-btn:hover,
.star-btn.hovered,
.star-btn.selected {
  color: var(--amber);
}

.star-btn:hover {
  transform: scale(1.15);
}

/* Review fields */
.review-field {
  margin-bottom: 14px;
}

.review-field label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 5px;
}

.review-field .optional {
  color: var(--muted);
  font-weight: 400;
}

.review-field .required {
  color: var(--amber);
}

.review-field input[type="text"],
.review-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .9rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s;
  resize: vertical;
}

.review-field input[type="text"]:focus,
.review-field textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.btn-book-sm {
  padding: 10px 20px;
  font-size: .9rem;
}

.btn-book-sm:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════
   PROVIDER PORTAL — navbar tag + login page
   ═══════════════════════════════════════════════════════════ */

.navbar-provider-tag {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(255, 122, 0, 0.12);
  border-radius: 4px;
  padding: 2px 7px;
  letter-radius: 0.05em;
  text-transform: uppercase;
  margin-left: 2px;
  flex-shrink: 0;
}

.provider-login-page {
  min-height: calc(100vh - var(--nav-h) - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
  background: var(--cream);
}

.provider-login-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 44px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
}

.provider-login-portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

@media (max-width: 500px) {
  .provider-login-card {
    padding: 32px 24px 28px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TOUR OPTIONS ACCORDION (booking widget)
   ═══════════════════════════════════════════════════════════ */

.bw-opts-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 16px 0 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.bw-opts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Option card ── */
.bw-opt-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .18s;
}

.bw-opt-card.bw-opt-open {
  border-color: var(--ink);
}

/* Card header (always visible) */
.bw-opt-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  gap: 10px;
  user-select: none;
}

.bw-opt-hdr:hover {
  background: var(--cream);
}

.bw-opt-hdr-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bw-opt-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.bw-opt-from {
  font-size: 12px;
  color: var(--muted);
}

.bw-opt-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .2s ease;
}

.bw-opt-card.bw-opt-open .bw-opt-chevron {
  transform: rotate(180deg);
}

/* Card body (collapsible) */
.bw-opt-body {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--border);
}

.bw-opt-card.bw-opt-open .bw-opt-body {
  display: block;
}

.bw-opt-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 12px 0 10px;
}

/* Feature bullet list */
.bw-opt-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bw-opt-features li {
  font-size: 12px;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.bw-opt-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest);
  font-size: 11px;
}

/* Time slots section */
.bw-opt-times {
  margin: 12px 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.bw-opt-date-lbl {
  font-size: 12px;
  color: var(--muted);
  margin: 3px 0 8px;
}

.bw-opt-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 32px;
}

/* Cancellation note */
.bw-opt-cancel {
  font-size: 12px;
  color: var(--forest);
  margin: 10px 0 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* Footer: price + Book button */
.bw-opt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.bw-opt-total {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.opt-total-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  display: block;
}

.opt-form {
  flex-shrink: 0;
}

/* Cart: option subtitle */
.cart-item-option {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   PROVIDER TOUR PREVIEW PANEL
   ═══════════════════════════════════════════════════════════ */

.provider-preview-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--amber);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.provider-preview-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--amber-light);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.provider-preview-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 2px;
}

.provider-preview-sub {
  font-size: 12px;
  color: var(--ink-soft);
}

.provider-opt-preview {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--cream);
}

.provider-opt-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.provider-opt-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.provider-opt-desc {
  font-size: 13px;
  color: var(--ink-soft);
}

.provider-opt-price {
  text-align: right;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.provider-opt-price strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.provider-preview-back {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 0;
  transition: color .15s;
}

.provider-preview-back:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════
   AUTH MODAL — cross-panel navigation (no-tabs mode)
   ═══════════════════════════════════════════════════════════ */

.auth-panel-crosslink {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.auth-crosslink-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

.auth-crosslink-btn:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   SSO BUTTONS
   ═══════════════════════════════════════════════════════════ */

.sso-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.sso-google-row {
  margin-top: 14px;
}

.btn-sso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}

.btn-sso:hover {
  border-color: #aaa;
  background: var(--cream);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  text-decoration: none;
  color: var(--ink);
}

.btn-sso-google svg { flex-shrink: 0; }

.btn-sso-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}

.sso-icon-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.sso-icon-label {
  font-size: 13px;
  color: var(--muted);
}

.sso-icon-btns {
  display: flex;
  gap: 10px;
}

.btn-sso-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 40px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
  flex-shrink: 0;
}

.btn-sso-icon:hover {
  border-color: #aaa;
  background: var(--cream);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.btn-sso-icon.btn-sso-disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

.sso-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 16px;
  color: var(--muted-light);
  font-size: 12px;
}

.sso-divider::before,
.sso-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════════
   PROVIDER TOUR FORM
   ═══════════════════════════════════════════════════════════ */

.tour-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.tour-form-section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 16px;
}

.form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255,122,0,.1);
}

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

/* ── Category toggle cards ───────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  user-select: none;
  transition: border-color .15s, background .15s, transform .1s, box-shadow .15s;
  text-align: center;
}

.cat-card:hover {
  border-color: var(--forest);
  background: var(--forest-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.cat-card-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cat-card-check {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background .15s, border-color .15s, color .15s;
  flex-shrink: 0;
}

.cat-card-icon {
  font-size: 26px;
  line-height: 1;
}

.cat-card-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.2;
  transition: color .15s;
}

/* Selected state */
.cat-card--selected {
  border-color: var(--forest);
  background: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}

.cat-card--selected .cat-card-check {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.cat-card--selected .cat-card-name {
  color: var(--forest);
}

/* ── Upload zone ─────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--cream);
  text-align: center;
  user-select: none;
}

.upload-zone:hover,
.upload-zone--drag {
  border-color: var(--forest);
  background: var(--forest-light);
}

.upload-zone--drag {
  border-style: solid;
  box-shadow: 0 0 0 4px rgba(22,163,74,.12);
}

.upload-zone-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 4px;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow-xs);
}

.upload-zone:hover .upload-zone-icon,
.upload-zone--drag .upload-zone-icon {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(22,163,74,.1);
}

.upload-zone-primary {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.upload-zone-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* compact state once files are chosen */
.upload-zone--has-files {
  padding: 16px 24px;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.upload-zone--has-files .upload-zone-icon { width: 36px; height: 36px; margin-bottom: 0; }
.upload-zone--has-files .upload-zone-primary { font-size: 13px; }
.upload-zone--has-files .upload-zone-sub { display: none; }

/* Preview strip */
.image-preview-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.preview-thumb {
  position: relative;
  width: 88px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  animation: scaleIn .18s ease;
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-badge {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: var(--forest);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   PROVIDER TOUR OPTIONS MANAGEMENT
   ═══════════════════════════════════════════════════════════ */

.tour-options-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

.tour-opt-mgmt-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  transition: box-shadow .15s;
}

.tour-opt-mgmt-card:hover {
  box-shadow: var(--shadow-sm);
}

.tour-opt-sort-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream-dark);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}

.tour-opt-delete-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}

.tour-opt-delete-btn:hover {
  background: #FEF2F2;
  border-color: #FCA5A5;
  color: #DC2626;
}

@media (max-width: 768px) {
  .tour-options-layout { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   TOURS TEASER (skeleton + overlay)
   ═══════════════════════════════════════════════════════════ */
.tours-teaser {
  position: relative;
}

/* Skeleton shimmer animation */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

.skeleton-block,
.skeleton-line {
  background: linear-gradient(90deg, var(--cream-dark) 25%, #e8eaee 50%, var(--cream-dark) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: 6px;
}

/* Skeleton grid — same columns as real tour grid */
.tours-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.tours-teaser-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tours-teaser-card-img {
  height: 200px;
  border-radius: 0;
}

.tours-teaser-card-body {
  padding: 14px 16px 18px;
}

.skeleton-line {
  display: block;
  height: 12px;
  margin-bottom: 8px;
}

/* Centered overlay */
.tours-teaser-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tours-teaser-message {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px 48px;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.tours-teaser-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.tours-teaser-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.tours-teaser-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-teaser-primary {
  padding: 11px 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.btn-teaser-primary:hover { background: var(--ink-soft); }

.btn-teaser-secondary {
  padding: 11px 22px;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, background .15s;
  white-space: nowrap;
}
.btn-teaser-secondary:hover {
  border-color: var(--ink);
  background: var(--cream);
}

@media (max-width: 900px) {
  .tours-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-teaser-grid .tours-teaser-card:last-child { display: none; }
}

@media (max-width: 600px) {
  .tours-teaser-grid { grid-template-columns: 1fr; }
  .tours-teaser-grid .tours-teaser-card:not(:first-child) { display: none; }
  .tours-teaser-message { padding: 28px 24px; }
  .tours-teaser-title { font-size: 18px; }
}


/* ═══════════════════════════════════════════════════════════
   CITY STATUS BADGES (on city cards)
   ═══════════════════════════════════════════════════════════ */
.city-status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 9px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}

.city-status-live     { background: rgba(22, 163, 74, 0.85); color: #fff; }
.city-status-early    { background: rgba(37, 99, 235, 0.80); color: #fff; }
.city-status-founding { background: rgba(202, 138, 4, 0.85); color: #fff; }

.city-card-soon img {
  filter: brightness(0.78) saturate(0.55);
}


/* ═══════════════════════════════════════════════════════════
   CITY FOUNDING / COMING SOON
   ═══════════════════════════════════════════════════════════ */
.city-founding {
  padding: 72px 20px 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 60%, var(--white) 100%);
}

.city-founding-inner {
  max-width: 580px;
  margin: 0 auto;
}

/* Pulsing badge */
.city-founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-light);
  color: #C85800;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.city-founding-dot {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: founding-pulse 2s ease-in-out infinite;
}

@keyframes founding-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

/* Headline */
.city-founding-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.city-founding-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Activity pills */
.city-founding-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.city-founding-activity-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}

.city-founding-activity-pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Waitlist count */
.city-founding-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Feedback messages */
.city-founding-feedback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 32px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.city-founding-feedback--success {
  background: var(--forest-light);
  color: #166534;
}

.city-founding-feedback--info {
  background: var(--blue-light);
  color: var(--blue-dark);
}

/* Email form */
.city-founding-form {
  margin-bottom: 48px;
}

.city-founding-form-row {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 10px;
}

.city-founding-form-row input[type="email"] {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.city-founding-form-row input[type="email"]::placeholder { color: var(--muted); }
.city-founding-form-row input[type="email"]:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255,122,0,.10);
}

.city-founding-form-row button {
  padding: 13px 20px;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, transform .1s;
}

.city-founding-form-row button:hover  { background: #e06e00; }
.city-founding-form-row button:active { transform: scale(0.98); }

.city-founding-form-note {
  font-size: 12px;
  color: var(--muted);
}

/* Divider */
.city-founding-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.city-founding-divider::before,
.city-founding-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Host card */
.city-founding-host {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
}

.city-founding-host:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--amber-muted);
}

.city-founding-host-icon {
  width: 50px;
  height: 50px;
  background: var(--amber-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.city-founding-host-text {
  flex: 1;
  min-width: 0;
}

.city-founding-host-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.city-founding-host-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.city-founding-host-btn {
  flex-shrink: 0;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}

.city-founding-host-btn:hover { background: var(--ink-soft); }

/* Responsive */
@media (max-width: 600px) {
  .city-founding-title { font-size: 24px; }
  .city-founding-form-row { flex-direction: column; }
  .city-founding-host { flex-direction: column; text-align: center; gap: 14px; }
  .city-founding-host-text { text-align: center; }
  .city-founding-host-btn { width: 100%; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════
   SEARCH — NO RESULTS STATE
   ═══════════════════════════════════════════════════════════ */
.search-no-results {
  padding: 80px 20px 100px;
  text-align: center;
}

.search-no-results-inner {
  max-width: 480px;
  margin: 0 auto;
}

.search-no-results-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.search-no-results-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
