/* ============================================================
   Geedi – Main Stylesheet
   Design: Editorial Luxury / Dark-capable
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --brand:       #ff6b35;
  --brand-dark:  #e85a22;
  --brand-light: #ff8c5a;
  --accent:      #1a1a2e;
  --bg:          #ffffff;
  --bg-alt:      #f8f7f4;
  --bg-card:     #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;
  --border:      #e8e6e0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
  --max-w:       1240px;
  --transition:  .22s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  --bg:        #0f0f13;
  --bg-alt:    #17171f;
  --bg-card:   #1e1e28;
  --text:      #f0ede8;
  --text-muted:#9d9aad;
  --text-light:#6b6880;
  --border:    #2a2a38;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.5);
}

/* ── 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.65; transition: background var(--transition), color var(--transition); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { margin-bottom: 1em; color: var(--text-muted); }

/* ── Layout ────────────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.grid-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3      { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4      { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.content-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.section     { padding: 72px 0; }
.section-sm  { padding: 48px 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; letter-spacing: .02em; transition: all var(--transition); text-transform: uppercase; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 4px 20px rgba(255,107,53,.3); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,.4); }
.btn-outline { border: 2px solid var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-dark { background: var(--text); color: var(--bg); }
.btn-dark:hover { background: var(--brand); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn svg { width: 16px; height: 16px; }

/* ── Navigation ────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); transition: background var(--transition), box-shadow var(--transition); }
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--text); letter-spacing: -.03em; }
.nav-logo span { color: var(--brand); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a { padding: 8px 14px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--text-muted); transition: all var(--transition); }
.nav-menu a:hover, .nav-menu a.active { color: var(--text); background: var(--bg-alt); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-search-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.nav-search-btn:hover { color: var(--brand); background: var(--border); }
.nav-search-btn svg { width: 16px; height: 16px; }
.dark-toggle { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.dark-toggle:hover { color: var(--brand); }
.dark-toggle svg { width: 16px; height: 16px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 36px; height: 36px; align-items: center; justify-content: center; }
.nav-hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ── Hero / Featured ───────────────────────────────────────── */
.hero { background: var(--bg-alt); padding: 80px 0 64px; overflow: hidden; }
.hero-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
.hero-label svg { width: 14px; height: 14px; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-title em { color: var(--brand); font-style: italic; }
.hero-excerpt { font-size: 17px; color: var(--text-muted); margin-bottom: 28px; max-width: 560px; }
.hero-meta { display: flex; align-items: center; gap: 20px; margin-top: 24px; }
.hero-meta .badge { background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.hero-meta .meta-info { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.hero-meta .meta-info svg { width: 14px; height: 14px; }
.featured-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; position: relative; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.featured-image:hover img { transform: scale(1.03); }

/* Featured Slider */
.slider-container { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.slider-track { display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.slider-slide { min-width: 100%; position: relative; }
.slider-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%); color: #fff; }
.slider-content h2 { color: #fff; margin-bottom: 8px; }
.slider-dots { display: flex; gap: 8px; justify-content: center; padding: 12px 0; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all var(--transition); }
.slider-dot.active { width: 24px; border-radius: 4px; background: var(--brand); }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); color: #1a1a1a; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all var(--transition); box-shadow: var(--shadow-md); }
.slider-nav:hover { background: var(--brand); color: #fff; }
.slider-nav svg { width: 16px; height: 16px; }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

/* ── Post Cards ────────────────────────────────────────────── */
.post-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card-img { aspect-ratio: 16/9; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card-img img { transform: scale(1.06); }
.post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.post-card-cat { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.post-card-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; color: var(--text); flex: 1; }
.post-card-title a:hover { color: var(--brand); }
.post-card-excerpt { font-size: 13.5px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.55; }
.post-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-light); border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto; }
.post-card-meta-left { display: flex; align-items: center; gap: 12px; }
.post-card-meta svg { width: 13px; height: 13px; vertical-align: middle; margin-right: 3px; }

/* Post Card Horizontal */
.post-card-h { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.post-card-h:last-child { border-bottom: none; }
.post-card-h-img { width: 88px; height: 66px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.post-card-h-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-h-body { flex: 1; min-width: 0; }
.post-card-h-title { font-family: var(--font-head); font-size: .92rem; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.post-card-h-title a:hover { color: var(--brand); }
.post-card-h-meta { font-size: 12px; color: var(--text-light); }

/* ── Badges ────────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.badge-brand   { background: var(--brand); color: #fff; }
.badge-popular { background: #7c3aed; color: #fff; }
.badge-trending{ background: #059669; color: #fff; }
.badge-hot     { background: #dc2626; color: #fff; }
.badge-new     { background: #0891b2; color: #fff; }
.badge-deal    { background: #d97706; color: #fff; }
.badge svg { width: 10px; height: 10px; }

/* ── Section Headers ───────────────────────────────────────── */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; gap: 16px; }
.section-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.section-label svg { width: 14px; height: 14px; }
.section-title { font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; }
.section-subtitle { color: var(--text-muted); font-size: 15px; margin-top: 6px; }
.view-all { font-size: 13px; font-weight: 600; color: var(--brand); white-space: nowrap; display: flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.view-all:hover { gap: 8px; }
.view-all svg { width: 14px; height: 14px; }

/* ── Categories ────────────────────────────────────────────── */
.cat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all var(--transition); cursor: pointer; }
.cat-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-icon { width: 56px; height: 56px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.cat-icon svg { width: 26px; height: 26px; }
.cat-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--text-light); }

/* ── Products ──────────────────────────────────────────────── */
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 1; }
.product-img { aspect-ratio: 1; overflow: hidden; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .3s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 16px; }
.product-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 6px; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.product-rating .stars { display: flex; gap: 2px; }
.star { font-size: 14px; }
.star.full { color: #f59e0b; }
.star.half { color: #f59e0b; }
.star.empty { color: var(--border); }
.product-count { font-size: 12px; color: var(--text-light); }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.product-price-now { font-size: 1.3rem; font-weight: 800; color: var(--brand); }
.product-price-old { font-size: .9rem; color: var(--text-light); text-decoration: line-through; }
.product-price-save { font-size: 11px; font-weight: 700; background: #dcfce7; color: #166534; padding: 2px 8px; border-radius: 20px; }
[data-theme="dark"] .product-price-save { background: #14532d; color: #86efac; }
.product-cta { width: 100%; text-align: center; }
.product-excerpt { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }

/* Countdown */
.countdown { display: flex; gap: 8px; margin-bottom: 12px; }
.countdown-unit { text-align: center; background: var(--bg-alt); border-radius: var(--radius-sm); padding: 6px 10px; min-width: 44px; }
.countdown-num { font-size: 1.1rem; font-weight: 800; color: var(--brand); display: block; font-family: var(--font-mono); }
.countdown-lbl { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); display: block; }

/* Review Box */
.review-box { background: var(--bg-alt); border: 1px solid var(--border); border-left: 4px solid var(--brand); border-radius: var(--radius); padding: 24px; margin: 28px 0; }
.review-box-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.review-box-img { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: contain; background: var(--bg-card); padding: 6px; }
.review-box-score { font-size: 2.5rem; font-weight: 900; color: var(--brand); line-height: 1; }
.review-box-score span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.review-box-verdict { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.review-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros-list, .cons-list { }
.pros-list h4 { color: #059669; display: flex; align-items: center; gap: 6px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.cons-list h4 { color: #dc2626; display: flex; align-items: center; gap: 6px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.pros-list h4 svg, .cons-list h4 svg { width: 14px; height: 14px; }
.pros-list li, .cons-list li { font-size: 13.5px; color: var(--text-muted); padding: 3px 0 3px 16px; position: relative; }
.pros-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: #059669; }
.cons-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: #dc2626; }

/* Comparison Table */
.comparison-table { overflow-x: auto; margin: 28px 0; border-radius: var(--radius); border: 1px solid var(--border); }
.comparison-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table th { background: var(--bg-alt); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.comparison-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-alt); }
.comparison-table .winner { background: rgba(255,107,53,.05); }
.comparison-table .check { color: #059669; }
.comparison-table .cross  { color: #dc2626; }
.comparison-table .check svg, .comparison-table .cross svg { width: 16px; height: 16px; }

/* Affiliate Callout */
.affiliate-box { background: linear-gradient(135deg, rgba(255,107,53,.08) 0%, rgba(255,107,53,.02) 100%); border: 1px solid rgba(255,107,53,.25); border-radius: var(--radius); padding: 24px; display: flex; align-items: center; gap: 20px; margin: 24px 0; }
.affiliate-box-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.affiliate-box-icon svg { width: 22px; height: 22px; color: #fff; }
.affiliate-box-text { flex: 1; }
.affiliate-box-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.affiliate-box-text p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--text); transition: background var(--transition); }
.faq-question:hover { background: var(--bg-alt); }
.faq-question svg { width: 18px; height: 18px; color: var(--brand); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all .3s; font-size: 14.5px; color: var(--text-muted); }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 16px; }

/* Social Share */
.share-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-label { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-right: 4px; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; transition: all var(--transition); }
.share-btn svg { width: 14px; height: 14px; }
.share-twitter  { background: #000; color: #fff; }
.share-facebook { background: #1877f2; color: #fff; }
.share-linkedin { background: #0a66c2; color: #fff; }
.share-copy     { background: var(--bg-alt); color: var(--text); border: 1px solid var(--border); }
.share-btn:hover { opacity: .85; transform: translateY(-2px); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-sep svg { width: 12px; height: 12px; }

/* Reading Progress */
#reading-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--brand); width: 0%; z-index: 999; transition: width .1s; }

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-section { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 80px 0; }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-icon { width: 64px; height: 64px; background: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.newsletter-icon svg { width: 28px; height: 28px; color: #fff; }
.newsletter-title { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.newsletter-sub { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; border-radius: var(--radius-sm); border: none; background: rgba(255,255,255,.1); color: #fff; font-size: 14px; outline: none; backdrop-filter: blur(10px); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { background: rgba(255,255,255,.15); }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 12px; }

/* ── Sidebar ────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 88px; }
.widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.widget-title { font-family: var(--font-head); font-size: 1rem; font-weight: 800; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--brand); display: flex; align-items: center; gap: 8px; }
.widget-title svg { width: 16px; height: 16px; color: var(--brand); }
.search-form { display: flex; gap: 0; }
.search-form input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-size: 14px; background: var(--bg); color: var(--text); outline: none; }
.search-form input:focus { border-color: var(--brand); }
.search-form button { padding: 10px 14px; background: var(--brand); color: #fff; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; transition: background var(--transition); }
.search-form button:hover { background: var(--brand-dark); }
.search-form button svg { width: 16px; height: 16px; display: block; }
.cat-list a { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border); transition: color var(--transition); }
.cat-list a:last-child { border-bottom: none; }
.cat-list a:hover { color: var(--brand); }
.cat-list a span { font-size: 12px; background: var(--bg-alt); padding: 2px 8px; border-radius: 20px; }
.mini-product { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); align-items: center; }
.mini-product:last-child { border-bottom: none; }
.mini-product-img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: contain; background: var(--bg-alt); padding: 4px; flex-shrink: 0; }
.mini-product-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.mini-product-price { font-size: 13px; font-weight: 700; color: var(--brand); }

/* ── Post Content ───────────────────────────────────────────── */
.post-content { max-width: 100%; }
.post-content h2 { margin: 2em 0 .8em; padding-top: .5em; border-top: 1px solid var(--border); }
.post-content h3 { margin: 1.6em 0 .6em; }
.post-content p  { font-size: 16.5px; line-height: 1.75; margin-bottom: 1.25em; color: var(--text-muted); }
.post-content ul, .post-content ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.post-content li { font-size: 16px; color: var(--text-muted); margin-bottom: .4em; }
.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-content blockquote { border-left: 4px solid var(--brand); padding: 16px 20px; background: var(--bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-size: 17px; font-style: italic; color: var(--text); }
.post-content code { background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; font-family: var(--font-mono); font-size: .88em; color: var(--brand); }
.post-content pre { background: #0f0f13; border-radius: var(--radius-sm); padding: 20px; overflow-x: auto; margin-bottom: 1.25em; }
.post-content pre code { background: none; color: #e2e8f0; padding: 0; }
.post-content a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.post-content img { border-radius: var(--radius-sm); margin: 20px 0; }
.post-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.25em; font-size: 14.5px; }
.post-content th { background: var(--bg-alt); padding: 10px 14px; text-align: left; font-weight: 700; border: 1px solid var(--border); }
.post-content td { padding: 10px 14px; border: 1px solid var(--border); }

/* ── Comments ───────────────────────────────────────────────── */
.comment { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment:last-child { border-bottom: none; }
.comment-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: var(--brand); flex-shrink: 0; }
.comment-body { flex: 1; }
.comment-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.comment-name { font-weight: 700; font-size: 14px; }
.comment-date { font-size: 12px; color: var(--text-light); }
.comment-text { font-size: 14.5px; color: var(--text-muted); }
.comment-form { background: var(--bg-alt); border-radius: var(--radius); padding: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.form-input, .form-textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-card); color: var(--text); font-size: 14px; font-family: inherit; outline: none; transition: border-color var(--transition); }
.form-input:focus, .form-textarea:focus { border-color: var(--brand); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.honeypot { display: none !important; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: #0f0f13; color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand h3 { font-family: var(--font-head); font-size: 1.6rem; color: #fff; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--brand); }
.footer-brand p { font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all var(--transition); }
.footer-social a:hover { background: var(--brand); color: #fff; }
.footer-social a svg { width: 15px; height: 15px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.6); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--brand); }
.disclosure { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 20px; line-height: 1.6; }

/* ── Pop-up ──────────────────────────────────────────────────── */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); z-index: 500; opacity: 0; pointer-events: none; transition: opacity .3s; display: flex; align-items: center; justify-content: center; padding: 20px; }
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box { background: var(--bg-card); border-radius: var(--radius-lg); padding: 40px; max-width: 480px; width: 100%; position: relative; transform: scale(.9) translateY(20px); transition: all .3s; }
.popup-overlay.active .popup-box { transform: scale(1) translateY(0); }
.popup-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.popup-close:hover { background: var(--brand); color: #fff; }
.popup-close svg { width: 16px; height: 16px; }

/* ── Related Posts ───────────────────────────────────────────── */
.related-posts { margin-top: 48px; }
.related-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination { margin: 40px 0; }
.pagination ul { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination li a, .pagination li.active a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--text-muted); transition: all var(--transition); }
.pagination li a:hover, .pagination li.active a { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ── Search Modal ───────────────────────────────────────────── */
.search-modal { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.7); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity .25s; display: flex; align-items: flex-start; justify-content: center; padding: 100px 20px 20px; }
.search-modal.active { opacity: 1; pointer-events: all; }
.search-modal-inner { background: var(--bg-card); border-radius: var(--radius); padding: 24px; width: 100%; max-width: 580px; }
.search-modal input { width: 100%; padding: 14px 18px; font-size: 18px; border: 2px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); color: var(--text); outline: none; font-family: inherit; }
.search-modal input:focus { border-color: var(--brand); }

/* ── Toast ───────────────────────────────────────────────────── */
.toast { position: fixed; bottom: 24px; right: 24px; background: #1a1a2e; color: #fff; padding: 12px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; z-index: 999; transform: translateY(80px); opacity: 0; transition: all .3s; display: flex; align-items: center; gap: 8px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 16px; height: 16px; color: var(--brand); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 12px; gap: 2px; }
  .nav-menu.open { display: flex; }
  .nav-hamburger { display: flex; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .review-pros-cons { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .affiliate-box { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 48px 0; }
}

/* ── Utilities ───────────────────────────────────────────────── */
.text-brand { color: var(--brand); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.fw-700 { font-weight: 700; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes pulse  { 0%,100% { transform:scale(1); } 50% { transform:scale(1.04); } }
.animate-fadeup { animation: fadeUp .5s ease forwards; }
.animate-fadein { animation: fadeIn .4s ease forwards; }
.pulse { animation: pulse 2s ease infinite; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
