/* ============================================================
   MyTrendPicks — Global Stylesheet (Direction C: Clean Science)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy:       #0F2744;
  --blue:       #1B5FA8;
  --sky:        #5B9BD5;
  --ice:        #F3F6FA;
  --white:      #FFFFFF;
  --green:      #2BB573;
  --green-bg:   #E8F8EF;
  --cta:        #E85D2F;
  --cta-hover:  #C94A22;
  --txt-dark:   #0F2744;
  --txt-mid:    #3D5A78;
  --txt-muted:  #7A96B2;
  --border:     #D8E4F0;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--ice); color: var(--txt-dark); font-family: var(--font); font-size: 16px; line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.trust-check {
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: white; flex-shrink: 0;
}

/* ---- NAV ---- */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.nav-left { display: flex; align-items: center; gap: 40px; }
.nav-logo {
  font-size: 20px; font-weight: 700; color: var(--navy);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.nav-logo-icon {
  width: 28px; height: 28px;
  background: var(--blue); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 700;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--txt-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-nav-cta {
  background: var(--cta); color: white;
  padding: 8px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
  display: inline-block;
}
.btn-nav-cta:hover { background: var(--cta-hover); color: white; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  max-width: 1100px; margin: 0 auto;
  padding: 12px 24px;
  font-size: 12px; color: var(--txt-muted);
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--txt-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--txt-dark); font-weight: 500; }

/* ---- ARTICLE LAYOUT ---- */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* ---- ARTICLE CARD ---- */
.article-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Typography in articles */
.article-card h1 {
  font-size: 30px; font-weight: 700; color: var(--navy);
  line-height: 1.25; margin-bottom: 16px;
}
.article-card h2 {
  font-size: 21px; font-weight: 700; color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.article-card h3 {
  font-size: 17px; font-weight: 600; color: var(--blue);
  margin: 28px 0 10px;
}
.article-card p { margin-bottom: 18px; color: var(--txt-mid); }
.article-card ul, .article-card ol {
  margin: 0 0 18px 24px; color: var(--txt-mid);
}
.article-card li { margin-bottom: 6px; }
.article-card strong { color: var(--txt-dark); }

/* Meta row */
.meta-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; font-size: 13px; color: var(--txt-muted);
  flex-wrap: wrap;
}
.meta-tag {
  background: rgba(27,95,168,0.1); color: var(--blue);
  padding: 2px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.meta-tag.green { background: var(--green-bg); color: var(--green); }
.meta-tag.orange { background: rgba(232,93,47,0.1); color: var(--cta); }

/* Featured image */
.featured-image {
  width: 100%; height: 340px; object-fit: cover;
  border-radius: 12px; margin-bottom: 32px;
  background: var(--ice);
}

/* Intro paragraph */
.intro-text {
  font-size: 17px; font-weight: 400; color: var(--txt-mid);
  line-height: 1.8; margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--ice);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
}

/* ---- PRODUCT CARDS ---- */
.product-card {
  background: var(--ice);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}
.product-card.winner {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--white) 0%, var(--green-bg) 100%);
}
.product-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--white) 0%, #EEF4FC 100%);
}
.product-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 4px;
  margin-bottom: 10px;
}
.product-badge.green { background: var(--green); color: white; }
.product-badge.blue  { background: var(--blue); color: white; }
.product-badge.cta   { background: var(--cta); color: white; }
.product-card h4 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
}
.product-card p { font-size: 14px; color: var(--txt-mid); margin-bottom: 0; }
.score-row {
  display: flex; gap: 10px; margin: 14px 0;
}
.score-chip {
  flex: 1; text-align: center; padding: 8px 6px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border); border-radius: 8px;
}
.score-val {
  display: block; font-size: 18px; font-weight: 700; color: var(--green);
}
.score-label {
  font-size: 10px; color: var(--txt-muted);
  text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;
}
.product-pros {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0;
}
.pro-tag {
  font-size: 12px; color: var(--green);
  background: var(--green-bg);
  padding: 3px 10px; border-radius: 4px; font-weight: 500;
}
.product-btn {
  display: block;
  background: var(--cta); color: white;
  text-align: center; padding: 13px 20px;
  border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: 14px;
  margin-top: 16px;
  transition: background 0.2s;
}
.product-btn:hover { background: var(--cta-hover); color: white; }
.product-btn.blue { background: var(--blue); }
.product-btn.blue:hover { background: #154e8e; }
.affiliate-note {
  text-align: center; font-size: 10px; color: var(--txt-muted);
  margin-top: 6px;
}

/* ---- COMPARISON TABLE ---- */
.table-wrap { overflow-x: auto; margin: 32px 0; border-radius: 10px; border: 1px solid var(--border); }
.comp-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; min-width: 500px;
}
.comp-table thead th {
  background: var(--navy); color: white;
  padding: 13px 16px; text-align: left;
  font-size: 13px; font-weight: 600;
}
.comp-table thead th:first-child { border-radius: 10px 0 0 0; }
.comp-table thead th:last-child  { border-radius: 0 10px 0 0; }
.comp-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--txt-mid);
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover { background: var(--ice); }
.comp-table .winner-row td { background: var(--green-bg); font-weight: 600; color: var(--navy); }
.comp-table .check { color: var(--green); font-weight: 700; }
.comp-table .cross { color: #dc3545; }

/* ---- INFO BOXES ---- */
.info-box {
  padding: 18px 22px; border-radius: 10px;
  margin: 24px 0; border-left: 3px solid;
}
.info-box.tip   { background: var(--green-bg); border-color: var(--green); }
.info-box.warn  { background: #FFF8E8; border-color: #F0A830; }
.info-box.info  { background: #EEF4FC; border-color: var(--blue); }
.info-box.verdict { background: var(--navy); border-left: none; border-radius: 12px; }
.info-box p { margin: 0; font-size: 14px; }
.info-box.tip p, .info-box.tip strong { color: #1a7a4f; }
.info-box.warn p, .info-box.warn strong { color: #8a5c00; }
.info-box.info p, .info-box.info strong { color: var(--navy); }
.info-box.verdict p { color: rgba(255,255,255,0.85); }
.info-box.verdict strong { color: white; }
.info-box-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 6px; display: block;
}
.info-box.tip .info-box-label   { color: var(--green); }
.info-box.warn .info-box-label  { color: #d08000; }
.info-box.info .info-box-label  { color: var(--blue); }
.info-box.verdict .info-box-label { color: rgba(255,255,255,0.6); }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.faq-question {
  padding: 16px 20px; background: var(--white);
  font-size: 15px; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; user-select: none;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--ice); }
.faq-question::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--blue); }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  display: none; padding: 0 20px 16px;
  background: var(--white);
  font-size: 14px; color: var(--txt-mid); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- VERDICT BOX ---- */
.verdict-box {
  background: var(--navy); border-radius: 12px;
  padding: 28px; margin: 32px 0;
}
.verdict-box .verdict-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.6);
  margin-bottom: 8px; display: block;
}
.verdict-box h3 {
  font-size: 20px; font-weight: 700; color: white;
  margin-bottom: 12px;
}
.verdict-box p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 16px; }
.verdict-btn {
  display: inline-block; background: var(--cta); color: white;
  padding: 12px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
}
.verdict-btn:hover { background: var(--cta-hover); color: white; }

/* ---- SIDEBAR ---- */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.sidebar-header {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--navy);
  background: var(--ice);
  display: flex; align-items: center; gap: 6px;
}
.sidebar-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
}
.sidebar-body { padding: 14px 16px; }
.top-pick {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit; font-size: 13px;
  transition: color 0.2s;
}
.top-pick:last-child { border-bottom: none; }
.top-pick:hover .pick-name { color: var(--blue); }
.pick-rank { font-weight: 700; color: var(--blue); min-width: 22px; font-size: 14px; }
.pick-name { color: var(--txt-dark); font-weight: 500; flex: 1; }
.pick-score {
  font-size: 12px; font-weight: 700; color: var(--green);
  background: var(--green-bg); padding: 2px 7px; border-radius: 4px;
}
.sidebar-aff-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 18px;
}
.sidebar-aff-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(27,95,168,0.1); color: var(--blue);
  padding: 3px 8px; border-radius: 4px; margin-bottom: 8px;
}
.sidebar-aff-title {
  font-size: 14px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px; line-height: 1.4;
}
.sidebar-aff-desc { font-size: 12px; color: var(--txt-muted); margin-bottom: 12px; line-height: 1.5; }
.sidebar-aff-btn {
  display: block; background: var(--cta); color: white;
  text-align: center; padding: 10px; border-radius: 7px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background 0.2s;
}
.sidebar-aff-btn:hover { background: var(--cta-hover); color: white; }
.sidebar-aff-note { text-align: center; font-size: 10px; color: var(--txt-muted); margin-top: 6px; }

/* Related articles in sidebar */
.related-article {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
}
.related-article:last-child { border-bottom: none; }
.related-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--ice); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.related-title { font-size: 12px; font-weight: 500; color: var(--txt-dark); line-height: 1.4; }
.related-article:hover .related-title { color: var(--blue); }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  padding: 48px 40px 28px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 32px;
}
.footer-logo {
  font-size: 18px; font-weight: 700; color: white;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.footer-logo-icon {
  width: 26px; height: 26px; background: var(--cta); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 13px; font-weight: 700;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-col-title {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 11px; color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ---- HOMEPAGE HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 100%);
  padding: 72px 40px;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; width: fit-content;
}
.hero h1 { font-size: 40px; font-weight: 700; color: white; line-height: 1.2; margin-bottom: 16px; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.btn-hero {
  background: var(--cta); color: white; padding: 14px 28px;
  border-radius: 8px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: background 0.2s; display: inline-block;
}
.btn-hero:hover { background: var(--cta-hover); color: white; }
.btn-hero-ghost {
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
  text-decoration: none; display: flex; align-items: center; gap: 5px;
}
.hero-social-proof { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); }
.hero-stars { color: #FFC107; font-size: 14px; }
.search-card {
  background: white; border-radius: 14px; padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.search-card-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
.search-input {
  display: flex; border: 1.5px solid var(--border);
  border-radius: 8px; overflow: hidden; margin-bottom: 14px;
  transition: border-color 0.2s;
}
.search-input:focus-within { border-color: var(--blue); }
.search-input input {
  flex: 1; padding: 10px 14px; border: none;
  font-family: var(--font); font-size: 14px; color: var(--txt-dark); outline: none;
}
.search-btn {
  padding: 10px 16px; background: var(--blue); color: white;
  border: none; font-family: var(--font); font-size: 13px; font-weight: 600; cursor: pointer;
}
.quick-links { display: flex; flex-wrap: wrap; gap: 6px; }
.quick-link {
  font-size: 12px; color: var(--blue); background: rgba(27,95,168,0.08);
  padding: 4px 10px; border-radius: 4px; text-decoration: none;
  font-weight: 500; transition: background 0.2s; display: inline-block;
}
.quick-link:hover { background: rgba(27,95,168,0.15); color: var(--blue); }
.quick-link.green { color: var(--green); background: var(--green-bg); }

/* ---- HOMEPAGE SECTIONS ---- */
.section { max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.section-title { font-size: 24px; font-weight: 700; color: var(--navy); }
.section-link { font-size: 13px; color: var(--blue); text-decoration: none; font-weight: 600; }
.section-link:hover { text-decoration: underline; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.article-tile {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; text-decoration: none;
  color: inherit; transition: box-shadow 0.2s, transform 0.2s;
  display: block;
}
.article-tile:hover { box-shadow: 0 8px 32px rgba(15,39,68,0.1); transform: translateY(-2px); }
.article-tile-img {
  height: 140px; background: var(--ice);
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.article-tile-body { padding: 18px; }
.article-tile-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px; display: block;
}
.article-tile-title { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.article-tile-meta { font-size: 12px; color: var(--txt-muted); }

/* Category grid */
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; text-decoration: none; color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}
.cat-card:hover { border-color: var(--sky); box-shadow: 0 4px 16px rgba(27,95,168,0.08); }
.cat-icon { font-size: 32px; margin-bottom: 12px; }
.cat-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cat-desc { font-size: 13px; color: var(--txt-muted); margin-bottom: 12px; line-height: 1.5; }
.cat-count { font-size: 12px; font-weight: 600; color: var(--blue); }

/* ---- NEWSLETTER ---- */
.newsletter-section {
  background: var(--navy); padding: 56px 40px; text-align: center;
}
.newsletter-chip {
  display: inline-block; background: rgba(43,181,115,0.2); color: #6ee7a8;
  font-size: 12px; font-weight: 600; padding: 4px 14px;
  border-radius: 20px; margin-bottom: 14px;
}
.newsletter-section h2 { font-size: 28px; font-weight: 700; color: white; margin-bottom: 8px; }
.newsletter-section p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.newsletter-form {
  display: flex; max-width: 440px; margin: 0 auto;
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1; padding: 13px 18px; background: rgba(255,255,255,0.1);
  border: none; color: white; font-family: var(--font); font-size: 14px; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 13px 22px; background: var(--cta); color: white;
  border: none; font-family: var(--font); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--cta-hover); }

/* Mobile menu - hidden on desktop */
.nav-hamburger { display: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-inner { grid-template-columns: 1fr; }
  .search-card { display: none; }
  .article-grid, .cat-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* Show hamburger, hide desktop nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; margin-right: 8px; }
  .nav-hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
  .nav-mobile-overlay { display: block; }
  .nav-mobile-drawer { display: flex; }
}
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-right { display: flex; align-items: center; }
  .btn-nav-cta { padding: 8px 14px; font-size: 12px; }
  /* Article mobile fixes */
  .page-wrap { padding: 8px 12px 40px; }
  .article-card { padding: 16px; border-radius: 0; }
  .article-card h1 { font-size: 22px; line-height: 1.3; }
  .sidebar { grid-template-columns: 1fr; }
  .product-card { padding: 16px; }
  .score-row { flex-wrap: wrap; }
  .breadcrumb { padding: 12px 16px; font-size: 12px; }
  .meta-row { flex-wrap: wrap; gap: 6px; }
  .info-box { padding: 12px; }
  .featured-image { height: 200px; }
  .hero { padding: 40px 20px; }
  .hero h1 { font-size: 26px; }
  .article-grid, .cat-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .article-card { padding: 24px; }
  .featured-image { height: 200px; }
  .article-card h1 { font-size: 22px; }
  footer { padding: 40px 20px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

/* Mobile Drawer */
.nav-mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-mobile-overlay.visible { opacity: 1; }

.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px; height: 100vh;
  background: var(--white);
  z-index: 201;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.nav-mobile-drawer.open { transform: translateX(0); }

.nav-mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.nav-close {
  background: none; border: none;
  font-size: 18px; color: var(--txt-mid); cursor: pointer;
}
.nav-mobile-links {
  list-style: none; padding: 16px 0; flex: 1; overflow-y: auto;
}
.nav-mobile-links li a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  font-size: 15px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.nav-mobile-links li a:hover { background: var(--ice); }
.btn-mobile-cta {
  display: block;
  margin: 20px;
  background: var(--cta); color: white;
  text-align: center; padding: 13px;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
}


