/* ============================================================
   YUMYUMPO — Design System
   Brand: Yellow #FFD000 · Black #111111 · White #FFFFFF
   Vibe: Fun · Backpacker · Bold · Street-food energy
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* 16px form inputs prevent iOS Safari zoom-on-focus. Safe on all devices. */
input, select, textarea { font-size: max(16px, 1rem); }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
button, [role="button"] { cursor: pointer; }


/* ══════════════════════════════════════════════════════════
   BRAND TOKENS
══════════════════════════════════════════════════════════ */
:root {
  --yellow:        #FFD000;
  --yellow-dark:   #E6BB00;
  --yellow-light:  #FFF9D6;
  --yellow-pale:   #FFFDF0;
  --black:         #111111;
  --black-soft:    #1E1E1E;
  --white:         #FFFFFF;
  --gray-50:       #F9F9F9;
  --gray-100:      #F3F3F3;
  --gray-200:      #E8E8E8;
  --gray-400:      #ABABAB;
  --gray-600:      #6B6B6B;
  --gray-800:      #333333;
  --green:         #22C55E;
  --red:           #EF4444;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-full:   999px;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.14);
  --shadow-yellow: 0 8px 24px rgba(255,208,0,0.45);
}


/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#navbar {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

/* Discover page has a white nav always */
#navbar.solid {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200);
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .nav-logo-img { height: 42px; }
}


/* ══════════════════════════════════════════════════════════
   HERO — HOMEPAGE
══════════════════════════════════════════════════════════ */
.hero-section {
  background: var(--black);
  position: relative;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(17,17,17,0.35) 0%,
    rgba(17,17,17,0.65) 60%,
    rgba(17,17,17,0.88) 100%
  );
}

/* Yellow glow blobs */
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  pointer-events: none;
}
.ambient-blob-1 {
  width: 560px; height: 560px;
  background: var(--yellow);
  top: -120px; right: -160px;
  animation: blobFloat 14s ease-in-out infinite;
}
.ambient-blob-2 {
  width: 380px; height: 380px;
  background: #FFA500;
  bottom: -60px; left: -80px;
  animation: blobFloat 11s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(24px,-24px) scale(1.06); }
}


/* ══════════════════════════════════════════════════════════
   SEARCH BAR
══════════════════════════════════════════════════════════ */
.search-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 0 3px rgba(255,208,0,0.25),
    0 24px 64px rgba(0,0,0,0.30);
}

.search-divider {
  width: 1px;
  height: 28px;
  background: var(--gray-200);
  flex-shrink: 0;
}

.btn-search {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: var(--shadow-yellow);
}
.btn-search:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255,208,0,0.55);
}

/* Suggestion chips — hero */
.suggestion-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}
.suggestion-chip:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

/* AI dark section chips */
.ai-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.55);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}
.ai-chip:hover {
  background: rgba(255,208,0,0.15);
  border-color: rgba(255,208,0,0.5);
  color: var(--yellow);
}


/* ══════════════════════════════════════════════════════════
   SCROLL INDICATOR
══════════════════════════════════════════════════════════ */
.scroll-indicator {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-full);
  position: relative;
}
.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--yellow);
  border-radius: var(--radius-full);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { opacity:1; transform:translateX(-50%) translateY(0); }
  50%      { opacity:0.3; transform:translateX(-50%) translateY(10px); }
}


/* ══════════════════════════════════════════════════════════
   SECTION TYPOGRAPHY
══════════════════════════════════════════════════════════ */
.section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 6px;
  display: block;
}
.section-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════
   CUISINE PILLS
══════════════════════════════════════════════════════════ */
.cuisine-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--gray-800);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem 1.125rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.cuisine-pill:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
  color: var(--black);
  transform: translateY(-2px);
}
.cuisine-pill.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-2px);
}
.cuisine-emoji { font-size: 1.0625rem; }


/* ══════════════════════════════════════════════════════════
   RESTAURANT CARDS — FEATURED (large grid)
══════════════════════════════════════════════════════════ */
.restaurant-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: all 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  position: relative;
}
.restaurant-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Image wrapper */
.card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.card-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.restaurant-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

/* Top-left badge */
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.card-badge.dark {
  background: var(--black);
  color: var(--yellow);
}
.card-badge.white {
  background: rgba(255,255,255,0.95);
  color: var(--black);
  backdrop-filter: blur(6px);
}

/* Save / Bookmark button */
.card-save-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.card-save-btn:hover { background: var(--yellow); transform: scale(1.1); }
.card-save-btn svg { width: 16px; height: 16px; }

/* Restaurant logo chip */
.card-logo {
  position: absolute;
  bottom: -16px; right: 16px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--white);
  border: 2.5px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.restaurant-card:hover .card-logo { transform: scale(1.1) rotate(-5deg); }

/* Card body */
.card-body { padding: 1.375rem 1.25rem 1.25rem; padding-top: 1.75rem; }

/* Rating row */
.card-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.825rem;
  margin-bottom: 6px;
}
.card-rating .stars { color: #FACC15; font-size: 0.875rem; letter-spacing: -1px; }
.card-rating .score { font-weight: 800; color: var(--black); }
.card-rating .count { color: var(--gray-400); font-weight: 400; }

/* Name */
.card-name {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

/* Cuisine subtitle */
.card-cuisine {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 8px;
}

/* Description */
.card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

/* Location */
.card-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.card-location svg { width: 13px; height: 13px; color: var(--yellow-dark); flex-shrink: 0; }

/* Tags */
.card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  transition: all 0.15s ease;
}
.card-tag:hover { background: var(--yellow-light); color: var(--black); }
.card-tag.yellow { color: var(--black); background: var(--yellow-light); border: 1px solid rgba(255,208,0,0.4); }
.card-tag.black  { color: var(--white); background: var(--black); }

/* AI summary line */
.card-ai-summary {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  font-style: italic;
}

/* ── Card action bar ── */
.card-actions {
  display: flex;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

/* ── Single primary CTA button ── */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.18s ease;
  width: 100%;
  justify-content: center;
}

/* YUMYUMPO hosted profile — solid black pill */
.card-cta--profile {
  background: var(--black);
  color: var(--white);
}
.card-cta--profile:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

/* External website — outlined pill */
.card-cta--external {
  background: transparent;
  color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
}
.card-cta--external:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}

/* Get Listed funnel — dashed yellow */
.card-cta--funnel {
  background: var(--yellow-light);
  color: var(--black);
  border: 1.5px dashed rgba(255,208,0,0.7);
  font-size: 0.75rem;
}
.card-cta--funnel:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

/* ── Hosted badge (top-right of image, opposite of save btn) ── */
.card-buzz {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  margin-bottom: 10px;
  width: fit-content;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.card-buzz.hot {
  background: linear-gradient(95deg, #ef4444 0%, #f97316 55%, #fbbf24 100%);
  box-shadow:
    0 6px 18px -4px rgba(239, 68, 68, 0.55),
    0 0 0 1px rgba(255,255,255,0.18) inset;
}
.card-buzz.trending {
  background: linear-gradient(95deg, #f97316 0%, #fbbf24 100%);
  box-shadow:
    0 6px 18px -4px rgba(249, 115, 22, 0.5),
    0 0 0 1px rgba(255,255,255,0.18) inset;
}
.card-buzz::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,0.55) 50%,
    transparent 70%);
  transform: translateX(-100%);
  animation: buzzShine 3.2s ease-in-out infinite;
  z-index: -1;
}
.card-buzz .buzz-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.85);
  animation: buzzPulse 1.4s ease-in-out infinite;
}
@keyframes buzzPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.5); }
}
@keyframes buzzShine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

.card-hosted-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  pointer-events: none;
}

/* Trending card AI summary */
.trending-summary {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-top: 4px;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: italic;
}


/* ══════════════════════════════════════════════════════════
   TRENDING CARDS — compact horizontal
══════════════════════════════════════════════════════════ */
.trending-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.34,1.4,0.64,1);
}
.trending-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.trending-card-image { aspect-ratio: 3/2; overflow: hidden; background: var(--gray-100); }
.trending-card-image img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.45s ease;
}
.trending-card:hover .trending-card-image img { transform: scale(1.08); }
.trending-card-body { padding: 1rem; }
.trending-rank {
  font-size: 0.675rem;
  font-weight: 800;
  color: var(--yellow-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.trending-name {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.trending-meta { font-size: 0.8rem; color: var(--gray-400); font-weight: 500; }


/* ══════════════════════════════════════════════════════════
   TOURISM SPOTLIGHT CARDS
══════════════════════════════════════════════════════════ */
.tourism-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.tourism-card img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.5s ease;
}
.tourism-card:hover img { transform: scale(1.06); }
.tourism-card-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0) 55%);
}
.tourism-card-content { position:absolute; bottom:0; left:0; right:0; padding:1.5rem; }
.tourism-card-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.675rem; font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.tourism-card-name {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.375rem; font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.tourism-card-location { font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; }


/* ══════════════════════════════════════════════════════════
   DISCOVER PAGE — FILTER BAR
══════════════════════════════════════════════════════════ */
.filter-bar {
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-200);
  position: sticky;
  top: 64px;
  z-index: 30;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  border: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: transparent;
}
.filter-tab:hover {
  color: var(--black);
  background: var(--gray-100);
}
.filter-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.filter-tab .tab-count {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: var(--radius-full);
}
.filter-tab.active .tab-count {
  background: var(--yellow);
  color: var(--black);
}

/* Sort dropdown */
.sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 0.5rem 2.25rem 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  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='%23111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  outline: none;
  transition: all 0.2s;
}
.sort-select:focus { border-color: var(--yellow); background-color: var(--white); }

/* Active filter chips (applied filters row) */
.active-filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow-light);
  border: 1.5px solid rgba(255,208,0,0.6);
  color: var(--black);
  font-size: 0.8rem; font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.active-filter-chip:hover { background: var(--yellow); }
.active-filter-chip .remove { font-size: 1rem; line-height: 1; opacity: 0.6; }
.active-filter-chip:hover .remove { opacity: 1; }


/* ══════════════════════════════════════════════════════════
   DISCOVER PAGE — SIDEBAR
══════════════════════════════════════════════════════════ */
.filter-sidebar {
  position: sticky;
  top: 128px; /* below nav + filter bar */
  max-height: calc(100vh - 148px);
  overflow-y: auto;
  padding-right: 4px;
}
.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

.sidebar-section { margin-bottom: 1.75rem; }
.sidebar-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}

/* Checkbox filter rows */
.filter-checkbox-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.filter-checkbox-row:hover { padding-left: 4px; }
.filter-checkbox-row input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--black);
  cursor: pointer;
}
.filter-checkbox-label { font-size: 0.875rem; font-weight: 500; color: var(--gray-800); flex: 1; margin-left: 10px; }
.filter-checkbox-count { font-size: 0.75rem; color: var(--gray-400); font-weight: 600; }

/* Rating filter buttons */
.rating-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.825rem; font-weight: 600;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: all 0.2s;
}
.rating-btn:hover { border-color: var(--yellow); color: var(--black); }
.rating-btn.active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* Price range buttons */
.price-btn {
  flex: 1;
  padding: 8px;
  border-radius: var(--radius-md);
  font-size: 0.875rem; font-weight: 700;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  text-align: center;
  transition: all 0.2s;
}
.price-btn:hover { border-color: var(--yellow); color: var(--black); }
.price-btn.active { background: var(--black); border-color: var(--black); color: var(--yellow); }


/* ══════════════════════════════════════════════════════════
   DISCOVER PAGE — RESULT GRID
══════════════════════════════════════════════════════════ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1280px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .results-grid { grid-template-columns: 1fr; gap: 16px; } }

/* List view toggle */
.results-list { display: flex; flex-direction: column; gap: 14px; }
.list-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  transition: all 0.3s ease;
}
.list-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.list-card-image { width: 200px; flex-shrink: 0; overflow: hidden; }
.list-card-image img { width:100%; height:100%; object-fit:cover; }
.list-card-body { flex: 1; padding: 1.125rem 1.25rem; display: flex; flex-direction: column; justify-content: space-between; }
@media (max-width: 640px) {
  .list-card { flex-direction: column; }
  .list-card-image { width: 100%; height: 180px; }
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  grid-column: 1 / -1;
}
.empty-state-emoji { font-size: 4rem; margin-bottom: 1rem; display: block; }


/* ══════════════════════════════════════════════════════════
   DISCOVER PAGE — SEARCH INPUT
══════════════════════════════════════════════════════════ */
.discover-search-wrap {
  position: relative;
  flex: 1;
}
.discover-search-input {
  width: 100%;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-size: 0.9375rem;
  color: var(--black);
  outline: none;
  transition: all 0.2s;
  font-weight: 500;
}
.discover-search-input::placeholder { color: var(--gray-400); font-weight: 400; }
.discover-search-input:focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,208,0,0.2);
}
.discover-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--gray-400); pointer-events: none;
}
.discover-search-clear {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--gray-400);
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  color: white; font-size: 10px; font-weight: 700;
  transition: background 0.2s;
}
.discover-search-clear:hover { background: var(--black); }
.discover-search-clear.visible { display: flex; }


/* ══════════════════════════════════════════════════════════
   MOBILE FILTER DRAWER
══════════════════════════════════════════════════════════ */
.filter-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.filter-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.filter-drawer {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  z-index: 70;
  padding: 0 1.25rem 2rem;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}
.filter-drawer.open { transform: translateY(0); }
.drawer-handle {
  width: 40px; height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin: 14px auto 20px;
}


/* ══════════════════════════════════════════════════════════
   LOAD MORE BUTTON
══════════════════════════════════════════════════════════ */
.btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  border: 2px solid var(--black);
}
.btn-load-more:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.btn-load-more.loading { pointer-events: none; opacity: 0.6; }


/* ══════════════════════════════════════════════════════════
   YELLOW CTA BUTTONS (site-wide)
══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,208,0,0.55);
}

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}
.btn-dark:hover { background: var(--black-soft); transform: translateY(-2px); }

.btn-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--black);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  transition: all 0.2s ease;
}
.btn-outline:hover { border-color: var(--black); background: var(--black); color: var(--white); }


/* ══════════════════════════════════════════════════════════
   SKELETON LOADING
══════════════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, #ebebeb 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.skeleton-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; border: 1.5px solid var(--gray-100); }
.skeleton-image { aspect-ratio: 4/3; }
.skeleton-body { padding: 1.375rem 1.25rem; }
.skeleton-line { height: 13px; margin-bottom: 10px; border-radius: 999px; }


/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
.fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(0.22,0.61,0.36,1) both;
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.10s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.20s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.30s; }


/* ══════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════ */
.stats-strip { background: var(--black); }
.stat-number { font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif; }


/* ══════════════════════════════════════════════════════════
   ADMIN DASHBOARD
══════════════════════════════════════════════════════════ */
.sidebar { width: 260px; min-height: 100vh; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-radius: 12px;
  font-size: 0.875rem; font-weight: 600;
  color: var(--gray-600);
  transition: all 0.2s; cursor: pointer;
}
.sidebar-link:hover   { background: var(--gray-100); color: var(--black); }
.sidebar-link.active  { background: var(--yellow); color: var(--black); }
.sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.stat-card { background: var(--white); border-radius: 20px; padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-100); }
.form-input {
  width: 100%;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem; color: var(--black);
  outline: none; transition: all 0.2s;
}
.form-input:focus { border-color: var(--yellow); background: var(--white); box-shadow: 0 0 0 3px rgba(255,208,0,0.15); }
.form-label { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.restaurant-row { display:flex; align-items:center; gap:12px; padding:12px 16px; border-radius:14px; background:var(--white); border:1.5px solid var(--gray-100); transition:box-shadow 0.2s; }
.restaurant-row:hover { box-shadow: var(--shadow-md); }
.tab-btn { padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.875rem; font-weight: 600; color: var(--gray-600); transition: all 0.2s; }
.tab-btn.active { background: var(--black); color: var(--yellow); }
@media (max-width: 768px) { .sidebar { display: none; } }


/* ══════════════════════════════════════════════════════════
   FOCUS & ACCESSIBILITY
══════════════════════════════════════════════════════════ */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2.5px solid var(--yellow);
  outline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════════════ */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.line-clamp-2 { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.line-clamp-3 { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
