/* =========================================================================
   PRO theme " allare.io
   ========================================================================= */

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ----- Design tokens (mirrors colors.css var names where applicable) --- */
:root {
    --ink: #0B0B0E;
    --ink-soft: #2A2A30;
    --muted: #6B6B73;
    --muted-soft: #9A9AA0;
    --line: #E6E3DC;
    --line-soft: #F0EDE6;
    --paper: #FAF8F2;
    --paper-pure: #FFFFFF;
    --accent: #C2410C;
    --accent-dark: #7C2D12;
    --accent-soft: #FDF1E7;
    --gold: #E6A817;
    --gold-soft: #FDF6E3;
    --green: #1F7A4D;
    --green-soft: #E8F5EE;
    --blue: #1E40AF;
    --red: #B91C1C;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(11,11,14,.04);
    --shadow-md: 0 4px 16px rgba(11,11,14,.06);
    --shadow-lg: 0 12px 40px rgba(11,11,14,.08);
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }

/* Container */
.wrap, .container-pro { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ----- Stars (sprite-based) -------------------------------------------- */
.star-row {
    display: inline-flex;
    gap: 3px;
    line-height: 1;
    vertical-align: middle;
    color: var(--gold);
}
.star {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-block;
}
.star-row.lg .star { width: 24px; height: 24px; }
.star-row.xl .star { width: 32px; height: 32px; }
.star-row.sm .star { width: 14px; height: 14px; }

.star-row.r1, .bar-label.r1 { color: #DC2626; }
.star-row.r2, .bar-label.r2 { color: #F97316; }
.star-row.r3, .bar-label.r3 { color: #EAB308; }
.star-row.r4, .bar-label.r4 { color: #84CC16; }
.star-row.r5, .bar-label.r5 { color: #16A34A; }

/* ----- Topbar ---------------------------------------------------------- */
.topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 12.5px;
    padding: 9px 0;
    letter-spacing: 0.02em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar .pill {
    background: rgba(255,255,255,.1);
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-right: 6px;
}

/* ----- Header ---------------------------------------------------------- */
header.site {
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(250, 248, 242, 0.88);
}
header.site .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 32px;
}
.brand-logo {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.03em;
    font-style: italic;
    display: inline-flex;
    align-items: baseline;
    color: var(--ink);
}
.brand-logo .dot { color: var(--accent); }

nav.primary { display: flex; gap: 28px; font-weight: 500; font-size: 14.5px; }
nav.primary a { position: relative; padding: 4px 0; transition: color .2s; color: var(--ink); }
nav.primary a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width .25s ease;
}
nav.primary a:hover, nav.primary a.active { color: var(--accent); }
nav.primary a:hover::after, nav.primary a.active::after { width: 100%; }

.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .menu-btn { display: none; padding: 10px; border-radius: 8px; }
.header-cta .menu-btn:hover { background: var(--line-soft); }

/* ----- Buttons --------------------------------------------------------- */
.btn-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 0;
    font-family: inherit;
}
.btn-pro.btn-ghost { color: var(--ink); background: transparent; }
.btn-pro.btn-ghost:hover { background: var(--line-soft); }
.btn-pro.btn-primary { background: var(--ink); color: var(--paper); }
.btn-pro.btn-primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-pro.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-pro.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-pro.btn-accent { background: var(--accent); color: var(--paper); }
.btn-pro.btn-accent:hover { background: var(--accent-dark); }
.btn-pro.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-pro.btn-block { width: 100%; }

/* ----- Hero (home) ----------------------------------------------------- */
.hero {
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -15%;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(194,65,12,.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(230,168,23,.07) 0%, transparent 60%);
    pointer-events: none;
}
.hero .wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 20px;
    border: 1px solid rgba(194,65,12,.15);
}
.hero h1 {
    font-family: var(--serif);
    font-size: 68px;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin: 0 0 22px;
}
.hero h1 em { color: var(--accent); font-style: italic; font-weight: 500; }
.hero p.sub {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 520px;
    margin-bottom: 28px;
}

.search-box {
    display: flex;
    gap: 6px;
    background: var(--paper-pure);
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    box-shadow: var(--shadow-md);
    max-width: 560px;
    transition: border-color .2s;
    position: relative;
}
.search-box:focus-within { border-color: var(--ink); }
.search-box input {
    flex: 1;
    padding: 13px 22px;
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: 14.5px;
    outline: none;
    min-width: 0;
    color: var(--ink);
}
.search-box button {
    background: var(--ink);
    color: var(--paper);
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    cursor: pointer;
}
.search-box button:hover { background: var(--accent); }

.search-tags {
    display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px;
    align-items: center; font-size: 12.5px; color: var(--muted);
}
.search-tags .lbl { font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-right: 4px; font-size: 11px; }
.search-tags a {
    color: var(--ink-soft); padding: 3px 9px;
    background: var(--paper-pure); border: 1px solid var(--line);
    border-radius: 999px; font-weight: 600; font-size: 12px; transition: all .15s;
}
.search-tags a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.hero-visual { position: relative; }
.hero-card {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 22px 20px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-1.5deg);
    transition: transform .3s;
}
.hero-card:hover { transform: rotate(0); }
.hero-card + .hero-card { transform: rotate(1.8deg) translateY(20px); margin-top: -14px; background: var(--paper-pure); }
.hero-card + .hero-card:hover { transform: rotate(0) translateY(0); }
.hero-card .top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hero-card .av {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg,#1F7A4D,#064E3B);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.hero-card .av.alt { background: linear-gradient(135deg,#C2410C,#7C2D12); }
.hero-card .name { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 5px; }
.hero-card .meta { font-size: 11.5px; color: var(--muted); }
.hero-card h4 { font-family: var(--serif); font-size: 16px; font-weight: 500; margin-bottom: 6px; letter-spacing: -.01em; }
.hero-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

/* Verify tick badge */
.verify-tick {
    display: inline-flex; align-items: center; justify-content: center;
    width: 16px; height: 16px;
    color: #1D9BF0; flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(12,122,196,.3));
}
.verify-tick.md { width: 18px; height: 18px; }
.verify-tick svg { width: 100%; height: 100%; display: block; }

/* ----- Sections -------------------------------------------------------- */
section.s { padding: 64px 0; }
section.s.alt { background: var(--paper-pure); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.s-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    gap: 24px;
    flex-wrap: wrap;
}
.s-head h2 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.05;
    max-width: 640px;
    margin: 0;
}
.s-head h2 em { font-style: italic; color: var(--accent); }
.s-head .s-sub { color: var(--muted); font-size: 14.5px; margin-top: 8px; max-width: 560px; }
.s-head .s-link {
    font-size: 13.5px; font-weight: 700; color: var(--ink);
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border: 1.5px solid var(--ink); border-radius: 999px;
    transition: all .2s;
}
.s-head .s-link:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }

/* Trust strip */
.trust-strip {
    display: grid; grid-template-columns: repeat(4,1fr);
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.trust-strip .it { padding: 22px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.trust-strip .it:last-child { border-right: 0; }
.trust-strip .it .v { font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: -.02em; }
.trust-strip .it .l { font-size: 11.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* Categories grid */
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.cat {
    display: flex; align-items: center; gap: 16px;
    padding: 22px;
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.cat::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 70%);
    opacity: 0; transition: opacity .25s; pointer-events: none;
}
.cat:hover { border-color: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cat:hover::before { opacity: 1; }
.cat .ic {
    width: 54px; height: 54px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; flex-shrink: 0; position: relative; z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg,#FCE7D6,#FDF1E7);
}
.cat .ic img { width: 32px; height: 32px; object-fit: contain; }
.cat .ic.c1 { background: linear-gradient(135deg,#FCE7D6,#FDF1E7); }
.cat .ic.c2 { background: linear-gradient(135deg,#E8F5EE,#D1FAE5); }
.cat .ic.c3 { background: linear-gradient(135deg,#DBEAFE,#E0E7FF); }
.cat .ic.c4 { background: linear-gradient(135deg,#FEF3C7,#FDE68A); }
.cat .ic.c5 { background: linear-gradient(135deg,#F3E8FF,#E9D5FF); }
.cat .ic.c6 { background: linear-gradient(135deg,#FFE4E6,#FECDD3); }
.cat .ic.c7 { background: linear-gradient(135deg,#CCFBF1,#A7F3D0); }
.cat .ic.c8 { background: linear-gradient(135deg,#FED7AA,#FDBA74); }
.cat .ic.c9 { background: linear-gradient(135deg,#E0E7FF,#C7D2FE); }
.cat .nm { position: relative; z-index: 1; min-width: 0; }
.cat strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 2px; color: var(--ink); }
.cat span { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.cat .arr { margin-left: auto; color: var(--muted); transition: transform .25s, color .25s; position: relative; z-index: 1; }
.cat:hover .arr { color: var(--accent); transform: translateX(4px); }

/* Business cards */
.biz-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.biz-card {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.biz-card:hover { border-color: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.biz-card .b-top { display: flex; align-items: center; gap: 12px; }
.biz-card .b-logo {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg,#1f1f25,#0B0B0E);
    flex-shrink: 0;
    color: var(--paper);
    font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 24px;
    letter-spacing: -.02em;
}
.biz-card .b-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.biz-card .b-info { min-width: 0; flex: 1; }
.biz-card .b-name { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 0; }
.biz-card .b-domain { font-size: 12px; color: var(--muted); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.biz-card .b-rating { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.biz-card .b-score { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.biz-card .b-score .c { color: var(--muted); font-weight: 500; font-size: 12.5px; margin-left: 2px; }
.biz-card .b-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }
.biz-card .b-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--line-soft); margin-top: auto; gap: 8px; }
.biz-card .b-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); background: var(--accent-soft); padding: 3px 9px; border-radius: 6px; }
.biz-card .b-loc { font-size: 11.5px; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.biz-card .b-badge {
    position: absolute; top: 14px; right: 14px;
    background: linear-gradient(135deg,#22C55E,#15803D);
    color: #fff; width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 3px rgba(21,128,61,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.biz-card .b-badge svg { width: 11px; height: 11px; }

/* Feed cards (recent reviews) */
.feed-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feed-card {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    transition: all .25s;
    display: flex; flex-direction: column; gap: 12px;
}
.feed-card:hover { border-color: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feed-card .f-top { display: flex; align-items: center; gap: 10px; }
.feed-card .f-av {
    width: 36px; height: 36px; border-radius: 50%;
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg,#1F7A4D,#064E3B);
}
.feed-card .f-av img { width: 100%; height: 100%; object-fit: cover; }
.feed-card .f-av.a1 { background: linear-gradient(135deg,#C2410C,#7C2D12); }
.feed-card .f-av.a2 { background: linear-gradient(135deg,#1F7A4D,#064E3B); }
.feed-card .f-av.a3 { background: linear-gradient(135deg,#1E40AF,#1E3A8A); }
.feed-card .f-av.a4 { background: linear-gradient(135deg,#6D28D9,#4C1D95); }
.feed-card .f-av.a5 { background: linear-gradient(135deg,#B45309,#78350F); }
.feed-card .f-av.a6 { background: linear-gradient(135deg,#BE185D,#831843); }
.feed-card .f-nm { font-weight: 700; font-size: 13.5px; display: flex; align-items: center; gap: 5px; }
.feed-card .f-meta { font-size: 11.5px; color: var(--muted); }
.feed-card h4 { font-family: var(--serif); font-size: 16px; font-weight: 600; letter-spacing: -.01em; line-height: 1.3; margin: 0; color: var(--ink); }
.feed-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }
.feed-card .f-biz {
    font-size: 12px; color: var(--muted); padding-top: 10px;
    border-top: 1px solid var(--line-soft); margin-top: auto;
    display: flex; align-items: center; gap: 8px;
}
.feed-card .f-biz .ml {
    width: 22px; height: 22px; border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg,#1f1f25,#0B0B0E);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 11px;
}
.feed-card .f-biz .ml img { width: 100%; height: 100%; object-fit: cover; }

/* Trust band */
.band {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: center;
    padding: 60px 48px;
    background: linear-gradient(135deg, var(--ink) 0%, #1a1a1f 100%);
    color: var(--paper);
    border-radius: var(--radius);
    position: relative; overflow: hidden;
}
.band::before {
    content: '';
    position: absolute;
    top: -50%; right: -15%;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(194,65,12,.25) 0%, transparent 60%);
    pointer-events: none;
}
.band::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -15%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(230,168,23,.12) 0%, transparent 60%);
    pointer-events: none;
}
.band-text { position: relative; z-index: 1; }
.band h2 { font-family: var(--serif); font-size: 38px; font-weight: 500; letter-spacing: -.025em; line-height: 1.05; margin: 0 0 16px; }
.band h2 em { color: var(--gold); font-style: italic; }
.band p { color: rgba(250,248,242,.7); font-size: 15px; line-height: 1.65; margin-bottom: 24px; max-width: 480px; }
.band .btn-pro { background: var(--accent); color: var(--paper); font-weight: 700; }
.band .btn-pro:hover { background: var(--paper); color: var(--ink); }
.band-stats { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.band-stats .it { padding: 24px; background: rgba(255,255,255,.04); }
.band-stats .v { font-family: var(--serif); font-size: 38px; font-weight: 500; letter-spacing: -.02em; color: var(--gold); line-height: 1; }
.band-stats .l { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(250,248,242,.6); margin-top: 8px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: var(--paper-pure); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 10px; transition: all .2s; }
.faq details[open] { border-color: var(--ink-soft); box-shadow: var(--shadow-md); }
.faq summary {
    font-family: var(--serif); font-size: 17px; font-weight: 600; letter-spacing: -.01em;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 16px; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--sans); font-size: 24px; font-weight: 300; color: var(--muted); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq p { padding-top: 14px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; margin: 0; }

/* Newsletter */
.newsletter {
    background: var(--ink);
    color: var(--paper);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(194,65,12,.18), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(230,168,23,.08), transparent 55%);
    pointer-events: none;
}
.newsletter .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.newsletter h2 { font-family: var(--serif); font-size: 44px; font-weight: 500; letter-spacing: -.025em; line-height: 1.05; margin: 0; }
.newsletter h2 em { color: var(--gold); font-style: italic; }
.newsletter p { color: rgba(250,248,242,.7); font-size: 15px; margin-top: 12px; line-height: 1.6; }
.news-form {
    display: flex; gap: 6px;
    background: rgba(255,255,255,.07);
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
}
.news-form input { flex: 1; padding: 13px 22px; background: transparent; border: 0; color: var(--paper); font-family: inherit; font-size: 14.5px; outline: none; min-width: 0; }
.news-form input::placeholder { color: rgba(250,248,242,.5); }
.news-form button { background: var(--accent); color: var(--paper); padding: 13px 28px; border-radius: 999px; font-weight: 700; font-size: 14px; transition: all .2s; white-space: nowrap; cursor: pointer; border: 0; }
.news-form button:hover { background: var(--paper); color: var(--ink); }
.news-disclaimer { font-size: 11.5px; color: rgba(250,248,242,.4); margin-top: 12px; }

/* ----- Footer ---------------------------------------------------------- */
footer.site { background: var(--paper); border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand .brand-logo { margin-bottom: 14px; display: inline-block; }
.footer-brand p { color: var(--muted); font-size: 13.5px; line-height: 1.65; max-width: 300px; margin: 0; }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.footer-socials a {
    width: 34px; height: 34px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--paper-pure); border: 1px solid var(--line);
    color: var(--ink-soft); transition: all .2s;
}
.footer-socials a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.footer-socials svg { width: 14px; height: 14px; }
.footer-col h4 { font-family: var(--serif); font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.footer-col a { font-size: 13.5px; color: var(--ink-soft); transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; gap: 10px; }
.footer-payments img { max-height: 28px; }

/* ----- Breadcrumb ------------------------------------------------------ */
.crumb { padding: 24px 0 14px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumb a { transition: color .15s; }
.crumb a:hover { color: var(--accent); }
.crumb .sep { opacity: .4; }
.crumb .current { color: var(--ink); font-weight: 600; }

/* ----- Business Hero -------------------------------------------------- */
.biz-hero {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 44px;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.biz-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(194,65,12,.07) 0%, transparent 60%);
    pointer-events: none;
}
.biz-hero::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(230,168,23,.05) 0%, transparent 60%);
    pointer-events: none;
}
.biz-logo {
    width: 130px; height: 130px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #1f1f25 0%, #0B0B0E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 600;
    font-style: italic;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    letter-spacing: -0.04em;
    overflow: hidden;
}
.biz-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.biz-logo::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 50%);
    pointer-events: none;
}
.biz-info { position: relative; z-index: 1; }
.biz-name { font-family: var(--serif); font-size: 46px; font-weight: 500; letter-spacing: -.025em; line-height: 1.02; margin: 0 0 8px; color: var(--ink); }
.biz-domain { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.biz-domain a { color: var(--ink-soft); font-weight: 500; transition: color .15s; }
.biz-domain a:hover { color: var(--accent); }
.biz-domain .dot-sep { color: var(--muted-soft); }
.biz-rating-line { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.rating-text { font-weight: 700; font-size: 16px; color: var(--ink); }
.rating-text .num { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: -.02em; }
.verified-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #E8F5EE 0%, #D1FAE5 100%);
    color: var(--green);
    padding: 5px 12px 5px 6px;
    border-radius: 999px;
    font-size: 12px; font-weight: 700;
    letter-spacing: .01em;
    border: 1px solid rgba(31,122,77,.18);
    box-shadow: 0 1px 2px rgba(31,122,77,.08);
}
.verified-badge .check-circle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px;
    background: linear-gradient(135deg, #22C55E 0%, #15803D 100%);
    color: #fff; border-radius: 50%;
    box-shadow: 0 1px 3px rgba(21,128,61,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.verified-badge .check-circle svg { width: 11px; height: 11px; }
.hero-actions { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; min-width: 200px; }

/* Trust stats " auto-fit so any count (4, 5, 6) flows cleanly */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 32px;
    overflow: hidden;
}
.trust-stat { padding: 22px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.trust-stat:last-child { border-right: 0; }
.trust-stat .stat-label { font-size: 11.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.trust-stat .stat-val { font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: -.02em; display: flex; align-items: baseline; gap: 4px; }
.trust-stat .stat-val .small { font-size: 14px; color: var(--muted); font-family: var(--sans); font-weight: 600; }
.trust-stat .stat-val.green { color: var(--green); }

/* Main grid */
.main-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; padding-bottom: 80px; }
.main-grid.single-col { grid-template-columns: 1fr; }

/* Cards */
.card-pro {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}
.card-pro + .card-pro { margin-top: 20px; }
.card-title { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 0 0 20px; letter-spacing: -.015em; color: var(--ink); }
.card-subtitle { font-size: 13px; color: var(--muted); margin-top: -16px; margin-bottom: 20px; }

/* Rating summary */
.rating-summary { display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: center; }
.big-rating { text-align: center; padding: 22px 18px; background: linear-gradient(180deg, var(--gold-soft) 0%, var(--paper) 100%); border-radius: var(--radius-sm); border: 1px solid rgba(230,168,23,.2); }
.big-rating .score { font-family: var(--serif); font-size: 80px; font-weight: 500; line-height: 1; letter-spacing: -.05em; color: var(--ink); }
.big-rating .score .of { font-size: 26px; color: var(--muted); font-weight: 400; }
.big-rating .star-row { justify-content: center; margin: 12px 0 8px; }
.big-rating .count { font-size: 12.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.bars { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 56px 1fr 56px; gap: 14px; align-items: center; font-size: 13.5px; }
.bar-label { font-weight: 700; display: inline-flex; align-items: center; gap: 4px; color: var(--ink); }
.bar-track { height: 10px; background: var(--line-soft); border-radius: 999px; overflow: hidden; }
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, #F0B935 100%);
    border-radius: 999px;
    width: 0;
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}
.bar-fill.r5 { background: linear-gradient(90deg, #4ADE80 0%, #16A34A 100%); }
.bar-fill.r4 { background: linear-gradient(90deg, #A3E635 0%, #65A30D 100%); }
.bar-fill.r3 { background: linear-gradient(90deg, #FDE047 0%, #CA8A04 100%); }
.bar-fill.r2 { background: linear-gradient(90deg, #FB923C 0%, #EA580C 100%); }
.bar-fill.r1 { background: linear-gradient(90deg, #EF4444 0%, #B91C1C 100%); }
.bar-pct { color: var(--ink-soft); text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; font-size: 13px; }

/* Insights */
.insights { margin-top: 24px; padding-top: 24px; border-top: 1px dashed var(--line); }
.insights-title { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.insights-title .sparkle { display: inline-flex; width: 18px; height: 18px; background: linear-gradient(135deg, var(--accent), var(--gold)); border-radius: 50%; color: white; align-items: center; justify-content: center; font-size: 10px; }
.insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.insight { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 13.5px; line-height: 1.5; border: 1px solid; }
.insight.pro { background: var(--green-soft); border-color: rgba(31,122,77,.15); color: #0F4B30; }
.insight.con { background: #FEF2F2; border-color: rgba(185,28,28,.12); color: #7F1D1D; }
.insight strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; font-weight: 700; }
.insight.pro strong { color: var(--green); }
.insight.con strong { color: var(--red); }

/* Filters */
.filters {
    display: flex; gap: 10px; margin: 28px 0 22px; flex-wrap: wrap; align-items: center;
    padding: 14px 18px;
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.filter-label { font-size: 11.5px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-right: 4px; }
.chip {
    padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px;
    font-size: 13px; font-weight: 600; background: var(--paper);
    transition: all .15s; display: inline-flex; align-items: center; gap: 5px;
    color: var(--ink); cursor: pointer; font-family: inherit;
}
.chip:hover { border-color: var(--ink); background: var(--paper-pure); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip .badge-num { background: rgba(255,255,255,.2); padding: 1px 7px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.chip:not(.active) .badge-num { background: var(--line-soft); color: var(--muted); }
.select-pro {
    padding: 8px 32px 8px 15px;
    border: 1px solid var(--line); border-radius: 999px;
    font-size: 13px; font-weight: 600;
    background: var(--paper); font-family: inherit; cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l4 4 4-4' stroke='%236B6B73' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    color: var(--ink);
}
.select-pro:hover { border-color: var(--ink); }

/* Reviews */
.reviews-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.reviews-head h2 { font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: -.02em; margin: 0; color: var(--ink); }
.reviews-head .sort { color: var(--muted); font-size: 13.5px; font-weight: 500; }
.reviews-head .sort strong { color: var(--ink); font-weight: 700; }

.review-item {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 30px;
    margin-bottom: 18px;
    transition: all .25s ease;
    position: relative;
}
.review-item:hover { border-color: var(--ink-soft); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.review-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.avatar-pro {
    width: 48px; height: 48px; border-radius: 50%;
    color: var(--paper); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 17px; flex-shrink: 0;
    letter-spacing: -.02em; position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #C2410C, #7C2D12);
}
.avatar-pro img { width: 100%; height: 100%; object-fit: cover; }
.avatar-pro.b1 { background: linear-gradient(135deg, #C2410C, #7C2D12); }
.avatar-pro.b2 { background: linear-gradient(135deg, #1F7A4D, #064E3B); }
.avatar-pro.b3 { background: linear-gradient(135deg, #1E40AF, #1E3A8A); }
.avatar-pro.b4 { background: linear-gradient(135deg, #6D28D9, #4C1D95); }
.avatar-pro.b5 { background: linear-gradient(135deg, #B45309, #78350F); }
.avatar-pro.sm { width: 36px; height: 36px; font-size: 13px; }
.avatar-pro.lg { width: 84px; height: 84px; font-size: 32px; border-radius: 50%; }

.reviewer { flex: 1; min-width: 0; }
.reviewer-line { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.reviewer-name { font-weight: 700; font-size: 15px; color: var(--ink); transition: color .15s; }
a.reviewer-name:hover { color: var(--accent); }
.top-reviewer {
    display: inline-flex; align-items: center; gap: 4px;
    background: linear-gradient(135deg, var(--gold-soft), #F8E8B8);
    color: #92651A;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 10.5px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 1px solid rgba(230,168,23,.3);
}
.reviewer-meta { font-size: 12.5px; color: var(--muted); margin-top: 3px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.reviewer-meta .dot-sep { color: var(--muted-soft); }
.country { font-weight: 600; }
.review-rating-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }

.review-item h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; letter-spacing: -.015em; margin: 0 0 12px; line-height: 1.25; color: var(--ink); }
.review-body { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; word-wrap: break-word; }
.review-body p:last-child { margin-bottom: 0; }
.review-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.review-tag { font-size: 11.5px; font-weight: 600; padding: 4px 10px; background: var(--line-soft); color: var(--ink-soft); border-radius: 6px; }

.review-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px; }
.review-foot .date { font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.review-foot .date svg { width: 13px; height: 13px; color: var(--muted-soft); }
.review-actions-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.react-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--muted); font-weight: 600;
    transition: color .15s; padding: 6px 10px; border-radius: 8px;
    background: transparent; border: 0; cursor: pointer; font-family: inherit;
}
.react-btn:hover { color: var(--accent); background: var(--accent-soft); }
.react-btn.on { color: var(--accent); }
.react-btn svg { width: 14px; height: 14px; }
.react-btn .count-num { color: var(--ink); }

.share-icons { display: inline-flex; gap: 6px; }
.share-icons a {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--line-soft);
    color: var(--ink-soft);
    transition: all .2s;
}
.share-icons a:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.share-icons svg { width: 13px; height: 13px; }

.biz-response {
    margin-top: 16px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, #FCE7D6 100%);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.biz-response-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 12.5px; flex-wrap: wrap; }
.biz-response-head strong { color: var(--accent-dark); font-weight: 700; }
.biz-response-head .reply-time { color: var(--muted); }
.biz-response-head .biz-tag { background: var(--accent); color: white; font-size: 9.5px; padding: 2px 7px; border-radius: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

.review-images { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin: 14px 0 18px; }
.review-images img { width: 100%; height: 110px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); cursor: pointer; transition: transform .15s; }
.review-images img:hover { transform: scale(1.02); }

.load-more {
    display: block; width: 100%; padding: 16px;
    border: 1px dashed var(--line); border-radius: var(--radius);
    background: transparent;
    font-weight: 700; font-size: 14px; color: var(--ink);
    margin-top: 8px; transition: all .2s;
    text-align: center; cursor: pointer; font-family: inherit;
}
.load-more:hover { background: var(--paper-pure); border-style: solid; border-color: var(--ink); color: var(--accent); }

/* Sidebar */
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; gap: 12px; }
.info-row:last-child { border: 0; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row .label { color: var(--muted); }
.info-row .val { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--ink); text-align: right; word-break: break-word; }
.info-row .val.green { color: var(--green); display: inline-flex; align-items: center; gap: 4px; }
.info-row .val a { color: var(--ink); transition: color .15s; }
.info-row .val a:hover { color: var(--accent); }

.claim-card {
    background: linear-gradient(135deg, var(--ink) 0%, #1a1a1f 100%);
    color: var(--paper);
    border: 0;
    position: relative;
    overflow: hidden;
}
.claim-card::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(194,65,12,.35) 0%, transparent 65%);
    pointer-events: none;
}
.claim-card .card-title { color: var(--paper); position: relative; }
.claim-card p { color: rgba(250,248,242,.7); font-size: 13.5px; margin-bottom: 16px; position: relative; line-height: 1.55; }
.claim-card .btn-pro {
    background: var(--accent); color: var(--paper);
    width: 100%; position: relative; font-weight: 700;
}
.claim-card .btn-pro:hover { background: var(--paper); color: var(--accent); transform: translateY(-1px); }

.similar-list { list-style: none; display: flex; flex-direction: column; padding: 0; margin: 0; }
.similar-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.similar-list li:last-child { border: 0; padding-bottom: 0; }
.similar-list li:first-child { padding-top: 0; }
.similar-list a { display: flex; align-items: center; gap: 12px; width: 100%; }
.similar-list a:hover .biz-meta strong { color: var(--accent); }
.similar-list .mini-logo {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ink), #1a1a1f);
    color: var(--paper);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-weight: 600; font-style: italic; font-size: 18px;
    flex-shrink: 0; overflow: hidden;
}
.similar-list .mini-logo img { width: 100%; height: 100%; object-fit: cover; }
.similar-list .biz-meta { flex: 1; min-width: 0; }
.similar-list .biz-meta strong { display: block; font-size: 13.5px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color .15s; color: var(--ink); }
.similar-list .biz-meta span { font-size: 12px; color: var(--muted); }
.similar-list .mini-rating { font-size: 12.5px; font-weight: 700; flex-shrink: 0; display: inline-flex; align-items: center; gap: 3px; color: var(--ink); }
.similar-list .mini-rating svg { width: 11px; height: 11px; color: var(--gold); }
.similar-list .mini-rating.r5 svg { color: #16A34A; }
.similar-list .mini-rating.r4 svg { color: #84CC16; }
.similar-list .mini-rating.r3 svg { color: #EAB308; }
.similar-list .mini-rating.r2 svg { color: #F97316; }
.similar-list .mini-rating.r1 svg { color: #DC2626; }

/* ----- User profile ---------------------------------------------------- */
.user-hero {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 28px;
    align-items: center;
}
.user-hero .user-info h1 { font-family: var(--serif); font-size: 36px; font-weight: 500; letter-spacing: -.025em; line-height: 1.1; margin: 0 0 6px; color: var(--ink); }
.user-hero .user-meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 13.5px; }
.user-hero .user-meta .it { display: inline-flex; align-items: center; gap: 5px; }

/* ----- Form (write review) -------------------------------------------- */
.form-card {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
}
.form-card .lbl-pro { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.form-card .help-pro { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.form-card .field-pro { display: flex; flex-direction: column; margin-bottom: 22px; }
.form-card input[type=text], .form-card input[type=email], .form-card input[type=date], .form-card textarea, .form-card select {
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14.5px;
    background: var(--paper);
    color: var(--ink);
    transition: border-color .15s;
    width: 100%;
    line-height: 1.5;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus { border-color: var(--ink); outline: 0; background: var(--paper-pure); }
.form-card textarea { resize: vertical; min-height: 140px; }

/* Star rating input */
.star-input { display: inline-flex; gap: 8px; align-items: center; }
.star-input .star-btn {
    background: none; border: 0; cursor: pointer; padding: 4px;
    color: var(--line); transition: transform .1s;
}
.star-input .star-btn:hover { transform: scale(1.1); }
.star-input .star-btn svg { width: 32px; height: 32px; }
.star-input .star-btn.is-on { color: var(--gold); }
.star-input .star-btn.is-on.s1 { color: #DC2626; }
.star-input .star-btn.is-on.s2 { color: #F97316; }
.star-input .star-btn.is-on.s3 { color: #EAB308; }
.star-input .star-btn.is-on.s4 { color: #84CC16; }
.star-input .star-btn.is-on.s5 { color: #16A34A; }
.star-input .star-current { font-family: var(--serif); font-size: 32px; font-weight: 500; margin-left: 12px; color: var(--ink); min-width: 60px; }

/* Empty state */
.empty-box {
    text-align: center;
    padding: 60px 30px;
    background: var(--paper-pure);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}
.empty-box .emoji { font-size: 48px; margin-bottom: 14px; }
.empty-box h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin: 0 0 8px; color: var(--ink); }
.empty-box p { color: var(--muted); font-size: 14px; margin: 0; max-width: 460px; margin-left: auto; margin-right: auto; }

/* Pagination */
.pagination-pro { display: flex; gap: 6px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.pagination-pro .page-item, .pagination-pro .page-link {
    min-width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid var(--line); background: var(--paper-pure);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 13.5px; color: var(--ink-soft);
    padding: 0 12px; transition: all .15s;
}
.pagination-pro .page-item:hover { border-color: var(--ink); color: var(--ink); }
.pagination-pro .page-item.active, .pagination-pro li.active .page-link { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pagination-pro li.disabled .page-link { opacity: .4; pointer-events: none; }

/* Mobile menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: 280px; max-width: 100vw; height: 100%;
    background: var(--paper);
    border-left: 1px solid var(--line);
    z-index: 100;
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 18px;
    transition: right .3s ease;
    overflow-y: auto;
}
.mobile-menu.is-open { right: 0; box-shadow: var(--shadow-lg); }
.mobile-menu .close-btn { align-self: flex-end; padding: 8px; border-radius: 8px; cursor: pointer; background: var(--line-soft); border: 0; }
.mobile-menu a { font-weight: 600; font-size: 16px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.mobile-menu .btn-pro { margin-top: 8px; }
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(11,11,14,.4);
    opacity: 0; pointer-events: none;
    z-index: 99; transition: opacity .25s;
}
.mobile-overlay.is-open { opacity: 1; pointer-events: all; }

/* User menu dropdown */
.user-menu { position: relative; }
.user-menu-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px 8px 8px;
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 600; font-size: 13.5px; color: var(--ink);
    cursor: pointer; font-family: inherit;
}
.user-menu-toggle img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.user-menu-toggle:hover { border-color: var(--ink); }
.user-menu-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 200px;
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0; visibility: hidden;
    transform: translateY(-6px);
    transition: all .18s;
    z-index: 60;
}
.user-menu.open .user-menu-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.user-menu-dropdown a, .user-menu-dropdown button {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 8px;
    font-size: 13.5px; font-weight: 600;
    color: var(--ink); transition: background .15s;
    background: transparent; border: 0; width: 100%; text-align: left; cursor: pointer; font-family: inherit;
}
.user-menu-dropdown a:hover, .user-menu-dropdown button:hover { background: var(--line-soft); }
.user-menu-dropdown .danger { color: var(--red); }

/* Alerts (Laravel toastr already covers feedback) */
.alert-pro {
    padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 16px;
    font-size: 14px; border: 1px solid;
}
.alert-pro.success { background: var(--green-soft); border-color: rgba(31,122,77,.18); color: #0F4B30; }
.alert-pro.warning { background: var(--gold-soft); border-color: rgba(230,168,23,.25); color: #6B4A0F; }
.alert-pro.danger { background: #FEF2F2; border-color: rgba(185,28,28,.15); color: var(--red); }
.alert-pro.info { background: #EFF6FF; border-color: rgba(30,64,175,.15); color: #1E3A8A; }

/* ----- Responsive ------------------------------------------------------ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 54px; }
    .cat-grid { grid-template-columns: repeat(2,1fr); }
    .biz-grid { grid-template-columns: repeat(2,1fr); }
    .feed-grid { grid-template-columns: repeat(2,1fr); }
    .trust-strip { grid-template-columns: 1fr 1fr; }
    .trust-strip .it:nth-child(2) { border-right: 0; }
    .trust-strip .it:nth-child(1), .trust-strip .it:nth-child(2) { border-bottom: 1px solid var(--line); }
    /* trust-stats handled by auto-fit at any width */
}
@media (max-width: 960px) {
    .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 480px; }
    .band { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px; }
    .newsletter .wrap { grid-template-columns: 1fr; gap: 28px; }
    .newsletter h2 { font-size: 34px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    nav.primary { display: none; }
    .header-cta .menu-btn { display: inline-flex; }
    .header-cta .btn-pro:not(.menu-btn).btn-outline { display: none; }
    .s-head h2 { font-size: 30px; }
    .main-grid { grid-template-columns: 1fr; }
    .biz-hero { grid-template-columns: 90px 1fr; gap: 22px; padding: 30px; }
    .biz-logo { width: 90px; height: 90px; font-size: 44px; border-radius: 14px; }
    .biz-name { font-size: 32px; }
    .hero-actions { grid-column: 1 / -1; flex-direction: row; min-width: 0; }
    .hero-actions .btn-pro { flex: 1; }
    .rating-summary { grid-template-columns: 1fr; gap: 22px; }
    .insights-grid { grid-template-columns: 1fr; }
    .star-row.xl .star { width: 26px; height: 26px; }
    .user-hero { grid-template-columns: 80px 1fr; gap: 18px; padding: 26px; }
    .user-hero .user-info h1 { font-size: 26px; }
}
@media (max-width: 720px) {
    .filters { gap: 8px; padding: 12px 14px; }
    .filters .select-pro { flex: 1 1 130px; min-width: 0; }
    .chip { padding: 7px 12px; font-size: 12.5px; }
}
@media (max-width: 560px) {
    .wrap, .container-pro { padding: 0 18px; }
    .hero { padding: 48px 0 40px; }
    .hero h1 { font-size: 38px; }
    .hero p.sub { font-size: 15px; }
    .search-box { flex-direction: column; border-radius: var(--radius); padding: 8px; gap: 8px; }
    .search-box input { width: 100%; padding: 12px 16px; }
    .search-box button { width: 100%; }
    section.s { padding: 48px 0; }
    .cat-grid { grid-template-columns: 1fr; }
    .biz-grid { grid-template-columns: 1fr; }
    .feed-grid { grid-template-columns: 1fr; }
    .trust-strip { grid-template-columns: 1fr; }
    .trust-strip .it { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-strip .it:last-child { border-bottom: 0; }
    .band { padding: 36px 24px; }
    .band h2 { font-size: 28px; }
    .band-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .news-form { flex-direction: column; border-radius: var(--radius); padding: 8px; gap: 8px; }
    .news-form input { width: 100%; padding: 12px 16px; }
    .news-form button { width: 100%; border-radius: 999px; }
    .topbar { font-size: 11px; }
    .topbar .wrap span:nth-child(2) { display: none; }
    .header-cta .btn-pro:not(.menu-btn).btn-ghost { display: none; }
    .brand-logo { font-size: 24px; }
    .s-head h2 { font-size: 24px; }
    .biz-hero { padding: 24px; gap: 16px; grid-template-columns: 1fr; text-align: center; }
    .biz-hero::before, .biz-hero::after { display: none; }
    .biz-logo { margin: 0 auto; }
    .biz-rating-line { justify-content: center; }
    .biz-domain { justify-content: center; }
    .biz-name { font-size: 26px; }
    .crumb { padding: 16px 0 10px; font-size: 12px; }
    .card-pro { padding: 22px; }
    .card-title { font-size: 19px; }
    .review-item { padding: 22px; }
    .review-top { flex-wrap: wrap; }
    .review-rating-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; margin-top: 8px; }
    .review-item h3 { font-size: 18px; }
    .review-body { font-size: 14px; }
    .hero-actions { flex-direction: column; }
    .reviews-head { flex-direction: column; align-items: flex-start; gap: 8px; }
    .reviews-head h2 { font-size: 24px; }
    .filters .select-pro { flex: 1 1 100%; }
    .big-rating .score { font-size: 64px; }
    .big-rating .score .of { font-size: 22px; }
    header.site .wrap { gap: 12px; padding-top: 14px; padding-bottom: 14px; }
    .header-cta .btn-pro { padding: 9px 14px; font-size: 13px; }
    .user-hero { grid-template-columns: 1fr; text-align: center; gap: 12px; }
    .user-hero .avatar-pro.lg { margin: 0 auto; }
    .form-card { padding: 24px; }
    .star-input .star-btn svg { width: 28px; height: 28px; }
}
@media (max-width: 380px) {
    .biz-name { font-size: 22px; }
    .reviews-head h2 { font-size: 21px; }
    .star-row.lg .star { width: 20px; height: 20px; }
    .review-actions-row { flex-wrap: wrap; gap: 10px; }
}

/* Print */
@media print {
    .topbar, header.site, footer.site, .newsletter, .filters, .hero-actions, .react-btn, .share-icons { display: none !important; }
    body { background: white; }
}

/* =========================================================================
   POST-LAUNCH PATCHES " fixes for header, pagination, responsive, etc.
   ========================================================================= */

/* Remove any inherited margin/padding from html/body */
html, body { margin: 0 !important; padding: 0 !important; }
body { min-height: 100vh; display: flex; flex-direction: column; }
body > main, body > .wrap, body > section, body > footer { flex-shrink: 0; }
body > footer.site { margin-top: auto; }

/* Header sticky shouldn't leave gap above */
header.site { margin-top: 0 !important; }

/* Pagination " override Bootstrap defaults so it looks coherent */
.pagination-pro { margin: 30px 0 0; flex-wrap: wrap; }
.pagination-pro nav { width: 100%; display: flex; justify-content: center; }
.pagination-pro ul.pagination,
.pagination-pro .pagination {
    display: flex !important;
    gap: 6px;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination-pro .page-item {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    min-width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    display: inline-flex !important;
}
.pagination-pro .page-link {
    min-width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    border: 1px solid var(--line) !important;
    background: var(--paper-pure) !important;
    color: var(--ink-soft) !important;
    padding: 0 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    transition: all .15s !important;
    box-shadow: none !important;
    line-height: 1 !important;
}
.pagination-pro .page-item:hover .page-link,
.pagination-pro .page-link:hover {
    border-color: var(--ink) !important;
    color: var(--ink) !important;
    background: var(--paper) !important;
}
.pagination-pro .page-item.active .page-link {
    background: var(--ink) !important;
    color: var(--paper) !important;
    border-color: var(--ink) !important;
}
.pagination-pro .page-item.disabled .page-link {
    opacity: .4 !important;
    pointer-events: none !important;
}

/* Long domain / name overflow guards across cards */
.biz-card .b-info,
.biz-card .b-top,
.biz-card { min-width: 0; }
.biz-card .b-name,
.biz-card .b-domain,
.similar-list .biz-meta strong,
.similar-list .biz-meta span {
    word-break: break-word;
    overflow-wrap: anywhere;
}
.biz-card .b-domain {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* User menu name " hide on small screens */
.user-menu-name { display: inline-block; }
@media (max-width: 720px) {
    .user-menu-name { display: none; }
}

/* Force max-width on content sections so long words don't overflow */
.hero h1, .biz-name, .reviews-head h2, .review-item h3,
.feed-card h4, .card-title, footer.site, .newsletter,
main.wrap { max-width: 100%; overflow-wrap: anywhere; }

/* Make biz-grid columns wrap nicely on tablets when domains are wide */
@media (max-width: 1200px) and (min-width: 961px) {
    .biz-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Topbar " make tagline always shrink properly */
.topbar .wrap { flex-wrap: wrap; gap: 6px 12px; }
.topbar .wrap span { white-space: normal; overflow: hidden; text-overflow: ellipsis; }

/* Make header items shrinkable to prevent overflow */
header.site .wrap { flex-wrap: nowrap; min-width: 0; }
header.site .brand-logo { flex-shrink: 0; }
nav.primary { flex-wrap: wrap; min-width: 0; flex-shrink: 1; }
.header-cta { flex-shrink: 0; gap: 8px; }

/* Hide topbar if it's totally empty (all settings cleared) */
.topbar:empty, .topbar .wrap:empty { display: none; }

/* Fix breadcrumb wrap */
.crumb { word-break: break-word; min-width: 0; }
.crumb a, .crumb .current { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }

/* Main grid sidebar collapses gracefully on tablets */
@media (max-width: 1100px) {
    .main-grid { grid-template-columns: 1fr 300px; }
}
@media (max-width: 940px) {
    .main-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Business hero: prevent horizontal scroll */
.biz-hero { min-width: 0; flex-wrap: wrap; }
.biz-hero .biz-name { word-break: break-word; }
.biz-hero .biz-domain { flex-wrap: wrap; }

/* Trust-stats spacing fix on small screens */
.trust-stats .stat-val { font-variant-numeric: tabular-nums; word-break: break-word; }

/* Filter chips overflow horizontally on mobile rather than wrapping ugly */
@media (max-width: 600px) {
    .filters { overflow-x: auto; flex-wrap: nowrap; white-space: nowrap; padding: 12px; gap: 8px; }
    .filters > * { flex-shrink: 0; }
    .filters .filter-label { white-space: nowrap; }
}

/* Form responsiveness */
.form-card { max-width: 100%; overflow: hidden; }
.form-card input, .form-card textarea, .form-card select { max-width: 100%; box-sizing: border-box; }

/* Search box on mobile */
@media (max-width: 480px) {
    .hero { padding: 36px 0 32px; }
    .hero h1 { font-size: 32px; }
    .hero p.sub { font-size: 14px; }
}

/* SVG icon defaults */
svg { vertical-align: middle; }

/* Card padding on small screens */
@media (max-width: 480px) {
    .card-pro, .form-card { padding: 18px; }
    .review-item { padding: 18px; }
    .biz-hero { padding: 22px; }
    .trust-stat { padding: 16px 18px; }
}

/* Hero card avatar shouldn't be too wide on tablets */
.hero-card { max-width: 100%; }

/* Selectable button inside .filters when used as anchor */
.filters a.chip { text-decoration: none; }

/* Recently viewed / business-card domain shouldn't overflow even with extreme strings */
.biz-card .b-name { white-space: normal; line-height: 1.2; }
@supports (-webkit-line-clamp: 2) {
    .biz-card .b-name {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Empty state spacing */
.empty-box { margin: 24px 0; }

/* Top-level main wrap " ensure padding-bottom for sticky footer space */
main.wrap { padding-bottom: 40px; }

/* Avoid layout shift from sticky header on mobile */
@media (max-width: 560px) {
    header.site { position: static; }
}

/* Auth pages padding */
@media (max-width: 480px) {
    .form-card { padding: 22px 18px; }
}

/* Hero visual smaller breakpoint */
@media (max-width: 720px) {
    .hero-card { transform: rotate(0) !important; }
    .hero-card + .hero-card { transform: rotate(0) translateY(0) !important; margin-top: 14px; }
}

/* Sprite SVGs sized properly */
header.site svg, .btn-pro svg, .star svg, .verify-tick svg { width: 14px; height: 14px; }
.star-row .star svg, .star-row.lg .star svg, .star-row.xl .star svg { width: 100%; height: 100%; }
.btn-pro.btn-lg svg { width: 16px; height: 16px; }
.review-foot .date svg, .react-btn svg, .share-icons svg, .reviewer-line svg { width: 14px; height: 14px; }

/* Nav dropdown hover state */
.nav-drop:hover .nav-drop-menu { opacity: 1 !important; visibility: visible !important; }
.nav-drop-menu a:hover { background: var(--line-soft); }

/* =========================================================================
   COMPONENT EXTENSIONS " categories grid, listing sidebar, discover cards
   ========================================================================= */

/* ----- Categories grid (with sub-categories listed inside each card) ----- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    align-items: stretch;
}
@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
.category-card {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    transition: all .25s;
}
.category-card:hover { border-color: var(--ink-soft); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.category-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
}
.category-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FCE7D6, #FDF1E7);
    overflow: hidden;
}
.category-icon img { width: 32px; height: 32px; object-fit: contain; }
.category-icon.c1 { background: linear-gradient(135deg, #FCE7D6, #FDF1E7); }
.category-icon.c2 { background: linear-gradient(135deg, #E8F5EE, #D1FAE5); }
.category-icon.c3 { background: linear-gradient(135deg, #DBEAFE, #E0E7FF); }
.category-icon.c4 { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.category-icon.c5 { background: linear-gradient(135deg, #F3E8FF, #E9D5FF); }
.category-icon.c6 { background: linear-gradient(135deg, #FFE4E6, #FECDD3); }
.category-icon.c7 { background: linear-gradient(135deg, #CCFBF1, #A7F3D0); }
.category-icon.c8 { background: linear-gradient(135deg, #FED7AA, #FDBA74); }
.category-icon.c9 { background: linear-gradient(135deg, #E0E7FF, #C7D2FE); }
.category-meta { min-width: 0; flex: 1; }
.category-meta h3 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -.015em;
    margin: 0 0 4px;
    color: var(--ink);
}
.category-meta span { color: var(--muted); font-size: 12.5px; font-weight: 600; }
.category-subs {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.category-subs li { }
.category-subs a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: all .12s;
}
.category-subs a:hover {
    background: var(--line-soft);
    color: var(--accent);
    padding-left: 16px;
}
.category-subs a i { font-size: 11px; color: var(--muted); }
.category-foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--ink);
    transition: color .15s;
}
.category-foot:hover { color: var(--accent); }
.category-foot i { transition: transform .15s; }
.category-foot:hover i { transform: translateX(4px); }

/* ----- Listing grid with left sidebar ----- */
.listing-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    margin-bottom: 60px;
}
.listing-aside { position: sticky; top: 90px; align-self: start; max-height: calc(100vh - 110px); overflow-y: auto; }
.listing-main { min-width: 0; }
.listing-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px; gap: 14px; flex-wrap: wrap;
}
.listing-count {
    font-family: var(--serif); font-size: 22px; font-weight: 500;
    letter-spacing: -.015em; color: var(--ink);
}
.filter-toggle { display: none !important; }
.listing-biz-grid { grid-template-columns: repeat(2, 1fr); }

/* Filter cards */
.filter-card {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 14px;
}
.filter-h {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin: 0 0 12px;
}
.filter-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    transition: border-color .15s;
}
.filter-search:focus-within { border-color: var(--ink); background: var(--paper-pure); }
.filter-search i { color: var(--muted); }
.filter-search input {
    flex: 1; border: 0; background: transparent; outline: none;
    font-family: inherit; font-size: 13.5px; color: var(--ink); min-width: 0;
}
.filter-select {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--line); border-radius: 12px;
    font-family: inherit; font-size: 13.5px; color: var(--ink);
    background: var(--paper); appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l4 4 4-4' stroke='%236B6B73' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.filter-select:hover, .filter-select:focus { border-color: var(--ink); }
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-check {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 4px;
    cursor: pointer; user-select: none;
    border-radius: 8px;
    transition: background .12s;
}
.filter-check:hover { background: var(--line-soft); }
.filter-check input[type=checkbox] {
    width: 16px; height: 16px;
    accent-color: var(--accent);
    margin: 0;
}
.filter-check-label { font-size: 13.5px; color: var(--ink-soft); flex: 1; }
.filter-check .star-row { font-size: 0; }
.filter-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.filter-cat-list a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 10px; border-radius: 8px;
    font-size: 13px; color: var(--ink-soft); font-weight: 500;
    transition: all .12s;
}
.filter-cat-list a:hover { background: var(--line-soft); color: var(--accent); padding-left: 14px; }
.filter-cat-list a i { font-size: 11px; color: var(--muted); }

/* ----- Discover section cards ----- */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}
.discover-card {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.discover-card:hover { border-color: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.discover-card-1 { grid-column: span 5; }
.discover-card-2 { grid-column: span 7; }
.discover-card-3 { grid-column: span 12; background: linear-gradient(135deg, var(--ink) 0%, #1a1a1f 100%); color: var(--paper); border: 0; padding: 36px 40px; }
.discover-card-3:hover { transform: none; }
.discover-card-3::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(194,65,12,.18) 0%, transparent 60%);
    pointer-events: none;
}
.discover-card-3-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; }
.discover-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-soft);
    background: var(--line-soft);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.discover-eyebrow.accent {
    color: var(--accent);
    background: var(--accent-soft);
}
.discover-card-3 .discover-eyebrow {
    color: var(--gold);
    background: rgba(230,168,23,.15);
}
.discover-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin: 0 0 12px;
    color: inherit;
}
.discover-card-3 .discover-title { font-size: 32px; }
.discover-text { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; }
.discover-card-3 .discover-text { color: rgba(250,248,242,.75); font-size: 15px; }
.discover-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--line);
}
.discover-stats div { display: flex; flex-direction: column; }
.discover-stats strong {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -.02em;
    color: var(--accent);
}
.discover-stats span { font-size: 12px; color: var(--muted); font-weight: 600; }
.discover-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.discover-bigstat { display: flex; flex-direction: column; gap: 18px; }
.bigstat-num {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1;
    color: var(--gold);
}
.bigstat-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(250,248,242,.6);
    margin-top: 6px;
}

/* Responsive: discover */
@media (max-width: 960px) {
    .discover-grid { grid-template-columns: 1fr; }
    .discover-card-1, .discover-card-2, .discover-card-3 { grid-column: span 1; }
    .discover-card-3-inner { grid-template-columns: 1fr; gap: 24px; }
    .discover-card-3 .discover-title { font-size: 26px; }
}

/* Responsive: listing grid */
@media (max-width: 1024px) {
    .listing-grid { grid-template-columns: 240px 1fr; gap: 22px; }
}
@media (max-width: 880px) {
    .listing-grid { grid-template-columns: 1fr; }
    .listing-aside {
        position: fixed;
        top: 0; right: -100%;
        width: 320px; max-width: 100vw;
        height: 100vh;
        background: var(--paper);
        z-index: 100;
        padding: 60px 20px 30px;
        overflow-y: auto;
        transition: right .3s ease;
        box-shadow: var(--shadow-lg);
        max-height: 100vh;
    }
    .listing-aside.is-open { right: 0; }
    .filter-toggle { display: inline-flex !important; }
    .listing-biz-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .category-grid { grid-template-columns: 1fr; }
}

/* User profile: ensure review container responsive */
.user-hero { min-width: 0; }
.user-hero .user-info h1 { word-break: break-word; }
.user-hero .user-meta { word-break: break-word; }

/* Review item responsive polish */
@media (max-width: 720px) {
    .review-item { padding: 20px; }
    .review-top { gap: 12px; }
    .review-rating-right { margin-top: 0 !important; flex-direction: column !important; align-items: flex-end !important; width: auto !important; }
    .review-item h3 { font-size: 18px; }
    .review-item .reviewer-meta { font-size: 12px; }
}
@media (max-width: 480px) {
    .review-top { flex-wrap: wrap; }
    .review-rating-right { width: 100% !important; flex-direction: row !important; justify-content: flex-start !important; }
    .review-foot { gap: 10px; }
    .review-foot .date { font-size: 12px; }
    .review-actions-row { gap: 8px; flex-wrap: wrap; }
    .biz-response { padding: 14px; font-size: 13px; }
}

/* Trust-stats inside business hero " stricter responsive */
.trust-stat .stat-val { line-height: 1.1; word-break: break-word; }

/* Page prose styles (privacy, terms, etc.) */
.page-prose h1, .page-prose h2, .page-prose h3, .page-prose h4 {
    font-family: var(--serif); font-weight: 500; letter-spacing: -.015em;
    color: var(--ink); margin-top: 1.5em; margin-bottom: .5em; line-height: 1.25;
}
.page-prose h1 { font-size: 32px; }
.page-prose h2 { font-size: 26px; }
.page-prose h3 { font-size: 21px; }
.page-prose h4 { font-size: 18px; }
.page-prose p, .page-prose ul, .page-prose ol { margin-bottom: 1em; color: var(--ink-soft); }
.page-prose ul, .page-prose ol { padding-left: 1.5em; }
.page-prose ul li, .page-prose ol li { margin-bottom: .35em; }
.page-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.page-prose a:hover { color: var(--accent-dark); }
.page-prose blockquote {
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
    padding: 14px 20px;
    margin: 1.25em 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--ink-soft);
    font-style: italic;
}
.page-prose img { border-radius: var(--radius-sm); margin: 1em 0; max-width: 100%; height: auto; }
.page-prose hr { border: 0; border-top: 1px solid var(--line); margin: 1.5em 0; }
.page-prose table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.page-prose th, .page-prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.page-prose th { background: var(--line-soft); font-weight: 700; }

/* Listing aside scrollbar */
.listing-aside::-webkit-scrollbar { width: 6px; }
.listing-aside::-webkit-scrollbar-track { background: transparent; }
.listing-aside::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.listing-aside::-webkit-scrollbar-thumb:hover { background: var(--muted-soft); }

/* User-menu name visibility helper */
@media (max-width: 880px) {
    .header-business { display: none; }
    .header-signin { padding: 9px 14px; }
}

/* =========================================================================
   AUTH PAGES " polish for login/register/password
   ========================================================================= */
body.auth-page main.wrap { padding-top: 40px; padding-bottom: 80px; }
.auth-card {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 480px) { .auth-card { padding: 28px 22px; } }

/* Auth form-card styling */
.form-card .field-pro input[type=text],
.form-card .field-pro input[type=email],
.form-card .field-pro input[type=password],
.form-card .field-pro input[type=date],
.form-card .field-pro input[type=search],
.form-card .field-pro input[type=tel],
.form-card .field-pro select,
.form-card .field-pro textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    font-family: inherit;
    font-size: 14.5px;
    transition: border-color .15s, background .15s;
    box-sizing: border-box;
    outline: none;
}
.form-card .field-pro input:focus,
.form-card .field-pro select:focus,
.form-card .field-pro textarea:focus {
    border-color: var(--ink);
    background: var(--paper-pure);
}
.form-card .field-pro label.lbl-pro {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink);
    margin-bottom: 8px;
}
.form-card .field-pro { margin-bottom: 16px; }
.form-card .field-pro:last-of-type { margin-bottom: 22px; }

/* =========================================================================
   REVIEW ITEM " robust responsive layout for variable-length content
   ========================================================================= */
.review-item {
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}
.review-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.review-top .reviewer { min-width: 0; }
.review-top .reviewer-line { flex-wrap: wrap; min-width: 0; }
.review-top .reviewer-name { word-break: break-word; }
.review-top .reviewer-meta { word-break: break-word; flex-wrap: wrap; }
.review-rating-right {
    align-items: flex-end;
    flex-shrink: 0;
}
.review-item h3 {
    word-break: break-word;
    overflow-wrap: anywhere;
}
.review-body {
    word-break: break-word;
    overflow-wrap: anywhere;
}
.review-body p { margin: 0 0 .8em; }
.review-body p:last-child { margin-bottom: 0; }
.review-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; word-break: break-all; }

.review-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin: 14px 0 18px;
}
.review-images > div {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--line-soft);
}
.review-images img {
    width: 100%; height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform .15s;
    display: block;
}
.review-images img:hover { transform: scale(1.04); }

@media (max-width: 720px) {
    .review-top { grid-template-columns: auto 1fr; }
    .review-top .review-rating-right {
        grid-column: 1 / -1;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        margin-top: 4px;
    }
}
@media (max-width: 480px) {
    .review-top { gap: 10px; }
    .review-item { padding: 18px; }
    .review-images { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 6px; }
    .review-tags { gap: 5px; }
    .review-tag { font-size: 11px; padding: 3px 8px; }
}

/* =========================================================================
   CATEGORIES GRID polish (avoid one-by-one on tablets)
   ========================================================================= */
.category-card {
    min-width: 0;
    overflow: hidden;
}
.category-card .category-subs a { white-space: normal; word-break: break-word; }
.category-card .category-meta h3 { word-break: break-word; }
@media (max-width: 480px) {
    .category-card { padding: 18px; }
    .category-icon { width: 48px; height: 48px; }
    .category-icon img { width: 28px; height: 28px; }
    .category-meta h3 { font-size: 17px; }
}

/* =========================================================================
   GLOBAL " long-content safety
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
img, svg, video { max-width: 100%; }

/* Force wrap on extremely long inline strings everywhere */
.reviewer-meta span,
.b-domain, .b-name,
.review-body, .review-tag,
.similar-list .biz-meta { overflow-wrap: anywhere; word-break: break-word; }

/* Override Cloudflare email-protection inline span to stay readable */
.__cf_email__, .cf_email { word-break: break-all; }

/* Star row alignment safety */
.star-row { vertical-align: middle; flex-wrap: nowrap; }
.star-row .star { vertical-align: middle; }

/* =========================================================================
   v2 REVIEW ITEM " bulletproof grid layout (replaces older review-item rules)
   ========================================================================= */
.review-item {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 28px;
    margin-bottom: 18px;
    transition: border-color .2s, box-shadow .2s;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}
.review-item:hover { border-color: var(--ink-soft); box-shadow: var(--shadow-md); }

.review-item .review-of {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 12px;
}
.review-item .review-of a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-item .review-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.review-item .review-author {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-width: 0;
}
.review-item .review-author-info { min-width: 0; flex: 1; }
.review-item .review-author-name {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.3;
}
.review-item .review-author-name a { color: var(--ink); transition: color .15s; }
.review-item .review-author-name a:hover { color: var(--accent); }
.review-item .review-author-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
    font-size: 12.5px;
    color: var(--muted);
}
.review-item .review-author-meta span { white-space: nowrap; }

.review-item .review-stars-block { flex-shrink: 0; }

.review-item .review-title {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -.015em;
    line-height: 1.3;
    margin: 0 0 12px;
    color: var(--ink);
}
.review-item .review-title a { color: var(--ink); }
.review-item .review-title a:hover { color: var(--accent); }

.review-item .review-body {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.review-item .review-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; word-break: break-all; }

.review-item .review-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
    margin: 0 0 16px;
}
.review-item .review-image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--line-soft);
}
.review-item .review-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
    transition: transform .2s;
}
.review-item .review-image-wrap img:hover { transform: scale(1.04); }
.review-item .review-image-remove-form { position: absolute; top: 6px; right: 6px; z-index: 2; }
.review-item .review-image-remove {
    background: rgba(11,11,14,.85);
    color: #fff;
    border: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}

.review-item .review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
}
.review-item .review-footer-meta { font-size: 13px; color: var(--muted); }
.review-item .review-date { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.review-item .review-date svg { color: var(--muted-soft); }

.review-item .review-footer-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.review-item .review-footer-actions .link-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background .12s, color .12s;
}
.review-item .review-footer-actions .link-btn:hover { color: var(--accent); background: var(--accent-soft); }
.review-item .review-footer-actions .link-btn.link-btn-danger:hover { color: var(--red); background: #FEF2F2; }

.review-item .share-icons {
    display: inline-flex; gap: 6px; align-items: center;
}
.review-item .share-icons a, .review-item .copy-link-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--line-soft);
    color: var(--ink-soft);
    transition: all .2s;
    border: 0;
    cursor: pointer;
    padding: 0;
}
.review-item .share-icons a:hover, .review-item .copy-link-btn:hover {
    background: var(--ink); color: var(--paper); transform: translateY(-2px);
}
.review-item .copy-link-btn.copied { background: var(--green); color: #fff; }
.review-item .share-icons svg, .review-item .copy-link-btn svg { width: 13px; height: 13px; }

.review-item .review-report-collapse { margin-top: 12px; }
.review-item .review-report-collapse form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}
.review-item .review-report-collapse .lbl-pro {
    display: block;
    font-size: 12px; font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.review-item .review-report-collapse textarea {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    background: var(--paper-pure);
    font-family: inherit; font-size: 14px; color: var(--ink);
    outline: none; resize: vertical; min-height: 60px;
}
.review-item .review-report-collapse textarea:focus { border-color: var(--ink); }

.review-item .biz-response {
    margin-top: 16px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, #FCE7D6 100%);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.review-item .biz-response-head {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 8px; font-size: 12.5px;
    flex-wrap: wrap;
}
.review-item .biz-response-head strong { color: var(--accent-dark); font-weight: 700; }
.review-item .biz-response-head .reply-time { color: var(--muted); }
.review-item .biz-response-head .biz-tag {
    background: var(--accent);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.review-item .biz-response-body { word-break: break-word; overflow-wrap: anywhere; }
.review-item .biz-response-body p { margin: 0 0 .7em; }
.review-item .biz-response-body p:last-child { margin-bottom: 0; }

/* Badges */
.badge-pro {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em;
    border: 1px solid transparent;
}
.badge-pro.badge-danger { background: #FEF2F2; color: var(--red); border-color: rgba(185,28,28,.18); }
.badge-pro.badge-warn { background: var(--gold-soft); color: #6B4A0F; border-color: rgba(230,168,23,.3); }
.badge-pro.badge-gold {
    background: linear-gradient(135deg, var(--gold-soft), #F8E8B8);
    color: #92651A;
    border-color: rgba(230,168,23,.3);
}

/* Review item " mobile */
@media (max-width: 720px) {
    .review-item { padding: 22px; }
    .review-item .review-header { grid-template-columns: 1fr; }
    .review-item .review-stars-block { justify-self: flex-start; }
    .review-item .review-title { font-size: 19px; }
}
@media (max-width: 480px) {
    .review-item { padding: 18px; }
    .review-item .review-author { gap: 10px; }
    .review-item .avatar-pro { width: 38px; height: 38px; font-size: 14px; }
    .review-item .review-author-name { font-size: 14px; }
    .review-item .review-images { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 6px; }
    .review-item .review-footer-actions .link-btn { padding: 6px 9px; font-size: 12px; }
    .review-item .share-icons a, .review-item .copy-link-btn { width: 26px; height: 26px; }
}

/* =========================================================================
   v2 WRITE REVIEW " better visibility + tips block
   ========================================================================= */
.write-review-card { padding: 36px 40px; max-width: 760px; margin: 0 auto; }
.write-review-intro { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 26px; }
.write-review-title {
    font-family: var(--serif); font-size: 28px; font-weight: 500;
    letter-spacing: -.02em; line-height: 1.2;
    margin: 0 0 8px; color: var(--ink);
}
.write-review-subtitle { color: var(--muted); font-size: 14.5px; margin: 0 0 16px; line-height: 1.6; }
.write-review-tips {
    background: var(--accent-soft);
    border: 1px solid rgba(194,65,12,.18);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 13.5px; color: var(--ink-soft); line-height: 1.6;
}
.write-review-tips strong {
    display: block;
    color: var(--accent-dark); font-weight: 700;
    margin-bottom: 6px; font-size: 13px;
    text-transform: uppercase; letter-spacing: .04em;
}
.write-review-tips ul { margin: 0; padding-left: 18px; }
.write-review-tips li { margin: 2px 0; }

.write-review-card .field-pro { margin-bottom: 20px; }
.write-review-card .field-pro:last-of-type { margin-bottom: 28px; }
.write-review-card .star-input {
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex; gap: 10px; align-items: center;
}
.write-review-card .star-input .star-btn svg { width: 36px; height: 36px; }
.write-review-card .star-current {
    margin-left: 16px;
    font-family: var(--serif);
    font-size: 24px; font-weight: 500;
    color: var(--ink);
}
.write-review-card input[type=file] {
    padding: 12px 14px;
    border: 1.5px dashed var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}
.write-review-card input[type=file]:hover { border-color: var(--ink-soft); }

@media (max-width: 560px) {
    .write-review-card { padding: 24px 22px; }
    .write-review-title { font-size: 22px; }
    .write-review-card .star-input { flex-wrap: wrap; padding: 14px; }
    .write-review-card .star-input .star-btn svg { width: 32px; height: 32px; }
    .write-review-card .star-current { margin-left: 8px; font-size: 20px; }
}

/* =========================================================================
   BIZ-CARD foot " bulletproof tag + location layout
   ========================================================================= */
.biz-card .b-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
    margin-top: auto;
    min-width: 0;
}
.biz-card .b-foot > .b-tag,
.biz-card .b-foot > .b-loc {
    max-width: calc(50% - 4px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.biz-card .b-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 3px 9px;
    border-radius: 6px;
    flex-shrink: 0;
}
.biz-card .b-loc {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 1;
    min-width: 0;
}
.biz-card .b-loc i { flex-shrink: 0; }
@media (max-width: 480px) {
    .biz-card .b-foot { gap: 6px; }
    .biz-card .b-foot > .b-tag,
    .biz-card .b-foot > .b-loc { max-width: 100%; }
}

/* =========================================================================
   v3 REVIEW BOX " exact match to UI demo + bulletproof mobile/desktop
   This block is loaded LAST so it overrides any earlier .review-item / .pro-review rules.
   ========================================================================= */

/* Ensure the parent grid item never expands beyond viewport */
.main-grid { min-width: 0; }
.main-grid > section,
.main-grid > div,
.main-grid > aside { min-width: 0; max-width: 100%; }

/* Demo-spec review container */
.pro-review {
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 30px;
    margin-bottom: 18px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    position: relative;
    min-width: 0;
    max-width: 100%;
    /* Critical: kill horizontal overflow even with long unbreakable strings */
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
}
.pro-review:hover {
    border-color: var(--ink-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.pro-review * { min-width: 0; max-width: 100%; }
.pro-review img { max-width: 100%; height: auto; }

.pro-review .review-of {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0 0 14px;
}
.pro-review .review-of a {
    color: var(--ink); font-weight: 700;
    text-decoration: underline; text-underline-offset: 3px;
}

.pro-review .review-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
    min-width: 0;
}
.pro-review .avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    color: var(--paper);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 17px;
    flex-shrink: 0;
    letter-spacing: -.02em;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #C2410C, #7C2D12);
}
.pro-review .avatar img { width: 100%; height: 100%; object-fit: cover; }
.pro-review .avatar.b1 { background: linear-gradient(135deg, #C2410C, #7C2D12); }
.pro-review .avatar.b2 { background: linear-gradient(135deg, #1F7A4D, #064E3B); }
.pro-review .avatar.b3 { background: linear-gradient(135deg, #1E40AF, #1E3A8A); }
.pro-review .avatar.b4 { background: linear-gradient(135deg, #6D28D9, #4C1D95); }
.pro-review .avatar.b5 { background: linear-gradient(135deg, #B45309, #78350F); }

.pro-review .reviewer {
    flex: 1; min-width: 0;
    overflow: hidden;
}
.pro-review .reviewer-line {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}
.pro-review .reviewer-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    transition: color .15s;
    word-break: break-word;
}
.pro-review a.reviewer-name:hover { color: var(--accent); }
.pro-review .reviewer-meta {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pro-review .reviewer-meta .dot-sep { color: var(--muted-soft); }
.pro-review .reviewer-meta .country { font-weight: 600; }
.pro-review .reviewer-meta a { color: inherit; }

.pro-review .review-rating-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.pro-review h3 {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -.015em;
    margin: 0 0 12px;
    line-height: 1.3;
    color: var(--ink);
    word-break: break-word;
    overflow-wrap: anywhere;
}
.pro-review h3 a { color: inherit; }
.pro-review h3 a:hover { color: var(--accent); }

.pro-review .review-body {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 18px;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.pro-review .review-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
    overflow-wrap: anywhere;
}
.pro-review .review-body p { margin: 0 0 .7em; }
.pro-review .review-body p:last-child { margin-bottom: 0; }
.pro-review .review-body br { display: block; content: ""; margin-top: .4em; }

.pro-review .review-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
    margin: 0 0 18px;
}
.pro-review .review-image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--line-soft);
}
.pro-review .review-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
    transition: transform .2s;
}
.pro-review .review-image-wrap img:hover { transform: scale(1.04); }
.pro-review .review-image-remove-form { position: absolute; top: 6px; right: 6px; z-index: 2; margin: 0; }
.pro-review .review-image-remove {
    background: rgba(11,11,14,.85);
    color: #fff;
    border: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}

.pro-review .review-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 12px;
}
.pro-review .review-foot .date {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.pro-review .review-foot .date svg { width: 13px; height: 13px; color: var(--muted-soft); }

.pro-review .review-actions {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}
.pro-review .review-actions .link-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background .12s, color .12s;
}
.pro-review .review-actions .link-btn:hover { color: var(--accent); background: var(--accent-soft); }
.pro-review .review-actions .link-btn.link-btn-danger:hover { color: var(--red); background: #FEF2F2; }

.pro-review .share-icons {
    display: inline-flex; gap: 6px; align-items: center;
}
.pro-review .share-icons a, .pro-review .copy-link-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--line-soft);
    color: var(--ink-soft);
    transition: all .2s;
    border: 0;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.pro-review .share-icons a:hover, .pro-review .copy-link-btn:hover {
    background: var(--ink); color: var(--paper); transform: translateY(-2px);
}
.pro-review .copy-link-btn.copied { background: var(--green); color: #fff; }
.pro-review .share-icons svg, .pro-review .copy-link-btn svg { width: 13px; height: 13px; }

.pro-review .review-report-collapse { margin-top: 12px; }
.pro-review .review-report-collapse form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}
.pro-review .review-report-collapse .lbl-pro {
    display: block;
    font-size: 12px; font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.pro-review .review-report-collapse textarea {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    background: var(--paper-pure);
    font-family: inherit; font-size: 14px; color: var(--ink);
    outline: none; resize: vertical; min-height: 60px;
}
.pro-review .review-report-collapse textarea:focus { border-color: var(--ink); }

.pro-review .biz-response {
    margin-top: 16px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, #FCE7D6 100%);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    word-break: break-word;
    overflow-wrap: anywhere;
}
.pro-review .biz-response-head {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 8px; font-size: 12.5px;
    flex-wrap: wrap;
}
.pro-review .biz-response-head strong { color: var(--accent-dark); font-weight: 700; }
.pro-review .biz-response-head .reply-time { color: var(--muted); }
.pro-review .biz-response-head .biz-tag {
    background: var(--accent);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.pro-review .biz-response-body p { margin: 0 0 .7em; }
.pro-review .biz-response-body p:last-child { margin-bottom: 0; }

/* Mobile review polish */
@media (max-width: 720px) {
    .pro-review { padding: 22px; }
}
@media (max-width: 560px) {
    .pro-review { padding: 20px 18px; }
    .pro-review .review-top {
        flex-wrap: wrap;
    }
    .pro-review .review-rating-right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        margin-top: 8px;
        order: 99;
    }
    .pro-review .reviewer { flex-basis: 0; flex: 1; }
    .pro-review h3 { font-size: 18px; }
    .pro-review .review-body { font-size: 14px; }
    .pro-review .review-images { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 6px; }
    .pro-review .review-actions .link-btn { padding: 6px 9px; font-size: 12px; }
    .pro-review .share-icons a, .pro-review .copy-link-btn { width: 26px; height: 26px; }
    .pro-review .review-foot .date { font-size: 12px; }
}
@media (max-width: 380px) {
    .pro-review { padding: 16px 14px; }
    .pro-review .avatar { width: 40px; height: 40px; font-size: 14px; }
    .pro-review h3 { font-size: 16px; }
    .pro-review .reviewer-name { font-size: 14px; }
}

/* Cloudflare email-protection inline element protection */
.pro-review .__cf_email__,
.pro-review .cf_email,
.__cf_email__ {
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    display: inline-block;
    max-width: 100%;
}

/* Last-ditch overflow guard on all review descendants */
.pro-review p, .pro-review a, .pro-review span, .pro-review div { max-width: 100%; }

/* Hide the old .review-item rules silently " partial no longer uses that class */


/* =========================================================================
   FLAG IMAGES (used in reviews & feed cards)
   ========================================================================= */
.flag-img {
    display: inline-block;
    width: 18px; height: 13px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(11,11,14,.08);
    vertical-align: -2px;
    margin-right: 4px;
}

/* =========================================================================
   HELPFUL / USEFUL button (Livewire review-likes restyle)
   ========================================================================= */
.pro-review .review-actions .item-review-action,
.pro-review .review-actions button.btn,
.pro-review .review-actions [wire\:click] {
    all: unset;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--paper);
    border: 1px solid var(--line) !important;
    cursor: pointer;
    transition: all .15s;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
}
.pro-review .review-actions .item-review-action:hover,
.pro-review .review-actions button.btn:hover,
.pro-review .review-actions [wire\:click]:hover {
    color: var(--accent);
    border-color: var(--accent) !important;
    background: var(--accent-soft) !important;
    transform: translateY(-1px);
}
.pro-review .review-actions .item-review-action.active,
.pro-review .review-actions .item-review-action.liked {
    color: var(--accent);
    border-color: var(--accent) !important;
    background: var(--accent-soft) !important;
}
.pro-review .review-actions .item-review-action i { font-size: 14px; }

/* =========================================================================
   DARK MODE
   ========================================================================= */
html[data-pro-theme="dark"] {
    color-scheme: dark;
    --ink: #F5F2EA;
    --ink-soft: #C5C2B8;
    --muted: #8B8B95;
    --muted-soft: #6A6A72;
    --line: #2A2A30;
    --line-soft: #1F1F25;
    --paper: #0F0F12;
    --paper-pure: #18181C;
    --accent-soft: #2B1810;
    --gold-soft: #2A2110;
    --green-soft: #0E2F1D;
}
html[data-pro-theme="dark"] body { background: #0F0F12; color: #E6E3DC; }
html[data-pro-theme="dark"] header.site { background: rgba(15,15,18,.88); border-bottom-color: #2A2A30; }
html[data-pro-theme="dark"] .topbar { background: #000; }
html[data-pro-theme="dark"] .brand-logo { color: #F5F2EA; }
html[data-pro-theme="dark"] .btn-pro.btn-primary { background: #F5F2EA; color: #0F0F12; }
html[data-pro-theme="dark"] .btn-pro.btn-primary:hover { background: var(--accent); color: #F5F2EA; }
html[data-pro-theme="dark"] .btn-pro.btn-outline { border-color: #F5F2EA; color: #F5F2EA; }
html[data-pro-theme="dark"] .btn-pro.btn-outline:hover { background: #F5F2EA; color: #0F0F12; }
html[data-pro-theme="dark"] .biz-card,
html[data-pro-theme="dark"] .feed-card,
html[data-pro-theme="dark"] .pro-review,
html[data-pro-theme="dark"] .card-pro,
html[data-pro-theme="dark"] .form-card,
html[data-pro-theme="dark"] .filter-card,
html[data-pro-theme="dark"] .category-card,
html[data-pro-theme="dark"] .discover-card,
html[data-pro-theme="dark"] .trust-strip,
html[data-pro-theme="dark"] .trust-stats { background: #18181C; border-color: #2A2A30; }
html[data-pro-theme="dark"] section.s.alt { background: #18181C; border-color: #2A2A30; }
html[data-pro-theme="dark"] .search-box { background: #18181C; border-color: #2A2A30; }
html[data-pro-theme="dark"] .search-box input { color: #F5F2EA; }
html[data-pro-theme="dark"] .search-box input::placeholder { color: #6A6A72; }
html[data-pro-theme="dark"] .filter-search { background: #1F1F25; border-color: #2A2A30; }
html[data-pro-theme="dark"] .filter-search input { color: #F5F2EA; }
html[data-pro-theme="dark"] .filter-select,
html[data-pro-theme="dark"] .select-pro,
html[data-pro-theme="dark"] .form-card input,
html[data-pro-theme="dark"] .form-card select,
html[data-pro-theme="dark"] .form-card textarea { background: #1F1F25; border-color: #2A2A30; color: #F5F2EA; }
html[data-pro-theme="dark"] .chip { background: #1F1F25; border-color: #2A2A30; color: #F5F2EA; }
html[data-pro-theme="dark"] .chip.active { background: #F5F2EA; color: #0F0F12; border-color: #F5F2EA; }
html[data-pro-theme="dark"] .pagination-pro .page-link { background: #1F1F25 !important; border-color: #2A2A30 !important; color: #C5C2B8 !important; }
html[data-pro-theme="dark"] .pagination-pro .page-item.active .page-link { background: #F5F2EA !important; color: #0F0F12 !important; border-color: #F5F2EA !important; }
html[data-pro-theme="dark"] footer.site { background: #0F0F12; border-top-color: #2A2A30; }
html[data-pro-theme="dark"] .footer-col h4 { color: #F5F2EA; }
html[data-pro-theme="dark"] .footer-socials a { background: #18181C; border-color: #2A2A30; color: #C5C2B8; }
html[data-pro-theme="dark"] .footer-socials a:hover { background: #F5F2EA; color: #0F0F12; }
html[data-pro-theme="dark"] .mobile-menu { background: #0F0F12; border-left-color: #2A2A30; }
html[data-pro-theme="dark"] .pro-review .review-actions .item-review-action,
html[data-pro-theme="dark"] .pro-review .review-actions button.btn { background: #1F1F25 !important; border-color: #2A2A30 !important; color: #C5C2B8 !important; }
html[data-pro-theme="dark"] .user-menu-toggle { background: #18181C; border-color: #2A2A30; color: #F5F2EA; }
html[data-pro-theme="dark"] .user-menu-dropdown { background: #18181C; border-color: #2A2A30; }
html[data-pro-theme="dark"] .user-menu-dropdown a:hover, html[data-pro-theme="dark"] .user-menu-dropdown button:hover { background: #2A2A30; }
html[data-pro-theme="dark"] .share-icons a, html[data-pro-theme="dark"] .copy-link-btn { background: #2A2A30; color: #C5C2B8; }

/* Dark-mode toggle button */
.theme-toggle-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    display: inline-flex;
    align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .15s;
    flex-shrink: 0;
}
.theme-toggle-btn:hover { background: var(--line-soft); border-color: var(--ink-soft); }
.theme-toggle-btn svg { width: 18px; height: 18px; }
.theme-toggle-btn .icon-sun { display: none; }
.theme-toggle-btn .icon-moon { display: block; }
html[data-pro-theme="dark"] .theme-toggle-btn .icon-sun { display: block; }
html[data-pro-theme="dark"] .theme-toggle-btn .icon-moon { display: none; }
html[data-pro-theme="dark"] .theme-toggle-btn { border-color: #2A2A30; color: #F5F2EA; }
html[data-pro-theme="dark"] .theme-toggle-btn:hover { background: #2A2A30; }

/* =========================================================================
   FEED CARDS (community saying) - mobile responsive guard
   ========================================================================= */
.feed-grid { min-width: 0; }
.feed-card { min-width: 0; overflow: hidden; word-break: break-word; overflow-wrap: anywhere; }
.feed-card .f-top { min-width: 0; }
.feed-card .f-top > div { min-width: 0; max-width: 100%; }
.feed-card .f-nm, .feed-card .f-meta { word-break: break-word; }
.feed-card h4 { word-break: break-word; overflow-wrap: anywhere; }
.feed-card p { word-break: break-word; overflow-wrap: anywhere; }
@media (max-width: 640px) { .feed-grid { grid-template-columns: 1fr; gap: 14px; } .feed-card { padding: 18px; } }

/* =========================================================================
   BUTTON BORDERS visibility
   ========================================================================= */
.btn-pro.btn-ghost { border: 1px solid var(--line); }
.btn-pro.btn-ghost:hover { background: var(--line-soft); border-color: var(--ink-soft); }
.menu-btn { border-color: var(--line) !important; }

/* =========================================================================
   SEARCH DROPDOWN â€” fix oversized logos in live search results
   ========================================================================= */
.search-results { z-index: 60; }
.search-results-inner { display: flex; flex-direction: column; gap: 2px; }
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background .12s;
    min-width: 0;
}
.search-result-item:hover { background: var(--line-soft); }
.search-result-item > img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--line);
    background: var(--paper);
}
.search-result-item > div { flex: 1; min-width: 0; }
.search-result-item .srn {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search-result-item .srn .verify-tick { width: 14px; height: 14px; flex-shrink: 0; }
.search-result-item .srd {
    font-size: 12px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search-result-item .sr-rating {
    flex-shrink: 0;
    margin-left: 8px;
}
.search-result-item .sr-rating .b-score {
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    background: var(--gold-soft);
    border: 1px solid rgba(230,168,23,.3);
    padding: 3px 9px;
    border-radius: 999px;
}

/* =========================================================================
   3-COL BUSINESS GRID (replaces 2-col)
   ========================================================================= */
.listing-biz-grid.listing-biz-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 1100px) { .listing-biz-grid.listing-biz-grid-3 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px)  { .listing-biz-grid.listing-biz-grid-3 { grid-template-columns: 1fr !important; } }

/* =========================================================================
   VERIFIED BADGE on business cards â€” pill style like the review page
   ========================================================================= */
.biz-card .b-verified {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #E8F5EE 0%, #D1FAE5 100%);
    color: var(--green);
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .02em;
    border: 1px solid rgba(31,122,77,.2);
    box-shadow: 0 1px 2px rgba(31,122,77,.08);
    text-transform: uppercase;
}
.biz-card .b-verified-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #22C55E 0%, #15803D 100%);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(21,128,61,.3), inset 0 1px 0 rgba(255,255,255,.2);
    flex-shrink: 0;
}
.biz-card .b-verified-circle svg { width: 10px; height: 10px; }
.biz-card .b-verified-text { white-space: nowrap; }

/* On very small cards, hide the text â€” keep just the circle */
@media (max-width: 560px) {
    .biz-card .b-verified-text { display: none; }
    .biz-card .b-verified { padding: 4px; }
}

/* Add padding-right to biz-card name so the badge doesn't overlap */
.biz-card .b-top { padding-right: 80px; }
@media (max-width: 560px) { .biz-card .b-top { padding-right: 36px; } }

/* Dark mode for verified badge */
html[data-pro-theme="dark"] .biz-card .b-verified {
    background: linear-gradient(135deg, #0E2F1D 0%, #064E3B 100%);
    color: #6EE7B7;
    border-color: rgba(110,231,183,.2);
}

/* Dark mode for search dropdown */
html[data-pro-theme="dark"] .search-results { background: var(--paper-pure) !important; border-color: var(--line) !important; }
html[data-pro-theme="dark"] .search-result-item:hover { background: #2A2A30; }
html[data-pro-theme="dark"] .search-result-item > img { background: #2A2A30; border-color: #2A2A30; }

/* =========================================================================
   BUSINESS PANEL â€” clean up blurry logos & ensure they fall back to basic
   When src is empty (config returned ''), the asset() call yields the domain root.
   These rules hide broken images and provide sane sizes.
   ========================================================================= */
.business img[src$="://allare.io/"],
.business img[src$="://allare.io"] {
    visibility: hidden;
}
.business .logo img,
.business .logo-xl img,
.nav-bar .logo img {
    max-height: 40px;
    width: auto;
}
.business .header img.img-fluid {
    max-height: 380px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Light-mode default theme-color enforcement */
html:not([data-pro-theme="dark"]) body { background: var(--paper); color: var(--ink); }

/* =========================================================================
   DARK MODE — topbar text visibility fix
   ========================================================================= */
html[data-pro-theme="dark"] .topbar { background: #000 !important; color: #F5F2EA !important; }
html[data-pro-theme="dark"] .topbar .wrap span { color: #F5F2EA !important; }
html[data-pro-theme="dark"] .topbar .pill { background: rgba(255,255,255,.14) !important; color: #F5F2EA !important; }

/* =========================================================================
   BIZ-LOGO VERIFIED TICK (on biz-hero, like basic theme has)
   ========================================================================= */
.biz-logo { position: relative; }
.biz-logo-verified {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--paper-pure);
    color: #1D9BF0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(11,11,14,.15);
    font-size: 22px;
    line-height: 1;
    z-index: 2;
    cursor: help;
}
.biz-logo-verified i { line-height: 1; }
html[data-pro-theme="dark"] .biz-logo-verified { background: #18181C; }

/* =========================================================================
   CLAIMED / UNCLAIMED PROFILE TOOLTIP-PILL
   ========================================================================= */
.biz-claim-row { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.claim-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: help;
    outline: none;
    transition: all .15s;
}
.claim-pill-claimed {
    background: var(--green-soft);
    color: var(--green);
    border: 1px solid rgba(31,122,77,.2);
}
.claim-pill-claimed i { color: var(--green); }
.claim-pill-unclaimed {
    background: var(--line-soft);
    color: var(--muted);
    border: 1px solid var(--line);
}
.claim-pill:hover, .claim-pill:focus { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.claim-pill-tip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    width: 360px;
    max-width: 90vw;
    background: var(--paper-pure);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 18px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    line-height: 1.5;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s, transform .18s, visibility .18s;
    pointer-events: none;
    text-align: left;
}
.claim-pill:hover .claim-pill-tip,
.claim-pill:focus .claim-pill-tip,
.claim-pill:focus-within .claim-pill-tip {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.claim-pill-tip::after {
    content: '';
    position: absolute;
    top: 100%; left: 24px;
    border: 6px solid transparent;
    border-top-color: var(--paper-pure);
}
.claim-pill-tip h6 {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--ink);
}
.claim-pill-tip p { color: var(--ink-soft); font-size: 12.5px; margin: 0 0 8px; }
.claim-pill-tip hr { border: 0; border-top: 1px solid var(--line); margin: 12px 0; }
.claim-pill-tip .claim-checklist {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.claim-pill-tip .claim-checklist li {
    display: flex; align-items: center; gap: 6px;
    font-size: 12.5px;
}
.claim-pill-tip .claim-checklist li.ok i { color: var(--green); }
.claim-pill-tip .claim-checklist li.no i { color: var(--red); opacity: .55; }
html[data-pro-theme="dark"] .claim-pill-tip { background: #18181C; border-color: #2A2A30; }
html[data-pro-theme="dark"] .claim-pill-tip::after { border-top-color: #18181C; }

@media (max-width: 480px) {
    .claim-pill-tip { width: calc(100vw - 32px); left: -50px; }
}

/* =========================================================================
   UPLOAD DROPZONE (write-review image upload)
   ========================================================================= */
.upload-drop {
    position: relative;
    border: 2px dashed var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    overflow: hidden;
}
.upload-drop:hover, .upload-drop.is-dragover {
    border-color: var(--accent);
    background: var(--accent-soft);
}
.upload-drop input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%; height: 100%;
}
.upload-drop-inner { pointer-events: none; }
.upload-icon { width: 38px; height: 38px; color: var(--accent); margin: 0 auto 12px; display: block; }
.upload-drop-text {
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 14px;
}
.upload-drop-text strong { font-weight: 600; }
.upload-drop-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12.5px;
    color: var(--muted);
}
.upload-drop-meta li { line-height: 1.5; }
.upload-drop-preview {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 14px;
    pointer-events: auto;
}
.upload-drop-thumb {
    position: relative;
    width: 80px; height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--line-soft);
    border: 1px solid var(--line);
}
.upload-drop-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.upload-drop-thumb-name { display: none; }
html[data-pro-theme="dark"] .upload-drop { background: #1F1F25; border-color: #2A2A30; }
html[data-pro-theme="dark"] .upload-drop:hover, html[data-pro-theme="dark"] .upload-drop.is-dragover { background: rgba(194,65,12,.1); }

/* Make sure the file input doesn't show its default ugly thing inside the dropzone */
.upload-drop input[type=file]::-webkit-file-upload-button { visibility: hidden; }
.upload-drop input[type=file]::-ms-browse { visibility: hidden; }

/* =========================================================================
   CLIPBOARD COPY BUTTON state
   ========================================================================= */
.btn-copy.copied,
[data-clipboard-target].copied {
    background: var(--green) !important;
    border-color: var(--green) !important;
    color: #fff !important;
}

/* =========================================================================
   BIZ-CARD VERIFIED — icon-only (replaces text pill version)
   ========================================================================= */
.biz-card .b-verified-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1D9BF0;
    background: var(--paper-pure);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(11,11,14,.1);
    font-size: 20px;
    line-height: 1;
    z-index: 2;
}
.biz-card .b-verified-icon i { line-height: 1; }
html[data-pro-theme="dark"] .biz-card .b-verified-icon { background: #18181C; }

/* Remove padding-right on b-top (no longer needed since badge is small icon) */
.biz-card .b-top { padding-right: 36px; }
@media (max-width: 560px) { .biz-card .b-top { padding-right: 30px; } }

/* =========================================================================
   CLAIM TOOLTIP — position below the pill (not above, was getting cut off)
   ========================================================================= */
.claim-pill-tip {
    top: calc(100% + 12px) !important;
    bottom: auto !important;
}
.claim-pill-tip::after {
    top: auto !important;
    bottom: 100% !important;
    border-top-color: transparent !important;
    border-bottom-color: var(--paper-pure) !important;
}
html[data-pro-theme="dark"] .claim-pill-tip::after { border-bottom-color: #18181C !important; }

/* =========================================================================
   BUSINESS PANEL — PRO-style overlay on basic templates
   (no need to rewrite blades — just upgrade the CSS for .sign-page, .dashboard-box, .box, .card, etc.)
   ========================================================================= */

/* ----- Auth pages (login / register / forgot / 2fa) ----- */
.sign-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--paper);
}
.sign-page-content {
    padding: 36px 48px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.sign-page-header {
    margin-bottom: 36px;
}
.sign-page-header .logo {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -.02em;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
}
.sign-page-header .logo img { max-height: 40px; width: auto; }
.sign-page-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}
.sign-page-form .sign {
    width: 100%;
    max-width: 440px;
    background: var(--paper-pure);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}
.sign-title {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -.025em;
    margin: 0 0 6px;
    color: var(--ink);
}
.sign-text {
    color: var(--muted);
    font-size: 14.5px;
    margin: 0 0 24px;
}
.sign-page-sidebar {
    background: linear-gradient(135deg, var(--ink) 0%, #1a1a1f 100%);
    position: relative;
    overflow: hidden;
}
.sign-page-sidebar::before {
    content: '';
    position: absolute;
    top: -20%; right: -15%;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(194,65,12,.18) 0%, transparent 60%);
    pointer-events: none;
}
.sign-page-sidebar::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(230,168,23,.12) 0%, transparent 60%);
    pointer-events: none;
}
.sign-page-bg {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    opacity: .25;
    mix-blend-mode: lighten;
}
@media (max-width: 960px) {
    .sign-page { grid-template-columns: 1fr; }
    .sign-page-sidebar { display: none; }
    .sign-page-content { padding: 24px; }
}

/* ----- Auth form inputs (.sign-page .form-control) ----- */
.sign-page .form-control,
.sign-page .form-select,
.sign-page .form-control-md {
    padding: 12px 16px !important;
    border: 1.5px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    background: var(--paper) !important;
    color: var(--ink) !important;
    font-family: var(--sans) !important;
    font-size: 14.5px !important;
    transition: border-color .15s, background .15s !important;
    box-shadow: none !important;
}
.sign-page .form-control:focus,
.sign-page .form-select:focus {
    border-color: var(--ink) !important;
    background: var(--paper-pure) !important;
    box-shadow: 0 0 0 3px rgba(11,11,14,.06) !important;
}
.sign-page .form-label {
    display: block;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px !important;
}
.sign-page .form-check-label { font-size: 13.5px !important; color: var(--ink-soft) !important; }
.sign-page .form-check-input {
    width: 16px !important;
    height: 16px !important;
    accent-color: var(--accent) !important;
}
.sign-page a.link-primary,
.sign-page .link-primary {
    color: var(--accent) !important;
    font-weight: 700;
    text-decoration: none !important;
}
.sign-page a.link-primary:hover { color: var(--accent-dark) !important; }

/* ----- Auth submit button ----- */
.sign-page .btn-primary {
    background: var(--ink) !important;
    border-color: var(--ink) !important;
    color: var(--paper) !important;
    font-weight: 600 !important;
    padding: 14px 24px !important;
    border-radius: 999px !important;
    transition: all .2s !important;
}
.sign-page .btn-primary:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ----- Dashboard layout / sidebar ----- */
.dashboard-page,
.dashboard-container,
.dashboard-container-md,
.dashboard-container-xl,
.dashboard-container-xxl {
    background: var(--paper);
    padding-top: 24px;
    padding-bottom: 60px;
}
.dashboard-page .dashboard-header,
.dashboard-page-header {
    background: var(--paper-pure);
    border-bottom: 1px solid var(--line);
}
.dashboard-page .dashboard-content { padding: 24px 0; }

/* Generic .box used in business panel */
.business .box,
[class*="dashboard"] .box {
    background: var(--paper-pure) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
    padding: 24px !important;
}

/* Dashboard counter cards */
.dashboard-counter {
    padding: 24px !important;
}
.dashboard-counter-title {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--muted) !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 8px;
}
.dashboard-counter-text {
    font-family: var(--serif) !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    letter-spacing: -.02em !important;
    color: var(--ink) !important;
    line-height: 1.1;
}
.dashboard-counter-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Cards in dashboard */
.dashboard-box {
    background: var(--paper-pure) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.dashboard-box:hover { border-color: var(--ink-soft) !important; box-shadow: var(--shadow-sm) !important; }

/* Card classes Bootstrap-style used in integration etc. */
.business-page .card,
[class*="dashboard-container"] .card {
    background: var(--paper-pure) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
}
[class*="dashboard-container"] .card-body { padding: 24px !important; }
[class*="dashboard-container"] .card h4,
[class*="dashboard-container"] .card h5 {
    font-family: var(--serif) !important;
    font-weight: 500 !important;
    letter-spacing: -.015em;
    color: var(--ink) !important;
}
[class*="dashboard-container"] pre {
    background: var(--paper) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    padding: 14px 16px !important;
    font-size: 12.5px !important;
    color: var(--ink) !important;
    overflow-x: auto;
}

/* Business panel form controls */
.business-page .form-control,
[class*="dashboard-container"] .form-control,
[class*="dashboard-container"] .form-select,
.accordion-body .form-control,
.accordion-body .form-select {
    padding: 11px 14px !important;
    border: 1.5px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    background: var(--paper) !important;
    color: var(--ink) !important;
    font-family: inherit !important;
    font-size: 14.5px !important;
    transition: border-color .15s !important;
}
.business-page .form-control:focus,
[class*="dashboard-container"] .form-control:focus,
.accordion-body .form-control:focus {
    border-color: var(--ink) !important;
    box-shadow: 0 0 0 3px rgba(11,11,14,.05) !important;
    outline: none !important;
}
.business-page .form-label,
[class*="dashboard-container"] .form-label {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px !important;
}

/* Business panel buttons */
.business-page .btn-primary,
[class*="dashboard-container"] .btn-primary {
    background: var(--ink) !important;
    border-color: var(--ink) !important;
    color: var(--paper) !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    padding: 11px 22px !important;
    transition: all .2s !important;
}
.business-page .btn-primary:hover,
[class*="dashboard-container"] .btn-primary:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.business-page .btn-outline-primary,
[class*="dashboard-container"] .btn-outline-primary,
.btn-outline-primary.btn-copy {
    border: 1.5px solid var(--ink) !important;
    background: transparent !important;
    color: var(--ink) !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    padding: 10px 20px !important;
    transition: all .2s !important;
}
.business-page .btn-outline-primary:hover,
[class*="dashboard-container"] .btn-outline-primary:hover,
.btn-outline-primary.btn-copy:hover {
    background: var(--ink) !important;
    color: var(--paper) !important;
}

/* Accordion in settings */
.accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    background: var(--paper-pure) !important;
    overflow: hidden;
    margin-bottom: 14px !important;
}
.accordion-button {
    background: var(--paper-pure) !important;
    color: var(--ink) !important;
    font-family: var(--serif) !important;
    font-weight: 500 !important;
    font-size: 17px !important;
    letter-spacing: -.01em;
    padding: 18px 22px !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: var(--paper) !important;
    color: var(--ink) !important;
    border-bottom: 1px solid var(--line);
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23%6B6B73'%3E%3Cpath d='M3.293 5.293a1 1 0 0 1 1.414 0L8 8.586l3.293-3.293a1 1 0 1 1 1.414 1.414l-4 4a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E") !important;
}
.accordion-body {
    padding: 22px !important;
    background: var(--paper-pure);
}

/* Business sidebar nav */
.business-sidebar,
.dashboard-sidebar,
.sidebar-list {
    background: var(--paper-pure) !important;
    border-right: 1px solid var(--line) !important;
}
.sidebar-list-item a,
.business-sidebar a {
    color: var(--ink-soft) !important;
    transition: all .15s !important;
}
.sidebar-list-item a:hover,
.business-sidebar a:hover,
.sidebar-list-item a.active,
.business-sidebar a.active {
    background: var(--accent-soft) !important;
    color: var(--accent) !important;
}

/* Business navbar (top header inside dashboard) */
.business-page nav.nav-bar,
.business-page .nav-bar,
.business-navbar {
    background: var(--paper-pure) !important;
    border-bottom: 1px solid var(--line) !important;
}

/* Dark mode for business panel */
html[data-pro-theme="dark"] .sign-page { background: #0F0F12; }
html[data-pro-theme="dark"] .sign-page-form .sign { background: #18181C; border-color: #2A2A30; }
html[data-pro-theme="dark"] .sign-page .form-control { background: #1F1F25 !important; color: #F5F2EA !important; border-color: #2A2A30 !important; }
html[data-pro-theme="dark"] .dashboard-counter-icon { background: rgba(194,65,12,.15); }
html[data-pro-theme="dark"] .accordion-item { background: #18181C !important; border-color: #2A2A30 !important; }
html[data-pro-theme="dark"] .accordion-button { background: #18181C !important; color: #F5F2EA !important; }
html[data-pro-theme="dark"] .accordion-button:not(.collapsed) { background: #0F0F12 !important; }
html[data-pro-theme="dark"] .accordion-body { background: #18181C; }
