/* ==========================================================
   OPTION B v2: "Bold & Confident" — Deliveroo/Airbnb tier
   No emoji icons. No symmetric grids. No vibe-coded slop.
   ========================================================== */

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

:root {
    --bg: #F6F5F1;
    --bg-warm: #EDECE8;
    --white: #FFFFFF;
    --dark: #161616;
    --dark-soft: #222222;
    --text: #2A2A2A;
    --text-mid: #555555;
    --text-muted: #888888;
    --text-light: #AAAAAA;
    --yellow: #FCCE3A;
    --yellow-deep: #E8B917;
    --yellow-pale: #FFF9E5;
    --blue: #3360FF;
    --blue-pale: #EDF1FF;
    --green: #1B8B5A;
    --green-pale: #EDFAF3;
    --coral: #E85D3A;
    --border: #E2E0DB;
    --border-light: #EEECE8;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max-w: 1220px;
    --transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.logo {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo b { color: var(--yellow); font-weight: 700; }
.nav-right {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.nav-link {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-cta {
    background: var(--yellow);
    color: var(--dark);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    letter-spacing: 0.01em;
    margin-left: 0.5rem;
    transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--yellow-deep); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
    background: var(--dark);
    padding: 3.5rem 2rem 6rem;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.hero h1 em {
    color: var(--yellow);
    font-style: italic;
    font-weight: 500;
}
.hero-sub {
    color: #888;
    font-size: 1.05rem;
    max-width: 440px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

/* ── SEARCH BAR ──────────────────────────────────────── */
.search-wrap {
    max-width: 600px;
    margin: 0 auto;
}
.search-bar {
    background: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: stretch;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
}
.search-seg {
    flex: 1;
    padding: 0.85rem 1.15rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    position: relative;
}
.search-seg + .search-seg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: var(--border);
}
.search-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
.search-input {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: transparent;
    width: 100%;
}
.search-input::placeholder { color: #C5C2BC; }
.search-btn {
    background: var(--yellow);
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    flex-shrink: 0;
}
.search-btn:hover { background: var(--yellow-deep); }
.search-btn svg { width: 20px; height: 20px; }

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}
.hero-stat-label {
    color: #666;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ── SECTION LAYOUT ──────────────────────────────────── */
.section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3.5rem 2rem;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}
.section-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--dark);
}
.section-more {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color var(--transition);
}
.section-more:hover { color: var(--text); }
.section-more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.section-more:hover svg { transform: translateX(2px); }

/* ── CATEGORIES ──────────────────────────────────────── */
.cats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
}
.cat {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.25rem 1rem 1.1rem;
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
    position: relative;
}
.cat:hover {
    border-color: var(--dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.cat-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
}
.cat-ico svg { width: 18px; height: 18px; }
.cat-ico--trades { background: var(--blue-pale); color: var(--blue); }
.cat-ico--food { background: #FFF0EB; color: var(--coral); }
.cat-ico--beauty { background: #F8EDFF; color: #8B3DBA; }
.cat-ico--health { background: var(--green-pale); color: var(--green); }
.cat-ico--legal { background: #F0EFFF; color: #5046E5; }
.cat-ico--retail { background: var(--yellow-pale); color: #B08A00; }
.cat-ico--auto { background: #E8F4FF; color: #1A73E8; }
.cat-ico--pets { background: #FFF5EB; color: #C97A20; }
.cat-ico--home { background: var(--green-pale); color: var(--green); }
.cat-ico--events { background: #FFEBF0; color: #C4365A; }
.cat-name {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    letter-spacing: -0.01em;
}
.cat-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.35;
}
.cat-count {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-light);
}

/* ── TOWNS (pill cloud) ──────────────────────────────── */
.towns-band {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.towns-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.town {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
    background: transparent;
}
.town:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}
.town-ct {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}
.town:hover .town-ct { color: #777; }

/* ── HOW IT WORKS ────────────────────────────────────── */
.how-section {
    background: var(--dark);
    color: #fff;
}
.how-section .section-title { color: #fff; }
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.how-step {
    padding: 2.5rem 2rem;
    background: var(--dark);
}
.how-num {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.8;
}
.how-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.how-step p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── RECENTLY ADDED ──────────────────────────────────── */
.listings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.listing {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.4rem;
    transition: all var(--transition);
}
.listing:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--border);
}
.listing-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.25rem;
}
.listing h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.listing-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.badge--verified { background: var(--green-pale); color: var(--green); }
.badge--new { background: var(--blue-pale); color: var(--blue); }
.badge--claimed { background: var(--yellow-pale); color: #9A7600; }
.listing-loc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.listing-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-mid);
}
.listing-detail {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.listing-detail svg {
    width: 14px;
    height: 14px;
    color: var(--text-light);
    flex-shrink: 0;
}
.listing-tags {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}
.ltag {
    background: var(--bg);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ── CLAIM BANNER ────────────────────────────────────── */
.claim {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem 4rem;
}
.claim-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.claim-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--yellow);
}
.claim-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--yellow-deep);
    background: var(--yellow-pale);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.claim-box h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.claim-box p {
    color: var(--text-mid);
    font-size: 0.95rem;
    max-width: 480px;
}
.claim-points {
    list-style: none;
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
}
.claim-points li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
}
.claim-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.claim-check svg { width: 10px; height: 10px; }
.claim-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.claim-btn:hover { background: #333; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.claim-btn svg { width: 16px; height: 16px; }
.claim-note {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ── MAP TEASER ──────────────────────────────────────── */
.map-section {
    background: var(--white);
    border-top: 1px solid var(--border-light);
}
.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.map-placeholder {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}
.map-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Subtle grid pattern to suggest a map */
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}
.map-dots {
    position: absolute;
    inset: 0;
}
.map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}
.map-dot--lg { width: 14px; height: 14px; background: var(--coral); }
.map-text h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}
.map-text p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
}
.map-stats {
    display: flex;
    gap: 2rem;
}
.map-stat-num {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}
.map-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
    background: var(--dark);
    color: #666;
    padding: 2.5rem 2rem;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
}
.footer-logo b { color: var(--yellow); }
.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.8rem; }

/* ── POPULAR SEARCHES ─────────────────────────────────── */
.popular {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1.5rem;
}
.popular-label {
    color: #666;
    font-size: 0.78rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-right: 0.25rem;
}
.pop-link {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    color: #999;
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}
.pop-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

/* ── TRENDING STRIP ──────────────────────────────────── */
.trending {
    background: var(--yellow-pale);
    border-bottom: 1px solid #F0E5C0;
}
.trending-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.7rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    overflow-x: auto;
}
.trending-label {
    font-weight: 700;
    color: var(--yellow-deep);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}
.trending-label svg { width: 14px; height: 14px; }
.trending-items {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}
.trending-items::-webkit-scrollbar { display: none; }
.trending-item {
    white-space: nowrap;
    color: var(--text-mid);
    text-decoration: none;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    transition: all var(--transition);
    font-weight: 500;
}
.trending-item:hover { background: rgba(0,0,0,0.05); color: var(--text); }
.trending-sep {
    color: #D4C99A;
    font-weight: 300;
}

/* ── RICH FOOTER ─────────────────────────────────────── */
.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.footer-brand p {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.6rem;
    line-height: 1.5;
    max-width: 280px;
}
.footer-col h4 {
    color: #999;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-col a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #555;
}
.footer-bottom a {
    color: #555;
    text-decoration: none;
}
.footer-bottom a:hover { color: #fff; }
.footer-legal {
    display: flex;
    gap: 1.5rem;
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    .cats { grid-template-columns: repeat(2, 1fr); }
    .listings { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .map-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-inner { padding: 0 1rem; }
    .nav-link { display: none; }
    .hero { padding: 2.5rem 1rem 5rem; }
    .search-bar { flex-direction: column; }
    .search-seg + .search-seg::before { display: none; }
    .search-btn { padding: 0.9rem; }
    .search-btn svg { margin-right: 0.4rem; }
    .section { padding: 2.5rem 1rem; }
    .cats { grid-template-columns: 1fr 1fr; }
    .claim-box {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    .claim-points { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ── SHARED INNER PAGE STYLES ──────────────────────── */
/* ── NAV ─────────────────────────────────────────────── */
.nav { background: var(--dark); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-family: 'Fraunces', serif; font-size: 1.35rem; color: #fff; text-decoration: none; font-weight: 700; letter-spacing: -0.02em; }
.logo b { color: var(--yellow); }
.nav-right { display: flex; gap: 0.25rem; align-items: center; }
.nav-link { color: #999; text-decoration: none; font-size: 0.875rem; font-weight: 500; padding: 0.4rem 0.85rem; border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-cta { background: var(--yellow); color: var(--dark); padding: 0.45rem 1rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.8rem; text-decoration: none; letter-spacing: 0.01em; margin-left: 0.5rem; transition: background var(--transition); }
.nav-cta:hover { background: var(--yellow-deep); }

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--border-light); }
.breadcrumb-inner { max-width: var(--max-w); margin: 0 auto; padding: 0.6rem 2rem; display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--text); }
.breadcrumb-inner span { color: var(--text); font-weight: 600; }

/* ── SECTIONS ────────────────────────────────────────── */
.section { max-width: var(--max-w); margin: 0 auto; padding: 3rem 2rem; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.5rem; }
.section-title { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.025em; color: var(--dark); }
.section-more { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 0.3rem; transition: color var(--transition); }
.section-more:hover { color: var(--text); }
.section-more svg { width: 14px; height: 14px; }

/* ── CATEGORY ICONS ──────────────────────────────────── */
.cat-ico { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-ico svg { width: 18px; height: 18px; }
.cat-ico--trades { background: var(--blue-pale); color: var(--blue); }
.cat-ico--food { background: #FFF0EB; color: var(--coral); }
.cat-ico--beauty { background: #F8EDFF; color: #8B3DBA; }
.cat-ico--health { background: var(--green-pale); color: var(--green); }
.cat-ico--legal { background: #F0EFFF; color: #5046E5; }
.cat-ico--retail { background: var(--yellow-pale); color: #B08A00; }
.cat-ico--auto { background: #E8F4FF; color: #1A73E8; }
.cat-ico--pets { background: #FFF5EB; color: #C97A20; }
.cat-ico--home { background: var(--green-pale); color: var(--green); }
.cat-ico--events { background: #FFEBF0; color: #C4365A; }

/* ── LISTINGS ────────────────────────────────────────── */
.listings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.listing { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.4rem; transition: all var(--transition); }
.listing:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--border); }
.listing-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.25rem; }
.listing h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.listing-badge { font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0; }
.badge--verified { background: var(--green-pale); color: var(--green); }
.badge--new { background: var(--blue-pale); color: var(--blue); }
.badge--claimed { background: var(--yellow-pale); color: #9A7600; }
.listing-loc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.listing-details { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.82rem; color: var(--text-mid); }
.listing-detail { display: flex; align-items: center; gap: 0.45rem; }
.listing-detail svg { width: 14px; height: 14px; color: var(--text-light); flex-shrink: 0; }
.listing-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-top: 0.75rem; }
.ltag { background: var(--bg); padding: 0.2rem 0.55rem; border-radius: 4px; font-size: 0.7rem; font-weight: 600; color: var(--text-muted); }

/* ── CITY HERO ───────────────────────────────────────── */
.city-hero { background: var(--dark); padding: 2.5rem 2rem 3rem; }
.city-hero-inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; }
.city-hero h1 { font-family: 'Fraunces', serif; font-size: 2.2rem; color: #fff; font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.5rem; }
.city-hero h1 em { color: var(--yellow); font-style: normal; }
.city-hero p { color: #888; font-size: 0.95rem; max-width: 480px; }
.city-stats { display: flex; gap: 2rem; margin-top: 1.5rem; }
.city-stat-num { color: #fff; font-weight: 800; font-size: 1.3rem; }
.city-stat-label { color: #666; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.city-search { flex-shrink: 0; padding-top: 0.5rem; }
.city-search-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 0.65rem 1rem; display: flex; align-items: center; gap: 0.6rem; width: 320px; transition: all var(--transition); }
.city-search-box:focus-within { background: rgba(255,255,255,0.12); border-color: var(--yellow); }
.city-search-box svg { color: #666; flex-shrink: 0; }
.city-search-box input { background: none; border: none; outline: none; color: #fff; font-family: inherit; font-size: 0.9rem; width: 100%; }
.city-search-box input::placeholder { color: #666; }

/* ── CITY CATEGORY LIST ──────────────────────────────── */
.city-cats { display: flex; flex-direction: column; gap: 0.5rem; }
.city-cat { display: flex; align-items: center; justify-content: space-between; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1rem 1.25rem; text-decoration: none; color: var(--text); transition: all var(--transition); }
.city-cat:hover { border-color: var(--dark); box-shadow: var(--shadow-md); transform: translateX(4px); }
.city-cat-left { display: flex; align-items: center; gap: 0.85rem; }
.city-cat-name { font-weight: 700; font-size: 0.95rem; }
.city-cat-sub { font-size: 0.8rem; color: var(--text-muted); }
.city-cat-count { font-weight: 800; font-size: 1.1rem; color: var(--text-light); letter-spacing: -0.02em; }
.city-cat:hover .city-cat-count { color: var(--text); }

/* ── NEARBY TOWNS ────────────────────────────────────── */
.nearby-towns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.nearby-town { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.2rem 1.25rem; text-decoration: none; color: var(--text); transition: all var(--transition); }
.nearby-town:hover { border-color: var(--dark); box-shadow: var(--shadow-md); }
.nearby-name { font-weight: 700; font-size: 1rem; display: block; margin-bottom: 0.15rem; }
.nearby-dist { font-size: 0.8rem; color: var(--text-muted); }

/* ── AD PLACEHOLDER ──────────────────────────────────── */
.ad-placeholder { max-width: var(--max-w); margin: 0 auto; padding: 1.5rem 2rem; }
.ad-placeholder span { display: block; background: var(--bg-warm); border: 2px dashed var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; color: var(--text-light); font-size: 0.82rem; font-weight: 500; }

/* ── CATEGORY PAGE: RESULTS ──────────────────────────── */
.results-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; }
.results-list { display: flex; flex-direction: column; gap: 0.6rem; }
.result-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.4rem 1.5rem; display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; text-decoration: none; color: var(--text); transition: all var(--transition); }
.result-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); }
.result-main h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.15rem; letter-spacing: -0.01em; }
.result-main h3 a { color: inherit; text-decoration: none; }
.result-main h3 a:hover { color: var(--blue); }
.result-loc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.result-details { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.82rem; color: var(--text-mid); }
.result-details .listing-detail svg { width: 14px; height: 14px; color: var(--text-light); }
.result-actions { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-end; justify-content: center; }
.result-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: all var(--transition); }
.result-btn--call { background: var(--green-pale); color: var(--green); }
.result-btn--call:hover { background: var(--green); color: #fff; }
.result-btn--web { background: var(--blue-pale); color: var(--blue); }
.result-btn--web:hover { background: var(--blue); color: #fff; }
.result-btn svg { width: 14px; height: 14px; }

/* ── SIDEBAR ─────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.25rem; }
.sidebar-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar-list a { color: var(--text-mid); text-decoration: none; font-size: 0.85rem; display: flex; justify-content: space-between; padding: 0.3rem 0; transition: color var(--transition); }
.sidebar-list a:hover { color: var(--text); }
.sidebar-list .count { color: var(--text-light); font-size: 0.8rem; }

/* ── SINGLE LISTING PAGE ─────────────────────────────── */
.listing-hero { background: var(--white); border-bottom: 1px solid var(--border-light); padding: 2rem; }
.listing-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.listing-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.listing-hero h1 { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; letter-spacing: -0.025em; }
.listing-claim-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--yellow); color: var(--dark); padding: 0.6rem 1.2rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: background var(--transition); flex-shrink: 0; }
.listing-claim-btn:hover { background: var(--yellow-deep); }
.listing-meta-row { display: flex; gap: 1.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.listing-meta-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; color: var(--text-mid); }
.listing-meta-item svg { width: 15px; height: 15px; color: var(--text-light); }
.listing-page-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; }
.listing-content { display: flex; flex-direction: column; gap: 1.5rem; }
.listing-section { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.5rem; }
.listing-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.listing-section p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }
.hours-grid { display: grid; grid-template-columns: 100px 1fr; gap: 0.3rem 1rem; font-size: 0.88rem; }
.hours-day { font-weight: 600; }
.hours-time { color: var(--text-mid); }
.hours-today { color: var(--green); font-weight: 600; }
.listing-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.5rem; }
.contact-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-item { display: flex; align-items: center; gap: 0.6rem; }
.contact-item svg { width: 16px; height: 16px; color: var(--text-light); flex-shrink: 0; }
.contact-item a { color: var(--blue); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }
.contact-item span { color: var(--text-mid); font-size: 0.9rem; }
.map-embed { background: var(--bg); border: 1px solid var(--border-light); border-radius: var(--radius); height: 220px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.82rem; }

/* ── FILTER BAR ──────────────────────────────────────── */
.filter-bar { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.filter-btn { padding: 0.4rem 0.85rem; border: 1px solid var(--border); border-radius: 100px; background: var(--white); font-family: inherit; font-size: 0.82rem; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all var(--transition); }
.filter-btn:hover { border-color: var(--dark); color: var(--text); }
.filter-btn--active { background: var(--dark); color: #fff; border-color: var(--dark); }
.results-count { font-size: 0.85rem; color: var(--text-muted); margin-left: auto; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--dark); color: #666; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; padding: 3rem 2rem 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { color: #666; font-size: 0.85rem; margin-top: 0.6rem; line-height: 1.5; max-width: 280px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.2rem; color: #fff; font-weight: 700; }
.footer-logo b { color: var(--yellow); }
.footer-col h4 { color: #999; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a { color: #666; text-decoration: none; font-size: 0.85rem; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 1.5rem 2rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #555; }
.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.5rem; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    .listings { grid-template-columns: 1fr; }
    .results-layout { grid-template-columns: 1fr; }
    .listing-page-layout { grid-template-columns: 1fr; }
    .nearby-towns { grid-template-columns: 1fr 1fr; }
    .city-hero-inner { flex-direction: column; }
    .city-search-box { width: 100%; }
}
@media (max-width: 640px) {
    .nav-inner { padding: 0 1rem; }
    .nav-link { display: none; }
    .section { padding: 2rem 1rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .listing-title-row { flex-direction: column; gap: 0.75rem; }
}

/* ── KADENCE / WORDPRESS OVERRIDES ──────────────────── */
.site-header, #masthead, .kadence-header-row { display: none !important; }
.site-footer, #colophon { display: none !important; }
body .site { padding: 0; margin: 0; }
body .site-content { padding: 0; max-width: 100%; }
body .content-area { padding: 0; }
body .site-main { padding: 0; }

/* Kill Kadence page title banner on all pages */
.entry-hero-container-inner,
.entry-hero,
.page-hero-section,
.entry-hero.page-hero-section,
.entry-hero-layout-standard,
.kadence-page-hero-section,
.wp-block-kadence-hero,
section.entry-hero,
.entry-header.page-title,
.kadence-entry-hero { display: none !important; min-height: 0 !important; height: 0 !important; padding: 0 !important; margin: 0 !important; overflow: hidden !important; }

/* Kill Kadence content area spacing */
.content-area { margin-top: 0 !important; margin-bottom: 0 !important; }
.entry-content-wrap { padding: 0 !important; }
.entry.single-entry { box-shadow: none !important; }
.content-bg, body.content-style-unboxed .site { background: var(--bg, #F6F5F1) !important; }

/* Transparent header offset fix */
.transparent-header .entry-hero .entry-hero-container-inner,
.mobile-transparent-header .entry-hero .entry-hero-container-inner { padding-top: 0 !important; }

/* Inner page content area */
body:not(.home) .entry-content,
body:not(.home) .site-main .entry-content {
    max-width: var(--max-w, 1220px) !important;
    margin: 0 auto !important;
    padding: 3rem 2rem !important;
    background: #F6F5F1 !important;
}
body:not(.home) .entry-content h1,
body:not(.home) .wp-block-heading:first-child,
body:not(.home) h1.entry-title {
    font-family: 'Fraunces', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #161616 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 1rem !important;
    font-style: normal !important;
}
body:not(.home) .entry-content h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
body:not(.home) .entry-content p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 680px;
}
body:not(.home) .entry-content ul,
body:not(.home) .entry-content ol {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    max-width: 680px;
}
body:not(.home) .entry-content li { margin-bottom: 0.4rem; }
body:not(.home) .entry-content a { color: var(--blue); text-decoration: none; }
body:not(.home) .entry-content a:hover { text-decoration: underline; }

/* Buttons on inner pages */
body:not(.home) .wp-block-button__link {
    background-color: var(--yellow) !important;
    color: var(--dark) !important;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-size: 1rem;
    transition: all var(--transition);
    text-decoration: none;
}
body:not(.home) .wp-block-button__link:hover {
    background-color: var(--dark) !important;
    color: var(--yellow) !important;
}

/* GeoDirectory page overrides */
.geodir-page-title,
.geodir-archive-title {
    font-family: 'Fraunces', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    letter-spacing: -0.025em !important;
}
.geodir-search {
    background: var(--white) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-md) !important;
    padding: 1rem !important;
    max-width: 700px;
    margin: 0 auto 2rem !important;
}
.geodir-search input[type="text"],
.geodir-search input[type="search"],
.geodir-search select {
    border: 2px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
}
.geodir-search input:focus,
.geodir-search select:focus {
    border-color: var(--yellow) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(252, 206, 58, 0.2) !important;
}
.geodir-search button,
.geodir-search input[type="submit"],
.geodir-search .geodir-search-submit {
    background-color: var(--yellow) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 24px !important;
    cursor: pointer;
    transition: background var(--transition);
}
.geodir-search button:hover,
.geodir-search input[type="submit"]:hover {
    background-color: var(--yellow-deep) !important;
}
.geodir-loop-container .geodir-category-list-view {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.4rem;
    transition: all var(--transition);
}
.geodir-loop-container .geodir-category-list-view:hover {
    box-shadow: var(--shadow-md);
}
/* ── BROWSE PAGE CATEGORY GRID ──────────────────────── */
.wic-browse-cats {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}
.wic-browse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.6rem;
}
.wic-browse-cat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    color: var(--text) !important;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.wic-browse-cat-item:hover {
    border-color: var(--yellow);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}
.wic-browse-cat-item i {
    font-size: 1rem;
    color: var(--text-muted);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.wic-browse-cat-item:hover i {
    color: var(--yellow-deep);
}
.wic-browse-cat-item span:first-of-type {
    flex: 1;
}
.wic-browse-cat-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    background: var(--bg);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
}

/* GD Archive hero area */
.geodir-archive-header,
.geodir_category_list_head {
    background: var(--bg) !important;
    padding: 2rem !important;
    border-radius: var(--radius) !important;
    margin-bottom: 2rem !important;
}
/* GD alert/info boxes */
.geodir-noresult,
.alert-info {
    background: var(--blue-pale) !important;
    border: 1px solid rgba(51, 96, 255, 0.2) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--blue) !important;
    font-size: 0.9rem;
    padding: 1rem 1.25rem !important;
}
/* GD Archive page - the "GD Archive" title in the hero */
.geodir-archive .entry-hero,
.geodir-archive .page-hero-section,
.post-type-archive .entry-hero { display: none !important; min-height: 0 !important; height: 0 !important; }
.geodir-archive .entry-content,
.post-type-archive .entry-content {
    max-width: var(--max-w, 1220px) !important;
    margin: 0 auto !important;
    padding: 2rem !important;
}

/* GD forms (add listing, register, login) */
.geodir-add-listing-page .entry-content,
.geodir_form_row input[type="text"],
.geodir_form_row input[type="email"],
.geodir_form_row input[type="password"],
.geodir_form_row textarea,
.geodir_form_row select {
    font-family: 'Inter', sans-serif !important;
    border: 2px solid #E2E0DB !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    font-size: 0.95rem !important;
}
.geodir_form_row input:focus,
.geodir_form_row textarea:focus,
.geodir_form_row select:focus {
    border-color: #FCCE3A !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(252, 206, 58, 0.2) !important;
}
.geodir_form_row .geodir_button,
.geodir_form_row input[type="submit"] {
    background: #FCCE3A !important;
    color: #161616 !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 28px !important;
    cursor: pointer !important;
}

/* GD user pages */
.geodir-author-page,
.gd-login-page,
.gd-register-page {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 2rem;
}

/* ── LISTING BREADCRUMB ────────────────────────────── */
.wic-breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
    font-weight: 500;
    letter-spacing: 0.01em;
}
.wic-breadcrumb a {
    color: var(--text-mid);
    text-decoration: none;
    transition: color var(--transition);
}
.wic-breadcrumb a:hover {
    color: var(--blue);
}
.wic-breadcrumb span {
    margin: 0 0.4rem;
    color: var(--text-light);
}
.wic-breadcrumb-current {
    color: var(--text) !important;
    margin: 0 !important;
}

/* ── LISTING HERO BANNER ───────────────────────────── */
.wic-listing-hero {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    border-top: 4px solid var(--cat-colour, var(--yellow));
}
.wic-listing-hero-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--cat-colour, var(--yellow)) 10%, white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wic-listing-hero-icon i {
    font-size: 2rem;
    color: var(--cat-colour, var(--yellow));
}
.wic-listing-hero-info {
    flex: 1;
    min-width: 0;
}
.wic-listing-desc {
    margin-top: 0.75rem;
}
.wic-listing-desc p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
}
.wic-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1rem;
}
@media (max-width: 600px) {
    .wic-listing-hero { flex-direction: column; gap: 1.25rem; padding: 1.5rem; }
    .wic-listing-hero-icon { width: 60px; height: 60px; border-radius: 12px; }
    .wic-listing-hero-icon i { font-size: 1.5rem; }
}

/* ── LISTING CONTACT BLOCK ──────────────────────────── */
.wic-contact-block {
    margin: 0 0 2.5rem;
    padding: 0 0 2.5rem;
    border-bottom: 1px solid var(--border-light);
}
.wic-rating {
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.wic-rating .fa-star,
.wic-rating .fa-star-half-alt {
    color: var(--yellow);
    font-size: 1.15rem;
    margin-right: 1px;
}
.wic-rating-text {
    color: var(--text-mid);
    margin-left: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.wic-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.wic-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    text-decoration: none !important;
    color: var(--text) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.wic-contact-item:hover {
    border-color: var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.wic-contact-phone:hover {
    border-color: var(--green);
    background: var(--green-pale);
}
.wic-contact-web:hover {
    border-color: var(--blue);
    background: var(--blue-pale);
}
.wic-contact-addr:hover {
    border-color: var(--coral);
    background: #FFF5F2;
}
.wic-contact-item i {
    font-size: 1.25rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.wic-contact-phone i { color: var(--green); }
.wic-contact-web i { color: var(--blue); }
.wic-contact-addr i { color: var(--coral); }
.wic-contact-item strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}
.wic-contact-item span {
    font-size: 0.92rem;
    line-height: 1.5;
    font-weight: 500;
}
/* Claim CTA */
.wic-claim-cta {
    margin-top: 1.75rem;
    padding: 1rem 1.5rem;
    background: var(--yellow-pale);
    border: 1px solid rgba(252, 206, 58, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-mid);
}
.wic-claim-cta p { margin: 0; }
.wic-claim-cta a {
    color: var(--dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--yellow);
    transition: border-color var(--transition);
}
.wic-claim-cta a:hover {
    border-color: var(--dark);
}

/* Auto-generation disclaimer - shown above contact details on unclaimed
   listings. Builds trust by being honest about data provenance + nudges
   business owners toward the claim flow. */
.wic-source-notice {
    margin: 1.25rem 0 1.75rem;
    padding: 0.85rem 1.25rem;
    background: var(--bg-warm);
    border-left: 4px solid var(--text-mid);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-mid);
}
.wic-source-notice p { margin: 0; }
.wic-source-notice strong { color: var(--text); }
.wic-source-notice a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--yellow);
    transition: border-color var(--transition);
}
.wic-source-notice a:hover { border-color: var(--dark); }

/* Verified business indicator - shown in place of the Claim CTA once a
   listing has been claimed + approved via the wic_claim flow. */
.wic-verified-cta {
    margin-top: 1.75rem;
    padding: 0.85rem 1.25rem;
    background: var(--green-pale);
    border: 1px solid rgba(27, 139, 90, 0.25);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text);
}
.wic-verified-cta p { margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.wic-verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .wic-contact-grid { grid-template-columns: 1fr; }
    .wic-contact-block { margin: 1.5rem 0; padding: 1.5rem 0; }
}

/* ── DETAIL PAGE WHITESPACE ────────────────────────── */
.single-gd_place .entry-content-wrap {
    padding: 2.5rem !important;
}
.single-gd_place .entry-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    max-width: 680px;
}
.single-gd_place .geodir-tabs .nav-tabs {
    margin-top: 1rem;
    margin-bottom: 2rem !important;
    gap: 0.5rem;
}
.single-gd_place .geodir-tabs .nav-link {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    border-radius: var(--radius-sm) !important;
    font-family: 'Inter', sans-serif !important;
}
.single-gd_place .geodir-tabs .nav-link.active {
    background: var(--dark) !important;
    color: var(--white) !important;
    border-color: var(--dark) !important;
}
.single-gd_place .tab-content {
    padding: 1.5rem 0 !important;
}

/* ── GD BOOTSTRAP CARD OVERRIDES ────────────────────── */
/* GeoDirectory outputs Bootstrap .card markup for listings */
.geodir-loop-container .card {
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius) !important;
    transition: all var(--transition) !important;
    overflow: hidden;
    font-family: 'Inter', sans-serif !important;
}
.geodir-loop-container .card:hover {
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-2px);
    border-color: var(--border) !important;
}
.geodir-loop-container .card-body {
    padding: 1rem !important;
}
/* Listing title inside cards */
.geodir-loop-container .geodir-entry-title a,
.geodir-loop-container .geodir-post-title a {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: var(--dark) !important;
    text-decoration: none !important;
    letter-spacing: -0.01em;
}
.geodir-loop-container .geodir-entry-title a:hover,
.geodir-loop-container .geodir-post-title a:hover {
    color: var(--blue) !important;
}
/* Category/New badges on cards */
.geodir-loop-container .gd-badge {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
    border-radius: 4px !important;
}
/* Rating stars */
.geodir-loop-container .geodir-post-rating {
    color: var(--yellow) !important;
}
/* Address/meta text in cards */
.geodir-loop-container .geodir_post_meta {
    font-size: 0.82rem !important;
    color: var(--text-mid) !important;
}
/* Favourite heart icon */
.geodir-loop-container .geodir-addtofav-icon i {
    color: var(--text-light) !important;
    transition: color var(--transition);
}
.geodir-loop-container .geodir-addtofav-icon:hover i {
    color: var(--coral) !important;
}
/* Card image placeholder when no image */
.geodir-loop-container .card-img-top {
    background: var(--bg) !important;
    min-height: 60px;
}
/* Pagination */
.geodir-loop-paging-container .page-numbers {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-mid) !important;
    text-decoration: none !important;
    transition: all var(--transition);
}
.geodir-loop-paging-container .page-numbers.current,
.geodir-loop-paging-container .page-numbers:hover {
    background: var(--yellow) !important;
    color: var(--dark) !important;
    border-color: var(--yellow) !important;
}
/* Loop actions (sort/filter bar) */
.geodir-loop-actions-container {
    margin-bottom: 1rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid var(--border-light) !important;
}
.geodir-loop-actions-container select {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    padding: 0.4rem 0.75rem !important;
}
/* Category page title - override Kadence */
.tax-gd_placecategory .page-title,
.tax-gd_placecategory .archive-title {
    font-family: 'Fraunces', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    letter-spacing: -0.025em !important;
}
/* Detail page - single listing */
.single-gd_place .entry-title {
    font-family: 'Fraunces', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
}
.single-gd_place .geodir-post-content-container {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-mid);
}
/* Phone/website links on detail page */
.single-gd_place .geodir_post_meta a {
    color: var(--blue) !important;
    text-decoration: none !important;
}
.single-gd_place .geodir_post_meta a:hover {
    text-decoration: underline !important;
}
/* Map on detail page */
.single-gd_place .geodir-map-container {
    border-radius: var(--radius) !important;
    overflow: hidden;
    border: 1px solid var(--border-light);
}
