:root {
  --white: #ffffff;
  --off: #f7f8fa;
  --off-2: #f0f1f4;
  --line: #e4e6ea;
  --line-mid: #d0d3db;
  --text: #1a1a1a;
  --text-mid: #555555;
  --text-lite: #909090;
  --red: #6b1228;
  --red-dark: #4e0d1d;
  --red-lite: #fdf2f4;
  --red-mid: #f5d7dd;
  --amber: #c87020;
  --amber-lite: #fef9f2;
  --green: #2a6648;
  --green-lite: #ebf6f1;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 14px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.12);
  /* MOC category palette */
  --moc-red: #e80707;
  --moc-green: #5ac62b;
  --moc-yellow: #ffde59;
  --moc-outline: 4px;
  --guide-bar-height: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; }
h1, h2, h3, h4, .brand-name, .eyebrow, .stat-num { font-family: 'Oswald', sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 2.5rem)); margin: 0 auto; }

/* TOP BAR */
.topbar { background: var(--red); color: #fff; font-size: 0.82rem; font-weight: 500; padding: 0.35rem 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar a { color: #fff; }
.topbar-tagline { font-size: 0.76rem; opacity: 0.85; flex-shrink: 0; max-width: 340px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-links { display: flex; align-items: center; gap: 0.15rem; flex-shrink: 0; flex-wrap: nowrap; }
.topbar-links a { opacity: 0.88; white-space: nowrap; padding: 0.25rem 0.6rem; border-radius: var(--radius-full); transition: opacity 0.15s, background 0.15s; font-size: 0.82rem; font-weight: 600; }
.topbar-links a:hover { opacity: 1; background: rgba(255,255,255,0.15); }

/* MORE DROPDOWN (topbar — white button on red) */
.nav-more { position: relative; margin-left: 0.2rem; }
.nav-more-btn { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.35); border-radius: var(--radius-full); padding: 0.22rem 0.75rem; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; color: #fff; cursor: pointer; white-space: nowrap; transition: background 0.15s, border-color 0.15s; }
.nav-more-btn:hover, .nav-more.open .nav-more-btn { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); }
.nav-more-menu { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 140px; z-index: 200; overflow: hidden; }
.nav-more.open .nav-more-menu { display: block; }
.nav-more-menu a { display: block; padding: 0.6rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--text-mid); text-decoration: none; transition: background 0.12s, color 0.12s; }
.nav-more-menu a:hover { background: var(--red-lite); color: var(--red); }

/* HEADER — logo only, slightly thinner */
.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: flex-start; height: 60px; gap: 1.25rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; text-decoration: none; }
.brand img { max-height: 44px; max-width: 220px; height: auto; width: auto; display: block; }
.brand-name { display: none; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0 1.5rem; height: 46px; border-radius: var(--radius-full); border: none; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.1s; white-space: nowrap; text-decoration: none; letter-spacing: 0.01em; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: #a85c18; }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red-lite); box-shadow: none; }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--off); box-shadow: none; transform: none; }
.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); box-shadow: none; }
.btn-lg { height: 52px; padding: 0 1.9rem; font-size: 0.97rem; }
.btn-sm { height: 36px; padding: 0 1rem; font-size: 0.82rem; }

/* HERO */
.hero { position: relative; min-height: 320px; display: flex; align-items: center; overflow: visible; background: #131318; z-index: 5; }
.hero-photo { position: absolute; inset: 0; background: url("hero-cherokee.jpg") center/contain no-repeat; }
.hero-content { position: relative; z-index: 2; padding: 2rem 0 1.75rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.32rem 0.85rem; border-radius: var(--radius-full); margin-bottom: 1.1rem; }
.hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.75rem); font-weight: 700; line-height: 1.06; letter-spacing: 0.01em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.hero h1 span { color: #fbbf24; }
.hero-sub { font-family: 'Source Serif 4', serif; font-size: 1.08rem; color: rgba(255,255,255,0.78); max-width: 52ch; line-height: 1.7; margin-bottom: 2rem; }

/* HERO SEARCH BAR - Angi pill style */
.hero { position: relative; min-height: 320px; display: flex; align-items: center; background: #131318; }
.hero-photo { position: absolute; inset: 0; background: url("hero-cherokee.jpg") center/contain no-repeat; }
.hero-content { position: relative; z-index: 2; padding: 2rem 0 1.75rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.32rem 0.85rem; border-radius: var(--radius-full); margin-bottom: 1.1rem; }
.hero h1 { font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.03em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.hero h1 span { color: var(--red); }
.hero-sub { font-family: 'Source Serif 4', serif; font-size: 1.08rem; color: #fbbf24; max-width: 52ch; line-height: 1.7; margin-bottom: 2rem; }

/* HERO SEARCH BAR */
.hero-search-box { background: #fff; border-radius: var(--radius-full); padding: 0.35rem 0.35rem 0.35rem 1.4rem; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.4rem; box-shadow: var(--shadow-lg); max-width: 540px; outline: 2px solid #830319; outline-offset: 0; }
.hero-search-box input { flex: 1; border: none; background: transparent; height: 44px; font-family: 'DM Sans', sans-serif; font-size: 0.93rem; color: var(--text); outline: none; min-width: 0; }
.hero-search-box input::placeholder { color: var(--text-lite); }
.hero-search-box .btn { border-radius: var(--radius-full); height: 40px; flex-shrink: 0; font-size: 0.88rem; }

.hero-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-note { font-size: 0.79rem; color: rgba(255,255,255,0.52); max-width: 60ch; line-height: 1.55; margin-top: 0.75rem; }

/* STATS */
.stats-strip { background: var(--red); padding: 1.4rem 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; color: #fff; padding: 0.5rem; border-right: 1px solid rgba(255,255,255,0.18); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1; margin-bottom: 0.2rem; }
.stat-label { font-size: 0.76rem; font-weight: 500; opacity: 0.82; letter-spacing: 0.05em; text-transform: uppercase; }

/* SECTIONS */
.section { padding: 4.5rem 0; }
.section-off { background: var(--off); }
.section-head { margin-bottom: 2.5rem; text-align: center; }
.section-label { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); margin-bottom: 0.6rem; }
.section-head p { font-family: 'Source Serif 4', serif; color: var(--text-mid); font-size: 1rem; max-width: 56ch; margin: 0 auto; }
.section-head.left { text-align: left; }
.section-head.split { text-align: left; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.home-categories .section-head { text-align: right; }
.home-categories .section-head p { margin: 0 0 0 auto; }

/* GRIDS */
.grid { display: grid; gap: 1.25rem; }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }

/* CATEGORY CARDS */
.cat-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; text-decoration: none; display: block; }
.cat-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.cat-icon { width: 60px; height: 60px; border-radius: var(--radius); background: var(--red-lite); display: grid; place-items: center; font-size: 1.75rem; margin: 0 auto 1rem; transition: background 0.2s; }
.cat-card:hover .cat-icon { background: var(--red-mid); }
.cat-card h3 { font-size: 0.97rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.35rem; color: var(--text); }
.cat-card p { font-size: 0.84rem; color: var(--text-lite); line-height: 1.5; }

/* EMPTY STATE */
.empty-state { background: var(--off); border: 1.5px dashed var(--line-mid); border-radius: var(--radius); padding: 3.5rem 2rem; text-align: center; }
.empty-state-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.empty-state h3 { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); margin-bottom: 0.5rem; }
.empty-state p { font-family: 'Source Serif 4', serif; color: var(--text-mid); font-size: 0.95rem; max-width: 48ch; margin: 0 auto 0.75rem; }
.empty-state .empty-note { font-size: 0.8rem; color: var(--text-lite); max-width: 52ch; margin: 0 auto 1.5rem; }

/* NOTICE AMBER */
.notice-amber { background: var(--amber-lite); border: 1.5px solid #e8c080; border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.5rem; font-family: 'Source Serif 4', serif; }
.notice-amber strong { color: var(--text); font-family: 'DM Sans', sans-serif; }

/* ISSUE STRIP */
.issue-strip { background: #1a1a22; padding: 1.25rem 0; }
.issue-inner { display: flex; gap: 0.55rem; flex-wrap: wrap; align-items: center; }
.issue-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-right: 0.4rem; }
.issue-pill { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.82); padding: 0.32rem 0.9rem; border-radius: var(--radius-full); font-size: 0.83rem; font-weight: 500; cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s; text-decoration: none; display: inline-block; }
.issue-pill:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* LISTING CARDS */
.listing-card { background: var(--white); border: var(--moc-outline) solid var(--moc-green); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.listing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--moc-green); }
.listing-thumb { aspect-ratio: 16/9; background: rgba(90, 198, 43, 0.12); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.listing-state { position: absolute; top: 0.7rem; right: 0.7rem; background: rgba(20,20,26,0.75); backdrop-filter: blur(4px); color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); letter-spacing: 0.06em; }
.listing-body { padding: 1.25rem; }
.listing-cats { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.6rem; }
.lcat { font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: var(--radius-full); background: var(--amber-lite); color: var(--amber); border: 1px solid #e8c888; }
.listing-name { font-size: 1.02rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.3rem; color: var(--text); }
.listing-loc { display: flex; align-items: center; gap: 0.3rem; color: var(--text-lite); font-size: 0.84rem; margin-bottom: 0.65rem; }
.listing-summary { font-size: 0.88rem; color: var(--text-mid); line-height: 1.55; margin-bottom: 1rem; font-family: 'Source Serif 4', serif; }
.listing-actions { display: flex; gap: 0.5rem; }

/* GUIDE CARDS */
.guide-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; transition: box-shadow 0.2s, border-color 0.2s; }
.guide-card:hover { box-shadow: var(--shadow-card); border-color: var(--line-mid); }
.guide-tag { display: inline-flex; align-items: center; gap: 0.35rem; font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.22rem 0.65rem; border-radius: var(--radius-full); }
.tag-red { background: var(--red-lite); color: var(--red); }
.tag-amber { background: var(--amber-lite); color: var(--amber); }
.tag-green { background: var(--green-lite); color: var(--green); }
.tag-blue { background: #e8f0fe; color: #2c5cc5; }
.guide-card h3 { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); }
.guide-card p { font-family: 'Source Serif 4', serif; font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.guide-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.diff { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.22rem 0.65rem; border-radius: var(--radius-full); font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.diff-beg { background: var(--green-lite); color: var(--green); }
.diff-int { background: var(--amber-lite); color: var(--amber); }
.diff-adv { background: var(--red-lite); color: var(--red); }

/* HOW IT WORKS */
.step-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; position: relative; }
.step-num-circle { width: 50px; height: 50px; background: var(--red); border-radius: 50%; display: grid; place-items: center; font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0 auto 1.1rem; }
.step-card h3 { font-size: 0.97rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.step-card p { font-family: 'Source Serif 4', serif; font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.step-card::after { content: '->'; position: absolute; right: -1.1rem; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: var(--line-mid); z-index: 2; }
.step-card:last-child::after { display: none; }

/* CTA BANNER */
.cta-banner { background: #15151e; padding: 3.5rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; margin-bottom: 0.4rem; }
.cta-text p { font-family: 'Source Serif 4', serif; color: rgba(255,255,255,0.58); font-size: 0.97rem; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
/* PAGE HERO (shared across Buy & Sell, Repair Shops, Junk/Salvage, Guides, Community) */
.page-hero { background: var(--red); padding: 3rem 0 2.5rem; text-align: left; }
.page-hero-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.page-hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; margin-bottom: 0.5rem; -webkit-text-stroke: 1px rgba(255,255,255,0.45); text-shadow: 0 2px 10px rgba(0,0,0,0.18); text-align: left; }
.page-hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(2rem,4vw,3rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; margin-bottom: 0.5rem; text-align: left; }
.page-hero-sub { font-family: 'Source Serif 4', serif; color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 58ch; text-align: left; }
.page-hero .hero-sub { text-align: left; }

/* FILTER BAR */
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.filter-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-lite); margin-right: 0.25rem; }

/* PAGE CTA BAR */
.page-cta-bar { background: var(--off); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.5rem 2rem; margin-top: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.page-cta-bar-title { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); margin-bottom: 0.2rem; }
.page-cta-bar-sub { font-family: 'Source Serif 4', serif; font-size: 0.9rem; color: var(--text-mid); }

/* LISTING CATEGORY BADGE COLORS */
.lcat-vehicle { background: #e8f5e9; color: #2a6648; }
.lcat-parts { background: #e8eaf6; color: #2c3e8c; }
.lcat-project { background: #fff3e0; color: #b36000; }
.lcat-wanted { background: #f5f5f5; color: #444; }

/* EMAIL CAPTURE BAND */
.email-band { background: #15151e; padding: 3.5rem 0; }
.email-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.email-band-text h2 { font-family: 'Oswald', sans-serif; font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; margin-bottom: 0.35rem; }
.email-band-text p { font-family: 'Source Serif 4', serif; color: rgba(255,255,255,0.58); font-size: 0.97rem; }
.email-band-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.email-band-input { height: 46px; border-radius: var(--radius-full); border: 1.5px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.07); color: #fff; padding: 0 1.25rem; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; outline: none; min-width: 260px; transition: border-color 0.2s, background 0.2s; }
.email-band-input::placeholder { color: rgba(255,255,255,0.38); }
.email-band-input:focus { border-color: var(--red); background: rgba(255,255,255,0.11); }
.email-band-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.85rem; }

/* DIRECTORY FILTERS */
.dir-filters { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem 1.25rem; display: grid; grid-template-columns: 2fr 1fr 1fr auto auto; gap: 0.75rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); align-items: center; }
.dir-filters input, .dir-filters select { height: 44px; border-radius: var(--radius-full); border: 1.5px solid var(--line); background: var(--off); color: var(--text); padding: 0 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s, background 0.2s; }
.dir-filters input:focus, .dir-filters select:focus { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px var(--red-lite); }
.results-count { color: var(--text-lite); font-size: 0.87rem; font-weight: 500; margin-bottom: 1.25rem; }

/* FORMS */
.form-wrap { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 2.25rem; box-shadow: var(--shadow-sm); }
.form-section-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); padding-bottom: 0.5rem; border-bottom: 2px solid var(--red-mid); margin-bottom: 1.25rem; }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.35rem; letter-spacing: 0.01em; }
.form-row input, .form-row textarea, .form-row select { width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--off); color: var(--text); padding: 0.72rem 0.95rem; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px var(--red-lite); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-note { font-size: 0.8rem; color: var(--text-lite); font-style: italic; margin-top: 0.75rem; line-height: 1.6; }

/* FAQ */
.faq-item { border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 0.6rem; background: var(--white); transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--line-mid); }
.faq-item[open] { border-color: var(--red); }
.faq-item summary { padding: 1.1rem 1.25rem; cursor: pointer; font-family: 'Oswald', sans-serif; font-size: 0.97rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--red); font-weight: 400; line-height: 1; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.25rem 1.25rem; font-family: 'Source Serif 4', serif; color: var(--text-mid); font-size: 0.94rem; line-height: 1.65; }

/* FILTER PILLS */
.filter-pill { background: var(--white); border: 2px solid var(--text-lite); color: var(--text); padding: 0.35rem 1rem; border-radius: var(--radius-full); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.filter-pill:hover { border-color: var(--red); color: var(--red); background: var(--red-lite); }
.filter-pill.active-pill { background: var(--red); border-color: var(--red); color: #fff; }

/* ABOUT */
.about-lead { font-family: 'Source Serif 4', serif; font-size: 1.12rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; }
.about-card { background: var(--off); border: 1.5px solid var(--line); border-left: 4px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin-top: 1.5rem; }
.about-card p { font-family: 'Source Serif 4', serif; font-size: 0.9rem; color: var(--text-mid); font-style: italic; line-height: 1.65; }

/* FOOTER */
.site-footer { background: #15151e; color: rgba(255,255,255,0.75); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand-block p { font-family: 'Source Serif 4', serif; font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-top: 0.75rem; }
.footer-disclaimer { font-size: 0.74rem; color: rgba(255,255,255,0.3); font-style: italic; margin-top: 0.75rem; line-height: 1.55; }
.footer-col { display: flex; gap: 2.5rem; align-items: flex-start; }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-disclaimer-link { color: rgba(255,255,255,0.38); text-decoration: underline; text-underline-offset: 2px; }
.footer-disclaimer-link:hover { color: rgba(255,255,255,0.65); }

/* SEARCH DROPDOWN */
.search-wrap { position: relative; max-width: 540px; margin-left: auto; margin-right: auto; margin-bottom: 1.4rem; z-index: 30; }
.search-wrap .hero-search-box { margin-bottom: 0; max-width: 100%; }
.search-dropdown { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 1000; overflow: hidden; border: 1.5px solid var(--line); }
.search-wrap { position: relative; max-width: 540px; margin-left: auto; margin-right: auto; margin-bottom: 1.4rem; }
.search-wrap .hero-search-box { margin-bottom: 0; max-width: 100%; }
.search-dropdown { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 300; overflow: hidden; border: 1.5px solid var(--line); }
.search-suggestion { display: block; padding: 0.72rem 1.25rem; cursor: pointer; font-size: 0.9rem; color: var(--text); transition: background 0.12s; border-bottom: 1px solid var(--line); text-decoration: none; }
.search-suggestion:last-child { border-bottom: none; }
.search-suggestion:hover { background: var(--off); }
.search-suggestion-text { display: block; }

/* ARTICLE CARDS (guides) */
.article-card { background: var(--white); border: var(--moc-outline) solid var(--moc-red); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; text-decoration: none; color: inherit; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--moc-red); }
.article-thumb { height: var(--guide-bar-height); display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; overflow: hidden; background: var(--moc-red); }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.78); }
/* Category color bars for guide cards (Monopoly-style thin top strip) */
.guide-colorbar--start-here  { background: #6aaf15; }
.guide-colorbar--nostart      { background: #e80707; }
.guide-colorbar--overheating  { background: #ff8a00; }
.guide-colorbar--electrical   { background: #ffde59; }
.guide-colorbar--suspension   { background: #5ac62b; }
.guide-colorbar--engine       { background: #7adf3a; }
.guide-colorbar--4wd          { background: #ff3b30; }
/* Hide the old floating label — bar is too thin to show text */
.article-thumb-label { display: none; }
.article-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.article-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.article-title { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); line-height: 1.25; }
.article-excerpt { font-family: 'Source Serif 4', serif; font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.article-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--line); }
.article-read-time { font-size: 0.78rem; color: var(--text-lite); font-weight: 500; }
.article-cta { font-size: 0.82rem; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 0.3rem; }

/* LISTING CARD PRICE */
.listing-price { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--red); letter-spacing: 0.01em; margin-bottom: 0.15rem; }
.listing-price-note { font-size: 0.75rem; color: var(--text-lite); font-weight: 400; font-family: 'DM Sans', sans-serif; }
.listing-card-submit { background: var(--off); border: 2px dashed var(--line-mid); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem 1.5rem; gap: 0.75rem; min-height: 280px; }
.listing-card-submit h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); }
.listing-card-submit p { font-family: 'Source Serif 4', serif; font-size: 0.88rem; color: var(--text-mid); max-width: 24ch; line-height: 1.55; }
.listing-image-wrap { aspect-ratio: 16/9; overflow: hidden; background: #1c1f24; position: relative; }
.listing-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.listing-no-photo { display: flex; align-items: center; justify-content: center; }
.listing-no-photo::after { content: 'NO PHOTO'; font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; color: rgba(255,255,255,0.18); }
.listing-card-red-outline { border: 1.8px solid var(--red); box-shadow: 0 0 0 1px rgba(107,18,40,0.08); }
.listing-card-red-outline:hover { border-color: var(--red-dark); }
.listing-card--inactive { border-color: var(--line-mid); border-style: dashed; background: var(--off); cursor: default; }
.listing-card--inactive:hover { transform: none; box-shadow: none; border-color: var(--line-mid); }
.listing-card--inactive .listing-thumb { background: var(--off-2) !important; }
.listing-card--inactive .listing-thumb-icon { font-size: 2rem; color: var(--line-mid); }
.listing-card--inactive .listing-image-wrap { background: var(--off-2); }
.listing-card--inactive .listing-no-photo::after { content: 'PHOTO GOES HERE'; color: var(--line-mid); }

/* HOME SECTION ROWS */
.home-section { padding: 3.5rem 0; border-top: 1px solid var(--line); }
.home-section:first-of-type { border-top: none; }
.home-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.home-section-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); margin-bottom: 0.2rem; }
.home-section-desc { font-family: 'Source Serif 4', serif; font-size: 0.93rem; color: var(--text-mid); }

/* BUSINESS DIRECTORY CARDS */
.biz-card { background: var(--white); border: var(--moc-outline) solid var(--moc-yellow); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit; }
.biz-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.biz-logo-wrap { padding: 1.25rem 1.25rem 0; }
.biz-logo { width: 52px; height: 52px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; flex-shrink: 0; }
.biz-body { padding: 0.9rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.biz-name { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); }
.biz-loc { font-size: 0.84rem; color: var(--text-lite); }
.biz-type { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.6rem; border-radius: var(--radius-full); background: var(--red-lite); color: var(--red); margin-top: 0.1rem; }
.biz-desc { font-family: 'Source Serif 4', serif; font-size: 0.86rem; color: var(--text-mid); line-height: 1.55; flex: 1; margin-top: 0.25rem; }
.biz-actions { margin-top: 0.85rem; }

/* COMMUNITY POST CARDS */
.post-card { background: var(--white); border: 1.5px solid #6b1228; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; text-decoration: none; color: inherit; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--line-mid); }
.post-thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; }
.post-body { padding: 1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.post-type { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.6rem; border-radius: var(--radius-full); background: var(--off-2); color: var(--text-mid); margin-bottom: 0.1rem; }
.post-title { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); line-height: 1.25; }
.post-excerpt { font-family: 'Source Serif 4', serif; font-size: 0.87rem; color: var(--text-mid); line-height: 1.55; flex: 1; }
.post-meta { margin-top: auto; padding-top: 0.65rem; border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--text-lite); }
.post-author { font-weight: 600; color: var(--text-mid); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.5s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.04s; }
.hero-content > *:nth-child(2) { animation-delay: 0.1s; }
.hero-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-content > *:nth-child(4) { animation-delay: 0.22s; }
.hero-content > *:nth-child(5) { animation-delay: 0.28s; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .topbar-tagline { display: none; }
  .topbar-links { flex-wrap: wrap; gap: 0.1rem; }
  .topbar-links a { padding: 0.2rem 0.45rem; font-size: 0.78rem; }
  .nav-more-btn { padding: 0.18rem 0.6rem; font-size: 0.76rem; }
}
@media (max-width: 1024px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .dir-filters { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .g4, .g3, .g2 { grid-template-columns: 1fr; }
  .hero-search-box { border-radius: var(--radius-lg); padding: 0.75rem; flex-direction: column; align-items: stretch; }
  .hero-search-box .btn { height: 46px; border-radius: var(--radius-full); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { flex-direction: column; gap: 1.25rem; }
  .email-band-inner { flex-direction: column; }
  .email-band-form { width: 100%; }
  .email-band-input { min-width: 0; width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .dir-filters { grid-template-columns: 1fr; }
  .form-g2 { grid-template-columns: 1fr; }
  .header-inner { justify-content: flex-start; }
  .cta-inner { flex-direction: column; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .home-categories .section-head { text-align: left; }
  .home-categories .section-head p { margin: 0; }
}


.footer-contact-btn { margin-top: 0.9rem; border-color: #fff; color: #fff; }
.footer-contact-btn:hover { background: rgba(255,255,255,0.12); color:#fff; }

/* category-outline overrides removed — border colors now set per card type */

.hero-title-image { width: min(920px, 100%); height: auto; display: block; margin: 0 auto 0.75rem; position: relative; z-index: 2; }

/* ── PRICING TIERS ─────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 2rem 0; }
.pricing-card { background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.75rem; transition: border-color 0.2s, box-shadow 0.2s; }
.pricing-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.pricing-card.pricing-featured { border-color: var(--amber); background: var(--amber-lite); }
.pricing-badge { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--amber); color: #fff; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); margin-bottom: 0.75rem; }
.pricing-level { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); margin-bottom: 0.35rem; }
.pricing-price { font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 0.25rem; }
.pricing-price span { font-size: 1rem; color: var(--text-lite); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.pricing-list { list-style: none; margin: 1.25rem 0 1.5rem; }
.pricing-list li { font-size: 0.9rem; color: var(--text-mid); padding: 0.35rem 0; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.45; }
.pricing-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-list li.pricing-plus::before { content: '+'; color: var(--amber); }

/* ── FEATURED BADGE ────────────────────────────────────────────────────────── */
.featured-badge { display: inline-flex; align-items: center; gap: 0.3rem; font-family: 'Oswald', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--amber); color: #fff; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); }

/* ── FEATURED BIZ CARD (paid, larger) ─────────────────────────────────────── */
.featured-biz-card { background: var(--white); border: 2px solid var(--amber); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit; box-shadow: 0 2px 10px rgba(200,112,32,0.1); }
.featured-biz-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.featured-biz-img { height: 140px; background: var(--off-2); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.featured-biz-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-biz-initials { width: 72px; height: 72px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.featured-biz-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.featured-biz-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
.featured-biz-name { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); }
.featured-biz-type { font-family: 'Oswald', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.6rem; border-radius: var(--radius-full); background: var(--red-lite); color: var(--red); display: inline-block; }
.featured-biz-loc { font-size: 0.84rem; color: var(--text-lite); }
.featured-biz-area { font-size: 0.82rem; color: var(--text-mid); font-weight: 600; }
.featured-biz-desc { font-family: 'Source Serif 4', serif; font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.featured-biz-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.25rem; }
.featured-biz-tag { font-size: 0.72rem; font-weight: 600; padding: 0.18rem 0.55rem; border-radius: 4px; background: var(--off-2); color: var(--text-mid); border: 1px solid var(--line-mid); }
.featured-biz-actions { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.85rem; }
.featured-biz-actions .btn { flex: 1; min-width: 80px; font-size: 0.78rem; height: 34px; padding: 0 0.75rem; }
.featured-verified { font-size: 0.75rem; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 0.3rem; margin-top: 0.3rem; }
.featured-verified::before { content: '★'; color: var(--amber); }

/* ── INACTIVE FEATURED CARD ────────────────────────────────────────────────── */
.featured-biz-card--inactive { border-color: var(--line-mid); border-style: dashed; background: var(--off); box-shadow: none; }
.featured-biz-card--inactive:hover { transform: none; box-shadow: none; }
.featured-biz-card--inactive .featured-biz-img--empty { height: 140px; background: var(--off-2); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--line-mid); }
.featured-biz-card--inactive .featured-biz-body { align-items: center; justify-content: center; text-align: center; min-height: 200px; }

/* ── INACTIVE PARTS CARD ─────────────────────────────────────────────────── */
.parts-card--inactive { border-style: dashed; border-color: var(--line-mid); background: var(--off); }
.parts-card--inactive:hover { box-shadow: none; border-color: var(--line-mid); }
.parts-card--inactive .parts-card-img--empty { height: 140px; background: var(--off-2); border-radius: 8px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--line-mid); margin-bottom: 0.25rem; }

/* ── STATE PAGE FEATURED CAROUSEL ─────────────────────────────────────────── */
.state-featured-section { margin-bottom: 2.5rem; }
.state-featured-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red); margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.75rem; }
.state-featured-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.state-featured-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.state-feat-card { display: flex; flex-direction: column; background: #fff; border: 1.5px solid #e5e5e5; border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.18s; }
.state-feat-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.1); transform: translateY(-2px); }
.state-feat-img { height: 160px; overflow: hidden; }
.state-feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.state-feat-img--empty { height: 160px; background: var(--off-2); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--line-mid); }
.state-feat-card--inactive { border: 1.5px dashed var(--line-mid); background: var(--off); }
.state-feat-card--inactive:hover { box-shadow: none; transform: none; }
.state-feat-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.state-feat-badges { display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; margin-bottom: 0.4rem; }
.state-feat-name { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); margin-bottom: 0.2rem; }
.state-feat-loc { font-size: 0.84rem; color: var(--text-lite); margin-bottom: 0.5rem; }
.state-feat-desc { font-family: 'Source Serif 4', serif; font-size: 0.84rem; color: var(--text-mid); line-height: 1.55; flex: 1; margin-bottom: 0.6rem; }
.state-feat-actions { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: auto; }
.state-feat-actions .btn { font-size: 0.78rem; height: 34px; padding: 0 0.75rem; }
.state-feat-placeholder-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.6rem; }
.state-feat-placeholder-title { font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; color: var(--text-mid); }
.state-feat-placeholder-sub { font-size: 0.82rem; color: var(--text-lite); line-height: 1.5; }

/* ── FEATURED SECTION (category/state page top strip) ────────────────────── */
.featured-section { background: var(--amber-lite); border: 1.5px solid #e8c080; border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 2rem; }
.featured-section-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.featured-section-title { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text); display: flex; align-items: center; gap: 0.6rem; }
.featured-section-link { font-size: 0.82rem; color: var(--amber); font-weight: 600; white-space: nowrap; }
.featured-section-link:hover { text-decoration: underline; }

/* ── HOMEPAGE FEATURED CAROUSEL ───────────────────────────────────────────── */
.featured-carousel-section { padding: 2.5rem 0; border-top: 1px solid var(--line); }
.featured-carousel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.carousel-outer { position: relative; padding: 0 28px; }
.carousel-track-wrap { overflow: hidden; }
.carousel-track { display: flex; gap: 1.25rem; transition: transform 0.35s ease; }
.carousel-track .featured-biz-card { flex: 0 0 calc(50% - 0.625rem); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); border: 1.5px solid var(--line); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 1rem; color: var(--text); transition: border-color 0.15s, background 0.15s; box-shadow: var(--shadow-sm); }
.carousel-btn:hover { border-color: var(--red); background: var(--red-lite); color: var(--red); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* ── BLOG CARDS ───────────────────────────────────────────────────────────── */
.blog-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, border-color 0.2s; text-decoration: none; color: inherit; }
.blog-card:hover { box-shadow: var(--shadow-hover); border-color: var(--line-mid); transform: translateY(-3px); }
.blog-thumb { height: 180px; background: var(--off-2); overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: linear-gradient(135deg, var(--red-lite), var(--off-2)); }
.blog-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-cat { font-family: 'Oswald', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.blog-title { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); line-height: 1.25; }
.blog-excerpt { font-family: 'Source Serif 4', serif; font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.blog-meta { font-size: 0.78rem; color: var(--text-lite); padding-top: 0.65rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.blog-cta-link { font-size: 0.82rem; font-weight: 700; color: var(--red); }

/* ── FEATURED VENDOR CALLOUT (blog posts) ─────────────────────────────────── */
.featured-vendor-callout { background: var(--amber-lite); border: 1.5px solid #e8c080; border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 2rem 0; display: flex; align-items: flex-start; gap: 1.25rem; flex-wrap: wrap; }
.featured-vendor-logo { width: 60px; height: 60px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.featured-vendor-info { flex: 1; min-width: 200px; }
.featured-vendor-label { font-family: 'Oswald', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.25rem; }
.featured-vendor-name { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; color: var(--text); margin-bottom: 0.2rem; }
.featured-vendor-desc { font-family: 'Source Serif 4', serif; font-size: 0.88rem; color: var(--text-mid); line-height: 1.55; }
.featured-vendor-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.6rem; }

/* ── FILTER DROPDOWN BAR ──────────────────────────────────────────────────── */
/* Centered page-level filter widget — placed inside .page-hero */
.page-filter-hero { max-width: 520px; margin: 1.75rem auto 0; text-align: center; }
.page-filter-hero-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.6rem; }
.page-filter-hero-box { background: #fff; border-radius: var(--radius-full); padding: 0.3rem 0.5rem 0.3rem 1.4rem; display: flex; align-items: center; box-shadow: var(--shadow-lg); }
.page-filter-hero-box .filter-select { flex: 1; border: none; background: transparent; box-shadow: none; height: 44px; font-size: 0.95rem; color: var(--text); padding-left: 0; }
.page-filter-hero-box .filter-select:focus { box-shadow: none; border-color: transparent; }

/* Centered section-level filter (not in hero — white background sections) */
.section-filter-wrap { max-width: 520px; margin: 0 auto 1.75rem; text-align: center; }
.section-filter-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-lite); margin-bottom: 0.6rem; }
.section-filter-box { background: var(--off); border-radius: var(--radius-full); padding: 0.3rem 0.5rem 0.3rem 1.4rem; display: flex; align-items: center; border: 1.5px solid var(--line); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.section-filter-box .filter-select { flex: 1; border: none; background: transparent; box-shadow: none; height: 44px; font-size: 0.95rem; color: var(--text); padding-left: 0; }
.section-filter-box .filter-select:focus { box-shadow: none; border-color: transparent; }

.filter-dropdown-bar { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1.75rem; flex-wrap: wrap; }
.filter-search-input { height: 42px; border-radius: var(--radius-full); border: 1.5px solid var(--line); background: var(--off); color: var(--text); padding: 0 1.1rem; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.2s; min-width: 160px; flex: 1; }
.filter-search-input:focus { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px var(--red-lite); }
.filter-select { height: 42px; border-radius: var(--radius-full); border: 1.5px solid var(--line); background: var(--off); color: var(--text); padding: 0 2.25rem 0 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23909090' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; cursor: pointer; transition: border-color 0.2s; }
.filter-select:focus { border-color: var(--red); background-color: var(--white); box-shadow: 0 0 0 3px var(--red-lite); }

/* ── GET FEATURED NUDGE ───────────────────────────────────────────────────── */
.get-featured-nudge { background: var(--off); border: 1.5px dashed var(--amber); border-radius: var(--radius); padding: 0.85rem 1.1rem; font-size: 0.86rem; color: var(--text-mid); display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.get-featured-nudge strong { color: var(--text); }

/* ── STAR RATINGS ─────────────────────────────────────────────────────────── */
.biz-rating-wrap { margin: 0.35rem 0 0.5rem; }
.biz-rating-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0.3rem; font-size: 0.8rem; line-height: 1.4; }
.biz-rating-stars { color: var(--amber); font-weight: 700; font-size: 0.82rem; }
.biz-rating-count { color: var(--text-lite); font-size: 0.78rem; }
.biz-rating-none { color: var(--text-lite); font-size: 0.78rem; font-style: italic; }
.rating-already { color: var(--text-lite); font-size: 0.75rem; }
.biz-rating-row .rating-open-btn { padding: 0.12rem 0.55rem; height: 24px; font-size: 0.72rem; line-height: 1; }
.rating-form { display: none; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.4rem; padding: 0.5rem 0.65rem; background: var(--off); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.rating-form.open { display: flex; }
.star-picker { display: flex; gap: 0.1rem; }
.sp-star { font-size: 1.4rem; cursor: pointer; color: var(--line-mid); transition: color 0.08s; line-height: 1; user-select: none; }
.sp-star.sp-hover { color: var(--amber); }
.sp-star.sp-active { color: var(--amber); }
.rating-form .rating-submit-btn { padding: 0.2rem 0.7rem; height: 28px; font-size: 0.75rem; }
.rating-confirm { font-size: 0.8rem; color: var(--green); font-weight: 600; }

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .carousel-track .featured-biz-card { flex-basis: calc(70% - 0.625rem); }
}
@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .carousel-outer { padding: 0; }
  .carousel-btn { display: none; }
  .carousel-track-wrap { overflow-x: auto; overflow-y: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; height: auto; }
  .carousel-track-wrap::-webkit-scrollbar { display: none; }
  .carousel-track { flex-wrap: nowrap; }
  .carousel-track .featured-biz-card { flex: 0 0 88%; scroll-snap-align: start; }
  .filter-dropdown-bar { flex-direction: column; align-items: stretch; }
  .filter-search-input, .filter-select { width: 100%; min-width: 0; }
  .nav-more-menu { right: auto; left: 0; }
  .state-featured-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0; gap: 0.75rem; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .state-featured-track::-webkit-scrollbar { display: none; }
  .state-feat-card { flex: 0 0 82%; scroll-snap-align: start; }
}
