/* ═══════════════════════════════════════════
   ASN EXPERIENCE — Brand Styles
   Asian Sports Network · Bold In Every Move
   ═══════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ── Brand Tokens ── */
:root {
  --terracotta:    #FF3B1F;
  --clay:          #C64A2E;
  --black:         #0F0F12;
  --electric-red:  #FF0800;
  --amber:         #F4A261;
  --sand:          #E9D8C3;
  --white:         #FFFFFF;
  --card-bg:       #1A1A20;
  --card-border:   #2A2A32;
  --success:       #22C55E;
  --radius:        8px;
}

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
.accent { color: var(--terracotta); }

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 8px;
}
.section-title { margin-bottom: 16px; }
.section-lede { color: var(--sand); max-width: 600px; margin-bottom: 48px; }

/* ── Sections ── */
.section { padding: 80px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.05em;
  height: 56px; padding: 0 32px;
  border: none; border-radius: var(--radius);
  cursor: pointer; transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--terracotta); color: var(--white);
}
.btn-primary:hover { background: var(--electric-red); }
.btn-primary:disabled { background: var(--card-border); color: #555; cursor: not-allowed; }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid var(--card-border);
}
.btn-secondary:hover { border-color: var(--terracotta); color: var(--terracotta); }

.text-link {
  color: var(--amber); text-decoration: none; font-weight: 600;
  transition: color 0.3s;
}
.text-link:hover { color: var(--terracotta); }

/* Hero CTA Button */
.wizard-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.05em;
  height: 56px; padding: 0 32px;
  border: none; border-radius: var(--radius);
  background: var(--terracotta); color: var(--white);
  text-decoration: none; cursor: pointer;
  transition: all 0.3s ease;
}
.wizard-btn:hover { background: var(--electric-red); }

/* Add to Cart Link */
.add-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--terracotta); text-decoration: none;
  transition: all 0.3s;
}
.add-link:hover { color: var(--electric-red); text-decoration: underline; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(15, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
}
.nav-logo img {
  height: 40px; width: auto;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--sand); text-decoration: none; font-size: 0.85rem;
  font-weight: 600; transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--terracotta); }

/* Nav right: user + lang switcher */
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-user { display: flex; align-items: center; gap: 10px; }
.nav-greeting {
  font-size: 0.85rem; font-weight: 600; color: var(--sand);
}
.nav-badge {
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.nav-badge.asn-plus {
  background: var(--amber); color: var(--black);
}
.nav-account, .nav-login {
  font-size: 0.8rem; font-weight: 600; color: var(--sand);
  text-decoration: none; border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px; border-radius: 6px; transition: all 0.2s;
}
.nav-account:hover, .nav-login:hover {
  border-color: var(--terracotta); color: var(--terracotta);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden; padding: 0 0 120px;
}
.hero-img {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(254, 59, 31, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, #1A1A20 100%);
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--black) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 700px;
  padding-left: clamp(32px, 8vw, 120px);
}
.hero .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--amber); margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub { color: var(--sand); font-size: 1.1rem; margin-bottom: 32px; max-width: 500px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; }
.pill-divider { color: var(--card-border); user-select: none; }

/* ═══════════════════════════════════════════
   FEATURED GRID
   ═══════════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.featured-card {
  background: var(--card-bg); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--card-border);
  transition: transform 0.3s, border-color 0.3s;
}
.featured-card:hover { transform: translateY(-4px); border-color: var(--terracotta); }
.featured-img-wrap { height: 200px; overflow: hidden; }
.featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { 
  padding: 20px; 
  display: flex; 
  flex-direction: column;
}
.activity-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 4px; color: var(--white);
}
.featured-name { font-size: 1.1rem; margin: 8px 0 4px; }
.featured-name a.product-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.featured-name a.product-link:hover {
  color: var(--terracotta);
}
.featured-desc { color: var(--sand); font-size: 0.85rem; margin-bottom: 16px; }
.featured-footer { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end; 
  margin-top: auto;
}
.featured-price { font-weight: 600; color: var(--amber); }

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  margin-top: 40px;
}
.how-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 3rem; color: var(--terracotta); opacity: 0.3;
  line-height: 1; margin-bottom: 16px;
}
.how-title { font-size: 1rem; margin-bottom: 8px; }
.how-desc { color: var(--sand); font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   QUOTE SECTION
   ═══════════════════════════════════════════ */
.quote-section {
  background: linear-gradient(135deg, #16161C 0%, #1A1A20 100%);
  text-align: center;
}
.pullquote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700; line-height: 1.4; max-width: 700px;
  margin: 0 auto 16px; color: var(--white);
}
.pullquote .highlight { color: var(--terracotta); }
.quote-attr { color: var(--sand); font-size: 0.85rem; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  text-align: center; padding: 40px 24px;
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--sand); font-size: 0.85rem;
}
.site-footer a { color: var(--terracotta); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   WIZARD
   ═══════════════════════════════════════════ */
.wizard-page { padding-top: 100px; min-height: 100vh; }
.wizard-container {
  max-width: 800px; margin: 0 auto; padding: 0 24px;
}

/* Progress Bar */
.wizard-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 60px;
}
.progress-step {
  display: flex; align-items: center; gap: 0;
}
.progress-dot {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.85rem;
  background: var(--card-bg); border: 2px solid var(--card-border);
  color: #555; transition: all 0.3s;
}
.progress-dot.active {
  border-color: var(--terracotta); color: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 59, 31, 0.2);
}
.progress-dot.completed {
  background: var(--amber); border-color: var(--amber);
  color: var(--black);
}
.progress-line {
  width: 60px; height: 2px; background: var(--card-border);
}
.progress-line.completed { background: var(--amber); }

/* Step Content */
.wizard-step {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wizard-step h2 { text-align: center; margin-bottom: 8px; }
.wizard-step .step-sub { text-align: center; color: var(--sand); margin-bottom: 40px; }

/* Activity Chips */
.chip-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 52px; padding: 0 24px;
  border: 2px solid var(--card-border); border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  background: transparent; color: var(--white);
  cursor: pointer; transition: all 0.3s;
}
.chip:hover { border-color: var(--terracotta); }
.chip.selected { background: var(--terracotta); border-color: var(--terracotta); }
.chip-icon { font-size: 1.3rem; }

/* Coming Soon chips */
.chip.coming-soon {
  opacity: 0.35;
  cursor: default;
  border-style: dashed;
  position: relative;
}
.chip.coming-soon:hover {
  border-color: var(--card-border);
}
.coming-soon-badge {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.1);
  color: var(--sand);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 4px;
}

/* Destination Cards */
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.dest-card {
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: 12px; padding: 24px 20px; text-align: center;
  cursor: pointer; transition: all 0.3s; position: relative;
}
.dest-card:hover { border-color: var(--clay); transform: translateY(-2px); }
.dest-card.selected {
  border-color: var(--terracotta);
  box-shadow: 0 4px 20px rgba(255, 59, 31, 0.15);
}
.dest-card .dest-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.dest-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.dest-card p { font-size: 0.8rem; color: var(--sand); }
.dest-check {
  position: absolute; top: 12px; right: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--terracotta); display: none;
  align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.dest-card.selected .dest-check { display: flex; }

/* Budget Pills */
.budget-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.budget-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 28px; border: 2px solid var(--card-border);
  border-radius: 12px; cursor: pointer; transition: all 0.3s;
  background: var(--card-bg); min-width: 140px;
}
.budget-pill:hover { border-color: var(--clay); }
.budget-pill.selected { background: var(--terracotta); border-color: var(--terracotta); }
.budget-pill .price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.budget-pill .label { font-size: 0.75rem; color: var(--sand); }
.budget-pill.selected .label { color: rgba(255,255,255,0.85); }

/* Length Cards */
.length-grid {
  display: flex; flex-direction: column; gap: 16px; max-width: 500px; margin: 0 auto;
}
.length-card {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px; background: var(--card-bg);
  border: 2px solid var(--card-border); border-radius: 12px;
  cursor: pointer; transition: all 0.3s;
}
.length-card:hover { border-color: var(--clay); }
.length-card.selected { background: var(--terracotta); border-color: var(--terracotta); }
.length-radio {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--card-border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.length-card.selected .length-radio {
  border-color: var(--white);
}
.length-card.selected .length-radio::after {
  content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--white);
}
.length-label { font-weight: 700; font-size: 1rem; }
.length-desc { font-size: 0.8rem; color: var(--sand); }
.length-card.selected .length-desc { color: rgba(255,255,255,0.8); }

/* Month Grid */
.month-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  max-width: 450px; margin: 0 auto;
}
.month-btn {
  height: 64px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 2px solid var(--card-border); border-radius: 12px;
  background: var(--card-bg); cursor: pointer; transition: all 0.3s;
}
.month-btn:hover { border-color: var(--clay); }
.month-btn.selected { background: var(--terracotta); border-color: var(--terracotta); }
.month-btn .month-abbr { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; }
.month-btn .month-name { font-size: 0.6rem; color: var(--sand); margin-top: 2px; }
.month-btn.selected .month-name { color: rgba(255,255,255,0.8); }

/* Wizard Footer */
.wizard-footer {
  position: sticky; bottom: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; margin-top: 60px;
  border-top: 1px solid var(--card-border);
}
.wizard-footer .btn { min-width: 160px; }

/* ═══════════════════════════════════════════
   RESULTS
   ═══════════════════════════════════════════ */
.results-list { display: flex; flex-direction: column; gap: 20px; margin: 40px 0; }
.result-card {
  display: flex; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; overflow: hidden; transition: border-color 0.3s, transform 0.3s;
  min-height: 320px;
}
.result-card:hover { border-color: var(--terracotta); }
.result-img-wrap {
  position: relative;
  width: 42%;
  min-width: 320px;
  flex-shrink: 0;
  overflow: hidden;
}
.result-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08) translateY(var(--parallax-y, 0));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.result-card:hover .result-img img {
  transform: scale(1.14) translateY(var(--parallax-y, 0));
}
/* Bottom gradient for image readability + depth */
.result-img-wrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(15,15,18,0.55), rgba(15,15,18,0));
  pointer-events: none;
}
.result-body { flex: 1; padding: 28px 32px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.result-title { font-size: 1.15rem; }
.result-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.result-tag {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 4px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.result-desc { color: var(--sand); font-size: 0.85rem; }
.result-price { font-weight: 700; color: var(--amber); font-size: 1.1rem; margin-top: auto; }
.result-confidence {
  position: absolute; top: 14px; right: 14px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.7rem; text-transform: uppercase;
  padding: 6px 12px; border-radius: 50px;
  z-index: 2;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.conf-high   { background: var(--success); color: #000; }
.conf-mid    { background: var(--amber); color: #000; }
.conf-low    { background: var(--terracotta); color: var(--white); }
.result-img-wrap { position: relative; }

.no-results {
  text-align: center; padding: 80px 24px; color: var(--sand);
}
.no-results h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--white); }

.cart-bar {
  display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
  list-style: none;
}
.lang-switcher summary {
  list-style: none;
}
.lang-switcher summary::-webkit-details-marker { display: none; }
.lang-toggle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 0.75rem;
  color: var(--amber); cursor: pointer;
  padding: 4px 8px; border: 1px solid var(--card-border);
  border-radius: 4px; letter-spacing: 0.05em;
  transition: all 0.2s; user-select: none;
}
.lang-toggle:hover { border-color: var(--terracotta); }
.lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0;
  margin-top: 8px; background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px; overflow: hidden;
  min-width: 64px; z-index: 200;
}
.lang-switcher[open] .lang-dropdown { display: block; }
.lang-dropdown a {
  display: block; padding: 8px 16px; text-align: center;
  color: var(--sand); text-decoration: none;
  font-weight: 600; font-size: 0.8rem;
  transition: all 0.15s;
}
.lang-dropdown a:hover {
  background: var(--terracotta); color: var(--white);
}

/* ── Currency Switcher (mirrors lang-switcher) ── */
.curr-switcher {
  position: relative;
  list-style: none;
}
.curr-switcher summary {
  list-style: none;
}
.curr-switcher summary::-webkit-details-marker { display: none; }
.curr-toggle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 0.75rem;
  color: var(--amber); cursor: pointer;
  padding: 4px 10px; border: 1px solid var(--card-border);
  border-radius: 4px; letter-spacing: 0.05em;
  transition: all 0.2s; user-select: none;
  white-space: nowrap;
}
.curr-toggle:hover { border-color: var(--terracotta); }
.curr-dropdown {
  display: none; position: absolute; top: 100%; right: 0;
  margin-top: 8px; background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px; overflow: hidden;
  min-width: 110px; z-index: 200;
}
.curr-switcher[open] .curr-dropdown { display: block; }
.curr-dropdown a {
  display: block; padding: 8px 14px; text-align: left;
  color: var(--sand); text-decoration: none;
  font-weight: 600; font-size: 0.8rem;
  transition: all 0.15s; white-space: nowrap;
}
.curr-dropdown a:hover {
  background: var(--terracotta); color: var(--white);
}

/* ── Guarantee Strip ── */
.guarantee-strip {
  background: linear-gradient(135deg, var(--clay) 0%, var(--terracotta) 100%);
  padding: 24px 0;
}
.guarantee-content {
  display: flex; align-items: center; gap: 16px;
}
.guarantee-icon {
  font-size: 2rem; flex-shrink: 0;
}
.guarantee-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7); margin-bottom: 4px;
}
.guarantee-text {
  font-size: 0.95rem; color: var(--white);
  font-weight: 500; line-height: 1.5;
}

/* ── Concierge Section ── */
.concierge-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 48px;
}
.concierge-item {
  text-align: center;
}
.concierge-icon {
  font-size: 2.5rem; margin-bottom: 16px;
}
.concierge-item h3 {
  font-size: 1rem; margin-bottom: 8px;
}
.concierge-item p {
  color: var(--sand); font-size: 0.85rem; line-height: 1.6;
}

/* ── Operator Row ── */
.operator-row {
  display: flex; align-items: center; gap: 12px;
  margin: 8px 0;
}
.operator-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--amber); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 0.7rem; flex-shrink: 0;
}
.operator-name {
  display: block; font-size: 0.75rem;
  font-weight: 700; color: var(--white);
}
.operator-bio {
  display: block; font-size: 0.7rem;
  color: var(--sand);
}

/* ════ RESPONSIVE ════ */
@media (max-width: 768px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .dest-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .result-card { flex-direction: column; min-height: auto; }
  .result-img-wrap { width: 100%; min-width: 0; height: 240px; }
  .result-img { width: 100%; height: 100%; }
  .month-grid { grid-template-columns: repeat(4, 1fr); }
  .budget-row { flex-direction: column; align-items: center; }
  .wizard-footer .btn { min-width: 120px; height: 48px; font-size: 0.8rem; }
  .concierge-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .guarantee-text { font-size: 0.85rem; }
}
@media (max-width: 768px) {
  /* Nav: hide links on mobile — hero CTAs cover navigation */
  .site-nav { padding: 0 16px; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .chip { height: 44px; padding: 0 16px; font-size: 0.85rem; }
  .progress-line { width: 30px; }
  .progress-dot { width: 32px; height: 32px; font-size: 0.75rem; }
  .concierge-grid { grid-template-columns: 1fr; gap: 32px; }
  /* Very small screens: also hide currency/lang switchers — just logo + sign in */
  .curr-switcher { display: none; }
  .lang-switcher { display: none; }
  .nav-greeting { display: none; }
}

/* ═══════════════════════════════════════════
   BROWSE / EXPERIENCES PAGE
   ═══════════════════════════════════════════ */
.browse-section { padding: 80px 0 80px; }

.browse-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 16px;
}
.browse-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 8px 0 0;
}
.browse-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sort-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sand);
}
.sort-select {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
}
.sort-select:hover { border-color: var(--amber); }

.browse-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Sidebar ── */
.filter-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.filter-heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sand);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}
.filter-group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}
.filter-group:last-of-type { border-bottom: none; margin-bottom: 0; }
.filter-group-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 10px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  cursor: pointer;
}
.filter-option input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--terracotta);
  cursor: pointer;
}
.filter-option-text {
  font-size: 0.85rem;
  color: var(--sand);
  transition: color 0.2s;
}
.filter-option:hover .filter-option-text { color: var(--white); }
.filter-clear {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.filter-clear:hover { text-decoration: underline; }

/* ── Main ── */
.browse-count {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  min-height: 28px;
}
.result-count {
  font-size: 0.85rem;
  color: var(--sand);
}
.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,59,31,0.12);
  border: 1px solid var(--terracotta);
  color: var(--white);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 20px;
}
.filter-tag a { color: var(--terracotta); text-decoration: none; font-size: 0.7rem; }
.filter-tag a:hover { color: var(--white); }

.browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

/* Card badges */
.card-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.duration-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: var(--sand);
  border: 1px solid var(--card-border);
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* View & Book link */
.view-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s;
}
.view-link:hover { color: var(--terracotta); }

/* No results */
.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--sand);
}
.no-results-icon { font-size: 3rem; margin-bottom: 16px; }
.no-results h3 { color: var(--white); margin-bottom: 12px; font-size: 1.3rem; }
.no-results a { color: var(--terracotta); }

/* Bottom CTA */
.browse-cta {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--card-border);
  margin-top: 16px;
}
.browse-cta p {
  color: var(--sand);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .browse-layout {
    grid-template-columns: 1fr;
  }
  .filter-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0 24px;
  }
  .filter-heading { grid-column: 1 / -1; }
  .filter-clear   { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .browse-header { flex-direction: column; align-items: flex-start; }
  .browse-sort { width: 100%; }
  .sort-select { flex: 1; }
  .browse-grid { grid-template-columns: 1fr; }
  .filter-sidebar { display: block; }
}
