/*
Theme Name: Reviews Hub
Theme URI: https://reviewshub.local
Author: Saurabh
Description: Clean, trust/authority "Wirecutter-style" theme for a best-websites review & comparison site. AdSense-optimized with comparison tables, rating boxes, pros/cons, FAQ, and ad slots.
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: reviewshub
*/

/* ===== Design tokens (Trust / Authority) ===== */
:root{
  --rh-ink:#111418;        /* near-black text */
  --rh-body:#2b2f36;       /* body text */
  --rh-muted:#6b7280;      /* secondary */
  --rh-accent:#0b6b53;     /* deep editorial green */
  --rh-accent-dark:#084c3b;
  --rh-amber:#c98a00;
  --rh-green:#0b6b53;
  --rh-red:#b42318;
  --rh-line:#e7e5e0;       /* warm hairline */
  --rh-bg:#ffffff;
  --rh-soft:#faf9f7;       /* warm off-white */
  --rh-max:1120px;
  --rh-read:720px;         /* readable column */
  --rh-radius:8px;
  /* --rh-head = headings (Poppins) ; --rh-sans = body (Inter) */
  --rh-serif:"Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --rh-head:"Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --rh-sans:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;color:var(--rh-body);background:var(--rh-bg);
  font:400 17px/1.75 var(--rh-sans);
  -webkit-font-smoothing:antialiased;
}
a{color:var(--rh-accent);text-decoration:underline;text-underline-offset:2px;text-decoration-thickness:1px}
a:hover{color:var(--rh-accent-dark)}
img{max-width:100%;height:auto;display:block}
.rh-wrap{max-width:var(--rh-max);margin:0 auto;padding:0 22px}

/* ===== Header ===== */
.rh-header{border-bottom:1px solid var(--rh-line);background:#fff}
.rh-header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:20px 22px;max-width:var(--rh-max);margin:0 auto}
.rh-logo{font-family:var(--rh-serif);font-weight:700;font-size:26px;color:var(--rh-ink);letter-spacing:-.3px;text-decoration:none}
.rh-logo span{color:var(--rh-accent)}
.rh-nav ul{display:flex;flex-wrap:nowrap;gap:18px;list-style:none;margin:0;padding:0;align-items:center}
.rh-nav a{color:var(--rh-body);font-weight:500;font-size:14.5px;text-decoration:none;letter-spacing:.1px;white-space:nowrap}
.rh-nav a:hover{color:var(--rh-accent)}
@media(max-width:1040px){.rh-nav a{font-size:13.5px}.rh-nav>ul{gap:14px}}
@media(max-width:820px){.rh-nav{display:none}.rh-menu-toggle{display:inline-block}}
.rh-menu-toggle{display:none;font-size:24px;background:none;border:none;cursor:pointer;color:var(--rh-ink);line-height:1}

/* "More" dropdown */
.rh-nav>ul{position:relative}
.rh-more{position:relative}
.rh-more>.rh-more-toggle{font-weight:600}
.rh-more-menu{
  position:absolute;top:calc(100% + 14px);right:0;min-width:230px;
  background:#fff;border:1px solid var(--rh-line);border-radius:10px;
  box-shadow:0 12px 30px rgba(0,0,0,.10);padding:8px;list-style:none;margin:0;
  display:flex;flex-direction:column;gap:2px;
  opacity:0;visibility:hidden;transform:translateY(-6px);transition:.15s;z-index:60;
}
.rh-more:hover .rh-more-menu,.rh-more:focus-within .rh-more-menu{opacity:1;visibility:visible;transform:translateY(0)}
.rh-more-menu li{padding:0}
.rh-more-menu a{display:block;padding:9px 12px;border-radius:7px;font-size:14.5px;white-space:nowrap}
.rh-more-menu a:hover{background:var(--rh-soft);color:var(--rh-accent)}
/* small bridge so hover doesn't drop when moving to the menu */
.rh-more:after{content:"";position:absolute;top:100%;left:0;right:0;height:16px}

/* ============ FRONT PAGE ============ */
.rh-fp-hero{padding:64px 0 48px;text-align:center;border-bottom:1px solid var(--rh-line)}
.rh-fp-hero-inner{max-width:760px;margin:0 auto;padding:0 22px}
.rh-fp-eyebrow{display:inline-block;font-family:var(--rh-sans);font-size:12.5px;text-transform:uppercase;letter-spacing:1.6px;color:var(--rh-accent);font-weight:700;margin-bottom:18px}
.rh-fp-hero h1{font-family:var(--rh-serif);font-weight:700;font-size:50px;line-height:1.08;letter-spacing:-1.2px;margin:0 0 18px;color:var(--rh-ink)}
.rh-fp-hero p{font-family:var(--rh-sans);font-size:20px;line-height:1.6;color:var(--rh-muted);margin:0 auto 28px;max-width:620px}
.rh-fp-hero-cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.rh-fp-btn{display:inline-block;background:var(--rh-accent);color:#fff;font-family:var(--rh-sans);font-weight:600;padding:13px 28px;border-radius:6px;text-decoration:none;font-size:16px}
.rh-fp-btn:hover{background:var(--rh-accent-dark);color:#fff}
.rh-fp-btn-ghost{display:inline-block;background:#fff;color:var(--rh-ink);border:1px solid var(--rh-line);font-family:var(--rh-sans);font-weight:600;padding:13px 28px;border-radius:6px;text-decoration:none;font-size:16px}
.rh-fp-btn-ghost:hover{border-color:var(--rh-accent);color:var(--rh-accent)}
@media(max-width:600px){.rh-fp-hero h1{font-size:34px}.rh-fp-hero{padding:44px 0 34px}}

/* hero with image (2-col) */
.rh-fp-hero--img{padding:48px 0 40px}
.rh-fp-hero-grid{max-width:var(--rh-max);margin:0 auto;padding:0 22px;display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center;text-align:left}
.rh-fp-hero--img .rh-fp-hero-inner{max-width:none;margin:0;padding:0;text-align:left}
.rh-fp-hero--img .rh-fp-hero-cta{justify-content:flex-start}
.rh-fp-hero-img img{width:100%;height:auto;border-radius:16px;background:#f3f4f6}
@media(max-width:840px){
  .rh-fp-hero-grid{grid-template-columns:1fr;text-align:center;gap:24px}
  .rh-fp-hero--img .rh-fp-hero-inner,.rh-fp-hero--img .rh-fp-hero-cta{text-align:center;justify-content:center}
  .rh-fp-hero-img{max-width:440px;margin:0 auto}
}

/* feature bands */
.rh-fp-feat{max-width:var(--rh-max);margin:10px auto 0;padding:0 22px}
.rh-fp-feat-row{display:grid;grid-template-columns:1fr 1.1fr;gap:40px;align-items:center;padding:34px 0;border-top:1px solid var(--rh-line)}
.rh-fp-feat-row--rev .rh-fp-feat-img{order:2}
.rh-fp-feat-img img{width:100%;height:auto;border-radius:14px;background:#f3f4f6}
.rh-fp-feat-txt h3{font-family:var(--rh-head);font-size:25px;margin:6px 0 10px;color:var(--rh-ink);letter-spacing:-.3px}
.rh-fp-feat-txt p{color:var(--rh-muted);font-family:var(--rh-sans);margin:0 0 14px}
.rh-fp-textlink{font-family:var(--rh-sans);font-weight:600;color:var(--rh-accent);text-decoration:none}
.rh-fp-textlink:hover{text-decoration:underline}
@media(max-width:760px){
  .rh-fp-feat-row{grid-template-columns:1fr;gap:18px;text-align:left}
  .rh-fp-feat-row--rev .rh-fp-feat-img{order:0}
  .rh-fp-feat-img{max-width:480px}
}

.rh-fp-trust{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:var(--rh-max);margin:0 auto;padding:30px 22px;text-align:center;font-family:var(--rh-sans)}
.rh-fp-trust-item strong{display:block;font-family:var(--rh-serif);font-size:34px;color:var(--rh-ink);line-height:1}
.rh-fp-trust-item span{font-size:13px;color:var(--rh-muted);text-transform:uppercase;letter-spacing:.8px}
@media(max-width:600px){.rh-fp-trust{grid-template-columns:repeat(2,1fr);gap:24px}}

.rh-main .rh-fp-h2,section .rh-fp-h2{font-family:var(--rh-serif);font-size:30px;text-align:center;margin:48px 0 6px;color:var(--rh-ink);letter-spacing:-.4px}
.rh-fp-sub{text-align:center;color:var(--rh-muted);font-family:var(--rh-sans);font-size:16px;margin:0 auto 28px;max-width:560px}

.rh-fp-cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;font-family:var(--rh-sans)}
@media(max-width:880px){.rh-fp-cat-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.rh-fp-cat-grid{grid-template-columns:1fr}}
.rh-fp-cat{display:flex;flex-direction:column;align-items:flex-start;gap:6px;border:1px solid var(--rh-line);border-radius:10px;padding:22px 20px;text-decoration:none;background:#fff;transition:.15s}
.rh-fp-cat:hover{border-color:var(--rh-accent);box-shadow:0 6px 22px rgba(11,107,83,.08);transform:translateY(-2px)}
.rh-fp-cat-ico{display:inline-flex;width:46px;height:46px;align-items:center;justify-content:center;border-radius:10px;background:#f0f6f3;color:var(--rh-accent);margin-bottom:4px}
.rh-fp-cat-ico svg{width:24px;height:24px}
.rh-fp-cat-name{font-weight:600;font-size:16.5px;color:var(--rh-ink)}
.rh-fp-cat-meta{font-size:13.5px;color:var(--rh-accent);font-weight:500}
.rh-fp-cat-meta .rh-arrow{font-weight:700}
.rh-fp-cat:hover .rh-fp-cat-ico{background:var(--rh-accent);color:#fff}

/* how-we-rank icons */
.rh-how-ico{display:inline-flex;width:44px;height:44px;align-items:center;justify-content:center;border-radius:10px;background:#fff;border:1px solid var(--rh-line);color:var(--rh-accent);margin-bottom:10px}
.rh-how-ico svg{width:24px;height:24px}

.rh-fp-posts{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;font-family:var(--rh-sans)}
@media(max-width:880px){.rh-fp-posts{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.rh-fp-posts{grid-template-columns:1fr}}
.rh-fp-post{display:flex;flex-direction:column;border:1px solid var(--rh-line);border-radius:12px;overflow:hidden;text-decoration:none;background:#fff;transition:.15s}
.rh-fp-post:hover{border-color:var(--rh-accent);box-shadow:0 8px 26px rgba(0,0,0,.09);transform:translateY(-2px)}
.rh-fp-post-thumb{display:block;aspect-ratio:16/9;background:#f3f4f6;overflow:hidden}
.rh-fp-post-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:.3s}
.rh-fp-post:hover .rh-fp-post-thumb img{transform:scale(1.04)}
.rh-fp-thumb-ph{display:block;width:100%;height:100%;background:linear-gradient(135deg,#eef2f0,#f8fafc)}
.rh-fp-post-body{display:flex;flex-direction:column;gap:7px;padding:16px 18px}
.rh-fp-post-cat{font-size:11.5px;text-transform:uppercase;letter-spacing:1px;color:var(--rh-accent);font-weight:700}
.rh-fp-post-title{font-family:var(--rh-head);font-weight:700;font-size:17.5px;line-height:1.3;color:var(--rh-ink)}
.rh-fp-post-ex{font-size:14px;color:var(--rh-muted)}

/* view all button */
.rh-fp-viewall{text-align:center;margin:26px 0 0}
.rh-fp-viewall-btn{display:inline-block;background:#fff;color:var(--rh-ink);border:1px solid var(--rh-line);font-family:var(--rh-sans);font-weight:600;padding:12px 28px;border-radius:8px;text-decoration:none;font-size:15px}
.rh-fp-viewall-btn:hover{border-color:var(--rh-accent);color:var(--rh-accent)}

.rh-fp-how{background:var(--rh-soft);border-top:1px solid var(--rh-line);border-bottom:1px solid var(--rh-line);padding:10px 0 40px;margin-top:50px}
.rh-fp-how-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;max-width:var(--rh-max);margin:0 auto;padding:0 22px;font-family:var(--rh-sans)}
@media(max-width:880px){.rh-fp-how-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.rh-fp-how-grid{grid-template-columns:1fr}}
.rh-fp-how-grid strong{display:block;font-size:17px;color:var(--rh-ink);margin-bottom:6px}
.rh-fp-how-grid p{font-size:14.5px;color:var(--rh-muted);margin:0}

/* front-page sections share the readable wrap */
.rh-main>section,.rh-main>#categories,.rh-main>.rh-ad{max-width:var(--rh-max);margin-left:auto;margin-right:auto;padding-left:22px;padding-right:22px}
.rh-fp-hero,.rh-fp-how{max-width:none;padding-left:0;padding-right:0}

/* thin accent rule under header */
.rh-accentbar{height:3px;background:var(--rh-accent)}

/* ===== Layout ===== */
.rh-main{padding:34px 0 70px}
.rh-grid{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:48px}
@media(max-width:920px){.rh-grid{grid-template-columns:1fr}}
.rh-content{min-width:0;max-width:var(--rh-read)}

/* ===== Typography (serif headings = authority) ===== */
.rh-content h1{font-family:var(--rh-serif);font-weight:700;font-size:40px;line-height:1.15;letter-spacing:-.5px;margin:.1em 0 .35em;color:var(--rh-ink)}
.rh-content h2{font-family:var(--rh-serif);font-weight:700;font-size:28px;line-height:1.25;margin:1.6em 0 .5em;color:var(--rh-ink)}
.rh-content h3{font-family:var(--rh-sans);font-weight:700;font-size:21px;margin:1.4em 0 .4em;color:var(--rh-ink)}
.rh-meta{color:var(--rh-muted);font-size:14.5px;font-family:var(--rh-sans);margin-bottom:18px;letter-spacing:.2px}
.rh-meta a{color:var(--rh-muted)}
.rh-content p{margin:0 0 1.2em}
.rh-content ul,.rh-content ol{margin:0 0 1.2em;padding-left:24px}
.rh-content li{margin:.35em 0}
.rh-content blockquote{border-left:3px solid var(--rh-accent);margin:1.4em 0;padding:.2em 0 .2em 20px;color:var(--rh-muted);font-style:italic}

/* ===== Sidebar ===== */
.rh-sidebar{font-family:var(--rh-sans)}
.rh-sidebar{align-self:start;position:sticky;top:20px}
.rh-sidebar ul{list-style:none;margin:0;padding:0}
.rh-sidebar a{text-decoration:none}

/* widget card */
.rh-widget{background:#fff;border:1px solid var(--rh-line);border-radius:14px;padding:18px;margin-bottom:20px}
.rh-widget-title{font-family:var(--rh-head);font-size:15px;color:var(--rh-ink);margin:0 0 14px;font-weight:700;display:flex;align-items:center;gap:8px}
.rh-widget-title:before{content:"";width:4px;height:16px;background:var(--rh-accent);border-radius:2px;display:inline-block}

/* sidebar CTA box */
.rh-side-cta{background:linear-gradient(135deg,#0b6b53,#0a8c6a);color:#fff;border-radius:14px;padding:22px;margin-bottom:20px;text-align:center}
.rh-side-cta-ico{display:inline-flex;width:46px;height:46px;align-items:center;justify-content:center;background:rgba(255,255,255,.18);border-radius:12px;margin-bottom:10px}
.rh-side-cta-ico svg{width:26px;height:26px;color:#fff}
.rh-side-cta h3{font-family:var(--rh-head);font-size:18px;margin:0 0 6px;color:#fff}
.rh-side-cta p{font-size:13.5px;color:rgba(255,255,255,.85);margin:0 0 14px;line-height:1.5}
.rh-side-cta-btn{display:inline-block;background:#fff;color:var(--rh-accent);font-weight:700;padding:10px 20px;border-radius:8px;font-size:14px;text-decoration:none}
.rh-side-cta-btn:hover{background:#f0f6f3}

/* category list with icons */
.rh-side-cats li{margin:2px 0}
.rh-side-cats a{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:9px;color:var(--rh-body);font-size:14.5px;transition:.12s}
.rh-side-cats a:hover{background:var(--rh-soft);color:var(--rh-accent)}
.rh-side-cat-ico{display:inline-flex;width:30px;height:30px;align-items:center;justify-content:center;background:#f0f6f3;color:var(--rh-accent);border-radius:8px;flex:none}
.rh-side-cat-ico svg{width:17px;height:17px}
.rh-side-cat-name{flex:1;min-width:0;font-weight:500}
.rh-side-cat-count{background:var(--rh-soft);color:var(--rh-muted);font-size:12px;font-weight:600;padding:1px 8px;border-radius:999px}

/* latest posts with thumbs */
.rh-side-posts li{margin-bottom:12px}
.rh-side-posts li:last-child{margin-bottom:0}
.rh-side-posts a{display:flex;gap:11px;align-items:center}
.rh-side-thumb{width:62px;height:46px;border-radius:8px;overflow:hidden;flex:none;background:#f3f4f6;display:block}
.rh-side-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.rh-side-thumb-ph{display:block;width:100%;height:100%;background:linear-gradient(135deg,#eef2f0,#f8fafc)}
.rh-side-post-body{min-width:0}
.rh-side-post-title{display:block;font-size:13.5px;font-weight:600;color:var(--rh-ink);line-height:1.35}
.rh-side-posts a:hover .rh-side-post-title{color:var(--rh-accent)}
.rh-side-post-date{font-size:12px;color:var(--rh-muted)}

/* keep legacy widgets styled too */
.rh-sidebar .widget{background:#fff;border:1px solid var(--rh-line);border-radius:14px;padding:18px;margin-bottom:20px}
.rh-sidebar .widget-title{font-family:var(--rh-head);font-size:15px;color:var(--rh-ink);margin:0 0 12px;font-weight:700}
.rh-sidebar .widget li{padding:7px 0;border-bottom:1px solid var(--rh-line);font-size:14.5px}
.rh-sidebar .widget a{color:var(--rh-body)}
.rh-sidebar .widget a:hover{color:var(--rh-accent)}

/* ===== Ad slots (understated) ===== */
.rh-ad{background:var(--rh-soft);border:1px solid var(--rh-line);border-radius:var(--rh-radius);text-align:center;color:#9aa0a6;font-family:var(--rh-sans);font-size:13px;padding:24px;margin:30px 0}
.rh-ad small{display:block;font-size:10.5px;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:6px;color:#b6bbc1}

/* ===== Comparison table (premium) ===== */
.rh-table-wrap{overflow-x:auto;margin:30px 0;font-family:var(--rh-sans);border:1px solid var(--rh-line);border-radius:12px;box-shadow:0 1px 3px rgba(0,0,0,.04)}
table.rh-compare{width:100%;border-collapse:separate;border-spacing:0;font-size:14.5px;min-width:600px}
table.rh-compare th,table.rh-compare td{padding:14px 16px;text-align:left;vertical-align:middle;border-bottom:1px solid var(--rh-line)}
table.rh-compare thead th{
  background:var(--rh-ink);color:#fff;font-weight:600;font-size:12px;
  text-transform:uppercase;letter-spacing:.7px;border-bottom:none;position:sticky;top:0
}
table.rh-compare thead th:first-child{border-top-left-radius:11px}
table.rh-compare thead th:last-child{border-top-right-radius:11px}
table.rh-compare tbody tr:nth-child(even){background:var(--rh-soft)}
table.rh-compare tbody tr:hover{background:#f0f6f3}
table.rh-compare tbody tr:last-child td{border-bottom:none}
table.rh-compare td:nth-child(2){font-weight:600;color:var(--rh-ink)}
/* rank cell = numbered badge */
table.rh-compare .rh-rank{font-weight:700;color:transparent;position:relative;width:46px;text-align:center}
table.rh-compare .rh-rank:before{
  content:attr(data-rank);position:absolute;inset:0;margin:auto;width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;border-radius:50%;
  background:#f0f6f3;color:var(--rh-accent);font-weight:700;font-size:14px;top:50%;left:50%;transform:translate(-50%,-50%)
}
table.rh-compare tbody tr:nth-child(1) .rh-rank:before{background:var(--rh-accent);color:#fff}
table.rh-compare tbody tr:nth-child(2) .rh-rank:before{background:#d8a200;color:#fff}
table.rh-compare tbody tr:nth-child(3) .rh-rank:before{background:#b06a2c;color:#fff}

/* ===== Products (best-selling) table ===== */
.rh-products{margin:30px 0}
.rh-products-h{font-family:var(--rh-head);font-size:22px;margin:0 0 6px;color:var(--rh-ink)}
.rh-products-table .rh-rank:before{content:none}
.rh-products-table td{font-family:var(--rh-sans)}
.rh-pt-logo{vertical-align:middle;border-radius:4px}
.rh-pt-prod{font-weight:600;color:var(--rh-ink)}
.rh-pt-price{font-weight:700;color:var(--rh-accent);white-space:nowrap}
.rh-pt-spec{color:var(--rh-muted);font-size:13.5px}
.rh-pt-link{display:inline-block;background:var(--rh-accent);color:#fff;font-weight:600;font-size:13px;padding:6px 13px;border-radius:6px;text-decoration:none;white-space:nowrap}
.rh-pt-link:hover{background:var(--rh-accent-dark);color:#fff}
.rh-products-note{font-family:var(--rh-sans);font-size:13px;color:var(--rh-muted);margin-top:8px}

/* ===== Rating / review boxes ===== */
.rh-review{border:1px solid var(--rh-line);border-radius:var(--rh-radius);padding:24px 26px;margin:30px 0;font-family:var(--rh-sans)}
.rh-review-head{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:6px}
.rh-review-title{display:flex;align-items:center;gap:12px}
.rh-review-logo{width:40px;height:40px;border-radius:8px;border:1px solid var(--rh-line);background:#fff;padding:4px;object-fit:contain;flex:none}
.rh-review-head h3{margin:0;font-family:var(--rh-head);font-size:22px}
.rh-score{display:inline-flex;align-items:center;gap:6px;background:var(--rh-ink);color:#fff;font-weight:700;padding:5px 12px;border-radius:6px;font-size:14px}
.rh-stars{display:flex;align-items:center;gap:8px;margin:4px 0 2px}
.rh-stars-ic{color:var(--rh-amber);font-size:17px;letter-spacing:2px}
.rh-stars-num{font-size:13.5px;color:var(--rh-muted);font-weight:600}
.rh-bestfor{display:inline-block;background:#f0f6f3;color:var(--rh-accent);border:1px solid #cfe6dd;font-weight:600;font-size:13px;padding:3px 11px;border-radius:999px;margin:8px 0}
.rh-proscons{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:16px 0}
@media(max-width:560px){.rh-proscons{grid-template-columns:1fr}}
.rh-pros,.rh-cons{border-radius:6px;padding:14px 16px}
.rh-pros{background:#f3f8f5;border:1px solid #d6e9e0}
.rh-cons{background:#fcf4f3;border:1px solid #f1d7d4}
.rh-pros h4,.rh-cons h4{margin:0 0 8px;font-size:12px;text-transform:uppercase;letter-spacing:.8px;color:var(--rh-ink)}
.rh-pros ul,.rh-cons ul{margin:0;padding-left:18px}
.rh-visit{display:inline-block;background:var(--rh-accent);color:#fff;font-weight:600;padding:12px 24px;border-radius:6px;margin-top:10px;text-decoration:none;font-size:15px}
.rh-visit:hover{background:var(--rh-accent-dark);color:#fff}

/* ===== FAQ ===== */
.rh-faq{font-family:var(--rh-sans)}
.rh-faq details{border-bottom:1px solid var(--rh-line);padding:14px 0;margin:0}
.rh-faq summary{font-weight:600;cursor:pointer;font-size:17px;color:var(--rh-ink);list-style:none}
.rh-faq summary::-webkit-details-marker{display:none}
.rh-faq summary:before{content:"+ ";color:var(--rh-accent);font-weight:700}
.rh-faq details[open] summary:before{content:"– "}

/* ===== Home: hero ===== */
.rh-hero{padding:44px 0 26px;border-bottom:1px solid var(--rh-line);margin-bottom:34px;text-align:center}
.rh-hero h1{font-family:var(--rh-serif);font-weight:700;font-size:46px;line-height:1.1;letter-spacing:-1px;margin:0 0 14px;color:var(--rh-ink)}
.rh-hero p{color:var(--rh-muted);font-size:20px;max-width:640px;margin:0 auto;font-family:var(--rh-sans)}
@media(max-width:600px){.rh-hero h1{font-size:34px}.rh-content h1{font-size:30px}}

/* ===== Home: section heading ===== */
.rh-section-title{font-family:var(--rh-sans);font-size:13px;text-transform:uppercase;letter-spacing:1.4px;color:var(--rh-ink);font-weight:700;border-bottom:2px solid var(--rh-ink);padding-bottom:8px;margin:36px 0 22px}

/* ===== Home: category list (editorial, not boxy cards) ===== */
.rh-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:2px 36px;font-family:var(--rh-sans)}
.rh-card{display:block;border-bottom:1px solid var(--rh-line);padding:18px 0;text-decoration:none;color:var(--rh-ink)}
.rh-card h3{margin:0 0 4px;font-size:18px;font-weight:700;color:var(--rh-ink)}
.rh-card:hover h3{color:var(--rh-accent)}
.rh-card p{color:var(--rh-muted);font-size:14px;margin:0}

/* ===== Archive grid with featured images (category + guides) ===== */
.rh-archive-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;font-family:var(--rh-sans);margin:8px 0 24px}
.rh-arch-card{display:flex;flex-direction:column;border:1px solid var(--rh-line);border-radius:12px;overflow:hidden;text-decoration:none;background:#fff;transition:.15s}
.rh-arch-card:hover{border-color:var(--rh-accent);box-shadow:0 8px 26px rgba(0,0,0,.09);transform:translateY(-2px)}
.rh-arch-thumb{display:block;aspect-ratio:16/9;background:#f3f4f6;overflow:hidden}
.rh-arch-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:.3s}
.rh-arch-card:hover .rh-arch-thumb img{transform:scale(1.04)}
.rh-arch-body{display:flex;flex-direction:column;gap:6px;padding:16px 18px}
.rh-arch-cat{font-size:11.5px;text-transform:uppercase;letter-spacing:1px;color:var(--rh-accent);font-weight:700}
.rh-arch-title{font-family:var(--rh-head);font-weight:700;font-size:18px;line-height:1.3;color:var(--rh-ink)}
.rh-arch-card:hover .rh-arch-title{color:var(--rh-accent)}
.rh-arch-meta{font-size:12.5px;color:var(--rh-muted)}
.rh-arch-ex{font-size:14px;color:var(--rh-muted)}

/* pagination */
.rh-content .page-numbers{display:inline-block;padding:8px 14px;margin:0 3px;border:1px solid var(--rh-line);border-radius:7px;text-decoration:none;color:var(--rh-ink);font-family:var(--rh-sans);font-size:14px}
.rh-content .page-numbers.current{background:var(--rh-accent);color:#fff;border-color:var(--rh-accent)}
.rh-content a.page-numbers:hover{border-color:var(--rh-accent);color:var(--rh-accent)}

/* ===== Post list (editorial) ===== */
.rh-postlist{list-style:none;padding:0;margin:0;font-family:var(--rh-sans)}
.rh-postlist li{border-bottom:1px solid var(--rh-line);padding:22px 0}
.rh-postlist h2{font-family:var(--rh-serif);font-size:24px;margin:0 0 6px;line-height:1.25}
.rh-postlist h2 a{color:var(--rh-ink);text-decoration:none}
.rh-postlist h2 a:hover{color:var(--rh-accent)}
.rh-postlist .rh-excerpt{color:var(--rh-body);font-size:16px}

/* ===== Quick answer (voice / featured-snippet box) ===== */
.rh-quickanswer{background:#f3f8f5;border:1px solid #d6e9e0;border-radius:12px;padding:16px 20px;margin:22px 0;font-family:var(--rh-sans)}
.rh-qa-label{display:inline-block;font-size:11px;text-transform:uppercase;letter-spacing:1px;font-weight:700;color:var(--rh-accent);margin-bottom:6px}
.rh-qa-text{margin:0;font-size:16.5px;line-height:1.6;color:var(--rh-ink);font-weight:500}

/* ===== Fact-check / freshness line ===== */
.rh-factcheck{font-family:var(--rh-sans);font-size:14px;color:var(--rh-muted);background:#f3f8f5;border-left:3px solid var(--rh-accent);border-radius:0 8px 8px 0;padding:11px 16px;margin:18px 0}

/* ===== Table of Contents ===== */
.rh-toc{background:var(--rh-soft);border:1px solid var(--rh-line);border-radius:12px;padding:18px 22px;margin:24px 0;font-family:var(--rh-sans)}
.rh-toc-h{font-size:13px;text-transform:uppercase;letter-spacing:.8px;color:var(--rh-muted);font-weight:700;margin:0 0 10px}
.rh-toc ul{margin:0;padding:0;list-style:none;columns:2;column-gap:30px}
@media(max-width:560px){.rh-toc ul{columns:1}}
.rh-toc li{margin:5px 0;break-inside:avoid}
.rh-toc a{color:var(--rh-accent);text-decoration:none;font-size:14.5px}
.rh-toc a:hover{text-decoration:underline}
.rh-content h2{scroll-margin-top:80px}

/* ===== Buying guide / tips boxes ===== */
.rh-tipbox{border:1px solid var(--rh-line);border-radius:12px;padding:18px 22px;margin:22px 0;font-family:var(--rh-sans);background:#fff}
.rh-tipbox h3{font-family:var(--rh-head);margin:0 0 8px;font-size:19px}
.rh-tipbox ul{margin:8px 0 0;padding-left:20px}
.rh-tipbox li{margin:7px 0}
.rh-redflags{background:#fef7f6;border-color:#f3d3cf}
.rh-redflags h3{color:var(--rh-red)}

/* ===== Key takeaways (GEO/AEO answer box) ===== */
.rh-takeaways{background:#f3f8f5;border:1px solid #d6e9e0;border-left:4px solid var(--rh-accent);border-radius:10px;padding:20px 24px;margin:28px 0;font-family:var(--rh-sans)}
.rh-takeaways-h{font-family:var(--rh-head);font-size:18px;margin:0 0 12px;color:var(--rh-ink)}
.rh-takeaways ul{margin:0;padding-left:20px}
.rh-takeaways li{margin:7px 0;color:var(--rh-body)}

/* ===== Featured image ===== */
.rh-featured{margin:0 0 28px;border-radius:14px;overflow:hidden;background:#f3f4f6}
.rh-featured img{width:100%;height:auto;display:block}

/* ===== Tags ===== */
.rh-tags{margin:30px 0 6px;font-family:var(--rh-sans);display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.rh-tags-label{font-size:13px;text-transform:uppercase;letter-spacing:.6px;color:var(--rh-muted);font-weight:700;margin-right:4px}
.rh-tag{display:inline-block;background:var(--rh-soft);border:1px solid var(--rh-line);color:var(--rh-body);font-size:13.5px;padding:5px 12px;border-radius:999px;text-decoration:none}
.rh-tag:hover{border-color:var(--rh-accent);color:var(--rh-accent)}

/* ===== Author byline (top of article) ===== */
.rh-byline{display:flex;align-items:center;gap:12px;margin:18px 0 22px;font-family:var(--rh-sans)}
.rh-byline-img{width:44px;height:44px;border-radius:50%;object-fit:cover;flex:none}
.rh-byline-txt{display:flex;flex-direction:column;line-height:1.35}
.rh-byline-name{font-size:15px;font-weight:600;color:var(--rh-ink)}
.rh-byline-name a{color:var(--rh-ink);text-decoration:none}
.rh-byline-name a:hover{color:var(--rh-accent)}
.rh-byline-date{font-size:13.5px;color:var(--rh-muted)}

/* ===== Author box (bottom of article) ===== */
.rh-authorbox{display:flex;gap:18px;align-items:flex-start;margin:40px 0 10px;padding:22px;background:var(--rh-soft);border:1px solid var(--rh-line);border-radius:12px;font-family:var(--rh-sans)}
.rh-author-av{flex:none}
.rh-authorbox .rh-author-img{width:72px!important;height:72px!important;border-radius:50%!important;object-fit:cover;display:block;max-width:none;border:2px solid #fff;box-shadow:0 1px 4px rgba(0,0,0,.12)}
.rh-author-label{display:block;font-size:12px;text-transform:uppercase;letter-spacing:1px;color:var(--rh-muted);font-weight:600}
.rh-author-name{font-size:18px;font-weight:700;color:var(--rh-ink);text-decoration:none;font-family:var(--rh-head)}
.rh-author-name:hover{color:var(--rh-accent)}
.rh-author-bio{margin:6px 0 0;color:var(--rh-muted);font-size:14.5px}

/* ===== Breadcrumb ===== */
.rh-breadcrumb{font-family:var(--rh-sans);font-size:13.5px;color:var(--rh-muted);margin:0 0 14px;display:flex;flex-wrap:wrap;gap:7px;align-items:center}
.rh-breadcrumb a{color:var(--rh-muted);text-decoration:none}
.rh-breadcrumb a:hover{color:var(--rh-accent);text-decoration:underline}
.rh-breadcrumb span{color:#b6bbc1}
.rh-breadcrumb .rh-bc-current{color:var(--rh-ink)}

/* ===== Disclosure ===== */
.rh-disclosure{font-family:var(--rh-sans);font-size:13.5px;background:var(--rh-soft);border-left:3px solid var(--rh-accent);border-radius:0 6px 6px 0;padding:11px 16px;margin:20px 0;color:var(--rh-muted)}

/* =====================================================================
   STORE DIRECTORY (/stores/)
   ===================================================================== */
.rh-dir-hero{max-width:var(--rh-max);margin:0 auto;padding:36px 22px 10px;text-align:center}
.rh-dir-hero h1{font-family:var(--rh-head);font-size:40px;margin:0 0 10px;color:var(--rh-ink);letter-spacing:-.5px}
.rh-dir-hero p{color:var(--rh-muted);font-size:18px;max-width:640px;margin:0 auto 22px;font-family:var(--rh-sans)}
.rh-dir-search{max-width:560px;margin:0 auto 16px}
.rh-dir-search input{width:100%;padding:14px 18px;font-size:16px;font-family:var(--rh-sans);border:1px solid var(--rh-line);border-radius:10px;outline:none}
.rh-dir-search input:focus{border-color:var(--rh-accent);box-shadow:0 0 0 3px rgba(11,107,83,.1)}
.rh-dir-eyebrow{display:inline-block;font-family:var(--rh-sans);font-size:12.5px;text-transform:uppercase;letter-spacing:1.6px;color:var(--rh-accent);font-weight:700;margin-bottom:10px}
.rh-dir-search-ico{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:var(--rh-muted);display:flex;pointer-events:none}
.rh-dir-search-ico svg{width:20px;height:20px}
.rh-dir-search{position:relative}
.rh-dir-search input{padding-left:46px}
.rh-dir-quick-label{font-weight:600;color:var(--rh-ink)}
.rh-dir-quick{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;align-items:center;font-family:var(--rh-sans);font-size:14px;color:var(--rh-muted)}

/* stats bar */
.rh-dir-stats{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:26px;font-family:var(--rh-sans)}
.rh-dir-stat{background:#fff;border:1px solid var(--rh-line);border-radius:12px;padding:14px 24px;text-align:center;min-width:120px}
.rh-dir-stat strong{display:block;font-family:var(--rh-head);font-size:28px;color:var(--rh-ink);line-height:1}
.rh-dir-stat span{font-size:12.5px;color:var(--rh-muted);text-transform:uppercase;letter-spacing:.6px}
@media(max-width:560px){.rh-dir-stat{padding:12px 16px;min-width:0;flex:1}}
.rh-chip{background:#fff;border:1px solid var(--rh-line);border-radius:999px;padding:8px 16px;font-size:14px;font-weight:500;cursor:pointer;font-family:var(--rh-sans);color:var(--rh-body)}
.rh-chip:hover{border-color:var(--rh-accent);color:var(--rh-accent)}
.rh-chip.is-active{background:var(--rh-accent);color:#fff;border-color:var(--rh-accent)}

.rh-dir-wrap{max-width:var(--rh-max);margin:0 auto;padding:20px 22px 60px;display:grid;grid-template-columns:260px 1fr;gap:32px;font-family:var(--rh-sans)}
@media(max-width:880px){.rh-dir-wrap{grid-template-columns:1fr}}
.rh-dir-filters{align-self:start;position:sticky;top:20px;border:1px solid var(--rh-line);border-radius:14px;padding:20px;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.04)}
@media(max-width:880px){.rh-dir-filters{position:static}}
.rh-filt-group{margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid var(--rh-line)}
.rh-filt-group:last-of-type{border-bottom:none;padding-bottom:0;margin-bottom:0}
.rh-filt-group h3{font-size:11.5px;text-transform:uppercase;letter-spacing:.8px;color:var(--rh-muted);margin:0 0 10px;font-weight:700}
.rh-filt-group select,.rh-filt-group input[type=range]{width:100%}
.rh-filt-group select{padding:10px 12px;border:1px solid var(--rh-line);border-radius:9px;font-family:var(--rh-sans);font-size:14px;background:#fff;cursor:pointer;transition:.12s}
.rh-filt-group select:hover{border-color:#cbd5cf}
.rh-filt-group select:focus{border-color:var(--rh-accent);outline:none;box-shadow:0 0 0 3px rgba(11,107,83,.1)}
.rh-filt-group input[type=range]{accent-color:var(--rh-accent);cursor:pointer}
.rh-filt-rangeval{display:inline-block;margin-top:8px;background:#f0f6f3;color:var(--rh-accent);font-size:12.5px;font-weight:700;padding:3px 12px;border-radius:999px}
.rh-check{display:flex;align-items:center;gap:9px;font-size:14px;cursor:pointer;color:var(--rh-body)}
.rh-check input{accent-color:var(--rh-accent);width:17px;height:17px}
.rh-filt-reset{background:none;border:1px solid var(--rh-line);border-radius:8px;padding:6px 14px;cursor:pointer;font-family:var(--rh-sans);font-weight:600;font-size:13px;color:var(--rh-muted)}
.rh-filt-reset:hover{border-color:var(--rh-accent);color:var(--rh-accent)}

.rh-filt-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;padding-bottom:14px;border-bottom:2px solid var(--rh-ink)}
.rh-filt-header h2{font-family:var(--rh-head);font-size:18px;margin:0}

.rh-dir-bar{margin-bottom:18px;display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.rh-dir-count{color:var(--rh-body);font-size:15px}
.rh-dir-count strong{color:var(--rh-ink);font-family:var(--rh-head)}
.rh-dir-bar-right{display:flex;align-items:center;gap:12px;flex-wrap:wrap}

/* active filter chips */
.rh-active-filters{display:flex;gap:6px;flex-wrap:wrap}
.rh-afilter{display:inline-flex;align-items:center;gap:4px;background:#f0f6f3;color:var(--rh-accent);border:1px solid #cfe6dd;border-radius:999px;padding:3px 6px 3px 11px;font-size:12.5px;font-weight:600}
.rh-afilter button{background:none;border:none;color:var(--rh-accent);cursor:pointer;font-size:15px;line-height:1;padding:0 2px}
.rh-afilter button:hover{color:var(--rh-red)}

/* view toggle */
.rh-view-toggle{display:flex;border:1px solid var(--rh-line);border-radius:8px;overflow:hidden}
.rh-view-btn{background:#fff;border:none;padding:7px 10px;cursor:pointer;color:var(--rh-muted);display:flex;align-items:center}
.rh-view-btn.is-active{background:var(--rh-accent);color:#fff}

/* loading skeleton */
.rh-skel{border:1px solid var(--rh-line);border-radius:12px;height:220px;background:linear-gradient(90deg,#f3f4f6 25%,#e9ecef 50%,#f3f4f6 75%);background-size:200% 100%;animation:rh-shimmer 1.3s infinite}
@keyframes rh-shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}

/* ===== Page transition progress bar ===== */
#rh-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--rh-accent),#0a8c6a);z-index:9999;opacity:0;box-shadow:0 0 8px rgba(11,107,83,.5)}

/* ===== Image skeleton (shimmer until loaded, then fade in) ===== */
.rh-img-loading{position:relative;background:linear-gradient(90deg,#f3f4f6 25%,#e9ecef 50%,#f3f4f6 75%);background-size:200% 100%;animation:rh-shimmer 1.3s infinite}
.rh-featured img,.rh-fp-post-thumb img,.rh-arch-thumb img,.rh-side-thumb img{opacity:0;transition:opacity .35s ease}
.rh-featured img.rh-img-loaded,.rh-fp-post-thumb img.rh-img-loaded,.rh-arch-thumb img.rh-img-loaded,.rh-side-thumb img.rh-img-loaded{opacity:1}
.rh-card-logo{transition:opacity .3s ease}
.rh-card-logo.rh-img-loaded{opacity:1}
.rh-dir-map{margin-bottom:20px;border-radius:12px;overflow:hidden;border:1px solid var(--rh-line)}
#rhMap{height:340px;width:100%}

.rh-dir-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px}
.rh-store-card{position:relative;border:1px solid var(--rh-line);border-radius:14px;padding:20px;background:#fff;transition:.18s;display:flex;flex-direction:column}
.rh-store-card:hover{box-shadow:0 10px 30px rgba(0,0,0,.09);border-color:#d8e3df;transform:translateY(-3px)}
.rh-card-badges{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:12px}
.rh-badge-top{background:#fffaf0;color:#b07d00;border:1px solid #f5d98a;font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;padding:2px 9px;border-radius:999px}
.rh-card-top{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.rh-card-logo{width:44px;height:44px;border-radius:10px;border:1px solid var(--rh-line);background:#fff;padding:5px;object-fit:contain;flex:none}
.rh-card-logo-ph{display:flex;align-items:center;justify-content:center;font-family:var(--rh-head);font-weight:800;font-size:20px;color:var(--rh-accent);background:#f0f6f3;border-color:#cfe6dd}
.rh-card-h{flex:1;min-width:0;display:flex;flex-direction:column;gap:4px}
.rh-card-name{font-family:var(--rh-head);font-weight:700;color:var(--rh-ink);text-decoration:none;font-size:17px;line-height:1.2}
.rh-card-name:hover{color:var(--rh-accent)}
.rh-card-sub{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.rh-badge-verified{background:#ecfdf5;color:var(--rh-accent);border:1px solid #a7f3d0;font-size:10px;font-weight:700;padding:1px 7px;border-radius:999px;text-transform:uppercase;letter-spacing:.4px}
.rh-card-score{display:flex;flex-direction:column;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:var(--rh-ink);color:#fff;font-family:var(--rh-head);font-weight:800;font-size:17px;flex:none;line-height:1}
.rh-card-score small{font-size:9px;font-weight:600;opacity:.7}
.rh-card-score.is-good{background:#0b6b53}
.rh-card-score.is-top{background:linear-gradient(135deg,#0b6b53,#0a8c6a)}
.rh-card-bar{height:5px;background:var(--rh-line);border-radius:999px;overflow:hidden;margin-bottom:12px}
.rh-card-bar span{display:block;height:100%;background:linear-gradient(90deg,#0b6b53,#0a8c6a);border-radius:999px}
.rh-card-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:10px;font-size:13px;color:var(--rh-muted)}
.rh-card-stars{color:var(--rh-amber);letter-spacing:1px;font-size:14px}
.rh-card-price{font-weight:700;color:var(--rh-ink)}
.rh-card-type{text-transform:capitalize;background:var(--rh-soft);border:1px solid var(--rh-line);padding:1px 9px;border-radius:999px;font-size:12px}
.rh-card-dist{color:var(--rh-accent);font-weight:600}
.rh-card-bestfor{font-size:13.5px;color:var(--rh-body);margin-bottom:6px}
.rh-card-bestfor span{font-weight:700;color:var(--rh-ink)}
.rh-card-cats{font-size:12.5px;color:var(--rh-muted);margin-bottom:14px}
.rh-card-actions{margin-top:auto;display:flex;align-items:center;gap:10px;flex-wrap:wrap;padding-top:12px;border-top:1px solid var(--rh-line)}
.rh-card-visit{background:var(--rh-accent);color:#fff;font-weight:600;font-size:13px;padding:8px 16px;border-radius:8px;text-decoration:none}
.rh-card-visit:hover{background:var(--rh-accent-dark);color:#fff}
.rh-card-detail{font-size:13px;color:var(--rh-accent);text-decoration:none;font-weight:600}
.rh-card-compare{font-size:12.5px;color:var(--rh-muted);display:flex;align-items:center;gap:5px;cursor:pointer;margin-left:auto}
.rh-noresult{grid-column:1/-1;color:var(--rh-muted);padding:50px 20px;text-align:center;background:var(--rh-soft);border-radius:12px}
.rh-noresult p{margin:0 0 14px;font-size:16px}

/* LIST VIEW */
.rh-dir-grid.is-list{grid-template-columns:1fr}
.rh-dir-grid.is-list .rh-store-card{flex-direction:row;flex-wrap:wrap;align-items:center;padding:16px 20px}
.rh-dir-grid.is-list .rh-card-badges{position:absolute;top:14px;right:16px;margin:0}
.rh-dir-grid.is-list .rh-card-top{margin-bottom:0;flex:1 1 260px}
.rh-dir-grid.is-list .rh-card-bar{display:none}
.rh-dir-grid.is-list .rh-card-meta{margin:0 16px 0 0}
.rh-dir-grid.is-list .rh-card-bestfor,.rh-dir-grid.is-list .rh-card-cats{display:none}
.rh-dir-grid.is-list .rh-card-actions{margin:0;border:none;padding:0;flex:0 0 auto}
@media(max-width:680px){.rh-dir-grid.is-list .rh-store-card{flex-direction:column;align-items:stretch}.rh-dir-grid.is-list .rh-card-actions{border-top:1px solid var(--rh-line);padding-top:12px}}

/* force-hide elements with [hidden] even when they have display:flex/fixed */
.rh-compare-bar[hidden],.rh-modal[hidden],.rh-dir-map[hidden]{display:none !important}

/* sponsored store cards */
.rh-store-card.is-sponsored{border-color:#f0c34d;box-shadow:0 4px 16px rgba(201,138,0,.12);position:relative}
.rh-badge-sponsored{display:inline-block;align-self:flex-start;background:#fffaf0;color:#b07d00;border:1px solid #f5d98a;font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.6px;padding:2px 8px;border-radius:999px;margin-bottom:8px}

/* featured spotlight box (directory top + homepage + article) */
.rh-spotlight{border:1px solid #f5d98a;background:linear-gradient(135deg,#fffaf0,#fff);border-radius:14px;padding:20px 22px;margin:0 0 24px;font-family:var(--rh-sans);display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.rh-spotlight-label{position:absolute;font-size:10.5px}
.rh-spot-tag{font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:#b07d00;display:block;margin-bottom:4px}
.rh-spot-logo{width:56px;height:56px;border-radius:12px;border:1px solid var(--rh-line);background:#fff;padding:6px;object-fit:contain;flex:none}
.rh-spot-body{flex:1;min-width:200px}
.rh-spot-name{font-family:var(--rh-head);font-size:20px;font-weight:700;color:var(--rh-ink);text-decoration:none}
.rh-spot-name:hover{color:var(--rh-accent)}
.rh-spot-blurb{color:var(--rh-muted);font-size:14.5px;margin:2px 0 0}
.rh-spot-cta{background:var(--rh-accent);color:#fff;font-weight:600;padding:11px 22px;border-radius:8px;text-decoration:none;white-space:nowrap}
.rh-spot-cta:hover{background:var(--rh-accent-dark);color:#fff}

/* compare bar */
.rh-compare-bar{position:fixed;bottom:0;left:0;right:0;background:var(--rh-ink);color:#fff;z-index:80;box-shadow:0 -4px 20px rgba(0,0,0,.2)}
.rh-cb-inner{max-width:var(--rh-max);margin:0 auto;padding:12px 22px;display:flex;align-items:center;gap:14px;flex-wrap:wrap;font-family:var(--rh-sans)}
.rh-cb-label{font-weight:700;font-size:14px}
.rh-cb-items{display:flex;gap:8px;flex-wrap:wrap;flex:1}
.rh-cb-item{background:rgba(255,255,255,.15);padding:5px 10px;border-radius:6px;font-size:13px}
.rh-cb-item button{background:none;border:none;color:#fff;cursor:pointer;font-size:15px;margin-left:4px}
.rh-cb-btn{background:var(--rh-accent);color:#fff;border:none;padding:9px 18px;border-radius:7px;font-weight:600;cursor:pointer;font-family:var(--rh-sans)}
.rh-cb-clear{background:none;border:1px solid rgba(255,255,255,.3);color:#fff;padding:9px 14px;border-radius:7px;cursor:pointer;font-family:var(--rh-sans)}

/* modal (hidden by default; JS sets display:flex to open) */
.rh-modal{position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:90;display:none;align-items:flex-start;justify-content:center;padding:40px 16px;overflow:auto}
.rh-modal-box{background:#fff;border-radius:14px;padding:26px;max-width:900px;width:100%;position:relative;font-family:var(--rh-sans)}
.rh-modal-box h2{font-family:var(--rh-head);margin:0 0 18px}
.rh-modal-close{position:absolute;top:14px;right:18px;background:none;border:none;font-size:28px;line-height:1;cursor:pointer;color:var(--rh-muted)}

/* single store */
.rh-store-head{display:flex;align-items:center;gap:16px;margin:8px 0 4px}
.rh-store-logo{width:60px;height:60px;border-radius:12px;border:1px solid var(--rh-line);background:#fff;padding:6px;object-fit:contain;flex:none}
.rh-store-head h1{margin:0;font-size:32px}
.rh-store-sub{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:6px;font-family:var(--rh-sans)}
.rh-store-source{font-family:var(--rh-sans);font-size:14px;color:var(--rh-muted);background:var(--rh-soft);border:1px solid var(--rh-line);border-radius:8px;padding:10px 14px}
.rh-userrating{font-size:16px;color:var(--rh-amber);font-weight:700}
.rh-userreviews{font-family:var(--rh-sans)}
.rh-ur{border:1px solid var(--rh-line);border-radius:10px;padding:14px 16px;margin:10px 0}
.rh-ur-top{display:flex;align-items:center;gap:10px;margin-bottom:4px}
.rh-ur-top .rh-card-stars{color:var(--rh-amber)}
.rh-reviewform{margin:26px 0;padding:22px;border:1px solid var(--rh-line);border-radius:12px;background:var(--rh-soft);font-family:var(--rh-sans)}
.rh-reviewform h3{font-family:var(--rh-head);margin:0 0 12px}
.rh-rf-stars{font-size:28px;color:var(--rh-amber);cursor:pointer;letter-spacing:4px;margin-bottom:10px;user-select:none}
.rh-reviewform input[type=text],.rh-reviewform textarea{width:100%;padding:10px;border:1px solid var(--rh-line);border-radius:8px;margin-bottom:10px;font-family:var(--rh-sans)}
#rhReviewMsg{color:var(--rh-accent);font-weight:600;margin-bottom:8px}

/* ===== Advertise page ===== */
.rh-adv{font-family:var(--rh-sans);padding-bottom:50px}
.rh-adv h1{font-family:var(--rh-head)}
.rh-adv-intro{font-size:18px;color:var(--rh-muted)}
.rh-adv-tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:24px 0 36px}
@media(max-width:760px){.rh-adv-tiers{grid-template-columns:1fr}}
.rh-adv-tier{border:1px solid var(--rh-line);border-radius:12px;padding:22px;position:relative;background:#fff}
.rh-adv-pop{border-color:var(--rh-accent);box-shadow:0 6px 22px rgba(11,107,83,.1)}
.rh-adv-flag{position:absolute;top:-11px;left:22px;background:var(--rh-accent);color:#fff;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.6px;padding:3px 10px;border-radius:999px}
.rh-adv-tier h3{font-family:var(--rh-head);font-size:20px;margin:0 0 4px}
.rh-adv-price{color:var(--rh-accent);font-weight:700;margin:0 0 12px}
.rh-adv-tier ul{margin:0;padding-left:18px}
.rh-adv-tier li{margin:6px 0;font-size:14.5px;color:var(--rh-body)}
.rh-adv-form{display:flex;flex-direction:column;gap:12px;max-width:600px}
.rh-adv-row{display:flex;gap:12px}
@media(max-width:560px){.rh-adv-row{flex-direction:column}}
.rh-adv-form input,.rh-adv-form select,.rh-adv-form textarea{width:100%;padding:11px;border:1px solid var(--rh-line);border-radius:8px;font-family:var(--rh-sans)}
.rh-adv-success{background:#f0fdf4;border:1px solid #bbf7d0;color:var(--rh-green);padding:14px 18px;border-radius:10px;font-weight:600}
.rh-adv-err{background:#fef2f2;border:1px solid #fecaca;color:var(--rh-red);padding:12px 16px;border-radius:10px;margin-bottom:12px}
.rh-adv-note{font-size:13.5px;color:var(--rh-muted);background:var(--rh-soft);border-left:3px solid var(--rh-accent);padding:12px 16px;border-radius:0 8px 8px 0;margin-top:30px}

/* ===== Author profile page ===== */
.rh-authorpage{display:flex;gap:24px;align-items:center;background:var(--rh-soft);border:1px solid var(--rh-line);border-radius:16px;padding:26px;margin:8px 0 30px;font-family:var(--rh-sans)}
@media(max-width:560px){.rh-authorpage{flex-direction:column;text-align:center}}
.rh-authorpage-img{width:110px;height:110px;border-radius:50%;object-fit:cover;flex:none;border:3px solid #fff;box-shadow:0 2px 10px rgba(0,0,0,.1)}
.rh-authorpage-label{font-size:12px;text-transform:uppercase;letter-spacing:1px;color:var(--rh-accent);font-weight:700}
.rh-authorpage-body h1{font-family:var(--rh-head);font-size:30px;margin:4px 0 10px;color:var(--rh-ink)}
.rh-authorpage-bio{color:var(--rh-body);font-size:15.5px;line-height:1.6;margin:0 0 8px}
.rh-authorpage-expertise{color:var(--rh-muted);font-size:14px;margin:0}

/* ===== Related guides ===== */
.rh-related{margin:40px 0 0;font-family:var(--rh-sans)}
.rh-related-h{font-family:var(--rh-head);font-size:24px;margin:0 0 18px;color:var(--rh-ink)}
.rh-related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:680px){.rh-related-grid{grid-template-columns:1fr 1fr}}
@media(max-width:460px){.rh-related-grid{grid-template-columns:1fr}}
.rh-related-card{display:flex;flex-direction:column;border:1px solid var(--rh-line);border-radius:12px;overflow:hidden;text-decoration:none;background:#fff;transition:.15s}
.rh-related-card:hover{border-color:var(--rh-accent);box-shadow:0 8px 24px rgba(0,0,0,.08);transform:translateY(-2px)}
.rh-related-thumb{display:block;aspect-ratio:16/9;background:#f3f4f6;overflow:hidden}
.rh-related-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.rh-related-title{padding:12px 14px;font-family:var(--rh-head);font-weight:600;font-size:14.5px;line-height:1.35;color:var(--rh-ink)}
.rh-related-card:hover .rh-related-title{color:var(--rh-accent)}

/* ===== Reader reviews (comments) ===== */
.rh-reviews-section{margin:44px 0 0;font-family:var(--rh-sans)}
.rh-reviews-section h2{font-family:var(--rh-head);font-size:26px;margin:0 0 6px}
.rh-reviews-agg{font-size:15px;color:var(--rh-amber);font-weight:700}
.rh-review-list{list-style:none;margin:18px 0 0;padding:0}
.rh-review-item{border:1px solid var(--rh-line);border-radius:12px;padding:18px 20px;margin:0 0 14px;background:#fff}
.rh-review-item-head{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.rh-review-av{width:44px;height:44px;border-radius:50%;object-fit:cover;flex:none}
.rh-review-author{display:block;font-weight:700;color:var(--rh-ink);font-size:15px}
.rh-comment-stars{color:var(--rh-amber);font-size:15px;letter-spacing:1px;margin-right:8px}
.rh-review-date{font-size:13px;color:var(--rh-muted)}
.rh-review-text{color:var(--rh-body);font-size:15px;line-height:1.65}
.rh-review-text p{margin:0}

/* review form */
.rh-comments .comment-respond{margin-top:30px;padding:22px;border:1px solid var(--rh-line);border-radius:12px;background:var(--rh-soft)}
.rh-comments .comment-reply-title{font-family:var(--rh-head);font-size:20px;margin:0 0 14px}
.rh-comments label{display:block;font-weight:600;font-size:14px;margin-bottom:5px}
.rh-comments input[type=text],.rh-comments input[type=email],.rh-comments input[type=url],.rh-comments textarea{width:100%;padding:10px;border:1px solid var(--rh-line);border-radius:8px;font-family:var(--rh-sans);margin-bottom:12px}
.rh-rate-input{font-size:26px;color:var(--rh-amber);cursor:pointer;letter-spacing:4px;display:inline-block;margin-bottom:10px;user-select:none}
.comment-form-rating{margin-bottom:8px}
.rh-comments .submit,.rh-comments .rh-card-visit{cursor:pointer;border:none}

/* ===== Footer (multi-column) ===== */
.rh-footer{border-top:1px solid var(--rh-line);background:var(--rh-ink);color:#c8ccd2;font-size:14.5px;font-family:var(--rh-sans);margin-top:60px;padding:48px 0 24px}
.rh-footer a{color:#c8ccd2;text-decoration:none}
.rh-footer a:hover{color:#fff}
.rh-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:36px;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.12)}
@media(max-width:880px){.rh-footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.rh-footer-grid{grid-template-columns:1fr}}
.rh-footer-logo{font-family:var(--rh-head);font-weight:800;font-size:24px;color:#fff;text-decoration:none;letter-spacing:-.3px}
.rh-footer-logo span{color:#5fd0ad}
.rh-footer-tag{color:#fff;font-size:15px;margin:12px 0 8px;font-weight:500}
.rh-footer-mini{color:#9aa2ad;font-size:13.5px;line-height:1.6;max-width:340px;margin:0}
.rh-footer-col h4{color:#fff;font-size:13px;text-transform:uppercase;letter-spacing:1px;margin:0 0 14px;font-weight:700}
.rh-footer-col ul{list-style:none;margin:0;padding:0}
.rh-footer-col li{margin:9px 0;font-size:14px}
.rh-footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:18px;flex-wrap:wrap;padding-top:20px}
.rh-footer-bottom p{margin:0;color:#9aa2ad;font-size:13px}
.rh-footer-disc{max-width:560px;text-align:right}
@media(max-width:680px){.rh-footer-disc{text-align:left}}
