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

:root {
  --orange:     #3535b0;
  --orange-dk:  #2929a0;
  --orange-lt:  #e8e8f8;
  --gold:       #5555cc;
  --stone-900:  #0f0f2d;
  --stone-800:  #1a1a4a;
  --stone-700:  #3535b0;
  --stone-500:  #6060c0;
  --stone-300:  #a0a8d8;
  --stone-100:  #eeeef8;
  --stone-50:   #f4f4fc;
  --white:      #ffffff;
  --green:      #2d7a4f;
  --green-lt:   #e8f5ee;
  --red:        #c0392b;
  --red-lt:     #fdecea;
  --amber:      #d4a017;
  --amber-lt:   #fef9e7;
  --shadow-sm:  0 1px 3px rgba(15,15,45,.08);
  --shadow:     0 4px 16px rgba(15,15,45,.10);
  --shadow-lg:  0 12px 40px rgba(15,15,45,.15);
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --transition: .2s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--stone-900);
  background: var(--stone-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.text-gradient { background: linear-gradient(135deg, #5f9fff, #ffffff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9rem; border-radius: var(--radius);
  padding: 12px 24px; transition: var(--transition);
  cursor: pointer; white-space: nowrap; border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 12px rgba(53,53,176,.30);
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(53,53,176,.40); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent; color: var(--stone-800);
  border-color: var(--stone-300);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-lt); }
.btn-ghost { color: var(--stone-600); }
.btn-ghost:hover { color: var(--orange); background: var(--orange-lt); border-radius: var(--radius-sm); }
.btn-whatsapp { background: #25d366; color: var(--white); box-shadow: 0 4px 12px rgba(37,211,102,.25); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Forms ───────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-weight: 600; font-size: .85rem; color: var(--stone-700); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--stone-200, #e0d8d2); background: var(--white);
  color: var(--stone-900); font-size: .9rem; transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(53,53,176,.12);
}
.form-input::placeholder { color: var(--stone-300); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238c7b70' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(196,184,176,.25); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); }

/* ── Badges ──────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; letter-spacing: .02em; text-transform: uppercase;
}
.badge-verified { background: var(--green-lt); color: var(--green); border: 1px solid #b8dfc9; }
.badge-gold { background: var(--amber-lt); color: #7a5a00; border: 1px solid #f0d890; }
.badge-platinum { background: #f0ebff; color: #5b21b6; border: 1px solid #c4b5fd; }
.badge-silver { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.badge-featured { background: var(--orange); color: white; }
.badge-pending { background: var(--amber-lt); color: var(--amber); border: 1px solid #f0d890; }
.badge-approved { background: var(--green-lt); color: var(--green); }
.badge-rejected { background: var(--red-lt); color: var(--red); }

/* ── Navigation ──────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(244,244,252,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(53,53,176,.12);
  box-shadow: 0 1px 0 rgba(53,53,176,.08);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 68px;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 40px; height: 40px; background: var(--orange); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: white;
  font-size: 1.2rem; box-shadow: 0 4px 12px rgba(53,53,176,.30);
  flex-shrink: 0;
}
.logo-img {
  width: 44px; height: 44px; object-fit: contain; border-radius: 10px;
  flex-shrink: 0;
}
.logo-text { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--stone-900); }
.logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; border-radius: var(--radius-sm); font-weight: 500;
  font-size: .9rem; color: var(--stone-700); transition: var(--transition);
}
.nav-link:hover { color: var(--orange); background: var(--orange-lt); }
.nav-link.active { color: var(--orange); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle { display: none; padding: 8px; border-radius: var(--radius-sm); color: var(--stone-700); }
.mobile-menu {
  display: none; position: absolute; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid rgba(196,184,176,.2);
  box-shadow: var(--shadow-lg); padding: 16px 24px; z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--stone-100); font-weight: 500; color: var(--stone-700); }

/* ── Stars ───────────────────────────────────────────── */
.stars { display: flex; align-items: center; gap: 2px; }
.star { font-size: .85rem; color: #d1c4ba; }
.star.filled { color: var(--gold); }

/* ── Vendor Card ─────────────────────────────────────── */
.vendor-card { position: relative; cursor: pointer; }
.vendor-card-cover {
  height: 180px; background: linear-gradient(135deg, var(--stone-200, #d8cec8), var(--stone-300));
  position: relative; overflow: hidden;
}
.vendor-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.vendor-card:hover .vendor-card-cover img { transform: scale(1.04); }
.vendor-card-cover-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.vendor-card-body { padding: 18px 20px 20px; }
.vendor-card-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 4px; }
.vendor-card-title a:hover { color: var(--orange); }
.vendor-card-meta { display: flex; align-items: center; gap: 12px; font-size: .82rem; color: var(--stone-500); margin-bottom: 10px; }
.vendor-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.rating-score { font-weight: 700; font-size: .95rem; color: var(--stone-900); }
.rating-count { font-size: .82rem; color: var(--stone-500); }
.vendor-card-stats { display: flex; gap: 16px; font-size: .8rem; color: var(--stone-500); margin-bottom: 16px; }
.vendor-card-stat { display: flex; align-items: center; gap: 4px; }
.vendor-card-actions { display: flex; gap: 8px; }

/* ── Section Styles ──────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--stone-900); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--stone-500); max-width: 560px; line-height: 1.7; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 16px; }

/* ── Grid ────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ── Category Grid ───────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 14px; background: var(--white); border-radius: var(--radius);
  border: 1.5px solid rgba(196,184,176,.2); cursor: pointer;
  transition: var(--transition); text-align: center;
}
.category-card:hover { border-color: var(--orange); background: var(--orange-lt); transform: translateY(-2px); }
.category-icon { font-size: 2rem; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--stone-100); border-radius: var(--radius-sm); transition: var(--transition); }
.category-card:hover .category-icon { background: rgba(53,53,176,.15); }
.category-name { font-size: .82rem; font-weight: 600; color: var(--stone-700); }
.category-card:hover .category-name { color: var(--orange-dk); }

/* ── Stats Bar ───────────────────────────────────────── */
.stats-bar { background: var(--orange); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item {}
.stat-value { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: var(--stone-900);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(53,53,176,.35) 0%, transparent 60%),
                    radial-gradient(ellipse at 20% 80%, rgba(85,85,204,.20) 0%, transparent 50%);
  position: relative; overflow: hidden; padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(53,53,176,.18); border: 1px solid rgba(53,53,176,.3);
  color: #f7a87a; font-size: .8rem; font-weight: 600; padding: 6px 16px;
  border-radius: 100px; margin-bottom: 24px;
}
.hero-pulse { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.2)} }
.hero-title { font-family: 'DM Serif Display', serif; font-size: clamp(2.6rem, 5.5vw, 4.2rem); color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.65); max-width: 560px; line-height: 1.7; margin-bottom: 40px; }
.hero-search {
  background: var(--white); border-radius: var(--radius-lg); padding: 10px;
  display: flex; gap: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.35);
  max-width: 700px;
}
.hero-search-field { flex: 1; display: flex; align-items: center; gap: 10px; padding: 6px 12px; }
.hero-search-field svg { color: var(--stone-400, #bfb5ad); flex-shrink: 0; }
.hero-search-field select, .hero-search-field input {
  border: none; outline: none; background: none; font-size: .95rem;
  color: var(--stone-900); width: 100%; font-family: inherit;
}
.hero-search-sep { width: 1px; background: var(--stone-100); align-self: stretch; margin: 8px 0; }
.hero-quicklinks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; align-items: center; }
.hero-quicklinks-label { font-size: .82rem; color: rgba(255,255,255,.45); }
.hero-quicklink {
  font-size: .82rem; color: rgba(255,255,255,.6); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); padding: 4px 12px; border-radius: 100px;
  transition: var(--transition); cursor: pointer;
}
.hero-quicklink:hover { background: rgba(53,53,176,.25); border-color: rgba(53,53,176,.4); color: rgba(255,255,255,.9); }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; }

/* ── How It Works ────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 14%; right: 14%;
  height: 1.5px; background: linear-gradient(to right, var(--orange-lt), var(--orange), var(--orange-lt));
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; background: var(--white); border: 2.5px solid var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-family: 'DM Serif Display', serif; font-size: 1.4rem;
  color: var(--orange); box-shadow: 0 4px 16px rgba(53,53,176,.2);
}
.step-icon { font-size: 1.6rem; margin-bottom: 6px; }
.step-title { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 8px; }
.step-desc { font-size: .85rem; color: var(--stone-500); line-height: 1.6; }

/* ── City Pills ──────────────────────────────────────── */
.city-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.city-pill {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px;
  background: var(--white); border: 1.5px solid rgba(196,184,176,.25);
  border-radius: var(--radius); cursor: pointer; transition: var(--transition);
  text-decoration: none; color: inherit;
}
.city-pill:hover { border-color: var(--orange); background: var(--orange-lt); }
.city-pill-name { font-weight: 600; font-size: .9rem; color: var(--stone-800); }
.city-pill:hover .city-pill-name { color: var(--orange-dk); }
.city-pill-state { font-size: .75rem; color: var(--stone-400); }
.metro-tag { font-size: .68rem; font-weight: 700; background: var(--orange); color: white; padding: 1px 7px; border-radius: 100px; }

/* ── Testimonials ────────────────────────────────────── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid rgba(196,184,176,.2); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; left: 24px;
  font-family: 'DM Serif Display', serif; font-size: 5rem; color: var(--orange-lt);
  line-height: 1; pointer-events: none;
}
.testimonial-text { font-size: .95rem; line-height: 1.75; color: var(--stone-700); margin-bottom: 20px; position: relative; z-index: 1; padding-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--orange-lt);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-meta { font-size: .78rem; color: var(--stone-500); margin-top: 2px; }

/* ── CTA ─────────────────────────────────────────────── */
.cta-section {
  background: var(--stone-900);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(53,53,176,.2), transparent 60%);
  padding: 80px 0; text-align: center;
}
.cta-title { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.cta-sub { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-benefits { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 36px; }
.cta-benefit { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .88rem; }
.cta-check { color: var(--orange); }

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: var(--stone-900); border-top: 1px solid rgba(255,255,255,.06);
  padding: 56px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-desc { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.7; margin: 14px 0 20px; }
.footer-col-title { color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: rgba(255,255,255,.4); font-size: .88rem; transition: var(--transition); }
.footer-link:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { color: rgba(255,255,255,.3); font-size: .82rem; }

/* ── Search Page ─────────────────────────────────────── */
.search-header { background: var(--stone-800); padding: 28px 0; }
.search-bar { display: flex; gap: 8px; background: var(--white); border-radius: var(--radius-lg); padding: 8px; box-shadow: var(--shadow-lg); }
.search-bar input, .search-bar select {
  flex: 1; border: none; outline: none; background: none; padding: 10px 12px;
  font-size: .95rem; color: var(--stone-900); font-family: inherit;
}
.search-bar .search-sep { width: 1px; background: var(--stone-100); margin: 6px 0; }
.search-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding: 32px 0; }
.filter-panel { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(196,184,176,.2); padding: 24px; position: sticky; top: 88px; height: fit-content; }
.filter-title { font-weight: 700; font-size: 1rem; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.filter-reset { font-size: .78rem; color: var(--orange); cursor: pointer; font-weight: 600; }
.filter-reset:hover { text-decoration: underline; }
.filter-section { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--stone-100); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-section-label { font-size: .8rem; font-weight: 700; color: var(--stone-500); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
  padding: 5px 12px; border-radius: 100px; border: 1.5px solid rgba(196,184,176,.3);
  font-size: .78rem; font-weight: 600; cursor: pointer; transition: var(--transition);
  background: var(--white); color: var(--stone-600);
}
.filter-chip:hover, .filter-chip.active { border-color: var(--orange); background: var(--orange-lt); color: var(--orange-dk); }
.filter-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.toggle { width: 44px; height: 24px; border-radius: 100px; background: var(--stone-200, #d8cec8); position: relative; transition: var(--transition); flex-shrink: 0; }
.toggle.on { background: var(--orange); }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--white); transition: var(--transition); box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.toggle.on .toggle-thumb { transform: translateX(20px); }
.toggle-label { font-size: .88rem; font-weight: 500; color: var(--stone-700); }
.results-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.results-count { font-size: .9rem; color: var(--stone-500); font-weight: 500; }
.results-count strong { color: var(--stone-900); }
.sort-select { border: 1.5px solid rgba(196,184,176,.3); border-radius: var(--radius-sm); padding: 7px 32px 7px 12px; font-size: .85rem; background: var(--white); color: var(--stone-700); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238c7b70' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; cursor: pointer; outline: none; font-family: inherit; }
.vendors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1.5px solid rgba(196,184,176,.3); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .88rem; font-weight: 600; transition: var(--transition); color: var(--stone-600); background: var(--white); }
.page-btn:hover { border-color: var(--orange); color: var(--orange); }
.page-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ── Vendor Profile ──────────────────────────────────── */
.vendor-cover { height: 320px; background: var(--stone-800); position: relative; overflow: hidden; }
.vendor-cover img { width: 100%; height: 100%; object-fit: cover; }
.vendor-cover-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,45,.7) 0%, transparent 60%); }
.vendor-profile-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); margin-top: -60px; position: relative; z-index: 10; padding: 28px; }
.vendor-logo { width: 90px; height: 90px; border-radius: var(--radius); background: var(--stone-100); border: 3px solid var(--white); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; overflow: hidden; margin-bottom: 16px; }
.vendor-logo img { width: 100%; height: 100%; object-fit: cover; }
.vendor-profile-name { font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin-bottom: 6px; }
.vendor-profile-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: .88rem; color: var(--stone-500); margin-bottom: 16px; }
.vendor-profile-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.stat-card { background: var(--stone-50); border: 1px solid rgba(196,184,176,.2); border-radius: var(--radius); padding: 18px 20px; text-align: center; }
.stat-card-value { font-family: 'DM Serif Display', serif; font-size: 1.7rem; color: var(--stone-900); }
.stat-card-label { font-size: .75rem; color: var(--stone-500); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-top: 4px; }
.tabs { display: flex; border-bottom: 2px solid var(--stone-100); margin-bottom: 28px; }
.tab { padding: 12px 24px; font-weight: 600; font-size: .9rem; color: var(--stone-500); cursor: pointer; border-bottom: 2.5px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.tab:hover { color: var(--stone-800); }
.tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.portfolio-item { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--stone-100); cursor: pointer; position: relative; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(15,15,45,.55); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 14px; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label { color: white; font-size: .82rem; font-weight: 600; }
.review-card { border: 1px solid rgba(196,184,176,.2); border-radius: var(--radius); padding: 20px; margin-bottom: 14px; background: var(--white); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--orange-lt); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: var(--orange); }
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-date { font-size: .75rem; color: var(--stone-400); margin-top: 2px; }
.review-text { font-size: .9rem; color: var(--stone-600); line-height: 1.7; }
.cert-tag { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: var(--stone-50); border: 1px solid rgba(196,184,176,.2); border-radius: var(--radius-sm); font-size: .82rem; color: var(--stone-700); margin: 4px; }
.city-served-tag { display: inline-block; padding: 5px 14px; background: var(--orange-lt); color: var(--orange-dk); border-radius: 100px; font-size: .8rem; font-weight: 600; margin: 4px; }

/* ── Admin ───────────────────────────────────────────── */
.admin-layout { display: flex; height: 100vh; overflow: hidden; }
.admin-sidebar {
  width: 240px; background: var(--stone-900); display: flex; flex-direction: column;
  flex-shrink: 0; overflow-y: auto;
}
.admin-sidebar-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
.admin-nav { padding: 12px 10px; flex: 1; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  border-radius: var(--radius-sm); color: rgba(255,255,255,.5); font-size: .88rem;
  font-weight: 500; cursor: pointer; transition: var(--transition); margin-bottom: 2px;
}
.admin-nav-item:hover { color: var(--white); background: rgba(255,255,255,.07); }
.admin-nav-item.active { color: var(--white); background: var(--orange); }
.admin-nav-item svg { flex-shrink: 0; }
.admin-main { flex: 1; overflow-y: auto; background: #f5f0eb; }
.admin-topbar {
  background: var(--white); border-bottom: 1px solid rgba(196,184,176,.2);
  padding: 0 28px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 10;
}
.admin-content { padding: 28px; }
.admin-page-title { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--stone-900); margin-bottom: 4px; }
.admin-page-sub { font-size: .88rem; color: var(--stone-500); }
.stat-cards-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 24px; }
.admin-stat-card { background: var(--white); border-radius: var(--radius); padding: 18px; border: 1px solid rgba(196,184,176,.15); }
.admin-stat-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 1rem; }
.admin-stat-value { font-family: 'DM Serif Display', serif; font-size: 1.7rem; color: var(--stone-900); }
.admin-stat-label { font-size: .72rem; color: var(--stone-400); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; }
.admin-stat-change { font-size: .75rem; margin-top: 4px; font-weight: 600; }
.change-up { color: var(--green); }
.change-warn { color: var(--amber); }
.admin-table-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(196,184,176,.15); overflow: hidden; }
.admin-table-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid rgba(196,184,176,.15); }
.admin-table-title { font-weight: 700; font-size: .95rem; }
table { width: 100%; border-collapse: collapse; }
thead th { padding: 12px 16px; text-align: left; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--stone-500); background: #faf7f4; border-bottom: 1px solid rgba(196,184,176,.15); }
tbody td { padding: 14px 16px; font-size: .88rem; border-bottom: 1px solid rgba(196,184,176,.08); vertical-align: middle; }
tbody tr:hover td { background: var(--stone-50); }
tbody tr:last-child td { border-bottom: none; }
.td-name { font-weight: 600; color: var(--stone-800); }
.td-sub { font-size: .75rem; color: var(--stone-400); margin-top: 2px; }
.action-btns { display: flex; gap: 6px; }
.action-btn { width: 30px; height: 30px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: .85rem; }
.action-btn-approve { background: var(--green-lt); color: var(--green); }
.action-btn-approve:hover { background: var(--green); color: white; }
.action-btn-reject { background: var(--red-lt); color: var(--red); }
.action-btn-reject:hover { background: var(--red); color: white; }
.action-btn-view { background: var(--stone-100); color: var(--stone-600); }
.action-btn-view:hover { background: var(--orange-lt); color: var(--orange); }
.checkbox { width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; }
.bar-track { height: 8px; background: var(--stone-100); border-radius: 100px; overflow: hidden; margin-top: 6px; }
.bar-fill { height: 100%; border-radius: 100px; transition: width .6s ease; }

/* ── Modal ───────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(15,15,45,.6);
  z-index: 2000; align-items: flex-end; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal {
  background: var(--white); border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  animation: slideUp .3s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp { from{transform:translateY(60px);opacity:0} to{transform:translateY(0);opacity:1} }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--stone-100); position: sticky; top: 0; background: var(--white); z-index: 1; }
.modal-title { font-family: 'DM Serif Display', serif; font-size: 1.25rem; }
.modal-close { width: 32px; height: 32px; border-radius: 50%; background: var(--stone-100); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--stone-500); font-size: 1.1rem; transition: var(--transition); }
.modal-close:hover { background: var(--stone-200, #d8cec8); color: var(--stone-800); }
.modal-body { padding: 24px; }

/* ── Registration ────────────────────────────────────── */
.stepper { display: flex; align-items: center; margin-bottom: 36px; }
.stepper-step { display: flex; align-items: center; flex: 1; }
.stepper-dot {
  width: 32px; height: 32px; border-radius: 50%; border: 2.5px solid var(--stone-200, #d8cec8);
  display: flex; align-items: center; justify-content: center; font-size: .82rem;
  font-weight: 700; color: var(--stone-400); background: var(--white); flex-shrink: 0;
  transition: var(--transition); z-index: 1; position: relative;
}
.stepper-step.done .stepper-dot { background: var(--green); border-color: var(--green); color: white; }
.stepper-step.active .stepper-dot { background: var(--orange); border-color: var(--orange); color: white; box-shadow: 0 0 0 4px rgba(53,53,176,.18); }
.stepper-label { font-size: .75rem; font-weight: 600; margin-left: 8px; color: var(--stone-400); white-space: nowrap; }
.stepper-step.active .stepper-label { color: var(--orange); }
.stepper-step.done .stepper-label { color: var(--green); }
.stepper-line { flex: 1; height: 2px; background: var(--stone-100); margin: 0 6px; }
.stepper-step.done + .stepper-step .stepper-line,
.stepper-step.done .stepper-line { background: var(--green); }
.step-form { display: none; }
.step-form.active { display: block; animation: fadeIn .2s ease; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-step-title { font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 6px; }
.form-step-sub { color: var(--stone-500); font-size: .9rem; margin-bottom: 24px; }
.review-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--stone-100); font-size: .9rem; }
.review-row:last-child { border-bottom: none; }
.review-key { color: var(--stone-500); font-weight: 500; }
.review-val { font-weight: 600; color: var(--stone-900); text-align: right; }

/* ── Pricing ─────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.pricing-card { background: var(--white); border-radius: var(--radius-lg); border: 2px solid rgba(196,184,176,.2); padding: 28px; position: relative; transition: var(--transition); }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--orange); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; font-size: .72rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.pricing-tier { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--stone-500); margin-bottom: 8px; }
.pricing-price { font-family: 'DM Serif Display', serif; font-size: 2.6rem; color: var(--stone-900); margin-bottom: 4px; }
.pricing-period { font-size: .82rem; color: var(--stone-400); margin-bottom: 20px; }
.pricing-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--stone-600); }
.pricing-feature-check { color: var(--green); font-size: .9rem; flex-shrink: 0; margin-top: 1px; }
.pricing-divider { height: 1px; background: var(--stone-100); margin: 16px 0; }

/* ── Toast ───────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  background: var(--stone-900); color: var(--white); padding: 12px 20px;
  border-radius: var(--radius); font-size: .88rem; font-weight: 500;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  animation: toastIn .3s cubic-bezier(.4,0,.2,1); min-width: 240px;
}
.toast.success { border-left: 3px solid var(--orange); }
.toast.error { border-left: 3px solid var(--red); }
@keyframes toastIn { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }

/* ── Skeleton Loader ─────────────────────────────────── */
.skeleton { background: linear-gradient(90deg, var(--stone-100) 25%, #e8e0d8 50%, var(--stone-100) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.skeleton-card { height: 320px; border-radius: var(--radius-lg); }

/* ── Empty State ─────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 24px; }
.empty-icon { font-size: 4rem; margin-bottom: 16px; opacity: .4; }
.empty-title { font-family: 'DM Serif Display', serif; font-size: 1.5rem; margin-bottom: 8px; color: var(--stone-700); }
.empty-sub { color: var(--stone-400); font-size: .9rem; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .stat-cards-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 56px 0 80px; }
  .hero-search { flex-direction: column; }
  .hero-search-sep { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .search-layout { grid-template-columns: 1fr; }
  .filter-panel { display: none; }
  .filter-panel.mobile-open { display: block; position: fixed; inset: 0; z-index: 100; border-radius: 0; overflow-y: auto; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { display: none; }
  .stat-cards-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .category-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .vendor-profile-card { margin-top: -30px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .vendor-card-actions { flex-direction: column; }
  .stepper-label { display: none; }
}

/* ═══ MOBILE RESPONSIVE FIXES ═══════════════════════════ */
@media (max-width: 768px) {
  .nav-actions { display: none; }
  .navbar-inner { padding: 0 12px; }
  .container { padding: 0 14px; }
  .vendor-card-cover { height: 140px; }
  .vendor-card-body { padding: 14px 14px 16px; }
  .vendor-card-title { font-size: 1rem; }
  .vendor-card-meta { gap: 8px; font-size: .78rem; flex-wrap: wrap; }
  .vendor-card-stats { gap: 10px; font-size: .76rem; flex-wrap: wrap; }
  .vendor-card-rating { flex-wrap: wrap; gap: 4px; }
  .vendor-card-actions .btn { padding: 8px 10px; font-size: .78rem; }
  .results-grid { grid-template-columns: 1fr !important; }
  .hero-title { font-size: 1.8rem; }
  .hero-sub { font-size: .88rem; }
  .section-title { font-size: 1.5rem; }
  .section-sub { font-size: .88rem; }
  .testimonial-card { padding: 20px; }
  .category-item { padding: 14px 10px; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 60px; }
  .hero-title { font-size: 1.5rem; }
  .stat-cards-row { grid-template-columns: 1fr; }
  .vendor-card-cover { height: 120px; }
  .search-controls { gap: 8px; }
  .mobile-menu { padding: 0 14px 14px; }
  .mobile-menu a { padding: 10px 0; font-size: .9rem; }
}

/* ── Admin Locations Page Responsive ─── */
@media (max-width: 768px) {
  #page-locations div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  #states-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important; }
  #cities-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important; }
}
