/* =========================================================
   HookWake — Dark Editorial Redesign
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:          #090909;
  --bg-2:        #111111;
  --bg-card:     #141414;
  --bg-raised:   #1c1c1c;
  --border:      rgba(255,255,255,.07);
  --border-md:   rgba(255,255,255,.13);
  --border-hi:   rgba(255,255,255,.28);
  --text:        #f0f0f0;
  --text-2:      rgba(255,255,255,.65);
  --text-muted:  rgba(255,255,255,.36);
  --accent:      #c8a96e;
  --accent-d:    #a88a52;
  --white:       #ffffff;

  --font-display: 'Bebas Neue', 'Anton', Impact, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --max-w:         1320px;
  --max-w-article: 820px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.15; }
h1 { font-family: var(--font-display); font-size: clamp(3.2rem, 8vw, 8rem); letter-spacing: .02em; }
h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: .04em; }
h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); letter-spacing: .04em; }
h4 { font-size: 1rem; font-weight: 600; }
p  { margin-bottom: 1.1rem; color: var(--text-2); }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section    { padding: 80px 0; }


/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: background .3s, backdrop-filter .3s, padding .3s;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(9,9,9,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .18em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo svg { width: 28px; height: 28px; }
.nav-logo em { color: var(--accent); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  border: 1px solid rgba(255,255,255,.35) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  transition: background .2s, border-color .2s !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform .25s, opacity .25s;
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 950;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 14px 24px; }
  .nav-hamburger { display: flex; z-index: 960; }
}

/* =========================================================
   HERO — full viewport, image bleeds under nav
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: -36px; /* pull up under ticker */
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.3) 40%,
    rgba(0,0,0,.1) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-label::before { content: '['; }
.hero-label::after  { content: ']'; }

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  max-width: 720px;
  text-transform: uppercase;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Button system */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
  border: 1px solid transparent;
}
.btn-white {
  background: var(--white);
  color: #000;
  border-color: var(--white);
}
.btn-white:hover { background: rgba(255,255,255,.85); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-accent { background: var(--accent); color: #000; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-d); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-md);
}
.btn-ghost:hover { color: var(--white); border-color: var(--border-hi); }


/* =========================================================
   SECTION HEADER
   ========================================================= */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.section-header h2 { color: var(--white); text-transform: uppercase; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: .92rem; max-width: 480px; }
.section-header.center p { margin: 0 auto; }

/* =========================================================
   CATEGORY PILLS
   ========================================================= */
.categories {
  padding: 0 0 48px;
}
.category-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.category-pill {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-md);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}
.category-pill:hover { border-color: var(--border-hi); color: var(--white); }
.category-pill.active { background: var(--white); color: #000; border-color: var(--white); }

/* =========================================================
   ARTICLE CARDS
   ========================================================= */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
}
.card {
  background: var(--bg-card);
  overflow: hidden;
  transition: background .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { background: var(--bg-raised); }

.card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  filter: brightness(.85);
}
.card:hover .card-img img { transform: scale(1.04); filter: brightness(1); }

.card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.card-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.card-date { font-size: .72rem; color: var(--text-muted); }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.card h3 a:hover { color: var(--accent); }
.card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 0; flex: 1; line-height: 1.6; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
}
.card-read-time { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.card-arrow {
  width: 30px; height: 30px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all .2s;
}
.card:hover .card-arrow { border-color: var(--white); color: var(--white); }

/* Featured card — full width */
.card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.card--featured .card-img { aspect-ratio: auto; min-height: 360px; }
.card--featured .card-body { padding: 48px; justify-content: flex-end; }
.card--featured h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}
.card--featured p { font-size: .9rem; margin-bottom: 20px; }

@media (max-width: 900px) {
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .card--featured { grid-template-columns: 1fr; }
  .card--featured .card-img { min-height: 220px; }
  .card--featured .card-body { padding: 28px; }
}
@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   GEAR PICKS
   ========================================================= */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
}
.pick-card {
  background: var(--bg-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: background .2s;
}
.pick-card:hover { background: var(--bg-raised); }
.pick-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  background: var(--bg-raised);
}
.pick-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.8) grayscale(.2);
  transition: filter .3s;
}
.pick-card:hover .pick-img img { filter: brightness(.95) grayscale(0); }
.pick-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 8px;
  width: fit-content;
}
.pick-badge--best    { background: var(--accent); color: #000; }
.pick-badge--value   { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.pick-badge--premium { background: var(--bg-raised); color: var(--text-muted); border: 1px solid var(--border-md); }
.pick-card h4 { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.pick-card .pick-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 12px; flex: 1; line-height: 1.6; }
.stars { color: var(--accent); font-size: .85rem; margin-bottom: 8px; }
.stars span { color: var(--text-muted); font-size: .75rem; margin-left: 4px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.price-old { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; }
.btn-buy {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: all .2s;
}
.btn-buy:hover { border-color: var(--white); color: var(--white); }

@media (max-width: 900px) { .picks-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .picks-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SPLIT PROMO
   ========================================================= */
.split-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.75);
  transition: filter .4s;
}
.split-promo:hover .split-img img { filter: brightness(.9); }
.split-content {
  background: var(--bg-2);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h2 { color: var(--white); text-transform: uppercase; margin-bottom: 16px; }
.split-content p { font-size: .9rem; color: var(--text-muted); margin-bottom: 28px; max-width: 340px; }

@media (max-width: 700px) {
  .split-promo { grid-template-columns: 1fr; }
  .split-img { min-height: 240px; }
  .split-content { padding: 36px 28px; }
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter h2 { color: var(--white); text-transform: uppercase; margin-bottom: 10px; }
.newsletter p { color: var(--text-muted); font-size: .9rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-raised);
  border: 1px solid var(--border-md);
  border-right: none;
  color: var(--white);
  font-size: .88rem;
  font-family: var(--font-body);
  outline: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--border-hi); }
.newsletter-form button {
  padding: 14px 24px;
  background: var(--white);
  color: #000;
  border: 1px solid var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: rgba(255,255,255,.85); }

@media (max-width: 720px) { .newsletter-inner { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.8; max-width: 260px; }
.footer-col h5 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: .75rem;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
  letter-spacing: .06em;
}
.footer-bottom a { color: var(--text-muted); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }
.affiliate-note {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CATEGORY PAGE
   ========================================================= */
.cat-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 120px 0 56px;
}
.cat-hero .eyebrow { margin-bottom: 8px; }
.cat-hero h1 {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(3rem, 7vw, 6.5rem);
  margin-bottom: 14px;
}
.cat-hero p {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0;
}
.cat-count {
  margin-top: 24px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* =========================================================
   ARTICLE PAGE
   ========================================================= */
.article-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: 0;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.article-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.45);
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  z-index: 1;
}
.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w-article);
  margin: 0 auto;
  padding: 120px 32px 56px;
  width: 100%;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.2); }
.article-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--text-muted);
}
.article-author { display: flex; align-items: center; gap: 8px; }
.author-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.meta-sep { color: var(--border-md); }

/* Article layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 32px;
  align-items: start;
}
.article-body { min-width: 0; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 44px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 28px 0 10px;
}
.article-body p { color: var(--text-2); line-height: 1.85; margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.article-body li { margin-bottom: .6rem; line-height: 1.75; color: var(--text-2); }
.article-body strong { color: var(--white); }
.article-body a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(200,169,110,.35); }
.article-body a:hover { text-decoration-color: var(--accent); }

/* Callout boxes */
.tip-box {
  background: rgba(200,169,110,.07);
  border-left: 2px solid var(--accent);
  padding: 18px 20px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.tip-box svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.tip-box p { margin: 0; font-size: .9rem; color: var(--text-2); }
.tip-box strong { color: var(--accent); }

.warning-box {
  background: rgba(255,255,255,.04);
  border-left: 2px solid var(--border-hi);
  padding: 18px 20px;
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.warning-box p { margin: 0; font-size: .9rem; color: var(--text-2); }
.warning-box strong { color: var(--white); }

/* Product rec boxes */
.product-rec {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.product-rec::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.product-rec-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.product-rec-header .label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--accent);
  color: #000;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}
.product-rec-inner {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
}
.product-rec-img {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-raised);
}
.product-rec-img img { width: 100%; height: 100%; object-fit: cover; }
.product-rec-info h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.product-rec-info .rec-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 10px; }
.product-rec-info .pros { font-size: .82rem; margin-bottom: 12px; }
.product-rec-info .pros li { color: var(--text-2); }
.product-rec-info .pros li::before { content: '✓  '; color: var(--accent); font-weight: 700; }
.product-rec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

@media (max-width: 500px) { .product-rec-inner { grid-template-columns: 1fr; } }

/* Comparison table */
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 28px 0; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.comparison-table th {
  background: var(--bg-raised);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .08em;
  border-bottom: 2px solid var(--accent);
}
.comparison-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.comparison-table tr:hover td { background: var(--bg-raised); }
.comparison-table .check { color: var(--accent); }
.comparison-table .cross { color: rgba(255,255,255,.3); }

/* Sidebar */
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-widget h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.toc-list li { margin-bottom: 6px; }
.toc-list a {
  font-size: .8rem;
  color: var(--text-muted);
  display: block;
  padding: 4px 0 4px 10px;
  border-left: 1px solid var(--border);
  transition: all .2s;
}
.toc-list a:hover { color: var(--accent); border-color: var(--accent); }
.sidebar-pick { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.sidebar-pick:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-pick h5 { font-size: .85rem; color: var(--white); margin-bottom: 4px; }
.sidebar-pick .s-price { font-weight: 700; color: var(--accent); font-size: .88rem; }
.sidebar-pick a.s-buy {
  display: block;
  text-align: center;
  margin-top: 8px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all .2s;
}
.sidebar-pick a.s-buy:hover { border-color: var(--white); color: var(--white); }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* Author bio */
.author-bio {
  display: flex;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 48px;
}
.author-bio-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-raised);
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
}
.author-bio h4 { color: var(--white); margin-bottom: 4px; font-size: .95rem; }
.author-bio p  { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* Related section */
.related-section { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}

/* =========================================================
   IMAGES
   ========================================================= */
.hero-real-img {
  width: 100%; max-width: 440px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
