/* ============================================================
   GymBags.co.uk – Main Stylesheet
   Fonts: Barlow Condensed (headings) + Nunito (body)
   Palette: Deep charcoal + Electric orange + Clean white
   ============================================================ */

:root {
  --orange:      #FF5F00;
  --orange-dark: #D94F00;
  --orange-light:#FF8033;
  --charcoal:    #1A1A2E;
  --dark:        #16213E;
  --mid:         #2D3561;
  --grey:        #6B7280;
  --light-grey:  #F3F4F6;
  --border:      #E5E7EB;
  --white:       #FFFFFF;
  --success:     #10B981;
  --text:        #1F2937;
  --text-muted:  #6B7280;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --transition:  .2s ease;
  --container:   1200px;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Nunito', sans-serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Container ────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 20px; }

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; letter-spacing: .5px;
  border: 2px solid transparent; cursor: pointer; transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,95,0,.35); }
.btn-dark     { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--mid); color: var(--white); }
.btn-outline  { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-sm       { padding: 8px 16px; font-size: .85rem; }
.btn-lg       { padding: 16px 36px; font-size: 1.15rem; }
.btn-amazon   { background: #FF9900; color: #0F1111; border-color: #FF9900; }
.btn-amazon:hover { background: #e68a00; border-color: #e68a00; color: #0F1111; }
.btn-amazon::before { content: '🛒'; }

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--charcoal);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }
.site-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { font-size: 1.6rem; }
.logo-text { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--white); letter-spacing: 1px; text-transform: uppercase; }
.logo-tld  { color: var(--orange); }

.main-nav ul { display: flex; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav a { color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem; padding: 8px 14px; border-radius: 6px; display: block; }
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,95,0,.2); }

.dropdown { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition); z-index: 200; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { color: var(--text) !important; padding: 10px 20px; font-size: .9rem; background: transparent; border-radius: 0; }
.dropdown li a:hover { background: var(--light-grey) !important; color: var(--orange) !important; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.search-btn { color: rgba(255,255,255,.8); cursor: pointer; background: none; border: none; padding: 6px; }
.search-btn:hover { color: var(--orange); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; transition: all var(--transition); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 40%, var(--mid) 100%);
  color: var(--white); padding: 80px 0 60px; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-block; background: var(--orange); color: var(--white); font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; }
.hero h1 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,.2); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Section ──────────────────────────────────────────────── */
.section { padding: 60px 0; }
.section-alt { background: var(--light-grey); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-header .section-tag { display: inline-block; background: rgba(255,95,0,.1); color: var(--orange); font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; }

/* ── Product Card ─────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--light-grey); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; loading: lazy; transition: transform .4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.best-for-badge { position: absolute; top: 12px; left: 12px; background: var(--orange); color: var(--white); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 4px 10px; border-radius: 4px; }
.badge-budget    { background: var(--success); }
.badge-premium   { background: var(--mid); }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-brand   { font-size: .8rem; color: var(--grey); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.product-card-body h3 { font-size: 1.1rem; line-height: 1.3; }
.product-price   { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--charcoal); }
.star-rating     { color: #F59E0B; font-size: .95rem; display: flex; align-items: center; gap: 4px; }
.star-rating span { color: var(--grey); font-size: .8rem; }
.product-pros-cons { display: flex; gap: 8px; }
.pros-list, .cons-list { flex: 1; }
.pros-list li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.cons-list li::before { content: '✗ '; color: #EF4444; font-weight: 700; }
.pros-list li, .cons-list li { font-size: .82rem; color: var(--text-muted); margin-bottom: 2px; }
.product-card-footer { padding: 0 20px 20px; }

/* ── Post Card ────────────────────────────────────────────── */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.post-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--light-grey); }
.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; }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.post-category { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--orange); }
.post-date, .post-reading-time { font-size: .78rem; color: var(--grey); }
.post-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; line-height: 1.35; }
.post-card-body h3 a { color: var(--charcoal); }
.post-card-body h3 a:hover { color: var(--orange); }
.post-card-body p { font-size: .9rem; color: var(--text-muted); }
.sponsored-badge { background: var(--mid); color: var(--white); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 2px 8px; border-radius: 3px; }

/* ── Category Cards ───────────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.category-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 16px; text-align: center;
  transition: all var(--transition); cursor: pointer;
}
.category-card:hover { border-color: var(--orange); background: rgba(255,95,0,.04); transform: translateY(-2px); box-shadow: var(--shadow); }
.category-card a { color: var(--charcoal); font-weight: 700; font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; letter-spacing: .3px; }
.category-card:hover a { color: var(--orange); }
.category-icon { font-size: 2rem; margin-bottom: 10px; display: block; }

/* ── Article Layout ───────────────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.article-content { min-width: 0; }
.article-sidebar { position: sticky; top: 80px; }
.article-header { margin-bottom: 32px; }
.article-header h1 { margin-bottom: 16px; }
.article-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; aspect-ratio: 16/7; }
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body { line-height: 1.8; font-size: 1.02rem; }
.article-body h2 { margin: 2rem 0 1rem; padding-top: 1rem; border-top: 2px solid var(--border); }
.article-body h3 { margin: 1.5rem 0 .75rem; }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 1.25rem; }
.article-body li { margin-bottom: .4rem; list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .92rem; }
.article-body th { background: var(--charcoal); color: var(--white); padding: 12px 16px; text-align: left; font-family: var(--font-head); letter-spacing: .3px; }
.article-body td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.article-body tr:nth-child(even) td { background: var(--light-grey); }
.article-body blockquote { border-left: 4px solid var(--orange); padding: 16px 20px; background: rgba(255,95,0,.05); border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; }
.article-body .affiliate-box { background: var(--light-grey); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; font-size: .85rem; color: var(--grey); margin: 1.5rem 0; }

/* ── Table of Contents ────────────────────────────────────── */
.toc-box { background: var(--light-grey); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 28px; border-left: 4px solid var(--orange); }
.toc-box h4 { font-size: 1rem; margin-bottom: 12px; color: var(--charcoal); text-transform: uppercase; letter-spacing: .5px; }
.toc-box ol { padding-left: 20px; }
.toc-box li { list-style: decimal; margin-bottom: 4px; }
.toc-box li.toc-h3 { padding-left: 14px; font-size: .9rem; }
.toc-box a { color: var(--text-muted); font-size: .92rem; }
.toc-box a:hover { color: var(--orange); }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-section { margin: 2rem 0; }
.faq-section h2 { margin-bottom: 20px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-question { padding: 16px 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); transition: background var(--transition); }
.faq-question:hover { background: var(--light-grey); }
.faq-question .faq-icon { font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question { background: var(--light-grey); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 16px; }

/* ── Comparison Table ─────────────────────────────────────── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: .9rem; }
.comparison-table th { background: var(--charcoal); color: var(--white); padding: 14px 16px; text-align: center; font-family: var(--font-head); font-size: 1rem; }
.comparison-table th:first-child { text-align: left; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: center; }
.comparison-table td:first-child { font-weight: 700; text-align: left; }
.comparison-table tr:nth-child(even) td { background: var(--light-grey); }
.comparison-table .winner { color: var(--success); font-weight: 700; }
.comparison-table .check::before { content: '✅'; }
.comparison-table .cross::before { content: '❌'; }

/* ── Pros Cons Box ────────────────────────────────────────── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 1.5rem 0; }
.pros-box, .cons-box { border-radius: var(--radius); padding: 20px; }
.pros-box { background: #ECFDF5; border: 1px solid #6EE7B7; }
.cons-box { background: #FEF2F2; border: 1px solid #FCA5A5; }
.pros-box h4 { color: var(--success); margin-bottom: 12px; font-size: .95rem; }
.cons-box h4 { color: #EF4444; margin-bottom: 12px; font-size: .95rem; }
.pros-box li, .cons-box li { font-size: .88rem; margin-bottom: 6px; list-style: none; padding-left: 0; }
.pros-box li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.cons-box li::before { content: '✗ '; color: #EF4444; font-weight: 700; }

/* ── Sidebar ──────────────────────────────────────────────── */
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .5px; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); }
.sidebar-posts li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.sidebar-posts li:last-child { border-bottom: none; }
.sidebar-posts a { color: var(--text); font-weight: 600; font-size: .88rem; line-height: 1.4; }
.sidebar-posts a:hover { color: var(--orange); }
.sidebar-posts .s-meta { font-size: .75rem; color: var(--grey); margin-top: 3px; }
.sidebar-cats a { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--text); }
.sidebar-cats a:hover { color: var(--orange); }
.sidebar-cats span { background: var(--light-grey); padding: 1px 8px; border-radius: 10px; font-size: .75rem; font-weight: 700; color: var(--grey); }

/* ── Ad Block ─────────────────────────────────────────────── */
.ad-block { margin: 28px 0; text-align: center; background: var(--light-grey); border-radius: var(--radius); padding: 16px; min-height: 90px; display: flex; align-items: center; justify-content: center; }
.ad-block::before { content: 'Advertisement'; font-size: .7rem; color: var(--grey); text-transform: uppercase; display: block; margin-bottom: 8px; }

/* ── Bag Finder Quiz ──────────────────────────────────────── */
.quiz-box { background: linear-gradient(135deg, var(--charcoal), var(--mid)); color: var(--white); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.quiz-box h2 { color: var(--white); margin-bottom: 12px; }
.quiz-box p  { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-options { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 24px 0; }
.quiz-option { background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.2); color: var(--white); padding: 14px 24px; border-radius: var(--radius); cursor: pointer; font-weight: 700; transition: all var(--transition); font-family: var(--font-head); font-size: .95rem; text-transform: uppercase; }
.quiz-option:hover, .quiz-option.selected { background: var(--orange); border-color: var(--orange); }
.quiz-progress { display: flex; gap: 6px; justify-content: center; margin-bottom: 24px; }
.quiz-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); }
.quiz-dot.done { background: var(--orange); }

/* ── Breadcrumbs ──────────────────────────────────────────── */
.breadcrumbs { padding: 12px 0; font-size: .83rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.breadcrumbs a { color: var(--grey); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs li[aria-hidden] { color: var(--grey); }
.breadcrumbs li[aria-current] { color: var(--text); font-weight: 600; }

/* ── Rating Stars ─────────────────────────────────────────── */
.rating-display { display: flex; align-items: center; gap: 10px; }
.stars { color: #F59E0B; letter-spacing: 2px; }
.rating-score { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--charcoal); }
.rating-label { color: var(--grey); font-size: .85rem; }

/* ── Search ───────────────────────────────────────────────── */
.search-bar { display: flex; gap: 0; max-width: 600px; margin: 0 auto; }
.search-bar input { flex: 1; padding: 14px 18px; border: 2px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 1rem; outline: none; }
.search-bar input:focus { border-color: var(--orange); }
.search-bar button { background: var(--orange); color: var(--white); border: 2px solid var(--orange); padding: 14px 24px; border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer; font-weight: 700; font-family: var(--font-head); text-transform: uppercase; }
.search-bar button:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

/* ── Pagination ───────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin: 40px 0; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid var(--border); font-weight: 700; font-size: .9rem; color: var(--text); transition: all var(--transition); }
.pagination a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.pagination .current { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.pagination .dots { border: none; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.8); padding: 60px 0 0; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: block; }
.footer-logo span { color: var(--orange); }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-brand .affiliate-notice { background: rgba(255,95,0,.12); border: 1px solid rgba(255,95,0,.25); border-radius: 6px; padding: 10px 14px; font-size: .8rem; margin-top: 16px; }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { background: rgba(0,0,0,.2); padding: 20px 0; text-align: center; font-size: .82rem; color: rgba(255,255,255,.4); margin-top: 0; }
.newsletter-form { display: flex; gap: 0; margin-top: 10px; }
.newsletter-form input { flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); color: var(--white); border-radius: var(--radius) 0 0 var(--radius); font-size: .88rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button { background: var(--orange); color: var(--white); border: none; padding: 10px 16px; border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer; font-weight: 700; font-size: .82rem; text-transform: uppercase; }

/* ── Cookie Notice ────────────────────────────────────────── */
.cookie-notice { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 600px; margin: 0 auto; background: var(--charcoal); color: rgba(255,255,255,.9); padding: 20px 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 9999; display: flex; flex-direction: column; gap: 12px; border: 1px solid rgba(255,255,255,.1); }
.cookie-notice p { font-size: .88rem; margin: 0; }
.cookie-notice a { color: var(--orange-light); }
.cookie-btns { display: flex; gap: 10px; }

/* ── Affiliate Disclosure Banner ──────────────────────────── */
.disclosure-banner { background: #FFF8E7; border: 1px solid #FCD34D; border-radius: var(--radius); padding: 12px 18px; font-size: .83rem; color: #92400E; margin-bottom: 24px; }
.disclosure-banner strong { color: #78350F; }

/* ── Utilities ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted   { color: var(--text-muted); }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mt-4  { margin-top: 1rem; }
.mb-4  { margin-bottom: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-8  { margin-bottom: 2rem; }
.mt-16 { margin-top: 4rem; }
.mb-16 { margin-bottom: 4rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.flex { display: flex; }
.gap-2 { gap: .5rem; }
.gap-4 { gap: 1rem; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--charcoal); overflow-y: auto; padding: 20px; flex-direction: column; z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 12px 16px; font-size: 1.05rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.07); border-radius: var(--radius); margin-top: 4px; }
  .dropdown li a { color: rgba(255,255,255,.75) !important; }
  .nav-toggle { display: flex; }
  .hero { padding: 50px 0 40px; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .quiz-options { flex-direction: column; }
  .section { padding: 40px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .btn { padding: 10px 18px; font-size: .9rem; }
  .article-body table { font-size: .78rem; }
  .article-body th, .article-body td { padding: 8px 10px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
}
