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

/* ===== TOKENS ===== */
:root {
  --bg:       #f6f0e6;
  --surf:     #ede5d6;
  --txt:      #281e12;
  --txt-body: #3a2a1e;
  --muted:    #8a7060;
  --acc:      #c05a34;
  --grn:      #3f6238;
  --bdr:      rgba(40,30,18,0.10);
  --max-w:    1200px;
  --pad-x:    40px;
  --nav-h:    68px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--txt); font-size: 16px; line-height: 1.5; min-height: 100%; display: flex; flex-direction: column; }
body > main { flex: 1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: 'DM Sans', sans-serif; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark svg { display: block; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.logo-name { font-weight: 700; font-size: 17px; letter-spacing: -0.4px; color: var(--txt); }
.logo-sub  { font-weight: 300; font-size: 10px; letter-spacing: 4px; color: var(--acc); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { font-size: 14px; color: var(--muted); padding: 7px 16px; transition: color 0.15s; }
.nav-links a:hover { color: var(--txt); }
.nav-links a.active { color: var(--txt); font-weight: 500; }

/* ===== UTILS ===== */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--acc);
}
.btn-primary {
  display: inline-block;
  background: var(--acc);
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--txt);
  border: 1px solid var(--bdr);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(40,30,18,0.18);
  cursor: pointer;
}
.btn-amazon {
  display: inline-block;
  background: var(--grn);
  color: #fff;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.section-head h2 { font-family: 'Special Elite', monospace; font-size: 30px; font-weight: 700; color: var(--txt); }
.section-head a { font-size: 13px; color: var(--acc); }

/* ===== HOMEPAGE ===== */
.hero { display: grid; grid-template-columns: 1fr 1fr; height: 440px; max-width: var(--max-w); margin: 0 auto; }
.hero-text-wrap { display: flex; align-items: center; background: var(--bg); }
.hero-text { padding: 64px 48px 64px 40px; }
.hero-text .eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; display: block; }
.hero-text h1 { font-family: 'Special Elite', monospace; font-size: 32px; font-weight: 700; line-height: 1.15; color: var(--txt); }
.hero-text p { margin-top: 16px; font-size: 15px; line-height: 1.85; color: var(--muted); }
.hero-btns { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { background: #c8d8b4; overflow: hidden; position: relative; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.featured { padding: 64px 0 0; }
.featured-grid { display: grid; grid-template-columns: 1.6fr 1fr; border: 1px solid var(--bdr); }
.featured-img { background: #b8d0a4; min-height: 340px; overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; background: var(--surf); }
.featured-body .tag { margin-bottom: 14px; }
.featured-body h3 { font-family: 'Special Elite', monospace; font-size: 28px; font-weight: 700; line-height: 1.2; color: var(--txt); }
.featured-body p { margin-top: 14px; font-size: 14px; line-height: 1.8; color: var(--muted); }
.featured-body .read-link { margin-top: 24px; display: inline-block; font-size: 13px; color: var(--acc); font-weight: 500; }

.two-col { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding: 56px 0; }

.list-posts { display: flex; flex-direction: column; }
.list-post { display: grid; grid-template-columns: 100px 1fr; gap: 20px; border-top: 1px solid var(--bdr); padding: 22px 0; align-items: center; }
.list-post:hover h4 { color: var(--acc); }
.list-post-img { width: 100px; height: 70px; overflow: hidden; background: #c8d8b4; flex-shrink: 0; }
.list-post-img img { width: 100%; height: 100%; object-fit: cover; }
.list-post h4 { font-family: 'Special Elite', monospace; font-size: 17px; font-weight: 400; color: var(--txt); line-height: 1.25; margin-top: 6px; transition: color 0.15s; }
.list-post .tag { margin-bottom: 4px; }

.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-block { background: var(--surf); padding: 28px; }
.sidebar-block h4 { font-family: 'Special Elite', monospace; font-size: 18px; font-weight: 700; color: var(--txt); margin-bottom: 14px; }
.sidebar-block p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.sidebar-avatar { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; margin-bottom: 14px; background: #c8d8b4; }
.sidebar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-block ul { list-style: none; margin-top: 14px; }
.sidebar-block ul li { border-top: 1px solid var(--bdr); padding: 10px 0; font-size: 13px; }
.sidebar-block ul li:first-child { border-top: none; }
.sidebar-block ul li a { color: var(--txt); transition: color 0.15s; }
.sidebar-block ul li a:hover { color: var(--acc); }
.sidebar-email { width: 100%; padding: 10px 12px; border: 1px solid rgba(40,30,18,0.15); background: var(--bg); font-family: 'DM Sans', sans-serif; font-size: 13px; outline: none; margin: 14px 0 10px; display: block; }
.sidebar-sub-btn { width: 100%; padding: 10px; background: var(--acc); color: #fff; border: none; cursor: pointer; font-size: 13px; font-weight: 500; }

.tools-strip { background: var(--surf); padding: 56px 0; }
.tools-strip .section-head { margin-bottom: 12px; }
.affiliate-note { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.tool-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tool-card { background: var(--bg); border: 1px solid var(--bdr); padding: 24px; display: flex; gap: 20px; align-items: center; }
.tool-card-img { width: 90px; height: 80px; flex-shrink: 0; overflow: hidden; background: #d8e8cc; }
.tool-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tool-card-info .name { font-size: 14px; font-weight: 500; color: var(--txt); line-height: 1.35; }
.tool-card-info .note { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.tool-card-info .price { font-family: 'Special Elite', monospace; font-size: 22px; color: var(--acc); margin-top: 8px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-grid { padding: 56px 0; }
.card { display: block; }
.card:hover .card-body h3 { color: var(--acc); }
.card-img { height: 210px; overflow: hidden; background: #c8d8b4; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card:hover .card-img img { transform: scale(1.03); }
.card-body { padding: 20px 4px; }
.card-body .tag { margin-bottom: 8px; }
.card-body h3 { font-family: 'Special Elite', monospace; font-size: 20px; font-weight: 400; line-height: 1.25; color: var(--txt); transition: color 0.15s; }
.card-body p { margin-top: 8px; font-size: 13px; color: var(--muted); line-height: 1.65; }
.card-body .read-link { margin-top: 12px; display: inline-block; font-size: 13px; color: var(--acc); }

/* ===== ARTICLE ===== */
.article-hero { background: var(--surf); padding: 52px 40px 0; border-bottom: 1px solid var(--bdr); }
.article-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--acc); }
.breadcrumb span { margin: 0 6px; }
.article-hero h1 { font-family: 'Special Elite', monospace; font-size: 52px; font-weight: 700; line-height: 1.08; color: var(--txt); max-width: 800px; margin-top: 12px; }
.article-meta { display: flex; align-items: center; gap: 28px; margin-top: 24px; padding-bottom: 40px; flex-wrap: wrap; }
.article-meta span { font-size: 13px; color: var(--muted); }
.article-meta .dot { color: rgba(40,30,18,0.2); }
.species-pill { display: inline-block; border: 1px solid rgba(192,90,52,0.3); padding: 3px 10px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--acc); }

.article-layout { max-width: var(--max-w); margin: 0 auto; padding: 52px 40px 64px; display: grid; grid-template-columns: 1fr 340px; gap: 60px; }
.article-body { min-width: 0; }
.article-hero-img { width: 100%; height: 400px; overflow: hidden; background: #c8d8b4; margin-bottom: 40px; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.prose { color: var(--txt-body); }
.prose p { font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.prose h2 { font-family: 'Special Elite', monospace; font-size: 28px; font-weight: 700; margin: 44px 0 16px; color: var(--txt); line-height: 1.2; }
.prose h3 { font-family: 'Special Elite', monospace; font-size: 20px; font-weight: 400; margin: 32px 0 12px; color: var(--txt); }
.prose ul { list-style: none; margin-bottom: 20px; }
.prose ul li { font-size: 16px; line-height: 1.75; padding: 8px 0 8px 22px; position: relative; border-top: 1px solid var(--bdr); }
.prose ul li::before { content: '—'; position: absolute; left: 0; color: var(--acc); }
.prose ul li:first-child { border-top: none; }
.prose a { color: var(--acc); text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote { background: var(--surf); border-left: 3px solid var(--acc); padding: 20px 24px; margin: 28px 0; }
.prose blockquote p { margin-bottom: 0; font-style: italic; font-size: 15px; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 14px; }
.prose th { text-align: left; padding: 10px 14px; background: var(--surf); font-weight: 600; border: 1px solid var(--bdr); }
.prose td { padding: 10px 14px; border: 1px solid var(--bdr); }
.prose strong { font-weight: 600; color: var(--txt); }

.tools-section { margin-top: 64px; border-top: 2px solid var(--txt); padding-top: 40px; }
.tools-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.tools-section-head h2 { font-family: 'Special Elite', monospace; font-size: 26px; font-weight: 700; color: var(--txt); }
.aff-badge { background: var(--acc); color: #fff; font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 9px; }
.tools-intro { font-size: 13px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
.tool-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 24px; align-items: center; border: 1px solid var(--bdr); padding: 24px; background: var(--surf); margin-bottom: 12px; }
.tool-item-img { height: 90px; background: #c8d8b4; overflow: hidden; }
.tool-item-img img { width: 100%; height: 100%; object-fit: cover; }
.tool-item-info .product-name { font-size: 16px; font-weight: 600; color: var(--txt); }
.tool-item-info .product-note { font-size: 13px; color: var(--muted); margin-top: 5px; line-height: 1.6; max-width: 440px; }
.tool-item-price { text-align: right; }
.tool-item-price .price { display: block; font-family: 'Special Elite', monospace; font-size: 26px; color: var(--acc); white-space: nowrap; margin-bottom: 10px; }

.article-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; align-self: start; }
.sb-block { background: var(--surf); padding: 26px; }
.sb-block h4 { font-family: 'Special Elite', monospace; font-size: 17px; font-weight: 700; color: var(--txt); margin-bottom: 12px; }
.sb-block p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.sb-block ul { list-style: none; margin-top: 12px; }
.sb-block ul li { border-top: 1px solid var(--bdr); padding: 9px 0; font-size: 13px; }
.sb-block ul li a { color: var(--txt); transition: color 0.15s; }
.sb-block ul li a:hover { color: var(--acc); }
.toc-nav ul { list-style: none; margin-top: 12px; }
.toc-nav li { border-top: 1px solid var(--bdr); }
.toc-nav li:first-child { border-top: none; }
.toc-nav a { display: block; padding: 8px 0; font-size: 13px; color: var(--muted); transition: color 0.15s; }
.toc-nav li ul { margin-top: 0; padding-left: 12px; }
.toc-nav li ul li { border-top: none; }
.toc-nav li ul a { font-size: 12px; }
.toc-nav a:hover { color: var(--acc); }
.toc-nav a.active { color: var(--acc); font-weight: 500; }

.related { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x) 64px; }
.related h2 { font-family: 'Special Elite', monospace; font-size: 28px; font-weight: 700; color: var(--txt); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rel-card {}
.rel-card-img { background: #c8d8b4; height: 160px; overflow: hidden; }
.rel-card-img img { width: 100%; height: 100%; object-fit: cover; }
.rel-card-body { padding: 16px 0; }
.rel-card-body .tag { margin-bottom: 6px; }
.rel-card-body h3 { font-family: 'Special Elite', monospace; font-size: 16px; font-weight: 400; color: var(--txt); line-height: 1.3; }

/* ===== SHOP ===== */
.shop-hero { background: var(--surf); padding: 56px 40px; border-bottom: 1px solid var(--bdr); }
.shop-hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.shop-hero .eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--acc); margin-bottom: 16px; display: block; }
.shop-hero h1 { font-family: 'Special Elite', monospace; font-size: 50px; font-weight: 700; line-height: 1.05; color: var(--txt); }
.shop-hero p { margin-top: 18px; font-size: 15px; line-height: 1.85; color: var(--muted); max-width: 440px; }
.shop-aff-note { margin-top: 24px; background: var(--bg); border-left: 3px solid var(--acc); padding: 14px 18px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.hero-stats { display: flex; flex-direction: column; gap: 20px; }
.stat { border-left: 2px solid var(--acc); padding-left: 20px; }
.stat .num { font-family: 'Special Elite', monospace; font-size: 36px; color: var(--txt); line-height: 1; }
.stat .label { font-size: 13px; color: var(--muted); margin-top: 4px; }

.shop-body { max-width: var(--max-w); margin: 0 auto; padding: 56px 40px; display: grid; grid-template-columns: 220px 1fr; gap: 52px; }
.filter-sidebar h3 { font-family: 'Special Elite', monospace; font-size: 18px; font-weight: 700; color: var(--txt); margin-bottom: 16px; }
.filter-group { margin-bottom: 28px; }
.filter-group h4 { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.filter-btn { display: block; width: 100%; text-align: left; background: none; border: none; padding: 8px 12px; font-size: 14px; color: var(--txt); cursor: pointer; transition: background 0.12s; }
.filter-btn:hover { background: var(--surf); }
.filter-btn.active { background: var(--acc); color: #fff; }

.products-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--bdr); }
.products-header h2 { font-family: 'Special Elite', monospace; font-size: 26px; font-weight: 700; color: var(--txt); }
.products-header .count { font-size: 13px; color: var(--muted); }

.shop-section { margin-bottom: 52px; }
.shop-section-title { font-family: 'Special Elite', monospace; font-size: 22px; font-weight: 700; color: var(--txt); border-top: 2px solid var(--bdr); padding-top: 28px; margin-bottom: 24px; display: flex; align-items: baseline; gap: 14px; }
.shop-section-title .count { font-size: 12px; font-weight: 400; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { border: 1px solid var(--bdr); background: var(--bg); cursor: pointer; transition: border-color 0.15s, transform 0.15s; display: block; }
.product-card:hover { border-color: var(--acc); transform: translateY(-2px); }
.product-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 320px 1fr; border-color: var(--acc); }
.prod-img { background: #c8d8b4; height: 200px; overflow: hidden; }
.product-card.featured .prod-img { height: 100%; min-height: 240px; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-badge { display: inline-block; background: var(--acc); color: #fff; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 3px 10px; margin-bottom: 14px; }
.prod-body { padding: 22px; }
.product-card.featured .prod-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }
.prod-body .tag { margin-bottom: 10px; }
.prod-body h3 { font-family: 'Special Elite', monospace; font-size: 18px; font-weight: 400; color: var(--txt); line-height: 1.3; }
.product-card.featured .prod-body h3 { font-size: 26px; font-weight: 700; }
.prod-body .why { font-size: 13px; color: var(--muted); line-height: 1.65; margin-top: 10px; }
.product-card.featured .prod-body .why { font-size: 14px; margin-top: 14px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.prod-footer .price { font-family: 'Special Elite', monospace; font-size: 22px; color: var(--acc); }
.product-card.featured .prod-footer .price { font-size: 28px; }

/* ===== FOOTER ===== */
.footer { background: var(--surf); border-top: 1px solid var(--bdr); padding: 40px 0 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.footer-disclosure { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; max-width: 640px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); border-top: 1px solid var(--bdr); padding-top: 16px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--txt); }

/* ===== POSTS LIST ===== */
.page-header { background: var(--surf); padding: 52px 40px; border-bottom: 1px solid var(--bdr); }
.page-header-inner { max-width: var(--max-w); margin: 0 auto; }
.page-header h1 { font-family: 'Special Elite', monospace; font-size: 42px; font-weight: 700; color: var(--txt); }
.page-header p { margin-top: 12px; font-size: 15px; color: var(--muted); }
.posts-grid { max-width: var(--max-w); margin: 0 auto; padding: 56px 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ===== TABLET (769-1100px) ===== */
@media (max-width: 1100px) and (min-width: 769px) {
  .tool-cards, .cards, .related-grid, .product-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { padding: 40px 24px; gap: 36px; }
  .shop-body { grid-template-columns: 180px 1fr; gap: 32px; padding: 40px 24px; }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  /* NAV — keep horizontal, smaller, allow wrap if needed */
  .nav-inner { padding: 0 16px; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 13px; padding: 7px 8px; }
  .logo-name { font-size: 15px; }
  .logo-sub { font-size: 9px; letter-spacing: 3px; }

  /* HERO — stack: text then image */
  .hero { grid-template-columns: 1fr; height: auto; max-height: none; }
  .hero-text { padding: 36px 20px; }
  .hero-text h1 { font-size: 26px; }
  .hero-text p { font-size: 14px; line-height: 1.65; }
  .hero-img { height: 220px; }
  .hero-btns { gap: 10px; flex-wrap: wrap; }
  .btn-primary, .btn-outline { padding: 10px 18px; font-size: 13px; }

  /* SECTION HEADERS */
  .section-head h2 { font-size: 22px; }

  /* FEATURED GUIDE — stack */
  .featured { padding-top: 32px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-img { min-height: 220px; }
  .featured-body { padding: 24px 20px; }
  .featured-body h3 { font-size: 22px; }

  /* TWO-COL (latest + sidebar) — stack */
  .two-col { grid-template-columns: 1fr; gap: 32px; padding: 36px 0; }
  .wrap { padding: 0 20px; }

  /* LIST POST — smaller thumb */
  .list-post { grid-template-columns: 80px 1fr; gap: 14px; padding: 16px 0; }
  .list-post-img { width: 80px; height: 60px; }
  .list-post h4 { font-size: 15px; }

  /* SIDEBAR BLOCKS */
  .sidebar-block { padding: 20px; }
  .sidebar-block h4 { font-size: 15px; }

  /* HOMEPAGE SIDEBAR — push About Me to the bottom on mobile */
  .sidebar { display: flex; flex-direction: column; }
  .sidebar > .sidebar-block:first-child { order: 99; }

  /* TOOL STRIP on homepage — single column */
  .tools-strip { padding: 40px 0; }
  .tool-cards { grid-template-columns: 1fr; gap: 16px; }

  /* MORE GUIDES cards — single column */
  .cards { grid-template-columns: 1fr; gap: 20px; }
  .card-img { height: 200px; }
  .card-body { padding: 18px; }
  .card-body h3 { font-size: 18px; }

  /* ARTICLE HERO */
  .article-hero { padding: 32px 20px 0; }
  .article-hero h1 { font-size: 28px; line-height: 1.15; }
  .breadcrumb { font-size: 12px; }
  .article-meta { font-size: 12px; flex-wrap: wrap; gap: 6px; }

  /* ARTICLE LAYOUT — sidebar moves below content */
  .article-layout { grid-template-columns: 1fr; padding: 28px 20px 48px; gap: 36px; }
  .article-hero-img { height: 220px; margin-bottom: 24px; }

  /* PROSE typography in article */
  .prose { font-size: 15px; }
  .prose h2 { font-size: 22px; margin: 32px 0 12px; }
  .prose h3 { font-size: 18px; margin: 24px 0 10px; }
  .prose img { margin: 16px 0; }
  .prose table { font-size: 13px; }
  .prose th, .prose td { padding: 8px 10px; }

  /* TOOLS SECTION (affiliate cards) — stack vertically */
  .tools-section-head h2 { font-size: 20px; }
  .tool-item { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .tool-item-img { width: 100%; height: 200px; }
  .tool-item-info .product-name { font-size: 17px; }
  .tool-item-price { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
  .tool-item-price .price { font-size: 22px; margin-bottom: 0; }

  /* SIDEBAR (sticky on desktop, just blocks on mobile) */
  .article-sidebar { position: static; }
  .sb-block { padding: 18px; }
  .sb-block h4 { font-size: 15px; }

  /* RELATED ARTICLES */
  .related { padding: 36px 20px; }
  .related h2 { font-size: 22px; margin-bottom: 22px; }
  .related-grid { grid-template-columns: 1fr; gap: 18px; }
  .rel-card-img { height: 180px; }

  /* SHOP HERO */
  .shop-hero { padding: 36px 20px 28px; }
  .shop-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .shop-hero h1 { font-size: 32px; line-height: 1.1; }
  .hero-stats { gap: 14px; }
  .stat .num { font-size: 28px; }

  /* SHOP BODY — filter sidebar above products */
  .shop-body { grid-template-columns: 1fr; padding: 32px 20px; gap: 28px; }
  .filter-sidebar { position: static; }
  .filter-sidebar h3 { font-size: 16px; }
  .filter-group { margin-bottom: 18px; }
  .filter-btn { font-size: 12px; padding: 7px 12px; }

  /* PRODUCT GRID — single column */
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card.featured { grid-template-columns: 1fr; }
  .product-card.featured .prod-img { height: 220px; }
  .prod-body { padding: 18px; }
  .prod-body h3 { font-size: 17px; }

  .shop-section-title { font-size: 18px; padding-top: 22px; margin-bottom: 18px; }

  /* POSTS GRID (Care Guides page) — single column */
  .page-header { padding: 32px 20px; }
  .page-header h1 { font-size: 30px; }
  .page-header p { font-size: 14px; }
  .posts-grid { grid-template-columns: 1fr; padding: 32px 20px; gap: 20px; }

  /* FOOTER */
  .footer { padding: 32px 0 24px; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

/* ===== TINY MOBILE (≤380px, iPhone SE etc.) ===== */
@media (max-width: 380px) {
  .nav-links a { font-size: 12px; padding: 6px 6px; }
  .hero-text h1 { font-size: 22px; }
  .article-hero h1 { font-size: 24px; }
  .prose { font-size: 14px; }
}
