/* =======================================================
   TekTek360 — Phase 1 Premium Rebrand
   Single unified stylesheet for ALL pages:
     - index.html (homepage)
     - reviews/*.html (all review pages)

   DEPLOYMENT:
   1. Upload this file to Cloudflare Pages root as /premium.css
   2. In index.html: remove the <style>...</style> block,
      add inside <head>:
        <link rel="stylesheet" href="/premium.css">
        (Inter is bundled via @import below — no extra link tag needed)
   3. In generate_daily.py HTML template: remove the
      <style>...</style> block, add the same <link> tag.
   4. For existing review pages: same swap.
   ======================================================= */

/* ── Google Fonts: Inter ───────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand */
  --gold:           #C9A84C;
  --gold-dark:      #a8893e;
  --gold-subtle:    rgba(201, 168, 76, 0.12);
  --gold-border:    rgba(201, 168, 76, 0.25);

  /* Backgrounds */
  --bg:             #0A0A0F;
  --bg-card:        #13131A;
  --bg-elevated:    #1A1A24;

  /* Text */
  --white:          #FFFFFF;
  --text-primary:   #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted:     #6B7280;

  /* Borders */
  --border:         #2A2A35;

  /* CTAs */
  --amazon-cta:     #FF9900;
  --amazon-hover:   #e68900;

  /* Legacy aliases — keeps var() references in old HTML working */
  --accent:         #C9A84C;
  --accent-dark:    #a8893e;
  --dark:           #0A0A0F;
  --mid:            #1A1A24;
  --light:          #6B7280;

  /* generate_daily.py token aliases */
  --teal:           #C9A84C;
  --teal-light:     rgba(201, 168, 76, 0.12);
  --teal-dark:      #a8893e;

  /* Shape */
  --radius:         12px;
  --radius-sm:      8px;
}

/* ══════════════════════════════════════════════════════════
   BASE
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--gold-dark);
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION  (homepage + review pages share same nav)
   ══════════════════════════════════════════════════════════ */
nav {
  background: rgba(10, 10, 15, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 32px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--white);
}

/* Homepage nav links */
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a {
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* Review page breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   TRUST BAR  (homepage)
   ══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   HERO  (homepage)
   ══════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, #0A0A0F 0%, #111118 60%, #0F0F14 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--white);
  position: relative;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 30px;
  position: relative;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #0A0A0F;
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: #0A0A0F;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   SECTIONS  (homepage layout)
   ══════════════════════════════════════════════════════════ */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

.section-header p {
  color: var(--text-muted);
  margin-top: 6px;
}

.section-header a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  float: right;
  margin-top: 4px;
  transition: color 0.15s;
  text-decoration: none;
}

.section-header a:hover {
  color: var(--gold-dark);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS  (homepage)
   ══════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--gold-border);
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--bg-elevated);
  padding: 20px;
}

.product-body {
  padding: 18px;
}

.product-badge {
  display: inline-block;
  background: var(--gold-subtle);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--gold-border);
}

.product-badge.hot {
  background: rgba(239, 68, 68, 0.1);
  color: #FCA5A5;
  border-color: rgba(239, 68, 68, 0.25);
}

.product-badge.new {
  background: rgba(16, 185, 129, 0.1);
  color: #6EE7B7;
  border-color: rgba(16, 185, 129, 0.25);
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--white);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}

.product-rating {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-rating span {
  color: var(--gold);
}

/* Buy / CTA button — Amazon orange */
.buy-btn {
  display: block;
  background: var(--amazon-cta);
  color: #0A0A0F;
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.15s, box-shadow 0.15s;
  font-family: inherit;
  text-decoration: none;
}

.buy-btn:hover {
  background: var(--amazon-hover);
  color: #0A0A0F;
  box-shadow: 0 4px 16px rgba(255, 153, 0, 0.25);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   ARTICLE CARDS  (homepage)
   ══════════════════════════════════════════════════════════ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--gold-border);
}

.article-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, #13131A, #1A1A24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.article-body {
  padding: 20px;
}

.article-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.article-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--white);
  transition: color 0.15s;
}

.article-title:hover {
  color: var(--gold);
}

.article-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

/* ══════════════════════════════════════════════════════════
   CATEGORY CARDS  (homepage)
   ══════════════════════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: var(--bg-elevated);
  text-decoration: none;
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.cat-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER  (homepage)
   ══════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.newsletter h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.newsletter p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 0%;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  background: var(--gold);
  color: #0A0A0F;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  transition: background 0.15s;
}

.newsletter-form button:hover {
  background: var(--gold-dark);
}

/* ══════════════════════════════════════════════════════════
   AFFILIATE DISCLOSURE  (homepage + review pages)
   ══════════════════════════════════════════════════════════ */
.disclosure {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Homepage disclosure position */
.section > .disclosure {
  margin-bottom: 40px;
}

/* Review page disclosure position */
.disclosure:not(.section > .disclosure) {
  margin: 24px 0;
}

/* ══════════════════════════════════════════════════════════
   FOOTER  (homepage + review pages)
   ══════════════════════════════════════════════════════════ */
footer {
  background: #07070B;
  color: var(--text-muted);
  padding: 48px 20px 24px;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}

/* Homepage footer (full grid) */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* Review page footer (centered, simpler) */
footer:not(:has(.footer-grid)) {
  text-align: center;
  font-size: 0.85rem;
  padding: 32px 20px;
}

/* ══════════════════════════════════════════════════════════
   REVIEW PAGE — ARTICLE LAYOUT
   ══════════════════════════════════════════════════════════ */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px;
}

/* Article header */
.article-header {
  margin-bottom: 36px;
}

.article-cat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.article-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--white);
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 20px;
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Table of Contents ─────────────────────────────────── */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}

.toc h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.toc ol {
  padding-left: 20px;
}

.toc li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.toc a {
  color: var(--text-secondary);
  transition: color 0.15s;
}

.toc a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ── Review Cards ──────────────────────────────────────── */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
  transition: border-color 0.2s;
}

.review-card:hover {
  border-color: var(--gold-border);
}

.review-rank {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.rank-badge {
  background: var(--bg-elevated);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.rank-badge.best {
  background: var(--gold-subtle);
  color: var(--gold);
  border-color: var(--gold-border);
}

.review-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--white);
}

.review-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.review-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.review-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  padding: 12px;
}

/* Score chips */
.score-row {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.score-chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.score-chip.green {
  background: rgba(16, 185, 129, 0.12);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.score-chip.orange {
  background: var(--gold-subtle);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.score-chip.blue {
  background: rgba(99, 102, 241, 0.12);
  color: #A5B4FC;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.pros,
.cons {
  padding: 14px;
  border-radius: var(--radius-sm);
}

.pros {
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.cons {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros h4 {
  color: #6EE7B7;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.cons h4 {
  color: #FCA5A5;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.pros ul,
.cons ul {
  list-style: none;
}

.pros li::before {
  content: "✓ ";
  color: #10B981;
  font-weight: 700;
}

.cons li::before {
  content: "✗ ";
  color: #EF4444;
  font-weight: 700;
}

.pros li,
.cons li {
  font-size: 0.85rem;
  margin-bottom: 4px;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* Price + CTA row */
.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price-tag {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.cta-btn {
  background: var(--amazon-cta);
  color: #0A0A0F;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  transition: background 0.15s, box-shadow 0.15s;
  text-decoration: none;
}

.cta-btn:hover {
  background: var(--amazon-hover);
  color: #0A0A0F;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 153, 0, 0.25);
}

.amazon-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Verdict Box ───────────────────────────────────────── */
.verdict-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.verdict-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.verdict-box h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.verdict-box p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.verdict-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.verdict-item .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.verdict-item .val {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

/* ── Body Text (review pages) ──────────────────────────── */
h2.section-h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--white);
}

p.body {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   SCROLLBAR  (Chromium)
   ══════════════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 6px;
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-border);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .newsletter {
    padding: 32px 20px;
    margin: 0;
  }

  .hero {
    padding: 52px 20px;
  }
}

@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-img {
    width: 100%;
    height: 200px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .verdict-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════ */
.announce-bar {
  background: var(--gold-subtle);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.announce-bar a {
  color: var(--gold);
  font-weight: 600;
}
.announce-bar a:hover { text-decoration: none; color: var(--gold-dark); }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — SITE HEADER
   ══════════════════════════════════════════════════════════ */
.site-header {
  background: rgba(10, 10, 15, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; }

.logo-icon { font-size: 1.4rem; }

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--gold); }

.search-bar {
  flex: 1;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  height: 40px;
  transition: border-color 0.15s;
}
.search-bar:focus-within { border-color: var(--gold-border); }
.search-icon { font-size: 0.9rem; color: var(--text-muted); }
.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
}
.search-bar input::placeholder { color: var(--text-muted); }

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 0.85rem;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--gold-border);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — CATEGORY NAV
   ══════════════════════════════════════════════════════════ */
.cat-nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav-inner {
  display: flex;
  gap: 4px;
  padding: 10px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.cat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.cat-btn:hover { background: var(--bg-elevated); color: var(--white); }
.cat-btn.active { background: var(--gold-subtle); color: var(--gold); font-weight: 600; }
.cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — HERO (EXTENDED)
   ══════════════════════════════════════════════════════════ */
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  margin-bottom: 16px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
  display: inline-block;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-hero-primary {
  background: var(--gold);
  color: #0A0A0F;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-hero-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.15s, color 0.15s;
}
.btn-hero-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  text-decoration: none;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  min-width: 100px;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: var(--gold-border); }

.stat-card .num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-card .label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — FRESHNESS BAR
   ══════════════════════════════════════════════════════════ */
.freshness-bar {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.freshness-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.freshness-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 500;
}
.freshness-right { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — MAIN LAYOUT (sidebar + content)
   ══════════════════════════════════════════════════════════ */
.main-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.sidebar-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.filter-group { display: flex; flex-direction: column; gap: 2px; }

.filter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.filter-item:hover { background: var(--bg-elevated); color: var(--white); }
.filter-item.active { background: var(--gold-subtle); color: var(--gold); }
.filter-item .count {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 1px 7px;
  border-radius: 10px;
}

.price-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.price-chip {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.price-chip:hover { border-color: var(--gold-border); color: var(--white); }
.price-chip.active { background: var(--gold-subtle); border-color: var(--gold-border); color: var(--gold); }

.board-links { display: flex; flex-direction: column; gap: 6px; }
.board-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.board-link:hover { background: var(--bg-elevated); color: var(--gold); text-decoration: none; }
.board-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.archive-list { display: flex; flex-direction: column; gap: 2px; }
.archive-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}
.archive-day:hover { background: var(--bg-elevated); color: var(--white); }
.archive-day.today { background: var(--gold-subtle); color: var(--gold); font-weight: 600; }
.date-label { color: inherit; }
.prod-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 1px 7px;
  border-radius: 10px;
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — CONTENT AREA
   ══════════════════════════════════════════════════════════ */
.content-area { min-width: 0; }

.today-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.today-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.today-banner-text h2 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.today-banner-text p { font-size: 0.88rem; color: var(--text-muted); }

.today-banner-meta { display: flex; gap: 12px; }
.meta-badge {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 64px;
}
.meta-badge .m-num { display: block; font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.meta-badge .m-label { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

.content-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.toolbar-left { display: flex; align-items: center; gap: 12px; }
.results-info { font-size: 0.88rem; color: var(--text-muted); }
.view-toggles { display: flex; gap: 4px; }
.view-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.view-btn.active, .view-btn:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-border);
  color: var(--gold);
}
.sort-select {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 7px 12px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
}
.sort-select:focus { border-color: var(--gold-border); }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — PRODUCT CARDS (new .card-* class names)
   ══════════════════════════════════════════════════════════ */
.product-card { position: relative; }

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.badge-editors { background: var(--gold-subtle); color: var(--gold); border: 1px solid var(--gold-border); }
.badge-value { background: rgba(16,185,129,0.12); color: #6EE7B7; border: 1px solid rgba(16,185,129,0.25); }
.badge-staff { background: rgba(99,102,241,0.12); color: #A5B4FC; border: 1px solid rgba(99,102,241,0.25); }

.card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10,10,15,0.7);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  z-index: 2;
  backdrop-filter: blur(4px);
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-wishlist:hover { background: rgba(10,10,15,0.9); color: #E63946; }

.card-image {
  width: 100%;
  height: 200px;
  background: var(--bg-elevated);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-meta { display: flex; justify-content: space-between; align-items: center; }

.card-category {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-rating { display: flex; align-items: center; gap: 4px; }
.stars { color: var(--gold); font-size: 0.85rem; }
.card-rating .score { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.card-rating .count { font-size: 0.78rem; color: var(--text-muted); }

.card-title { font-size: 0.95rem; font-weight: 700; color: var(--white); line-height: 1.4; }

.card-price-row { display: flex; align-items: center; gap: 8px; }
.card-price { font-size: 1.25rem; font-weight: 800; color: var(--gold); }

.card-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

.card-pros { display: flex; flex-direction: column; gap: 4px; }
.card-pro {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.card-pro::before { content: "✓"; position: absolute; left: 0; color: #10B981; font-weight: 700; }

.card-verdict {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold);
  padding: 8px 12px;
  background: var(--gold-subtle);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  line-height: 1.4;
}

.card-stock {
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stock-in { color: #10B981; background: rgba(16,185,129,0.07); }
.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse 2s infinite;
  display: inline-block;
}

.card-actions { display: flex; gap: 8px; align-items: center; }

.btn-amazon {
  flex: 1;
  background: var(--amazon-cta);
  color: #0A0A0F;
  border: none;
  padding: 10px 12px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}
.btn-amazon:hover { background: var(--amazon-hover); box-shadow: 0 4px 16px rgba(255,153,0,0.3); }

.btn-pin, .btn-compare {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s;
}
.btn-pin:hover, .btn-compare:hover { border-color: var(--gold-border); color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — NEWSLETTER STRIP (inline bar)
   ══════════════════════════════════════════════════════════ */
.newsletter-strip {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.newsletter-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.newsletter-strip h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.newsletter-strip p { font-size: 0.88rem; color: var(--text-muted); }

.newsletter-input {
  padding: 10px 14px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  min-width: 200px;
  outline: none;
  transition: border-color 0.15s;
}
.newsletter-input:focus { border-color: var(--gold-border); }
.newsletter-input::placeholder { color: var(--text-muted); }

.btn-newsletter {
  background: var(--gold);
  color: #0A0A0F;
  border: none;
  padding: 10px 20px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-newsletter:hover { background: var(--gold-dark); }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: var(--gold-subtle);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  margin-bottom: 12px;
}

.how-it-works .section-header { max-width: 560px; margin: 0 auto 40px; }
.how-it-works .section-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 8px;
}
.how-it-works .section-header p { color: var(--text-muted); font-size: 1rem; }

.steps-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — SITE FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: #07070B;
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}

.footer-brand .logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: inline-block;
}

.footer-social { display: flex; gap: 8px; margin-top: 14px; }

.social-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
  color: var(--text-muted);
}
.social-btn:hover { border-color: var(--gold-border); background: var(--gold-subtle); color: var(--gold); }

.affiliate-notice { font-size: 0.78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — SCROLL TO TOP
   ══════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: #0A0A0F;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 999;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.scroll-top:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 16px; height: 56px; }
  .search-bar { display: none; }
  .header-actions .btn-ghost { display: none; }
  .hero { padding: 40px 16px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats { flex-direction: row; justify-content: center; }
  .main-layout { padding: 20px 16px; }
  .sidebar { grid-template-columns: 1fr; }
  .today-banner { flex-direction: column; }
  .newsletter-strip { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .cat-nav-inner { padding: 8px 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}
