/* =============================================================================
   Eventam – Public Directory Design System
   All public-facing pages (category, vendor profile, search, blog, etc.) inherit
   the home page's theme via these tokens + components. Layout-level styles
   (nav, footer, mega menu, city modal) live in layouts/directory.php inline CSS.
============================================================================= */

:root {
  --w: #FDFCF9;
  --bg: #F6F5F3;
  --fg: #18160E;
  --accent: #520350;
  --accent-soft: rgba(82,3,80,.08);
  --accent-softer: rgba(82,3,80,.04);
  --muted: #232323;
  --border: #DED9CF;
  --light: #EDE9DF;
  --rating: #C4963A;
  /* Global font stacks + display weight — change here to reskin typography site-wide */
  --font-display:        'Jost', system-ui, sans-serif;
  --font-display-weight: 400;
  --font-body:           'Roboto', system-ui, -apple-system, sans-serif;
  --font-script:         'Cormorant Garamond', Georgia, serif;
  /* Surface tokens — change here to retune card look across every public page */
  --card-radius: 10px;
  --card-radius-sm: 6px;
  --card-shadow: 0 1px 3px rgba(0,0,0,.04), 0 6px 18px rgba(0,0,0,.05);
  --card-shadow-hover: 0 2px 6px rgba(0,0,0,.06), 0 14px 40px rgba(0,0,0,.08);
  --card-bg: #fff;
  --page-bg: #F4EEF1;
}

body.dir-body {
  background: var(--w);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01em;
}

/* ── Typography helpers ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; font-family: var(--font-body);
}
.eyebrow::before {
  content: ''; display: block; width: 10px; height: 1px;
  background: var(--accent); opacity: .8;
}
.sec-h {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px); font-weight: var(--font-display-weight);
  line-height: 1.05; letter-spacing: -.02em; color: var(--fg);
  margin: 0;
}
.sec-sub {
  font-size: 14.5px; line-height: 1.7; color: var(--muted);
  max-width: 640px; margin-top: 12px;
}
.sec-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; gap: 20px; flex-wrap: wrap;
}
.sec-alt { background: var(--bg); }
.sec { padding: 64px 60px; }
@media (max-width: 1100px) { .sec { padding: 56px 32px; } }
@media (max-width: 880px)  { .sec { padding: 48px 20px; } }
@media (max-width: 560px)  { .sec { padding: 40px 16px; } }

/* ── Listing hero (header above category/search/occasion pages) ─────────── */
.lst-hero {
  background: var(--bg);
  padding: 28px 60px 22px;
  border-bottom: 1px solid var(--border);
}
.lst-hero--banner {
  position: relative;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
}
.lst-hero--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.lst-hero--banner .lst-hero-inner { position: relative; z-index: 1; }
.lst-hero--banner .lst-h1,
.lst-hero--banner .lst-crumb,
.lst-hero--banner .lst-crumb a { color: #fff; }
.lst-hero--banner .lst-crumb { opacity: .85; }
.lst-hero-inner { max-width: none; margin: 0; }
.lst-h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px); font-weight: var(--font-display-weight);
  letter-spacing: -.005em; line-height: 1.15;
  color: var(--fg); margin: 0 0 6px;
}
.lst-crumb { font-size: 12px; color: var(--muted); margin: 2px 0 6px; }
.lst-crumb nav { display: inline; }
.lst-crumb-ol { display: inline; list-style: none; padding: 0; margin: 0; }
.lst-crumb-li { display: inline; }
.lst-crumb-li::before { content: none; }
.lst-crumb-li + .lst-crumb-li::before {
  content: "›"; display: inline; float: none;
  margin: 0 8px; padding: 0; opacity: .5; color: var(--muted);
}
.lst-crumb-li a { color: var(--muted); text-decoration: none; }
.lst-crumb-li a:hover { color: var(--accent); }
.lst-crumb-li.active { color: var(--fg); }

.lst-badges {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  flex: 1; min-width: 0; margin: 0;
}
.lst-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 6px 5px 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; font-size: 12px; color: var(--fg);
  font-weight: 500;
  white-space: nowrap; flex-shrink: 0; max-width: 100%;
}
.lst-badge-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,0,0,.06); color: var(--muted);
  text-decoration: none; font-size: 14px; line-height: 1;
  transition: background .15s, color .15s;
}
.lst-badge-x:hover { background: var(--accent); color: #fff; }
.lst-badge-clear {
  margin-left: 4px; font-size: 12px; color: var(--accent);
  text-decoration: none; font-weight: 600;
}
.lst-badge-clear:hover { text-decoration: underline; }
.lst-sub {
  font-size: 13.5px; line-height: 1.5; color: var(--muted);
  max-width: 720px; margin: 0;
}
.lst-meta {
  display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center;
  margin-top: 10px;
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.lst-meta strong { color: var(--fg); font-weight: 700; }
.lst-h-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.lst-h-titlebox { min-width: 0; }
.lst-h-row > .lst-search-form { justify-self: center; }
.lst-h-tools { justify-self: end; display: flex; gap: 10px; align-items: center; }
.lst-h-tools .lst-view-toggle a { padding: 7px 10px; }
.lst-search-form {
  display: flex; gap: 6px; flex-wrap: nowrap;
  background: var(--card-bg); border: 0; border-radius: var(--card-radius-sm);
  box-shadow: var(--card-shadow);
  padding: 4px; align-items: stretch;
  min-width: 480px; max-width: 960px; width: 100%;
}
.lst-search-form input[type=text] {
  flex: 1; min-width: 240px; padding: 8px 12px;
  border: 0; outline: none; background: transparent;
  font-family: inherit; font-size: 13.5px; color: var(--fg);
}
.lst-search-form select {
  padding: 0 28px 0 12px;
  height: 100%; min-height: 36px;
  border: 0; border-left: 1px solid var(--border);
  background: transparent; font-family: inherit; font-size: 13.5px;
  line-height: 1; align-self: stretch;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237A7868' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 10px center;
  color: var(--muted);
}
.lst-search-form .choices { margin: 0; min-width: 200px; max-width: 320px; border-left: 1px solid var(--border); display: flex; align-items: stretch; }
.lst-search-form .choices__inner {
  display: flex; align-items: center;
  min-height: 0; padding: 0 28px 0 14px;
  white-space: nowrap; overflow: hidden;
  flex: 1; width: 100%;
}
.lst-search-form .choices__list--single { padding: 0; width: 100%; }
.lst-search-form .choices__list--single .choices__item {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: block; width: 100%; line-height: 1;
}
.lst-search-form .choices__inner {
  background: transparent; border: 0; border-radius: 0;
  min-height: 0; padding: 6px 26px 6px 12px;
  font-size: 12.5px; color: var(--fg);
}
.lst-search-form .choices__list--single { padding: 0; }
.lst-search-form .choices[data-type*="select-one"]::after {
  border: 0;
  width: 10px; height: 10px; margin: 0; right: 10px; top: 50%; transform: translateY(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A7868' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>") no-repeat center / contain;
}
.lst-search-form .choices__list--dropdown { max-height: 320px; overflow: hidden; border-radius: var(--card-radius-sm); }
.lst-search-form .choices__list--dropdown .choices__list { max-height: 280px; }
.lst-search-form .choices__input { font-size: 13px; padding: 8px 10px; }
.lst-search-form button {
  padding: 0 18px; background: var(--accent); color: #fff;
  border: 0; border-radius: var(--card-radius-sm);
  font-family: inherit; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.lst-search-form button:hover { background: var(--fg); }

/* ── Listing layout (sidebar + grid) ────────────────────────────────────── */
.lst-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  max-width: none;
  margin: 0;
  padding: 36px 60px 80px;
}
@media (max-width: 1100px) {
  .lst-body { grid-template-columns: 240px 1fr; gap: 24px; padding: 28px 32px 64px; }
}
@media (max-width: 880px) {
  .lst-body { grid-template-columns: 1fr; padding: 24px 20px 48px; }
}

/* ── Sidebar filters ────────────────────────────────────────────────────── */
.lst-side {
  position: sticky; top: 88px;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  background: var(--card-bg); border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 16px 20px;
  scrollbar-width: thin;
}
.lst-side::-webkit-scrollbar { width: 6px; }
.lst-side::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }
.lst-filter {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.lst-filter:first-child { padding-top: 0; }
.lst-filter:last-child { border-bottom: 0; }
.lst-filter-hd {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg); margin-bottom: 14px;
  cursor: pointer; user-select: none;
}
.lst-filter-hd-arr { width: 14px; height: 14px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.lst-filter.collapsed .lst-filter-hd-arr { transform: rotate(-90deg); }
.lst-filter.collapsed .lst-filter-body { display: none; }
.lst-filter-body { display: flex; flex-direction: column; gap: 8px; max-height: 240px; overflow-y: auto; padding-right: 4px; }
.lst-filter-body::-webkit-scrollbar { width: 6px; }
.lst-filter-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--card-radius-sm); }
.lst-filter-body::-webkit-scrollbar-track { background: transparent; }
.lst-filter-rating, .lst-filter-body:has(.lst-filter-range) { max-height: none; overflow: visible; }
.lst-filter-opt {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--fg);
  cursor: pointer; padding: 4px 0;
}
.lst-filter-opt input[type="checkbox"],
.lst-filter-opt input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: var(--card-radius-sm);
  background: #fff; cursor: pointer;
  transition: all .15s; margin: 0;
  position: relative;
}
.lst-filter-opt input[type="radio"] { border-radius: 50%; }
.lst-filter-opt input:hover { border-color: var(--accent); }
.lst-filter-opt input:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.lst-filter-opt input[type="checkbox"]:checked::after {
  content: ''; position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.lst-filter-opt input[type="radio"]:checked::after {
  content: ''; position: absolute;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 7px; height: 7px; background: #fff; border-radius: 50%;
}
.lst-filter-opt-lbl { flex: 1; line-height: 1.4; }
.lst-filter-opt-cnt {
  font-size: 11.5px; color: var(--muted); font-weight: 500;
  margin-left: 4px;
}
.lst-filter-opt:hover .lst-filter-opt-lbl { color: var(--accent); }

.lst-filter-body-cat { max-height: 420px; gap: 4px; }
.lst-filter-search-wrap {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--card-radius-sm);
  padding: 6px 10px; margin-bottom: 8px;
}
.lst-filter-search-wrap svg { width: 13px; height: 13px; color: var(--muted); flex-shrink: 0; }
.lst-filter-search {
  flex: 1; min-width: 0; border: 0; outline: none; background: transparent;
  font-family: inherit; font-size: 12.5px; color: var(--fg); padding: 4px 0;
}
.lst-filter-search::placeholder { color: var(--muted); }
.lst-cat-tree { display: flex; flex-direction: column; gap: 6px; }
.lst-cat-group { display: flex; flex-direction: column; }
.lst-cat-group.is-hidden { display: none; }
.lst-cat-parent .lst-filter-opt-lbl { font-weight: 600; }
.lst-cat-children { display: flex; flex-direction: column; gap: 4px; padding: 4px 0 4px 22px; }
.lst-cat-child .lst-filter-opt-lbl { font-size: 12.5px; color: var(--muted); }
.lst-cat-child.is-hidden { display: none; }
.lst-filter-range {
  display: flex; gap: 8px; align-items: center;
  margin-top: 4px;
}
.lst-filter-range input {
  width: 100%; border: 1px solid var(--border); padding: 8px 10px;
  font-size: 12.5px; font-family: var(--font-body);
  border-radius: var(--card-radius-sm); outline: none;
}
.lst-filter-range input:focus { border-color: var(--accent); }
.lst-filter-rating { display: flex; flex-direction: column; gap: 6px; }
.lst-filter-rating-row { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.lst-star-row { display: flex; gap: 1px; }
.lst-star { width: 12px; height: 12px; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.lst-star-on  { background: var(--rating); }
.lst-star-off { background: var(--border); }
.lst-filter-reset {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: none; border: none; padding: 8px 0;
  cursor: pointer; font-family: var(--font-body);
}
.lst-filter-reset:hover { color: var(--fg); }

/* Mobile filter drawer */
.lst-filter-mobile-btn {
  display: none;
  width: 100%; padding: 12px 16px;
  background: var(--fg); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 18px; border-radius: var(--card-radius-sm);
}
.lst-filter-mobile-btn svg { width: 16px; height: 16px; }
@media (max-width: 880px) {
  .lst-filter-body-cat {
    max-height: 260px; 
  }

  .lst-filter-mobile-btn { display: inline-flex; }
  .lst-side {
    position: fixed; inset: 0; top: 68px;
    background: #fff; z-index: 250;
    padding: 24px 20px 80px;
    max-height: none; overflow-y: auto;
    display: none;
  }
  .lst-side.is-open { display: block; }
  .lst-side-close {
    position: sticky; top: -25px;
    background: #fff;
    display: flex; justify-content: space-between; align-items: center;
    margin: -24px -20px 16px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    z-index: 10;
  }
  .lst-side-close-x {
    background: none; border: none; cursor: pointer;
    color: var(--fg); padding: 4px;
    display: flex; align-items: center;
  }
  .lst-side-close-x svg { width: 22px; height: 22px; }
  .lst-side-apply {
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 14px;
    margin-top: 20px;
    width: 100%;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
}
@media (min-width: 881px) {
  .lst-side-close, .lst-side-apply { display: none; }
}

/* ── Listing main column ────────────────────────────────────────────────── */
.lst-main { min-width: 0; }
.lst-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.lst-toolbar-count {
  font-size: 13.5px; color: var(--muted); font-weight: 500;
}
.lst-toolbar-count strong { color: var(--fg); font-weight: 700; }
.lst-toolbar-tools {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.lst-sort {
  appearance: none; -webkit-appearance: none;
  border: 1px solid var(--border);
  padding: 8px 32px 8px 14px;
  font-family: var(--font-body); font-size: 12.5px;
  color: var(--fg); background: var(--card-bg); cursor: pointer;
  border-radius: var(--card-radius-sm);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237A7868' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  outline: none;
}
.lst-sort:focus { border-color: var(--accent); }
.lst-view-toggle { display: flex; border: 1px solid var(--border); border-radius: var(--card-radius-sm); overflow: hidden; flex-shrink: 0; }
.lst-view-toggle button,
.lst-view-toggle a {
  background: #fff; border: none; cursor: pointer;
  padding: 7px 10px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all .15s;
}
.lst-view-toggle button svg,
.lst-view-toggle a svg { width: 16px; height: 16px; }
.lst-view-toggle button.on,
.lst-view-toggle a.on { background: var(--fg); color: #fff !important; }

/* Active filter chips */
.lst-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.lst-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11.5px; font-weight: 600;
  border-radius: 100px;
  font-family: var(--font-body);
}
.lst-chip-x {
  background: none; border: none; cursor: pointer;
  color: var(--accent); padding: 0;
  display: flex; align-items: center;
  font-size: 14px;
  opacity: .65;
}
.lst-chip-x:hover { opacity: 1; }

.lst-subcats { margin: 4px 0 24px; padding: 0; background: transparent; border: 0; }
.lst-subcats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.lst-subcat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--card-radius-sm);
  text-decoration: none; color: var(--fg); font-size: 13.5px;
  min-width: 0;
  transition: border-color .15s, color .15s, background .15s, transform .15s;
}
.lst-subcat:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--card-bg);
  transform: translateY(-1px);
}
.lst-subcat-ico {
  font-size: 18px; color: var(--accent); flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(82,3,80,.08);
  border-radius: var(--card-radius-sm);
  transition: background .15s, color .15s;
}
.lst-subcat:hover .lst-subcat-ico { background: var(--accent); color: #fff; }
.lst-subcat-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.lst-subcat-cnt { font-size: 11px; color: var(--muted); font-weight: 600; padding: 2px 8px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 100px; }
.lst-subcat:hover .lst-subcat-cnt { color: var(--accent); border-color: var(--accent); }

/* ── Vendor card (grid view) ────────────────────────────────────────────── */
.lst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1440px) { .lst-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1080px) { .lst-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 560px)  { .lst-grid { grid-template-columns: 1fr; } }

.v-card {
  display: block;
  text-decoration: none; color: inherit;
  background: var(--card-bg);
  border: 0; border-radius: var(--card-radius); overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  cursor: pointer;
}
.v-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.v-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.v-card-img-zoom {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform .55s ease;
}
.v-card:hover .v-card-img-zoom { transform: scale(1.06); }
.v-card-fav {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  transition: color .18s, background .18s, transform .18s, box-shadow .18s;
}
.v-card-fav svg { width: 17px; height: 17px; pointer-events: none; }
.v-card-fav:hover {
  color: var(--accent); background: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.v-card-fav.is-saved { color: var(--accent); }
.v-card-fav.is-saved svg { fill: currentColor; }
.v-card-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: #fff; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--font-body);
}
.v-card-body { padding: 16px 18px 18px; }
.v-card-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
  font-family: var(--font-body);
}
.v-card-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: var(--font-display-weight); color: var(--fg);
  letter-spacing: .01em; line-height: 1.15;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.v-card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted);
  margin-bottom: 10px;
}
.v-card-meta svg { width: 12px; height: 12px; }
.v-card-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.v-card-stars-row { display: flex; gap: 1px; }
.v-card-rating { font-size: 12.5px; font-weight: 700; color: var(--fg); }
.v-card-reviews { font-size: 12px; color: var(--muted); }
.v-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.v-card-price {
	font-size: 13.5px;
	font-weight: 400;
	color: var(--fg);
	font-family: var(--font-display);
}
.v-card-price-small { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 1px; }
.v-card-cta {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  font-family: var(--font-body);
}

/* Category eyebrow + compare button on the same row */
.v-card-cat-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  min-height: 22px;
}
.v-card-cat-row .v-card-cat { margin-bottom: 0; }

/* Compare toggle: inline pill in the cat-row, revealed on card hover */
.v-card-compare {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  flex-shrink: 0;
  opacity: 0; transform: translateY(-2px);
  transition: opacity .15s ease, transform .15s ease, color .15s, border-color .15s, background .15s;
  pointer-events: none;
}
.v-card:hover .v-card-compare,
.v-card-compare:focus-visible,
.v-card-compare.is-active {
  opacity: 1; transform: none; pointer-events: auto;
}
.v-card-compare svg { width: 11px; height: 11px; flex-shrink: 0; }
.v-card-compare:hover { border-color: var(--accent); color: var(--accent); }
.v-card-compare.is-active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.v-card-compare.is-active .v-card-compare-lbl::before { content: '✓ '; }

/* Hide stars/reviews on cards for launch (no reviews yet).
   Markup + data still flow through — delete this rule to re-enable. */
.v-card-stars { display: none; }

/* Card needs positioning context so the compare button anchors to the image */
.v-card { position: relative; }
.v-card-img { position: relative; }

/* Floating compare bar */
.cmp-bar {
  position: fixed; left: 50%; bottom: 24px;
  transform: translateX(-50%) translateY(120px);
  z-index: 400;
  background: var(--fg); color: #fff;
  padding: 12px 12px 12px 24px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  font-family: var(--font-body);
  transition: transform .25s ease;
  max-width: calc(100vw - 32px);
}
.cmp-bar.is-open { transform: translateX(-50%) translateY(0); }
.cmp-bar-count {
  font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
  white-space: nowrap;
}
.cmp-bar-count strong {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff; padding: 0 6px;
  font-size: 12px; margin-right: 6px;
}
.cmp-bar-go {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--fg);
  padding: 10px 18px; border-radius: 100px;
  border: none; cursor: pointer; text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: background .15s;
}
.cmp-bar-go:hover { background: #f0e8ef; color: var(--fg); }
.cmp-bar-go.is-disabled { background: rgba(255,255,255,.2); color: rgba(255,255,255,.5); cursor: not-allowed; pointer-events: none; }
.cmp-bar-clear {
  background: none; border: none; color: rgba(255,255,255,.55); cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px; padding: 4px 8px;
  transition: color .15s;
}
.cmp-bar-clear:hover { color: #fff; }
@media (max-width: 560px) {
  .lst-subcat {
      padding: 8px 8px;
  }
  .lst-subcat-ico {
    font-size: 15px; 
    width: 26px;
    height: 26px;
  }
  .cmp-bar { padding: 10px 8px 10px 18px; gap: 10px; bottom: 16px; }
  .cmp-bar-count { font-size: 11.5px; }
  .cmp-bar-go { padding: 9px 14px; font-size: 10px; }
}

/* Compare page table */
.cmp-shell { max-width: 1280px; margin: 0 auto; padding: 36px 60px 80px; }
@media (max-width: 880px) { .cmp-shell { padding: 24px 20px 60px; } }
.cmp-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px); font-weight: var(--font-display-weight);
  letter-spacing: -.01em; line-height: 1.05;
  color: var(--fg); margin: 0 0 8px;
}
.cmp-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }

.cmp-table {
  display: grid; gap: 0;
  border-top: 1px solid var(--border);
}
.cmp-row {
  display: grid;
  grid-template-columns: 200px repeat(var(--cmp-cols, 4), 1fr);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cmp-row-h {
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  padding: 18px 18px 18px 0;
}
.cmp-cell {
  padding: 18px;
  font-size: 14px; color: var(--fg);
  border-left: 1px solid var(--border);
  align-self: stretch;
  display: flex; align-items: center;
}
.cmp-row-image .cmp-cell { padding: 0; }
.cmp-row-image .cmp-cell-content { display: flex; flex-direction: column; width: 100%; }
.cmp-row-image .cmp-img {
  aspect-ratio: 4/3;
  background: var(--light); background-size: cover; background-position: center;
}
.cmp-row-image .cmp-x {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px;
  background: rgba(0,0,0,.55); color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(6px);
}
.cmp-row-image .cmp-x svg { width: 14px; height: 14px; }
.cmp-row-image .cmp-x:hover { background: rgba(0,0,0,.75); }
.cmp-row-image .cmp-cell { position: relative; padding: 0; }
.cmp-row-name { font-family: var(--font-display); font-size: 20px; }
.cmp-row-name .cmp-cell { padding: 16px 18px; font-family: var(--font-display); font-size: 22px; line-height: 1.1; letter-spacing: .02em; }
.cmp-row-name a { color: inherit; text-decoration: none; }
.cmp-row-name a:hover { color: var(--accent); }
.cmp-row-cta .cmp-cell { padding: 16px 18px; }
.cmp-row-cta .btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 11px 14px;
  background: var(--accent); color: #fff;
  text-decoration: none; border-radius: var(--card-radius-sm);
  font-family: var(--font-body); font-size: 11px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: background .15s;
}
.cmp-row-cta .btn:hover { background: var(--fg); }

.cmp-empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.cmp-empty-h {
  font-family: var(--font-display);
  font-size: 30px; font-weight: var(--font-display-weight); color: var(--fg);
  margin: 0 0 10px;
}
.cmp-empty-p { font-size: 14.5px; line-height: 1.7; max-width: 460px; margin: 0 auto 28px; }

@media (max-width: 880px) {
  .cmp-row { grid-template-columns: 130px repeat(var(--cmp-cols, 4), minmax(170px, 1fr)); overflow-x: auto; }
  .cmp-table { overflow-x: auto; }
  .cmp-row-name .cmp-cell { font-size: 18px; }
}

/* ── Vendor card (list view) ────────────────────────────────────────────── */
.v-card-list-only { display: none; }
.lst-grid.is-list .v-card-list-only { display: block; }
.lst-grid.is-list .v-card-stars,
.lst-grid.is-list .v-card-cat-row { display: none; }
.v-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 10px;
}
.v-card-tag-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; font-size: 11.5px; font-weight: 500;
  color: var(--fg); background: var(--bg);
  border-radius: 100px; line-height: 1;
}
.v-card-tag-pill.is-on { background: #EFE8DA; color: var(--fg); }
.v-card-tag-pill.is-on svg { color: var(--fg); }
.v-card-excerpt {
  font-size: 13.5px; line-height: 1.55; color: var(--muted);
  margin: 0; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
  overflow: hidden; text-overflow: ellipsis;
}
.lst-grid.is-list { grid-template-columns: 1fr !important; gap: 14px; }
.lst-grid.is-list .v-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  align-items: stretch;
}
.lst-grid.is-list .v-card-img { aspect-ratio: auto; height: 100%; min-height: 200px; }
.lst-grid.is-list .v-card-body {
  padding: 22px 26px; display: flex; flex-direction: column; gap: 10px;
}
.lst-grid.is-list .v-card-name { font-size: 22px; line-height: 1.2; margin: 0; }
.lst-grid.is-list .v-card-cat-row { margin-bottom: 2px; }
.lst-grid.is-list .v-card-meta { font-size: 13px; }
.lst-grid.is-list .v-card-footer {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
@media (max-width: 880px) {
  .lst-grid.is-list .v-card { grid-template-columns: 1fr; }
  .lst-grid.is-list .v-card-img { min-height: 0; aspect-ratio: 16/10; }
  .lst-grid.is-list .v-card-body { padding: 16px 18px; }
  .lst-grid.is-list .v-card-name { font-size: 19px; }
}

/* ── Pagination ─────────────────────────────────────────────────────────── */
.lst-pager {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 44px;
}
.lst-pager a, .lst-pager span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--border);
  background: var(--card-bg); color: var(--fg);
  text-decoration: none; font-size: 13.5px; font-weight: 500;
  border-radius: var(--card-radius-sm); cursor: pointer;
  transition: all .15s;
  font-family: var(--font-body);
}
.lst-pager a:hover { border-color: var(--accent); color: var(--accent); }
.lst-pager .is-current {
  background: var(--accent); color: #fff; border-color: var(--accent);
  cursor: default;
}
.lst-pager .is-disabled {
  color: var(--border); cursor: not-allowed; pointer-events: none;
}

/* ── City / state hero (dark image + gradient overlay) ─────────────────── */
.city-hero {
  position: relative; min-height: 280px;
  background: #1a1610; padding: 96px 0 56px; overflow: hidden;
}
.city-hero-img {
  position: absolute; inset: 0; opacity: .55;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.city-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.7) 100%);
}
.city-hero-content { position: relative; z-index: 1; color: #fff; max-width: 1100px; }
.city-hero-crumb {
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  opacity: .65; margin-bottom: 10px;
}
.city-hero-crumb a { color: inherit; text-decoration: none; }
.city-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px); letter-spacing: .04em; line-height: 1.05;
  margin: 0 0 12px;
}
.city-hero-lead { font-size: 15px; max-width: 680px; opacity: .85; margin: 0 0 14px; line-height: 1.55; }
.city-hero-count { font-size: 13px; opacity: .85; }
.city-hero-content { padding: 0 60px; max-width: none; }
@media (max-width: 1100px) { .city-hero-content { padding: 0 32px; } }
@media (max-width: 880px)  { .city-hero-content { padding: 0 20px; } }

.city-stats { background: var(--card-bg); border-bottom: 1px solid var(--border); padding: 40px 60px 48px; }
.city-stats-inner { max-width: none; margin: 0; }
.city-stats-h { font-family: var(--font-display); font-weight: var(--font-display-weight); font-size: clamp(22px, 2.4vw, 30px); color: var(--fg); margin: 0 0 24px; line-height: 1.2; }
.city-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 36px; }
.city-stat { background: var(--bg); border: 1px solid var(--border); padding: 22px 20px; }
.city-stat-n { font-family: var(--font-display); font-weight: var(--font-display-weight); font-size: clamp(26px, 2.6vw, 36px); color: var(--accent); line-height: 1; margin-bottom: 6px; }
.city-stat-unit { font-size: 14px; color: var(--muted); font-weight: 400; }
.city-stat-l { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.city-stats-sub { margin-top: 28px; }
.city-stats-sub-h { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--fg); margin-bottom: 12px; }
.city-top-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.city-top-list li { font-size: 14px; color: var(--fg); }
.city-top-list a { color: var(--fg); text-decoration: none; font-weight: 500; }
.city-top-list a:hover { color: var(--accent); }
@media (max-width: 768px) {
  .city-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.city-faq { background: var(--w); padding: 56px 60px 64px; border-top: 1px solid var(--border); }
.city-faq-inner { max-width: none; margin: 0; }
.city-faq-h { font-family: var(--font-display); font-weight: var(--font-display-weight); font-size: clamp(22px, 2.4vw, 30px); color: var(--fg); margin: 0 0 28px; line-height: 1.25; }
.city-faq-list { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-flow: column; grid-template-rows: repeat(3, auto); gap: 10px 20px; align-content: start; }
.city-faq-item { background: var(--card-bg); border: 1px solid var(--border); align-self: start; }
.city-faq-q { padding: 18px 22px; cursor: pointer; font-weight: 500; color: var(--fg); font-size: 15px; list-style: none; position: relative; padding-right: 44px; }
.city-faq-q::-webkit-details-marker { display: none; }
.city-faq-q::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--muted); font-weight: 300; line-height: 1; transition: transform .2s; }
.city-faq-item[open] .city-faq-q::after { content: '\2212'; }
.city-faq-a { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.7; color: var(--muted); }
@media (max-width: 768px) {
  .city-faq-list { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; gap: 10px; }
}

.city-cat-strip { background: var(--w); border-bottom: 1px solid var(--border); padding: 24px 60px; }
.city-cat-strip-inner { max-width: none; margin: 0; }
.city-cat-strip-hd {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin-bottom: 14px;
}
.city-cat-strip .dir-btn { font-size: 12.5px; }
.city-cat-strip .dir-btn .text-muted { margin-left: 6px; font-weight: 500; }

.city-list-section { padding: 0; }
.city-list-section-inner { max-width: none; margin: 0; }
@media (max-width: 1100px) {
  .city-stats        { padding: 36px 32px 40px; }
  .city-faq          { padding: 48px 32px 56px; }
  .city-cat-strip    { padding: 24px 32px; }
  .city-list-section { padding: 0; }
}
@media (max-width: 880px) {
  .city-stats        { padding: 32px 20px 36px; }
  .city-faq          { padding: 40px 20px 48px; }
  .city-cat-strip    { padding: 20px; }
  .city-list-section { padding: 0; }
}

/* ── Category tile grid (shared "Every expert you need" / "Related categories") */
.cat-tile {
  display: flex; align-items: center; gap: 14px;
  padding: 12px; border: 0; border-radius: var(--card-radius-sm);
  background: var(--card-bg); box-shadow: var(--card-shadow);
  transition: transform .22s, box-shadow .22s; cursor: pointer; overflow: hidden;
  text-decoration: none; color: inherit;
}
.cat-tile:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.cat-tile-thumb {
  width: 72px; height: 72px; flex-shrink: 0;
  background-size: cover; background-position: center;
  border-radius: var(--card-radius-sm); position: relative; overflow: hidden;
}
.cat-tile-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.05), rgba(0,0,0,.25)); }
.cat-tile-body { flex: 1; min-width: 0; }
.cat-tile-name { font-family: var(--font-display); font-size: 20px; font-weight: var(--font-display-weight); color: var(--fg); letter-spacing: .01em; line-height: 1.15; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color .22s; }
.cat-tile:hover .cat-tile-name { color: var(--accent); }
.cat-tile-count { font-size: 10.5px; color: var(--muted); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.cat-tile-arr { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; transition: transform .22s, color .22s; }
.cat-tile:hover .cat-tile-arr { color: var(--accent); transform: translateX(3px); }

/* ── Vendor strip (shared Swiper "Top vendors" carousel) ───────────────── */
.vendor-strip-swiper { padding: 5px 0; }
.vendor-strip-swiper .swiper-slide { height: auto; }
.vendor-strip-swiper .swiper-slide .v-card { height: 100%; }

/* ── Category strip (shared between home + vendor profile) ─────────────── */
.cat-strip { padding: 50px 60px; }
.cat-strip-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 24px;
}
.cat-strip-track {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 5px 0 8px;
}
.cat-strip-track::-webkit-scrollbar { display: none; }
.cat-strip-swiper { padding: 5px 0 8px; overflow: hidden; }
.cat-strip-swiper .swiper-slide { height: auto; }
.cat-strip-swiper .vcat-card { width: 100%; }
.cat-strip-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.cat-strip-arr {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--card-bg); color: var(--fg);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.cat-strip-arr:hover { border-color: var(--fg); background: var(--fg); color: #fff; }
.cat-strip-arr:disabled { opacity: .35; cursor: not-allowed; }

.vcat-card {
  flex-shrink: 0;
  width: 100%; height: 260px;
  position: relative; overflow: hidden;
  border-radius: var(--card-radius); cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: box-shadow .25s, transform .25s;
  display: block; text-decoration: none;
}
.vcat-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.vcat-card:hover .vcat-bg { transform: scale(1.07); }
.vcat-bg {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform .55s ease;
}
.vcat-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.12) 50%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px 16px;
}
.vcat-name { font-family: var(--font-display); font-size: 21px; font-weight: var(--font-display-weight); color: #fff; margin-bottom: 4px; line-height: 1.2; }
.vcat-count { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); font-family: var(--font-body); }
@media (max-width: 880px) {
  .cat-strip { padding: 48px 20px; }
  .vcat-card { height: 230px; }
}
@media (max-width: 560px) {
  .vcat-card { height: 210px; }
  .cat-strip-arrows { display: none; }
}

/* ── Empty state ────────────────────────────────────────────────────────── */
.lst-empty {
  text-align: center; padding: 80px 20px;
  color: var(--muted);
  background: var(--card-bg); border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}
.lst-empty-ico {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lst-empty-ico svg { width: 28px; height: 28px; }
.lst-empty-h {
  font-family: var(--font-display);
  font-size: 26px; font-weight: var(--font-display-weight); color: var(--fg);
  margin: 0 0 8px; letter-spacing: .01em;
}
.lst-empty-p { font-size: 14px; line-height: 1.6; max-width: 380px; margin: 0 auto 24px; }
.lst-empty-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: var(--accent); color: #fff;
  text-decoration: none; border-radius: var(--card-radius-sm);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: background .18s;
}
.lst-empty-cta:hover { background: var(--fg); color: #fff; }

/* ── Vendor profile ─────────────────────────────────────────────────────── */
.vp-hero {
  position: relative;
  aspect-ratio: 21/9; max-height: 540px;
  background: var(--light); overflow: hidden;
}
.vp-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vp-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
}
.vp-hero-thumbs {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; gap: 8px;
  pointer-events: none;
}
.vp-hero-thumbs .swiper { pointer-events: auto; max-width: 460px; }
.vp-thumb {
  width: 80px; height: 56px;
  background-size: cover; background-position: center;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: var(--card-radius-sm); cursor: pointer; opacity: .75;
  transition: all .15s; flex-shrink: 0;
}
.vp-thumb:hover, .vp-thumb.is-active { opacity: 1; border-color: #fff; }
.vp-hero-actions {
  position: absolute; top: 20px; right: 24px;
  display: flex; gap: 8px;
}
.vp-hero-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg); transition: all .15s;
}
.vp-hero-btn:hover { background: #fff; color: var(--accent); }
.vp-hero-btn svg { width: 18px; height: 18px; }
.vp-hero-count {
  position: absolute; bottom: 24px; right: 24px;
  padding: 6px 14px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  color: #fff; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 6px;
}
.vp-hero-count svg { width: 14px; height: 14px; }

.vp-shell {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  max-width: 1280px; margin: 0 auto;
  padding: 40px 60px 80px;
}
@media (max-width: 1100px) {
  .vp-shell { grid-template-columns: 1fr 320px; gap: 32px; padding: 32px 32px 64px; }
}
@media (max-width: 880px) {
  .vp-shell { grid-template-columns: 1fr; padding: 28px 20px 48px; }
}

.vp-head { margin-bottom: 28px; }
.vp-cat-chip {
  display: inline-block;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
  font-family: var(--font-body);
}
.vp-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px); font-weight: var(--font-display-weight);
  letter-spacing: -.01em; line-height: 1; color: var(--fg);
  margin: 0 0 14px;
}
.vp-meta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  font-size: 13.5px; color: var(--muted);
}
.vp-meta-row > * { display: inline-flex; align-items: center; gap: 6px; }
.vp-meta-row svg { width: 14px; height: 14px; }
.vp-meta-rating { color: var(--fg); font-weight: 600; }
.vp-meta-rating svg { fill: var(--rating); color: var(--rating); }

.vp-section { padding: 28px 0; border-top: 1px solid var(--border); }
.vp-section:first-of-type { border-top: none; padding-top: 0; }
.vp-section-h {
  font-family: var(--font-display);
  font-size: 28px; font-weight: var(--font-display-weight);
  letter-spacing: .01em; line-height: 1.1;
  color: var(--fg); margin: 0 0 16px;
}
.vp-section-sub { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.vp-prose { font-size: 14.5px; line-height: 1.78; color: var(--fg); }
.vp-prose p { margin: 0 0 14px; }
.vp-prose ul, .vp-prose ol { margin: 0 0 14px; padding-left: 22px; }
.vp-prose a { color: var(--accent); }

.vp-info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-top: 8px;
}
@media (max-width: 560px) { .vp-info-grid { grid-template-columns: 1fr; } }
.vp-info {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.vp-info-ico {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  border-radius: var(--card-radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.vp-info-ico svg { width: 16px; height: 16px; }
.vp-info-lbl {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.vp-info-val { font-size: 14px; font-weight: 600; color: var(--fg); line-height: 1.4; }

/* Gallery */
.vp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 880px) { .vp-gallery { grid-template-columns: repeat(2, 1fr); } }
.vp-gal-img {
  position: relative; aspect-ratio: 1/1;
  background: var(--light); background-size: cover; background-position: center;
  cursor: pointer; overflow: hidden;
  border-radius: var(--card-radius-sm);
}
.vp-gal-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .18s;
}
.vp-gal-img:hover::after { background: rgba(0,0,0,.2); }
.vp-gal-more {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.65) !important;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  font-family: var(--font-display); letter-spacing: .04em;
}

/* Service / product row */
.vp-svc-row {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.vp-svc-row:last-child { border-bottom: 0; }
.vp-svc-img {
  width: 100px; height: 100px;
  background: var(--light); background-size: cover; background-position: center;
  border-radius: var(--card-radius-sm);
}
.vp-svc-name { font-weight: 600; font-size: 15px; color: var(--fg); margin-bottom: 4px; }
.vp-svc-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.vp-svc-price {
  font-family: var(--font-display);
  font-size: 20px; font-weight: var(--font-display-weight); color: var(--fg);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .vp-svc-row { grid-template-columns: 80px 1fr; }
  .vp-svc-img { width: 80px; height: 80px; }
  .vp-svc-price { grid-column: 2; font-size: 17px; }
}

/* Reviews */
.vp-review {
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.vp-review:last-child { border-bottom: 0; }
.vp-review-h {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.vp-review-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .04em;
}
.vp-review-name { font-weight: 600; font-size: 14px; color: var(--fg); }
.vp-review-date { font-size: 12px; color: var(--muted); margin-top: 1px; }
.vp-review-stars { margin-left: auto; display: flex; gap: 1px; }
.vp-review-q { font-size: 14.5px; line-height: 1.7; color: var(--fg); }

/* FAQs */
.vp-faq {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.vp-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; user-select: none; gap: 16px;
  font-size: 15px; font-weight: 600; color: var(--fg);
  padding: 6px 0;
}
.vp-faq-arr {
  font-size: 14px; color: var(--muted);
  transition: transform .2s;
  flex-shrink: 0;
}
.vp-faq.is-open .vp-faq-arr { transform: rotate(45deg); color: var(--accent); }
.vp-faq-a {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  margin-top: 8px;
  display: none;
}
.vp-faq.is-open .vp-faq-a { display: block; }

/* Inquiry / contact card */
.vp-contact-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--card-radius-sm);
  overflow: hidden;
}
@media (min-width: 881px) {
  .vp-contact-card { position: sticky; top: 88px; max-height: calc(100vh - 108px); overflow-y: auto; }
}
.vp-cc-head {
  padding: 20px 22px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.vp-cc-h {
  font-family: var(--font-display);
  font-size: 22px; font-weight: var(--font-display-weight);
  color: var(--fg); margin: 0 0 6px; letter-spacing: .01em;
}
.vp-cc-sub { font-size: 12.5px; color: var(--muted); }
.vp-cc-body { padding: 18px 22px 22px; }
.vp-cc-row {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.vp-cc-row:last-child { border-bottom: 0; }
.vp-cc-ico {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  border-radius: var(--card-radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.vp-cc-ico svg { width: 16px; height: 16px; }
.vp-cc-lbl {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.vp-cc-val { font-size: 14px; font-weight: 600; color: var(--fg); line-height: 1.4; }
.vp-cc-val a { color: inherit; text-decoration: none; }
.vp-cc-val a:hover { color: var(--accent); }
.vp-cc-cta {
  display: block; text-align: center;
  width: 100%; padding: 13px;
  background: var(--accent); color: #fff;
  border: none; cursor: pointer; text-decoration: none;
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--card-radius-sm); margin-top: 16px;
  transition: background .18s;
}
.vp-cc-cta:hover { background: var(--fg); color: #fff; }
.vp-cc-cta-ghost {
  background: transparent; color: var(--fg);
  border: 1px solid var(--border); margin-top: 8px;
}
.vp-cc-cta-ghost:hover { border-color: var(--fg); background: transparent; color: var(--fg); }

/* Inquiry form */
.vp-form { display: flex; flex-direction: column; gap: 12px; }
.vp-form label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 4px;
}
.vp-form input, .vp-form textarea, .vp-form select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 14px;
  color: var(--fg); background: #fff; outline: none;
  border-radius: var(--card-radius-sm);
}
.vp-form input:focus, .vp-form textarea:focus, .vp-form select:focus { border-color: var(--accent); }
.vp-form textarea { min-height: 90px; resize: vertical; }

/* Related vendors strip */
.vp-related-row { margin-top: 32px; }

/* ── Generic article body (blog, static pages) ─────────────────────────── */
.art-shell {
  max-width: 760px; margin: 0 auto;
  padding: 48px 28px 80px;
}
.art-cover {
  aspect-ratio: 16/9; background: var(--light);
  background-size: cover; background-position: center;
  border-radius: 8px; margin-bottom: 32px;
}
.art-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px); font-weight: var(--font-display-weight);
  letter-spacing: -.01em; line-height: 1.05;
  color: var(--fg); margin: 0 0 18px;
}
.art-meta {
  font-size: 12.5px; color: var(--muted); margin-bottom: 28px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.art-meta span { display: inline-flex; align-items: center; gap: 6px; }
.art-prose {
  font-size: 16px; line-height: 1.78; color: var(--fg);
  font-family: var(--font-body); font-weight: 400;
}
.art-prose p { margin: 0 0 18px; }
.art-prose h2 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: var(--font-display-weight);
  margin: 36px 0 14px; line-height: 1.15;
  letter-spacing: .01em; color: var(--fg);
}
.art-prose h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: var(--font-display-weight);
  margin: 28px 0 12px; line-height: 1.2;
  color: var(--fg);
}
.art-prose img { max-width: 100%; height: auto; border-radius: var(--card-radius-sm); margin: 18px 0; }
.art-prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 20px;
  margin: 18px 0;
  font-style: italic;
  color: var(--fg);
}
.art-prose a { color: var(--accent); }
.art-prose ul, .art-prose ol { padding-left: 24px; margin: 0 0 18px; }
.art-prose li { margin-bottom: 8px; }
.art-prose code {
  background: var(--bg); padding: 2px 6px;
  border-radius: var(--card-radius-sm); font-size: 90%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ── Blog index cards ───────────────────────────────────────────────────── */
.blg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) { .blg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .blg-grid { grid-template-columns: 1fr; gap: 20px; } }

.blg-card {
  display: block; text-decoration: none; color: inherit;
  cursor: pointer;
}
.blg-card-img {
  aspect-ratio: 16/10;
  background: var(--light); background-size: cover; background-position: center;
  overflow: hidden;
  margin-bottom: 16px; border-radius: var(--card-radius-sm);
}
.blg-card-img-zoom {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform .55s ease;
}
.blg-card:hover .blg-card-img-zoom { transform: scale(1.05); }
.blg-card-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
  font-family: var(--font-body);
}
.blg-card-h {
  font-family: var(--font-display);
  font-size: 24px; font-weight: var(--font-display-weight); line-height: 1.15;
  color: var(--fg); margin: 0 0 10px;
  letter-spacing: .01em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.blg-card:hover .blg-card-h { color: var(--accent); }
.blg-card-excerpt {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.blg-card-meta {
  margin-top: 12px;
  font-size: 11.5px; color: var(--muted);
}

/* Featured blog (first item) */
.blg-feat {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; margin-bottom: 48px;
  align-items: center;
}
.blg-feat .blg-card-img { aspect-ratio: 4/3; margin: 0; }
.blg-feat .blg-card-h { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 14px; }
.blg-feat .blg-card-excerpt { font-size: 15.5px; -webkit-line-clamp: 4; }
@media (max-width: 880px) {
  .blg-feat { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
}

/* ── Generic content sections (about, contact, list-your-business) ─────── */
.static-shell {
  margin: 0 auto;
  padding: 30px 60px;
}
.static-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px); font-weight: var(--font-display-weight);
  letter-spacing: -.01em; line-height: 1.02;
  color: var(--fg); margin: 0 0 18px;
}
.static-lead {
  font-size: 17px; line-height: 1.7; color: var(--muted);
  max-width: 680px; margin-bottom: 36px;
}

/* ── Utility helpers ────────────────────────────────────────────────────── */
.dir-section { padding: 48px 0; }
.dir-section-title { font-family: var(--font-display); font-size: 32px; font-weight: var(--font-display-weight); margin-bottom: 1rem; color: var(--fg); letter-spacing: .01em; }
.dir-section-subtitle { color: var(--muted); margin-bottom: 1.5rem; font-size: 15px; }
.dir-empty { text-align: center; padding: 80px 20px; color: var(--muted); font-size: 14.5px; }
.dir-empty-h {
  font-family: var(--font-display);
  font-size: 28px; font-weight: var(--font-display-weight); color: var(--fg);
  margin: 0 0 8px;
}

/* Star atoms (reused everywhere ratings show) */
.rs-star { width: 13px; height: 13px; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); display:inline-block; }
.rs-star-on  { background: var(--rating); }
.rs-star-off { background: var(--border); }

/* Small responsive container */
.dir-container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
@media (max-width: 1100px) { .dir-container { padding: 0 32px; } }
@media (max-width: 880px)  { .dir-container { padding: 0 20px; } }

/* Override Bootstrap form-control focus to use accent */
.dir-body .form-control:focus,
.dir-body .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .15rem rgba(82,3,80,.12);
}
.dir-body .btn-primary {
  background: var(--accent); border-color: var(--accent);
}
.dir-body .btn-primary:hover,
.dir-body .btn-primary:focus {
  background: #3d023b; border-color: #3d023b;
}

.lst-filter-sort-mobile { display: none; }
.lst-side-sort {
  width: 100%; appearance: none; -webkit-appearance: none;
  border: 1px solid var(--border); background: var(--card-bg);
  padding: 10px 36px 10px 14px;
  font-family: var(--font-body); font-size: 13.5px; color: var(--fg);
  border-radius: var(--card-radius-sm); cursor: pointer; outline: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237A7868' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center;
}
.lst-filter-fab { display: none; }

@media (max-width: 1220px) {
  .lst-search-form { display: none; }
  .lst-h-row { grid-template-columns: 1fr auto; }
}

@media (max-width: 880px) {
  .lst-hero { padding: 14px 16px 12px; }
  .lst-h-row { grid-template-columns: 1fr; gap: 8px; }
  .lst-h1 { font-size: 22px; }
  .lst-crumb { font-size: 11px; }
  .lst-h-tools { display: none; }
  .lst-toolbar { display: none; }
  .lst-filter-sort-mobile { display: block; }
  .lst-filter-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 82px;
    right: 18px;
    z-index: 240;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: 0;
    box-shadow: 10px 10px 24px rgba(82,3,80,.35);
    cursor: pointer;
  }
  .lst-filter-fab svg { width: 22px; height: 22px; }
  .lst-filter-fab-dot {
    position: absolute; top: 10px; right: 12px;
    width: 10px; height: 10px; border-radius: 50%;
    background: #fff; border: 2px solid var(--accent);
  }
  .lst-filter-fab:hover { background: var(--fg); }
  .lst-subcats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
