/* ═══════════════════════════════════════════════════════
   MY HALL — World-Class Design System v3
   Mobile-first, pixel-perfect, production-ready
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;1,9..40,400&display=swap');

/* ── RESET & BASE ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── DESIGN TOKENS ───────────────────────── */
:root {
  /* Brand */
  --primary:        #E91E8C;
  --primary-dark:   #C01070;
  --primary-light:  #FDF0F8;
  --primary-mid:    #F472B6;
  --secondary:      #0F172A;
  --secondary-mid:  #1E293B;
  --accent:         #FF6B35;
  --gold:           #F59E0B;
  --gold-light:     #FEF3C7;
  --success:        #10B981;
  --success-light:  #ECFDF5;
  --error:          #EF4444;
  --error-light:    #FEF2F2;
  --info:           #3B82F6;

  /* Text */
  --text:           #0F172A;
  --text-2:         #1E293B;
  --text-muted:     #64748B;
  --text-hint:      #94A3B8;
  --text-on-dark:   rgba(255,255,255,.85);

  /* Backgrounds */
  --bg:             #F8FAFC;
  --bg-2:           #F1F5F9;
  --bg-white:       #FFFFFF;
  --bg-card:        #FFFFFF;

  /* Borders */
  --border:         #E2E8F0;
  --border-2:       #CBD5E1;
  --border-light:   #F1F5F9;

  /* Radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.07);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.16), 0 8px 24px rgba(0,0,0,.08);
  --shadow-primary: 0 8px 24px rgba(233,30,140,.25);

  /* Typography */
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --t-fast: 120ms;
  --t: 200ms;
  --t-slow: 350ms;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 64px;
}

/* ── LAYOUT ──────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media(min-width:640px) { .container { padding: 0 28px; } }
@media(min-width:1280px) { .container { padding: 0 40px; } }

.page-wrap { min-height: 60vh; overflow-x: hidden; }

/* ── TYPOGRAPHY ──────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; color: var(--text); letter-spacing: -0.02em; }
.display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; }

/* ── TOPBAR ──────────────────────────────── */
.topbar {
  background: var(--secondary);
  color: rgba(255,255,255,.65);
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner { display: flex; gap: 20px; align-items: center; }
.topbar-inner i { margin-right: 4px; color: var(--primary-mid); }
.topbar-right { margin-left: auto; }
@media(max-width:768px) { .topbar { display: none; } }

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
  transition: box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  background: rgba(255,255,255,.99);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--nav-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.logo-m { color: var(--primary); }
.logo-accent { color: var(--primary); }
.logo-white { color: #fff; }
.logo-white .logo-m, .logo-white .logo-accent { color: var(--primary-mid); }

/* Nav search */
.nav-search-wrap { flex: 1; max-width: 360px; }
.nav-search {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 0 14px;
  gap: 8px;
  transition: border-color var(--t) var(--ease);
}
.nav-search:focus-within { border-color: var(--primary); background: #fff; }
.nav-search i { color: var(--text-hint); font-size: 13px; }
.nav-search input {
  border: none;
  background: transparent;
  padding: 9px 0;
  font-size: 13px;
  color: var(--text);
  width: 100%;
  outline: none;
}
.nav-search input::placeholder { color: var(--text-hint); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.nav-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-muted); cursor: pointer;
  padding: 6px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: all var(--t) var(--ease);
  position: relative;
}
.nav-location:hover { border-color: var(--primary); color: var(--primary); }
.nav-location i.fa-location-dot { color: var(--primary); }

/* Guest nav buttons */
.btn-outline-nav {
  border: 1.5px solid var(--border);
  color: var(--text-2);
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--t) var(--ease);
  display: inline-flex; align-items: center; gap: 5px;
}
.btn-outline-nav:hover { border-color: var(--primary); color: var(--primary); }
.btn-primary-nav {
  background: var(--primary);
  color: #fff;
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--t) var(--ease);
  display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 8px rgba(233,30,140,.3);
}
.btn-primary-nav:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(233,30,140,.4); }

/* Logged-in user menu */
.nav-user-menu { position: relative; }
.nav-user-btn {
  display: flex; align-items: center; gap: 8px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 5px 12px 5px 5px;
  cursor: pointer;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  transition: all var(--t) var(--ease);
}
.nav-user-btn:hover { border-color: var(--primary); }
.nav-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; flex-shrink: 0;
  font-weight: 700;
}
.nav-avatar.owner-avatar { background: linear-gradient(135deg, var(--secondary-mid), var(--secondary)); }
.nav-user-name { max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: none;
  overflow: hidden;
  animation: dropIn 0.18s var(--ease-out);
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.nav-dropdown.open { display: block; }
.nav-dropdown-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border-light);
  font-size: 11px;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  transition: background var(--t-fast) var(--ease);
  border-bottom: 1px solid var(--border-light);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--primary-light); color: var(--primary); }
.nav-dropdown a:hover i { color: var(--primary); }
.nav-dropdown a i { width: 16px; text-align: center; color: var(--text-hint); font-size: 13px; transition: color var(--t-fast); }
.nav-drop-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--bg); }
.hamburger span { width: 22px; height: 2px; background: var(--secondary); border-radius: 2px; transition: all .25s var(--ease); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 88vw);
  height: 100dvh;
  background: #fff;
  z-index: 600;
  overflow-y: auto;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
  transition: right var(--t-slow) var(--ease);
}
.mobile-menu.open { right: 0; display: flex; }
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 599;
  backdrop-filter: blur(2px);
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted);
}
.mobile-menu-section { padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.mobile-menu-section:last-child { border-bottom: none; }
.mobile-menu-label {
  padding: 8px 20px 4px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--text-hint);
}
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--text);
  transition: background var(--t-fast);
}
.mobile-menu a:hover, .mobile-menu a:active { background: var(--bg); }
.mobile-menu a i { width: 20px; text-align: center; color: var(--text-hint); }
.mobile-menu .m-btn-primary {
  margin: 12px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-full);
  padding: 12px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(233,30,140,.3);
}
.mobile-menu .m-btn-outline {
  margin: 4px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 11px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  justify-content: center;
}

@media(max-width:900px) { .nav-search-wrap { display: none; } }
@media(max-width:768px) {
  .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }
}
@media(min-width:769px) { .mobile-menu { display: none !important; } }

/* ── CATEGORY NAV ────────────────────────── */
.cat-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner { display: flex; gap: 0; min-width: max-content; }
.cat-nav-inner a {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 20px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted); white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--t) var(--ease);
}
.cat-nav-inner a:hover { color: var(--primary); border-bottom-color: var(--primary-mid); }
.cat-nav-inner a.active { color: var(--primary); border-bottom-color: var(--primary); }
.cat-nav-inner a i { font-size: 14px; }

/* ── HERO ────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(233,30,140,.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(99,40,160,.25) 0%, transparent 70%),
    linear-gradient(160deg, #0D0620 0%, #1A0535 35%, #0D0620 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(233,30,140,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(147,51,234,.08) 0%, transparent 50%);
  pointer-events: none;
}
/* Decorative grid lines */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 760px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(233,30,140,.12);
  color: #F9A8D4;
  font-size: 11px; font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--r-full);
  border: 1px solid rgba(233,30,140,.25);
  margin-bottom: 20px;
  letter-spacing: .8px; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 58px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #F9A8D4 0%, #E91E8C 50%, #C084FC 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,.65);
  font-size: clamp(14px, 2vw, 17px);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Hero search bar */
/* ── HERO 3-DROPDOWN SEARCH BOX ─────────── */
.hero-search-box {
  max-width: 820px; margin: 0 auto 28px;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.12);
  display: flex; align-items: stretch;
  overflow: visible;
  position: relative;
}

/* Each field */
.hsb-field { flex: 1; position: relative; min-width: 0; }
.hsb-trigger {
  display: flex; align-items: center; gap: 10px;
  padding: 0 18px; height: 68px; cursor: pointer;
  transition: background var(--t-fast);
  border-radius: 0;
}
.hsb-trigger:hover { background: var(--bg); }
.hsb-field:first-child .hsb-trigger { border-radius: var(--r-xl) 0 0 var(--r-xl); }
.hsb-icon { font-size: 18px; color: var(--text-muted); flex-shrink: 0; }
.hsb-inner { flex: 1; min-width: 0; }
.hsb-label { display: none; }
.hsb-value { display: block; font-size: 15px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hsb-value.placeholder { color: var(--text-muted); font-weight: 400; }
.hsb-caret { font-size: 10px; color: var(--text-muted); flex-shrink: 0; transition: transform .2s; }
.hsb-field.open .hsb-caret { transform: rotate(180deg); }
.hsb-divider { width: 1px; background: var(--border); margin: 14px 0; flex-shrink: 0; align-self: auto; }

/* Find button */
.hsb-btn {
  background: var(--primary);
  color: #fff; border: none;
  padding: 0 32px; height: 68px;
  font-size: 15px; font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; flex-shrink: 0;
  transition: background var(--t) var(--ease);
}
.hsb-btn:hover { background: var(--primary-dark); }

/* Dropdown panel */
.hsb-dropdown {
  display: none; position: absolute;
  top: calc(100% + 8px); left: 0;
  min-width: 280px; width: max-content; max-width: 340px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); z-index: 600;
  overflow: hidden;
  animation: dropIn .18s var(--ease-out);
}
.hsb-field.open .hsb-dropdown { display: block; }

/* Search within dropdown */
.hsb-search-wrap {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid var(--border);
}
.hsb-search-wrap i { color: var(--text-hint); font-size: 13px; }
.hsb-search {
  border: none; outline: none; font-size: 13px;
  font-family: var(--font); color: var(--text); flex: 1;
  background: transparent;
}

/* Option list */
.hsb-list { max-height: 280px; overflow-y: auto; scrollbar-width: thin; }
.hsb-list::-webkit-scrollbar { width: 4px; }
.hsb-list::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }
.hsb-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; font-size: 13px; font-weight: 500;
  color: var(--text); cursor: pointer; gap: 8px;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t-fast);
}
.hsb-option:last-child { border-bottom: none; }
.hsb-option:hover, .hsb-option.selected { background: var(--primary-light); color: var(--primary); }
.hsb-option.selected { font-weight: 700; }
.hsb-meta { font-size: 11px; color: var(--text-hint); font-weight: 400; white-space: nowrap; }
.hsb-option:hover .hsb-meta, .hsb-option.selected .hsb-meta { color: var(--primary); opacity: .7; }

/* Mobile: stack vertically */
@media(max-width:768px) {
  .hero-search-box {
    flex-direction: column; border-radius: var(--r-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
  }
  .hsb-field { flex: none; }
  .hsb-trigger { height: 58px; border-radius: 0 !important; border-bottom: 1px solid var(--border); }
  .hsb-divider { display: none; }
  .hsb-btn { width: 100%; justify-content: center; border-radius: 0 0 var(--r-lg) var(--r-lg); height: 56px; }
  .hsb-dropdown { min-width: calc(100vw - 40px); left: 0; }
}


/* Area pills */
.area-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
.area-pill {
  padding: 6px 15px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: 12px; font-weight: 500;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t) var(--ease);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.05);
}
.area-pill:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); color: #fff; }

/* ── STATS BAR ───────────────────────────── */
.stats-bar {
  background: var(--secondary-mid);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-bar-inner {
  display: flex; gap: 0;
  justify-content: center; align-items: center; flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 22px; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .4px; margin-top: 2px; text-transform: uppercase; }
@media(max-width:600px) { .stat-item { padding: 8px 16px; } .stat-num { font-size: 18px; } }

/* ── SECTION ─────────────────────────────── */
.section { padding: 64px 0; }
.section-sm { padding: 36px 0; }
.section-xs { padding: 20px 0; }

.section-title {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px; gap: 16px;
}
.section-title h2 { font-family: var(--font-display); font-size: clamp(22px,4vw,30px); font-weight: 800; }
.section-title a { font-size: 13px; color: var(--primary); font-weight: 600; white-space: nowrap; }
.section-title a:hover { text-decoration: underline; }

.section-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--primary); margin-bottom: 8px;
}

/* ── CATEGORY CARDS ──────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media(max-width:1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.cat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 14px 18px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-light), transparent);
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.cat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(233,30,140,.15);
  transform: translateY(-3px);
}
.cat-card:hover::before { opacity: 1; }
.cat-icon { font-size: 34px; margin-bottom: 10px; display: block; position: relative; }
.cat-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; position: relative; }
.cat-count { font-size: 11px; color: var(--text-muted); position: relative; }

/* ── HOW IT WORKS ────────────────────────── */
.how-section { background: var(--secondary); padding: 64px 0; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 40px; }
@media(max-width:900px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px) { .how-grid { grid-template-columns: 1fr; } }

.how-card {
  text-align: center; padding: 32px 24px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,.07);
}
.how-card:last-child { border-right: none; }
@media(max-width:900px) { .how-card:nth-child(2) { border-right: none; } .how-card { border-bottom: 1px solid rgba(255,255,255,.07); } }
.how-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(233,30,140,.15);
  border: 1.5px solid rgba(233,30,140,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.how-num i { font-size: 20px; color: var(--primary-mid); }
.how-step { font-size: 10px; font-weight: 700; color: rgba(233,30,140,.7); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.how-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.how-card p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── VENUE CARDS ─────────────────────────── */
.venues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media(max-width:1024px) { .venues-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px) { .venues-grid { grid-template-columns: 1fr; gap: 16px; } }

.venue-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-slow) var(--ease);
  display: flex; flex-direction: column;
  cursor: pointer;
}
.venue-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}

.vc-thumb {
  position: relative; height: 210px; overflow: hidden;
  background: linear-gradient(135deg, #F3E5F5, #FCE4EC);
}
.vc-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.venue-card:hover .vc-thumb img { transform: scale(1.06); }
.vc-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, #F3E5F5 0%, #FCE4EC 100%);
}

.vc-badge { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; max-width: calc(100% - 50px); }
.badge {
  font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--r-full);
  letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: 3px;
}
.badge-featured { background: var(--gold); color: #fff; }
.badge-ac { background: #0EA5E9; color: #fff; }
.badge-verified { background: var(--primary); color: #fff; }

.vc-wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--text-muted);
  transition: all var(--t) var(--ease); border: none; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.vc-wishlist:hover { color: var(--primary); transform: scale(1.12); background: #fff; }
.vc-wishlist.wishlisted { color: var(--primary); background: #fff; }
.vc-wishlist.wishlisted i { color: var(--primary); }

.vc-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.vc-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.vc-name a:hover { color: var(--primary); }
.vc-location { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.vc-location i { color: var(--primary); font-size: 11px; }

.vc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 12px; color: var(--text-muted); }
.vc-rating { display: flex; align-items: center; gap: 4px; font-weight: 700; color: var(--text-2); }
.vc-rating i { color: var(--gold); font-size: 12px; }
.vc-rating span { color: var(--text-muted); font-weight: 400; font-size: 11px; }
.vc-sep { color: var(--border-2); }

.vc-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border-light); }
.vc-price-main { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -.3px; }
.vc-price-main small { font-size: 12px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.vc-price-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

.btn-enquire {
  background: var(--primary);
  color: #fff; border: none;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--t) var(--ease);
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.btn-enquire:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-primary); }

/* ── LISTING PAGE ────────────────────────── */
.listing-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
@media(max-width:900px) { .listing-layout { grid-template-columns: 1fr; } }

.filters-sidebar {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  position: sticky; top: calc(var(--nav-h) + 16px);
}
.filters-sidebar h3 { font-size: 15px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.filters-sidebar h3 i { color: var(--primary); }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.filter-group:last-of-type { border-bottom: none; margin-bottom: 8px; padding-bottom: 0; }
.filter-group-title { font-size: 11px; font-weight: 700; color: var(--text-2); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .6px; }
.filter-check { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; cursor: pointer; font-size: 13px; color: var(--text-muted); transition: color var(--t-fast); }
.filter-check:hover { color: var(--primary); }
.filter-check input { accent-color: var(--primary); width: 15px; height: 15px; cursor: pointer; flex-shrink: 0; }
.filter-check input:checked + span { color: var(--primary); font-weight: 600; }

.sort-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 12px 18px; margin-bottom: 22px;
  gap: 10px; flex-wrap: wrap;
}
.sort-bar-left { font-size: 13px; color: var(--text-muted); }
.sort-bar-left strong { color: var(--text); font-weight: 700; }
.sort-select {
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 7px 12px; font-size: 13px; color: var(--text);
  background: #fff; cursor: pointer; outline: none;
  transition: border-color var(--t);
}
.sort-select:focus { border-color: var(--primary); }

/* Mobile filter toggle */
.filter-toggle-btn {
  display: none;
  align-items: center; gap: 8px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-full); padding: 9px 18px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  color: var(--text); font-family: var(--font);
}
@media(max-width:900px) { .filter-toggle-btn { display: flex; } .filters-sidebar { display: none; } .filters-sidebar.mobile-open { display: block; } }

/* ── BREADCRUMB ──────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
  padding: 16px 0 12px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 9px; opacity: .4; }

/* ── VENUE DETAIL ────────────────────────── */
.detail-layout { display: grid; grid-template-columns: 1fr 400px; gap: 36px; align-items: start; }
@media(max-width:1100px) { .detail-layout { grid-template-columns: 1fr 360px; } }
@media(max-width:960px) { .detail-layout { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 260px 150px;
  gap: 6px; border-radius: var(--r-xl);
  overflow: hidden; margin-bottom: 24px;
}
.gallery-main {
  grid-row: 1/3;
  background: linear-gradient(145deg,#6B4F12,#C9A84C);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-main:hover img { transform: scale(1.04); }
.gallery-sm {
  background: linear-gradient(145deg,#FCE4EC,#F8BBD0);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; cursor: pointer;
}
.gallery-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-sm:hover img { transform: scale(1.06); }
.gallery-sm.more::after {
  content: '+' attr(data-more) ' photos';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  backdrop-filter: blur(2px);
}
@media(max-width:600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 110px; }
  .gallery-main { grid-column: 1/-1; grid-row: 1; }
}

.detail-title { font-family: var(--font-display); font-size: clamp(24px,4vw,34px); margin-bottom: 8px; line-height: 1.15; font-weight: 800; }
.detail-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.detail-address { font-size: 13px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 6px; margin-bottom: 18px; line-height: 1.5; }
.detail-address i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

.detail-rating {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.rating-score { font-size: 26px; font-weight: 900; color: var(--text); }
.rating-stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Detail tabs */
.detail-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto; scrollbar-width: none;
}
.detail-tabs::-webkit-scrollbar { display: none; }
.detail-tab {
  padding: 11px 20px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all var(--t) var(--ease); white-space: nowrap;
}
.detail-tab:hover { color: var(--text); }
.detail-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn .2s var(--ease-out); }
@keyframes fadeIn { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:translateY(0); } }

/* Info chips */
.info-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 12px; margin-bottom: 28px; }
.info-chip {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color var(--t);
}
.info-chip:hover { border-color: var(--primary); }
.info-chip i { font-size: 20px; color: var(--primary); width: 24px; text-align: center; flex-shrink: 0; }
.chip-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.chip-val { font-size: 13px; font-weight: 700; color: var(--text); }

/* Amenities */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media(max-width:640px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
.amenity-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text);
  background: var(--bg); border-radius: var(--r-sm);
  padding: 9px 12px;
  transition: background var(--t-fast);
}
.amenity-item:hover { background: var(--primary-light); }
.amenity-item i { color: var(--success); width: 14px; font-size: 12px; flex-shrink: 0; }

/* Pricing */
.pricing-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; margin-bottom: 20px;
}
.pricing-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border-light); font-size: 14px;
}
.pricing-row:last-child { border-bottom: none; padding-bottom: 0; }
.pricing-label { color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.pricing-val { font-size: 17px; font-weight: 800; color: var(--text); }
.pricing-note { font-size: 11px; color: var(--text-hint); margin-top: 12px; display: flex; gap: 5px; align-items: flex-start; }

/* Phone reveal */
.phone-reveal {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 16px 18px; margin-bottom: 24px;
  transition: border-color var(--t);
}
.phone-reveal:hover { border-color: var(--primary); }
.phone-reveal > i { font-size: 22px; color: var(--primary); flex-shrink: 0; }
.phone-number { font-size: 18px; font-weight: 800; letter-spacing: .5px; color: var(--text); }
.phone-blurred { filter: blur(5px); user-select: none; }
.phone-hint { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Map placeholder */
.map-placeholder {
  height: 240px; background: var(--bg);
  border-radius: var(--r-lg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; color: var(--text-muted);
  font-size: 13px; margin-bottom: 24px;
}
.map-placeholder i { font-size: 32px; color: var(--primary); opacity: .7; }

/* ── LEAD FORM CARD ──────────────────────── */
.lead-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  position: sticky; top: calc(var(--nav-h) + 16px);
  overflow: hidden;
}
.lead-card-header {
  background: linear-gradient(135deg, #0D0620 0%, var(--primary) 60%, #6B21A8 100%);
  padding: 22px 24px;
  position: relative; overflow: hidden;
}
.lead-card-header::before {
  content: '';
  position: absolute; top: -50%; right: -30%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.lead-card-header h3 { font-family: var(--font-display); font-size: 20px; color: #fff; margin-bottom: 4px; position: relative; font-weight: 800; }
.lead-card-header p { color: rgba(255,255,255,.75); font-size: 13px; position: relative; }
.lead-card-body { padding: 22px 24px; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-2); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
.form-label .opt { font-weight: 400; color: var(--text-hint); text-transform: none; letter-spacing: 0; font-size: 10px; }
.form-control {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 14px; color: var(--text); background: var(--bg);
  outline: none; transition: all var(--t) var(--ease);
}
.form-control:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(233,30,140,.08); }
.form-control::placeholder { color: var(--text-hint); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; border: none;
  border-radius: var(--r-sm);
  font-size: 15px; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  margin-top: 6px;
  transition: all var(--t) var(--ease);
  letter-spacing: .2px;
  box-shadow: 0 4px 16px rgba(233,30,140,.3);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(233,30,140,.4); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.form-trust {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 11px; color: var(--text-muted); margin-top: 12px; line-height: 1.5;
}
.form-trust i { color: var(--success); margin-top: 1px; flex-shrink: 0; }

/* Lead success */
.lead-success { text-align: center; padding: 28px 20px; }
.lead-success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--success-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 8px rgba(16,185,129,.08);
}
.lead-success-icon i { font-size: 26px; color: var(--success); }
.lead-success h4 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.lead-success p { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.revealed-phone {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.revealed-phone .ph { font-size: 18px; font-weight: 800; color: var(--text); }

/* Mobile sticky CTA (shows on venue detail on mobile) */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: #fff; border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px; align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mobile-sticky-cta .price-snippet { flex: 1; }
.mobile-sticky-cta .price-snippet strong { font-size: 18px; font-weight: 800; display: block; line-height: 1.2; }
.mobile-sticky-cta .price-snippet span { font-size: 11px; color: var(--text-muted); }
.mobile-sticky-cta a {
  background: var(--primary); color: #fff;
  padding: 12px 24px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 700; white-space: nowrap;
  box-shadow: var(--shadow-primary);
}
@media(max-width:960px) { .mobile-sticky-cta { display: flex; } }
@media(min-width:961px) { .mobile-sticky-cta { display: none !important; } }

/* ── LISTICLE PAGE ───────────────────────── */
.listicle-hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(233,30,140,.3) 0%, transparent 70%),
    linear-gradient(160deg, #0D0620 0%, #1A0535 100%);
  padding: 52px 0 48px; color: #fff;
}
.listicle-stats { display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.listicle-stat { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.75); }
.listicle-stat i { color: var(--primary-mid); }

.listicle-layout { display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start; }
@media(max-width:900px) { .listicle-layout { grid-template-columns: 1fr; } }

.listicle-toc {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 20px;
  position: sticky; top: calc(var(--nav-h) + 16px);
}
.listicle-toc h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 14px; }
.listicle-toc ol { padding-left: 18px; }
.listicle-toc li { font-size: 13px; margin-bottom: 8px; }
.listicle-toc a { color: var(--primary); }
.listicle-toc a:hover { text-decoration: underline; }

.listicle-intro {
  font-size: 15px; color: var(--text-2);
  line-height: 1.8; margin-bottom: 32px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 26px;
  border-left: 4px solid var(--primary);
}

/* Ranked card */
.ranked-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; margin-bottom: 18px;
  display: flex; transition: all var(--t) var(--ease);
}
.ranked-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.ranked-num {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; font-size: 22px; font-weight: 800;
  font-family: var(--font-display);
  width: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ranked-thumb {
  width: 180px; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(145deg,#FCE4EC,#F8BBD0);
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.ranked-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ranked-body { flex: 1; padding: 18px 22px; display: flex; flex-direction: column; justify-content: space-between; }
.ranked-name { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.ranked-name a:hover { color: var(--primary); }
.ranked-location { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.ranked-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.ranked-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.ranked-price { font-size: 18px; font-weight: 800; color: var(--text); }
.ranked-price-sub { font-size: 11px; color: var(--text-muted); }
.vc-tag { font-size: 11px; padding: 3px 9px; border-radius: var(--r-full); background: var(--bg); color: var(--text-muted); border: 1px solid var(--border); }

@media(max-width:600px) {
  .ranked-card { flex-direction: column; }
  .ranked-num { width: 100%; height: 36px; font-size: 16px; }
  .ranked-thumb { width: 100%; height: 140px; }
}

/* ── FAQ ─────────────────────────────────── */
.faq-section { margin-top: 36px; }
.faq-section h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 18px; font-weight: 800; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--r-lg); margin-bottom: 8px; overflow: hidden; transition: border-color var(--t); }
.faq-item.open { border-color: var(--primary); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer; font-size: 14px; font-weight: 600;
  background: var(--bg-card); gap: 12px;
}
.faq-q i { color: var(--text-hint); transition: transform .25s var(--ease); font-size: 12px; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--primary); }
.faq-a { display: none; padding: 16px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.75; border-top: 1px solid var(--border-light); background: var(--bg); }
.faq-item.open .faq-a { display: block; animation: fadeIn .2s var(--ease-out); }

/* ── FOOTER ──────────────────────────────── */
.site-footer { background: var(--secondary); color: rgba(255,255,255,.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 40px; }
@media(max-width:1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media(max-width:640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media(max-width:400px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { }
.footer-brand p { font-size: 13px; line-height: 1.75; margin-top: 12px; color: rgba(255,255,255,.5); max-width: 300px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.25);
  color: #6EE7B7; font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--r-full); margin-top: 14px;
}
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.6);
  transition: all var(--t) var(--ease);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 16px; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--primary-mid); }

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.3);
  gap: 12px; flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.3); font-size: 12px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ── WHATSAPP FAB ────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--t) var(--ease);
  animation: pulse 3s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 8px rgba(37,211,102,.08); }
}
@media(max-width:960px) { .whatsapp-fab { bottom: 80px; } }

/* ── UTILITIES ───────────────────────────── */
.text-center { text-align: center; }
.d-none { display: none; }
.page-wrap { min-height: 60vh; overflow-x: hidden; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Notification toast */
.notif {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--secondary); color: #fff;
  padding: 12px 22px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 9999;
  opacity: 0; transition: all .35s var(--ease-out);
  pointer-events: none; white-space: nowrap; max-width: 90vw;
}
.notif.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Alert blocks */
.alert { padding: 13px 16px; border-radius: var(--r-sm); font-size: 13px; margin-bottom: 16px; display: flex; align-items: center; gap: 9px; }
.alert-success { background: var(--success-light); color: #065F46; border: 1px solid #A7F3D0; }
.alert-danger  { background: var(--error-light);   color: #991B1B; border: 1px solid #FECACA; }
.alert-info    { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }
.alert-warning { background: var(--gold-light); color: #92400E; border: 1px solid #FDE68A; }

/* Skeleton shimmer */
.skeleton {
  background: linear-gradient(90deg, #F1F5F9 25%, #E8EDF2 50%, #F1F5F9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}
@keyframes shimmer { 0%{background-position:200%0} 100%{background-position:-200%0} }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 300;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1.5px solid var(--border);
  display: none; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted); cursor: pointer;
  box-shadow: var(--shadow); transition: all var(--t);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { border-color: var(--primary); color: var(--primary); }

/* ── PRINT ───────────────────────────────── */
@media print {
  .topbar, .navbar, .cat-nav, .site-footer, .lead-card, .whatsapp-fab, .mobile-sticky-cta { display: none !important; }
  .detail-layout { grid-template-columns: 1fr !important; }
  body { font-size: 12px; }
}
