:root {
  --bg: #faf7f2; --bg2: #f3ede3; --surface: #ffffff;
  --border: #e2d9cc; --border2: #cfc4b4;
  --text: #1c1710; --text2: #4a4035; --muted: #8a7d6e;
  --accent: #c8520a; --accent2: #e8831a; --accent-light: #fef3ea;
  --green: #2d6a4f; --green-light: #eef6f1;
  --blue: #1d4e89; --blue-light: #eef2f8;
  --gold: #b7791f; --gold-light: #fef9ee;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Sora', sans-serif; font-weight: 300; line-height: 1.65; overflow-x: hidden; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* TOPBAR */
.topbar { background: var(--text); color: rgba(250,247,242,0.7); text-align: center; padding: 9px 20px; font-size: 0.7rem; letter-spacing: 0.12em; font-family: 'JetBrains Mono', monospace; }
.topbar a { color: var(--accent2); text-decoration: none; }

/* NAV */
nav { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 20px rgba(28,23,16,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 64px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text2); text-decoration: none; font-size: 0.8rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta { background: var(--accent); color: #fff; padding: 9px 20px; border: none; border-radius: 3px; font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--accent2); }

/* BREADCRUMB */
.breadcrumb { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 12px 40px; font-size: 0.72rem; color: var(--muted); display: flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text2); }

/* PAGE HERO */
.page-hero { background: var(--text); color: var(--bg); padding: 60px 40px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; padding: 5px 12px; border-radius: 2px; font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.page-hero h1 em { color: var(--accent2); font-style: italic; }
.page-hero-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: rgba(250,247,242,0.55); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.08em; }
.meta-item svg { opacity: 0.6; }

/* DISCLOSURE */
.disclosure-bar { background: var(--accent-light); border: 1px solid rgba(200,82,10,0.2); padding: 14px 20px; display: flex; gap: 12px; align-items: flex-start; border-radius: 4px; margin: 32px 0 0; }
.disclosure-bar p { font-size: 0.76rem; color: var(--text2); line-height: 1.6; }
.disclosure-bar strong { color: var(--accent); }

/* LAYOUT */
.page-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; padding: 48px 0 72px; }

/* SIDEBAR */
.sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.sidebar-card-head { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 14px 18px; font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.sidebar-toc { padding: 8px 0; }
.toc-item { display: block; padding: 9px 18px; font-size: 0.8rem; color: var(--text2); text-decoration: none; border-left: 2px solid transparent; transition: all 0.2s; }
.toc-item:hover { color: var(--accent); border-left-color: var(--accent); background: var(--accent-light); }
.toc-item.active { color: var(--accent); border-left-color: var(--accent); font-weight: 600; }
.sidebar-pick { padding: 18px; }
.pick-label { font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.pick-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.pick-score { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.score-badge { background: var(--text); color: var(--bg); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem; padding: 3px 9px; border-radius: 3px; }
.score-stars { color: #f59e0b; font-size: 0.85rem; }
.btn-buy { display: block; background: var(--accent); color: #fff; text-align: center; padding: 11px; border-radius: 3px; font-size: 0.8rem; font-weight: 600; text-decoration: none; letter-spacing: 0.06em; transition: background 0.2s; }
.btn-buy:hover { background: var(--accent2); }
.btn-buy-ghost { display: block; background: transparent; color: var(--accent); text-align: center; padding: 10px; border-radius: 3px; border: 1.5px solid var(--accent); font-size: 0.78rem; font-weight: 600; text-decoration: none; letter-spacing: 0.06em; margin-top: 8px; transition: background 0.2s; }
.btn-buy-ghost:hover { background: var(--accent-light); }

/* MAIN CONTENT */
.main-content {}

/* QUICK PICKS */
.quick-picks { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 28px; margin-bottom: 44px; }
.qp-title { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.qp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qp-item { background: var(--surface); border: 1px solid var(--border); border-radius: 5px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); transition: box-shadow 0.2s, transform 0.2s; }
.qp-item:hover { box-shadow: 0 4px 16px rgba(28,23,16,0.08); transform: translateY(-2px); }
.qp-icon { font-size: 1.4rem; flex-shrink: 0; }
.qp-label { font-size: 0.62rem; color: var(--muted); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.qp-name { font-weight: 600; font-size: 0.85rem; }

/* SECTION */
.content-section { margin-bottom: 52px; }
.content-section h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 14px; padding-top: 8px; border-top: 2px solid var(--accent); display: inline-block; }
.content-section p { font-size: 0.9rem; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.content-section h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; }


/* PRODUCT IMAGE */
.product-img-wrap{background:var(--bg2);border:1px solid var(--border);border-radius:8px;overflow:hidden;margin-bottom:18px;position:relative;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px}
.product-img-wrap img{width:100%;height:auto;object-fit:contain;display:block;cursor:zoom-in;transition:opacity .2s}
.product-img-wrap img:hover{opacity:.92}
.product-img-placeholder{color:var(--muted);font-family:'JetBrains Mono',monospace;font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;text-align:center;padding:40px 20px}
.product-img-placeholder svg{opacity:.25;margin-bottom:8px}

/* PRODUCT REVIEW CARD */
.review-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; margin-bottom: 36px;
}
.rc-header { padding: 28px 32px; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.rc-header-left { flex: 1; }
.rc-rank { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.rc-name { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; letter-spacing: -0.01em; margin-bottom: 4px; }
.rc-tagline { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
.rc-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 9px; border-radius: 2px; font-weight: 500; }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-orange { background: var(--accent-light); color: var(--accent); }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-gold { background: var(--gold-light); color: var(--gold); }
.rc-score-block { text-align: center; flex-shrink: 0; }
.rc-score-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--text); line-height: 1; }
.rc-score-max { font-size: 0.8rem; color: var(--muted); }
.rc-score-stars { color: #f59e0b; font-size: 0.85rem; margin-top: 4px; }
.rc-body { display: grid; grid-template-columns: 1fr 240px; gap: 0; }
.rc-main { padding: 28px 32px; border-right: 1px solid var(--border); }
.rc-verdict { font-size: 0.88rem; color: var(--text2); line-height: 1.8; margin-bottom: 20px; }

/* Score bars */
.score-bars { margin: 20px 0; }
.score-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.score-bar-label { font-size: 0.72rem; color: var(--muted); width: 110px; flex-shrink: 0; }
.score-bar-track { flex: 1; height: 6px; background: var(--bg2); border-radius: 3px; overflow: hidden; }
.score-bar-fill { height: 100%; background: var(--accent); border-radius: 3px; transition: width 1.2s ease; }
.score-bar-num { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--text2); width: 28px; text-align: right; flex-shrink: 0; }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.pro-con-box { border-radius: 5px; padding: 16px; }
.pro-box { background: var(--green-light); border: 1px solid rgba(45,106,79,0.2); }
.con-box { background: #fef2f2; border: 1px solid rgba(239,68,68,0.2); }
.pro-con-title { font-size: 0.65rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.pro-box .pro-con-title { color: var(--green); }
.con-box .pro-con-title { color: #dc2626; }
.pro-con-list { list-style: none; }
.pro-con-list li { font-size: 0.78rem; color: var(--text2); padding: 4px 0; display: flex; gap: 8px; line-height: 1.5; }
.pro-con-list li::before { flex-shrink: 0; margin-top: 1px; }
.pro-box .pro-con-list li::before { content: '✓'; color: var(--green); font-weight: 700; }
.con-box .pro-con-list li::before { content: '✗'; color: #dc2626; font-weight: 700; }

/* RC sidebar */
.rc-sidebar { padding: 24px 20px; background: var(--bg2); display: flex; flex-direction: column; gap: 18px; }
.rc-spec-group {}
.rc-spec-group-title { font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.rc-spec-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.rc-spec-label { font-size: 0.72rem; color: var(--muted); }
.rc-spec-val { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--text); font-weight: 500; text-align: right; }
.rc-price-block { background: var(--surface); border: 1px solid var(--border); border-radius: 5px; padding: 14px; text-align: center; }
.rc-price-label { font-size: 0.62rem; color: var(--muted); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.rc-price-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.btn-buy-main { display: block; background: var(--accent); color: #fff; text-align: center; padding: 12px; border-radius: 3px; font-size: 0.8rem; font-weight: 600; text-decoration: none; letter-spacing: 0.06em; transition: background 0.2s, transform 0.15s; }
.btn-buy-main:hover { background: var(--accent2); transform: translateY(-1px); }
.affiliate-note-small { font-size: 0.62rem; color: var(--muted); text-align: center; margin-top: 8px; line-height: 1.5; }

/* COMPARISON TABLE */
.compare-section { margin-bottom: 52px; }
.compare-section h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; margin-bottom: 20px; border-top: 2px solid var(--accent); display: inline-block; padding-top: 8px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 6px; }
table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
thead tr { background: var(--text); }
th { padding: 14px 16px; text-align: left; font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,247,242,0.6); font-weight: 400; }
th:first-child { color: rgba(250,247,242,0.4); }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text2); vertical-align: middle; }
td:first-child { color: var(--muted); font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; letter-spacing: 0.08em; background: var(--bg2); font-weight: 500; }
tr:last-child td { border-bottom: none; }
tr:hover td:not(:first-child) { background: var(--bg2); }
.cell-best { color: var(--accent); font-weight: 600; }
.cell-check { color: var(--green); font-size: 1rem; }
.cell-cross { color: #ef4444; font-size: 1rem; }

/* VERDICT */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.verdict-card { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 20px; }
.verdict-card-title { font-size: 0.62rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.verdict-card-for { font-weight: 700; font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.verdict-card-why { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.verdict-card-price { margin-top: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--accent); }
.verdict-link { display: inline-block; margin-top: 10px; color: var(--accent); font-size: 0.75rem; font-weight: 600; text-decoration: none; letter-spacing: 0.06em; }
.verdict-link:hover { text-decoration: underline; }

/* FAQ */
.faq-section { margin-bottom: 52px; }
.faq-section h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; margin-bottom: 20px; border-top: 2px solid var(--accent); display: inline-block; padding-top: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: 5px; margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 16px 20px; font-weight: 600; font-size: 0.88rem; cursor: pointer; background: var(--surface); display: flex; justify-content: space-between; align-items: center; user-select: none; transition: background 0.2s; }
.faq-q:hover { background: var(--bg2); }
.faq-q span { font-size: 1.1rem; color: var(--accent); transition: transform 0.2s; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s; font-size: 0.84rem; color: var(--text2); line-height: 1.8; }
.faq-a.open { max-height: 300px; padding: 14px 20px; }
.faq-q span.open { transform: rotate(45deg); }

/* LIGHTBOX */
.lightbox-overlay{position:fixed;inset:0;background:rgba(28,23,16,.92);z-index:9999;display:none;align-items:center;justify-content:center;cursor:zoom-out;backdrop-filter:blur(6px);opacity:0;transition:opacity .25s ease}
.lightbox-overlay.active{display:flex;opacity:1}
.lightbox-overlay img{max-width:92vw;max-height:90vh;object-fit:contain;border-radius:6px;box-shadow:0 12px 60px rgba(0,0,0,.5);transform:scale(.95);transition:transform .25s ease}
.lightbox-overlay.active img{transform:scale(1)}
.lightbox-close{position:absolute;top:20px;right:28px;color:rgba(250,247,242,.7);font-size:1.6rem;cursor:pointer;background:rgba(28,23,16,.6);border:1px solid rgba(250,247,242,.15);width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:background .2s,color .2s;font-family:'Sora',sans-serif;line-height:1}
.lightbox-close:hover{background:rgba(200,82,10,.8);color:#fff}
.lightbox-caption{position:absolute;bottom:24px;left:50%;transform:translateX(-50%);color:rgba(250,247,242,.6);font-family:'JetBrains Mono',monospace;font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;background:rgba(28,23,16,.6);padding:6px 16px;border-radius:3px;white-space:nowrap}



/* ================================================================
   SMOKEGEARCO — RESPONSIVE NAV + MOBILE MENU + DROPDOWN
   ================================================================ */

/* DESKTOP DROPDOWN */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a {
  color: var(--text2); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s; display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 0; white-space: nowrap;
}
.nav-item > a .dd-arrow {
  width: 10px; height: 10px; transition: transform 0.25s; opacity: 0.45;
}
.nav-item:hover > a, .nav-item > a.active { color: var(--accent); }
.nav-item:hover > a .dd-arrow { transform: rotate(180deg); opacity: 1; }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 16px 48px rgba(28,23,16,0.14), 0 2px 8px rgba(28,23,16,0.06);
  padding: 8px 0; opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200; pointer-events: none;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Hover bridge */
.dropdown::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.dropdown-head {
  padding: 10px 18px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border); margin-bottom: 4px;
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px; font-size: 0.8rem; color: var(--text2);
  text-decoration: none; transition: all 0.15s;
}
.dropdown a:hover { background: var(--accent-light); color: var(--accent); }
.dropdown a .dd-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; color: var(--muted);
  width: 18px; text-align: right; flex-shrink: 0;
}
.dropdown-foot {
  border-top: 1px solid var(--border); margin-top: 4px; padding: 4px 18px;
}
.dropdown-foot a {
  color: var(--accent) !important; font-weight: 600;
  font-size: 0.78rem !important; padding: 8px 0 !important;
}
.dropdown-foot a:hover { background: none !important; text-decoration: underline; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 6px;
  z-index: 201; -webkit-tap-highlight-color: transparent;
  position: relative; /* ensure it's clickable */
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1),
              opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE OVERLAY */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(28,23,16,0.5);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  z-index: 149; opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.mobile-overlay.show { opacity: 1; pointer-events: auto; }

/* MOBILE DRAWER */
.mobile-drawer {
  display: none; position: fixed; top: 0; right: 0;
  width: min(340px, 88vw); height: 100vh; height: 100dvh;
  background: var(--surface); z-index: 150;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(28,23,16,0.18);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-head .nav-logo { font-size: 1.25rem; }
.drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; cursor: pointer; color: var(--text);
  -webkit-tap-highlight-color: transparent;
}

.drawer-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 8px 0; }

/* Simple nav link in drawer */
.drawer-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; color: var(--text2); text-decoration: none;
  font-size: 0.92rem; font-weight: 500;
  border-left: 3px solid transparent; transition: all 0.2s;
}
.drawer-link:hover, .drawer-link.active {
  color: var(--accent); background: var(--accent-light);
  border-left-color: var(--accent);
}
.drawer-link .dl-icon {
  width: 32px; height: 32px; display: flex; align-items: center;
  justify-content: center; background: var(--bg2); border-radius: 6px;
  font-size: 1rem; flex-shrink: 0;
}
.drawer-link.active .dl-icon { background: var(--accent-light); }

/* Accordion in drawer */
.drawer-acc-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; color: var(--text2);
  font-size: 0.92rem; font-weight: 500;
  border: none; border-left: 3px solid transparent;
  width: 100%; background: none; cursor: pointer;
  font-family: 'Sora', sans-serif; text-align: left;
  transition: all 0.2s; -webkit-tap-highlight-color: transparent;
}
.drawer-acc-btn:hover, .drawer-acc-btn.active {
  color: var(--accent); background: var(--accent-light);
  border-left-color: var(--accent);
}
.drawer-acc-btn .dl-icon {
  width: 32px; height: 32px; display: flex; align-items: center;
  justify-content: center; background: var(--bg2); border-radius: 6px;
  font-size: 1rem; flex-shrink: 0;
}
.drawer-acc-btn.active .dl-icon { background: var(--accent-light); }
.drawer-acc-btn .chev {
  margin-left: auto; transition: transform 0.3s ease; flex-shrink: 0;
}
.drawer-acc-btn.open .chev { transform: rotate(180deg); }

.drawer-sub {
  max-height: 0; overflow: hidden; background: var(--bg2);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer-sub.open { max-height: 600px; }

.drawer-sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px 11px 66px; font-size: 0.82rem;
  color: var(--text2); text-decoration: none;
  border-left: 3px solid transparent; transition: all 0.15s;
}
.drawer-sub a:hover {
  color: var(--accent); background: rgba(200,82,10,0.06);
  border-left-color: var(--accent);
}
.drawer-sub a .sn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; color: var(--muted); width: 16px;
  text-align: right; flex-shrink: 0;
}
.drawer-sub .sub-all {
  color: var(--accent); font-weight: 600;
  border-top: 1px solid var(--border); margin-top: 2px;
}

.drawer-divider { height: 1px; background: var(--border); margin: 6px 20px; }

.drawer-cta {
  padding: 16px 20px; border-top: 1px solid var(--border); flex-shrink: 0;
}
.drawer-cta a {
  display: block; background: var(--accent); color: #fff;
  text-align: center; padding: 14px; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.drawer-cta a:hover { background: var(--accent2); }

body.menu-open { overflow: hidden; }


/* ================================================================
   RESPONSIVE BREAKPOINTS — FIXED
   ================================================================ */

/* Force grid children to respect container bounds */
.main-content, .page-layout > *, .rc-body > *,
.content-section, .compare-wrap, .table-wrap {
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ---- 900px: Tablet ---- */
@media (max-width: 900px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
  .nav-search { display: none !important; }
  .nav-cta { display: none !important; }
  .mobile-overlay { display: block; }
  .mobile-drawer { display: flex; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 16px; height: 58px; }

  /* INDEX hero/sections */
  .hero { padding: 50px 20px 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .featured-grid { grid-template-columns: 1fr; gap: 28px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { gap: 16px; padding: 14px 20px; }
  .trust-divider { display: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-title { font-size: 1.7rem; }

  /* ── SUBPAGE LAYOUT (critical fix) ── */
  .page-layout {
    display: block !important;    /* kill the grid entirely */
    padding: 28px 0 48px;
  }
  .sidebar {
    position: static !important;
    margin-top: 32px;
  }
  .breadcrumb {
    padding: 10px 20px;
    font-size: 0.68rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .page-hero { padding: 32px 20px; }
  .page-hero h1 { font-size: 1.65rem; }
  .page-hero-meta { gap: 10px; }

  /* ── REVIEW CARDS (critical fix) ── */
  .rc-body {
    display: block !important;    /* kill the grid entirely */
  }
  .rc-main {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  /* Both class variants used across pages */
  .rc-side, .rc-sidebar {
    border-top: none;
    border-left: none;
  }

  .rc-header {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Quick picks / grids */
  .qp-grid { grid-template-columns: 1fr !important; }
  .pros-cons { grid-template-columns: 1fr !important; }
  .verdict-grid { grid-template-columns: 1fr !important; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .score-grid { grid-template-columns: 1fr; }

  /* ── TABLE FIX (critical) ── */
  .compare-wrap,
  .table-wrap,
  .compare-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: thin;
  }
  .compare-wrap table,
  .table-wrap table,
  .compare-container table,
  table.compare-table {
    min-width: 700px;
    width: max-content;
  }

  /* Content overflow prevention */
  .main-content,
  .content-section {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* Score bars - both naming conventions */
  .sb-label { width: 100px; }
  .score-bar-label { width: 100px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- 600px: Phone ---- */
@media (max-width: 600px) {
  .nav-inner { height: 54px; }

  /* Index */
  .hero { padding: 36px 16px 32px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-desc { font-size: 0.88rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; width: 100%; }
  .categories-grid, .reviews-grid, .how-grid { grid-template-columns: 1fr; }
  .cat-card { padding: 22px 18px; }
  .review-card-header { padding: 20px 16px; }
  .review-card-body { padding: 14px 16px; }
  .section-title { font-size: 1.5rem; }
  .featured-title { font-size: 1.4rem; }
  .newsletter-section, .about-strip, .categories-section,
  .featured-section, .reviews-section, .how-section { padding: 44px 0; }

  /* Subpage */
  .page-hero { padding: 24px 16px; }
  .page-hero h1 { font-size: 1.35rem; }
  .page-hero p { font-size: 0.85rem !important; }
  .content-section h2 { font-size: 1.2rem; }
  .page-hero-meta { flex-wrap: wrap; gap: 8px; }
  .meta-item { font-size: 0.65rem; }

  /* Review card phone */
  .rc-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px;
    padding: 20px 18px;
  }
  .rc-score-block { 
    flex-direction: row !important;
    gap: 10px;
    align-items: center;
  }
  .rc-name { font-size: 1.2rem; }
  .rc-score-num { font-size: 2.4rem; }
  .rc-main { padding: 20px 18px; }
  .rc-side, .rc-sidebar { padding: 18px 16px; }
  .rc-tagline { font-size: 0.78rem; }
  .rc-badges { gap: 6px; }
  .badge { font-size: 0.52rem; padding: 3px 7px; }

  /* Specs - both naming conventions */
  .spec-grid { grid-template-columns: 1fr !important; }
  .spec-row, .rc-spec-row { font-size: 0.75rem; }
  .spec-lbl, .rc-spec-label { font-size: 0.68rem; }
  .spec-val, .rc-spec-val { font-size: 0.68rem; }

  /* Score bars - both conventions */
  .score-bars { margin: 16px 0; }
  .sb-label, .score-bar-label { width: 80px; font-size: 0.65rem; }
  .sb-num, .score-bar-num { font-size: 0.65rem; }

  /* Price blocks - both conventions */
  .price-num, .rc-price-num { font-size: 1.4rem; }

  /* Pros/cons */
  .pc-box { padding: 14px; }
  .pc-list li { font-size: 0.75rem; }

  /* Quick picks */
  .quick-picks { padding: 18px; }
  .qp-item { padding: 11px 12px; }
  .qp-name { font-size: 0.82rem; }

  /* Verdict cards - both conventions */
  .v-card, .verdict-card { padding: 16px; }

  /* Compare table phone */
  .compare-wrap table,
  .table-wrap table,
  table.compare-table {
    min-width: 580px;
    font-size: 0.7rem;
  }
  table th, table td { padding: 8px 8px; font-size: 0.7rem; }
  table th { font-size: 0.55rem; letter-spacing: 0.12em; }

  /* Disclosure */
  .disclosure-bar { flex-direction: column; gap: 6px; }

  /* Product images */
  .product-img-wrap { aspect-ratio: auto; min-height: 140px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-title { font-size: 1.5rem; }

  /* FAQ */
  .faq-q { padding: 14px 16px; font-size: 0.84rem; }
  .faq-a.open { padding: 12px 16px; font-size: 0.82rem; }
}