/* =============================================
   Baby Junctions — Complete Stylesheet
   Fonts: Nunito (headings/body) + DM Mono (prices)
   Colors: Blue #5BC8F5 · Pink #F26B8A · Yellow #FFD166
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=DM+Mono:wght@400;500&display=swap');

/* ─── CSS Variables ─── */
:root {
    --blue:    #5BC8F5;
    --pink:    #F26B8A;
    --yellow:  #FFD166;
    --white:   #FFFFFF;
    --text:    #2D2D2D;
    --muted:   #6B7280;
    --bg-light:#F8F9FA;
    --border:  #E5E7EB;
    --shadow:  0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius:  12px;
    --radius-sm: 8px;
    --font:    'Nunito', sans-serif;
    --mono:    'DM Mono', monospace;
    --max-w:   1200px;
    --amazon-orange: #FF9900;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--pink); }
ul { list-style: none; }

/* ─── Utility ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.bg-light { background: var(--bg-light); }
.btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--blue); color: var(--white);
    padding: 12px 24px; border-radius: 50px;
    font-weight: 700; font-family: var(--font);
    border: none; cursor: pointer; font-size: 15px;
    transition: all 0.2s;
}
.btn-primary:hover { background: var(--pink); color: var(--white); transform: translateY(-1px); }

/* ─── Header ─── */
.nav-toggle-input { display: none; }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(91,200,245,0.12);
}
.header-inner {
    display: flex; align-items: center; gap: 12px;
    padding-top: 8px; padding-bottom: 8px;
    position: relative;
}
.site-logo img { height: 52px; width: auto; }

/* ─── Nav — pills fill all space between logo and search icon ─── */
.main-nav {
    flex: 1;
    min-width: 0;
    margin: 0 10px;
}
.nav-inner {
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 2px;       /* give 2px border room on top/bottom edges */
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-list {
    display: inline-flex;   /* shrinks to content, enables scroll */
    gap: 6px;
    align-items: center;
    white-space: nowrap;
}
.nav-link {
    display: inline-block;
    padding: 6px 13px;
    border-radius: 50px;
    border: 2px solid var(--blue);
    font-weight: 700;
    color: var(--blue);
    font-size: 13px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    background: transparent;
    white-space: nowrap;
}
.nav-link:hover {
    background: var(--blue);
    color: white;
    box-shadow: 0 3px 10px rgba(91,200,245,0.45);
}
/* Per-category pill colors — start from nth-child(2) because Shop is nth-child(1) */
.nav-list > li:nth-child(2) .nav-link { border-color: #5BC8F5; color: #0284c7; }
.nav-list > li:nth-child(2) .nav-link:hover { background: #5BC8F5; color: white; box-shadow: 0 3px 10px rgba(91,200,245,0.45); }
.nav-list > li:nth-child(3) .nav-link { border-color: #F26B8A; color: #be123c; }
.nav-list > li:nth-child(3) .nav-link:hover { background: #F26B8A; color: white; box-shadow: 0 3px 10px rgba(242,107,138,0.45); }
.nav-list > li:nth-child(4) .nav-link { border-color: #a78bfa; color: #7c3aed; }
.nav-list > li:nth-child(4) .nav-link:hover { background: #a78bfa; color: white; box-shadow: 0 3px 10px rgba(167,139,250,0.45); }
.nav-list > li:nth-child(5) .nav-link { border-color: #34d399; color: #065f46; }
.nav-list > li:nth-child(5) .nav-link:hover { background: #34d399; color: white; box-shadow: 0 3px 10px rgba(52,211,153,0.45); }
.nav-list > li:nth-child(6) .nav-link { border-color: #fb923c; color: #c2410c; }
.nav-list > li:nth-child(6) .nav-link:hover { background: #fb923c; color: white; box-shadow: 0 3px 10px rgba(251,146,60,0.45); }
.nav-list > li:nth-child(7) .nav-link { border-color: #f59e0b; color: #b45309; }
.nav-list > li:nth-child(7) .nav-link:hover { background: #f59e0b; color: white; box-shadow: 0 3px 10px rgba(245,158,11,0.45); }
.nav-list > li:nth-child(8) .nav-link { border-color: #22d3ee; color: #0e7490; }
.nav-list > li:nth-child(8) .nav-link:hover { background: #22d3ee; color: white; box-shadow: 0 3px 10px rgba(34,211,238,0.45); }
.nav-list > li:nth-child(9) .nav-link { border-color: #818cf8; color: #4338ca; }
.nav-list > li:nth-child(9) .nav-link:hover { background: #818cf8; color: white; box-shadow: 0 3px 10px rgba(129,140,248,0.45); }
.nav-list > li:nth-child(10) .nav-link { border-color: #f472b6; color: #9d174d; }
.nav-list > li:nth-child(10) .nav-link:hover { background: #f472b6; color: white; box-shadow: 0 3px 10px rgba(244,114,182,0.45); }

/* ── Browse All Products CTA (used on homepage + category pages) ── */
.shop-all-cta { text-align: center; margin: 10px 0 32px; }
.btn-shop-all {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(135deg, #5BC8F5 0%, #38b2e8 100%);
    color: #fff; font-weight: 800; font-size: 1.05rem;
    border-radius: 50px; text-decoration: none;
    box-shadow: 0 4px 18px rgba(91,200,245,.35);
    transition: transform .2s, box-shadow .2s;
}
.btn-shop-all:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(91,200,245,.48);
}

/* ── Find-a-Gift CTA (homepage hero) ── */
.btn-find-gift {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #FFD166 0%, #F26B8A 100%);
    color: #1a1a2e;
    font-weight: 800; font-size: 1rem;
    border-radius: 50px; text-decoration: none;
    box-shadow: 0 4px 18px rgba(242,107,138,.35);
    margin-bottom: 24px;
    transition: transform .2s, box-shadow .2s;
}
.btn-find-gift:hover {
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(242,107,138,.5);
}

/* Fresh Picks — View All link */
.na-view-all {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 20px;
    background: linear-gradient(135deg, #5BC8F5 0%, #38b2e8 100%);
    color: #fff; font-weight: 800; font-size: .88rem;
    border-radius: 50px; text-decoration: none; white-space: nowrap;
    box-shadow: 0 3px 12px rgba(91,200,245,.3);
    transition: transform .15s, box-shadow .15s;
    flex-shrink: 0;
}
.na-view-all:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(91,200,245,.45);
}
@media (max-width: 480px) { .na-view-all { display: none; } }

/* Shop pill — solid fill so it stands out as CTA */
.nav-link-shop {
    background: linear-gradient(135deg, #5BC8F5 0%, #38b2e8 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    font-weight: 800 !important;
}
.nav-link-shop:hover {
    background: linear-gradient(135deg, #38b2e8 0%, #0ea5e9 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(91,200,245,.5) !important;
}

/* ─── Search icon button ─── */
.search-icon-btn {
    flex-shrink: 0;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px; height: 40px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.search-icon-btn:hover { background: var(--pink); }

/* ─── Search overlay ─── */
.search-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 600;
    background: rgba(15,15,30,0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    animation: fadeIn 0.15s ease;
}
.search-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }

.search-overlay-box {
    background: white;
    border-radius: 16px;
    padding: 18px 20px;
    width: 92%;
    max-width: 640px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
    animation: slideDown 0.18s ease;
}
@keyframes slideDown { from { transform: translateY(-12px); opacity:0 } to { transform: translateY(0); opacity:1 } }

.search-overlay-box input[type="search"] {
    flex: 1;
    padding: 12px 4px;
    border: none;
    font-family: var(--font);
    font-size: 16px;
    outline: none;
    color: var(--text);
    min-width: 0;
    background: transparent;
}
.overlay-search-btn {
    padding: 10px 22px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.2s;
    flex-shrink: 0;
}
.overlay-search-btn:hover { background: var(--pink); }
.overlay-close {
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 34px; height: 34px;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.overlay-close:hover { background: #e5e7eb; color: var(--text); }

/* Hamburger (CSS-only) */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.3s;
}
.mobile-menu {
    display: none; background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
    display: block; padding: 10px 12px; border-radius: var(--radius-sm);
    font-weight: 600; color: var(--text); font-size: 15px;
}
.mobile-menu a:hover { background: var(--bg-light); color: var(--blue); }
.mobile-search { display: flex; gap: 8px; margin-top: 12px; }
.mobile-search input {
    flex: 1; padding: 10px 14px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font);
}
.mobile-search button {
    background: var(--blue); color: white; border: none;
    padding: 10px 18px; border-radius: var(--radius-sm);
    font-family: var(--font); font-weight: 700; cursor: pointer;
}

/* CSS-only hamburger toggle */
.nav-toggle-input:checked ~ header .mobile-menu,
.nav-toggle-input:checked + header .mobile-menu { display: block; }

/* ─── Hero ─── */
.hero-banner {
    background: linear-gradient(135deg, #1a1a6e 0%, #6366f1 30%, #ec4899 65%, #F26B8A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255,209,102,0.15) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(99,102,241,0.3) 0%, transparent 50%);
}
.hero-inner {
    display: grid; grid-template-columns: 1fr auto;
    gap: 48px; align-items: center; position: relative;
}
.hero-text { color: white; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 700; margin-bottom: 16px;
    backdrop-filter: blur(4px);
}
.hero-text h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900; line-height: 1.15;
    margin-bottom: 16px;
}
.hero-accent { color: var(--yellow); }
.hero-sub { font-size: 18px; opacity: 0.95; margin-bottom: 28px; max-width: 520px; }

.hero-search {
    display: flex; gap: 8px; max-width: 500px; margin-bottom: 32px;
}
.hero-search input {
    flex: 1; padding: 14px 20px; border-radius: 50px;
    border: none; font-family: var(--font); font-size: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hero-search input:focus { outline: 2px solid var(--yellow); }
.hero-search button {
    background: var(--yellow); color: var(--text); border: none;
    padding: 14px 24px; border-radius: 50px; font-family: var(--font);
    font-weight: 800; cursor: pointer; font-size: 15px;
    transition: all 0.2s; white-space: nowrap;
}
.hero-search button:hover { background: white; transform: scale(1.04); }

.hero-stats {
    display: flex; gap: 32px;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--yellow); }
.stat span { font-size: 12px; opacity: 0.9; font-weight: 600; text-transform: uppercase; }

.hero-logo-big {
    width: 320px; height: 320px; object-fit: cover;
    border-radius: 24px;
    border: 4px solid rgba(255,255,255,0.5);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}

/* ─── Section Headers ─── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.section-header p { color: var(--muted); font-size: 17px; }

/* ─── Categories Grid ─── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.category-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; padding: 28px 20px;
    background: var(--white); border: 2px solid var(--border);
    border-radius: var(--radius); text-decoration: none;
    color: var(--text); text-align: center;
    transition: all 0.25s;
    box-shadow: var(--shadow);
}
.category-card:hover {
    border-color: var(--blue); transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(91,200,245,0.2);
    color: var(--text);
}
.cat-emoji { font-size: 40px; line-height: 1; }
.category-card h3 { font-size: 16px; font-weight: 800; }
.cat-count {
    font-size: 12px; color: var(--muted);
    background: var(--bg-light); padding: 3px 10px;
    border-radius: 50px; font-weight: 600;
}

/* ─── Article Grid ─── */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.article-card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: var(--shadow); transition: all 0.25s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-body { padding: 20px; }
.card-cat {
    display: inline-block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--pink); background: rgba(242,107,138,0.1);
    padding: 3px 10px; border-radius: 50px; margin-bottom: 8px;
}
.card-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; line-height: 1.35; }
.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--blue); }
.card-excerpt { font-size: 14px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.card-meta { display: flex; gap: 12px; font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.btn-read {
    display: inline-block; font-size: 13px; font-weight: 700;
    color: var(--blue); border: 1.5px solid var(--blue);
    padding: 7px 16px; border-radius: 50px; transition: all 0.2s;
}
.btn-read:hover { background: var(--blue); color: white; }

/* ─── Trust Bar ─── */
.trust-bar { background: rgba(242,107,138,0.07); padding: 56px 0; }
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.trust-item { text-align: center; }
.trust-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.trust-item h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.trust-item p { font-size: 14px; color: var(--muted); }

/* ─── Email Opt-in ─── */
.email-optin {
    background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);
    padding: 56px 20px; text-align: center; color: white;
}
.optin-inner { max-width: 560px; margin: 0 auto; }
.optin-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.email-optin h3 { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.email-optin p { font-size: 16px; opacity: 0.92; margin-bottom: 24px; }
.optin-fields {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.optin-fields input {
    flex: 1; min-width: 180px; padding: 13px 18px;
    border-radius: 50px; border: none; font-family: var(--font);
    font-size: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-optin {
    background: var(--yellow); color: var(--text); border: none;
    padding: 13px 26px; border-radius: 50px; font-family: var(--font);
    font-weight: 800; font-size: 14px; cursor: pointer;
    white-space: nowrap; transition: all 0.2s;
}
.btn-optin:hover { background: white; transform: scale(1.03); }
.optin-note { font-size: 12px; opacity: 0.8; margin-top: 10px; }
.optin-msg { margin-top: 12px; padding: 10px; border-radius: var(--radius-sm); font-weight: 600; }
.optin-msg.success { background: rgba(255,255,255,0.2); }
.optin-msg.error { background: rgba(0,0,0,0.2); }

/* Sidebar optin variant */
.optin-sidebar { padding: 24px 16px; border-radius: var(--radius); }
.optin-sidebar h3 { font-size: 18px; }
.optin-sidebar .optin-fields { flex-direction: column; }
.optin-sidebar input { min-width: unset; width: 100%; }
.optin-sidebar .btn-optin { width: 100%; text-align: center; }

/* ─── Product Box ─── */
.product-box {
    display: grid; grid-template-columns: 200px 1fr;
    gap: 24px; padding: 24px; border: 2px solid var(--border);
    border-radius: var(--radius); margin-bottom: 24px;
    box-shadow: var(--shadow); background: var(--white);
}
.product-image img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    border-radius: var(--radius-sm); background: var(--bg-light);
    display: block;
}
.product-type-img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    border-radius: var(--radius-sm); background: var(--bg-light);
    display: block; opacity: .88;
    filter: brightness(1.04) saturate(0.9);
}
.product-img-placeholder {
    width: 100%; aspect-ratio: 1;
    border-radius: var(--radius-sm);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; padding: 20px;
}
.product-img-placeholder .ph-emoji {
    font-size: 56px; line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.10));
}
.product-img-placeholder .ph-label {
    font-size: 12px; font-weight: 600; letter-spacing: .04em;
    text-transform: uppercase; color: #6B7280; opacity: .85;
}
.product-name { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.stars { color: #FBBF24; font-size: 18px; }
.rating-num { font-family: var(--mono); font-weight: 500; color: var(--muted); margin-left: 4px; }
.review-count { font-size: 13px; color: var(--muted); }
.product-rating { margin-bottom: 10px; }
.product-specs { margin: 12px 0; }
.product-specs li { font-size: 14px; color: var(--muted); padding: 3px 0; }
.product-price { margin: 16px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.mrp { font-size: 14px; color: var(--muted); }
.mrp s { color: var(--muted); }
.badge-discount {
    background: var(--pink); color: white;
    font-family: var(--mono); font-size: 12px; font-weight: 500;
    padding: 3px 10px; border-radius: 50px;
}
.current-price {
    font-family: var(--mono); font-size: 26px; font-weight: 500;
    color: var(--blue);
}
.saving { font-size: 13px; color: #16A34A; font-weight: 700; }
.btn-amazon {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--amazon-orange); color: var(--white);
    padding: 13px 28px; border-radius: var(--radius-sm);
    font-weight: 800; font-size: 15px; border: none;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-amazon:hover { background: #e88c00; color: white; transform: translateY(-1px); }
.affiliate-note { font-size: 11px; color: var(--muted); margin-top: 8px; font-style: italic; }

/* ─── Article Layout ─── */
.article-layout {
    display: grid; grid-template-columns: 1fr 320px;
    gap: 48px; padding-top: 40px; padding-bottom: 64px;
}
.article-content { min-width: 0; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.article-cat-badge {
    display: inline-block; background: rgba(91,200,245,0.12);
    color: var(--blue); font-size: 12px; font-weight: 700;
    text-transform: uppercase; padding: 4px 12px;
    border-radius: 50px; margin-bottom: 12px;
}
.article-content h1 { font-size: clamp(26px,4vw,42px); font-weight: 900; margin-bottom: 16px; line-height: 1.25; }
.article-meta {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px; font-size: 14px; color: var(--muted);
}
.author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-name { font-weight: 700; color: var(--text); }
.article-date, .read-time { font-size: 13px; }
.article-hero-img {
    width: 100%; border-radius: var(--radius);
    margin-bottom: 24px; max-height: 440px; object-fit: cover;
}
.inline-disclosure {
    background: rgba(255,209,102,0.18); border-left: 4px solid var(--yellow);
    padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px;
    margin-bottom: 32px;
}
.article-body h2 { font-size: 26px; font-weight: 800; margin: 32px 0 12px; }
.article-body h3 { font-size: 20px; font-weight: 700; margin: 24px 0 8px; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 20px; }
.article-body li { margin-bottom: 6px; }
.article-body img { border-radius: var(--radius-sm); margin: 16px 0; }

/* ── Article Tables ── */
.article-body table {
    width: 100%; border-collapse: collapse;
    margin: 24px 0; font-size: 14px; border-radius: 10px;
    overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.article-body table thead tr {
    background: linear-gradient(90deg, var(--blue), #3ab4e8);
    color: #fff;
}
.article-body table th {
    padding: 12px 16px; text-align: left;
    font-weight: 800; font-size: 13px; letter-spacing: .3px;
}
.article-body table td {
    padding: 11px 16px; border-bottom: 1px solid var(--border);
    vertical-align: top; color: var(--text);
}
.article-body table tbody tr:last-child td { border-bottom: none; }
.article-body table tbody tr:nth-child(even) { background: #f7fbff; }
.article-body table tbody tr:hover { background: #eef7fd; }

/* Mobile — horizontal scroll wrapper injected by JS */
.table-scroll-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    margin: 24px 0; border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.table-scroll-wrap table { margin: 0; box-shadow: none; border-radius: 0; }
.products-section h2 { font-size: 28px; font-weight: 900; margin-bottom: 24px; }
.faq-section h2 { font-size: 28px; font-weight: 900; margin-bottom: 20px; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    margin-bottom: 10px; overflow: hidden;
}
.faq-item summary {
    padding: 14px 16px; font-weight: 700; cursor: pointer;
    background: var(--bg-light); font-size: 15px;
}
.faq-item summary:hover { background: rgba(91,200,245,0.08); }
.faq-answer { padding: 14px 16px; font-size: 15px; color: var(--muted); border-top: 1px solid var(--border); }

/* ── Article-page gifting CTA band ── */
.article-gift-cta {
    margin: 32px 0 24px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fff5f8 0%, #fff8e1 100%);
    border: 1.5px solid #ffe1e8;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    color: #1a1a2e;
    line-height: 1.5;
}
.article-gift-cta a {
    color: var(--pink);
    font-weight: 800;
    text-decoration: none;
    margin-left: 6px;
}
.article-gift-cta a:hover { text-decoration: underline; }

.author-box {
    display: flex; gap: 20px; padding: 24px;
    background: var(--bg-light); border-radius: var(--radius);
    margin-top: 40px; border: 1px solid var(--border);
}
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-avatar-placeholder { width: 72px; height: 72px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; }
.author-info h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.author-info p { font-size: 14px; color: var(--muted); }

/* Sidebar */
.article-sidebar { position: sticky; top: 80px; align-self: start; }
.sidebar-widget {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px; margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.sidebar-widget h4 { font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.toc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.toc-header h4 { margin-bottom: 0; }
.toc-toggle {
    background: none; border: 1px solid var(--border); border-radius: 6px;
    width: 28px; height: 28px; cursor: pointer; font-size: 11px; color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s; flex-shrink: 0;
}
.toc-toggle:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
#toc-list { transition: max-height .3s ease, opacity .3s ease; overflow: hidden; }
#toc-list ol { padding-left: 16px; }
#toc-list li { margin-bottom: 6px; }
#toc-list a { font-size: 13px; color: var(--muted); }
#toc-list a:hover { color: var(--blue); }
.related-list li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.related-list img { width: 56px; height: 42px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.related-list a { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.35; }
.related-list a:hover { color: var(--blue); }

/* ─── Category Page ─── */
.category-main { padding: 40px 0 64px; }
.category-header {
    display: flex; gap: 20px; align-items: center;
    margin-bottom: 40px; padding: 24px;
    background: var(--bg-light); border-radius: var(--radius);
}
.cat-hero-emoji { font-size: 56px; }
.category-header h1 { font-size: 32px; font-weight: 900; margin-bottom: 6px; }
.category-header p { color: var(--muted); }
.post-count-badge {
    display: inline-block; background: var(--blue); color: white;
    font-size: 12px; padding: 3px 12px; border-radius: 50px;
    font-weight: 700; margin-top: 8px;
}

/* ─── Pagination ─── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn {
    padding: 8px 16px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-weight: 700;
    color: var(--text); font-size: 14px; transition: all 0.2s;
}
.page-btn:hover, .page-btn.active {
    background: var(--blue); border-color: var(--blue); color: white;
}

/* ─── Search ─── */
.search-main { padding: 40px 0 64px; }
.search-main h1 { font-size: 32px; font-weight: 900; margin-bottom: 24px; }
.search-form-large { display: flex; gap: 12px; max-width: 600px; margin-bottom: 24px; }
.search-form-large input {
    flex: 1; padding: 14px 20px; border-radius: var(--radius);
    border: 2px solid var(--border); font-family: var(--font); font-size: 16px;
}
.search-form-large input:focus { outline: none; border-color: var(--blue); }
.search-count { color: var(--muted); margin-bottom: 32px; }
.search-count strong { color: var(--text); }

/* ─── Static Pages ─── */
.page-main { padding: 48px 0 80px; }
.page-content { max-width: 800px; }
.page-content h1 { font-size: 36px; font-weight: 900; margin-bottom: 24px; }
.page-content h2 { font-size: 22px; font-weight: 800; margin: 32px 0 10px; color: var(--blue); }
.page-content p, .page-content li { color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.page-content ul { margin-left: 20px; list-style: disc; }
.page-content a { color: var(--blue); }
.disclaimer-box {
    background: rgba(242,107,138,0.1); border-left: 4px solid var(--pink);
    padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 15px;
}
.page-content code {
    font-family: var(--mono); background: var(--bg-light);
    padding: 2px 8px; border-radius: 4px; font-size: 14px;
}
.about-hero {
    display: flex; gap: 32px; align-items: center;
    background: var(--bg-light); padding: 32px; border-radius: var(--radius);
    margin-bottom: 40px;
}
.lead { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.eeat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 40px; }
.eeat-card {
    background: var(--bg-light); border-radius: var(--radius);
    padding: 24px; border: 1px solid var(--border);
}
.eeat-card span { font-size: 32px; display: block; margin-bottom: 10px; }
.eeat-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.eeat-card p { font-size: 14px; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.team-card { background: var(--bg-light); border-radius: var(--radius); padding: 24px; text-align: center; }
.team-avatar { font-size: 48px; margin-bottom: 12px; }
.team-card h4 { font-weight: 800; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--blue); font-weight: 600; display: block; margin-bottom: 10px; }
.team-card p { font-size: 14px; color: var(--muted); }
.trust-signals ul { list-style: none; margin: 0; }
.trust-signals li { padding: 8px 0; font-size: 15px; border-bottom: 1px solid var(--border); }

/* ─── Footer ─── */
.site-footer { display: block; width: 100%; }
.footer-affiliate-bar {
    background: rgba(242,107,138,0.1); padding: 14px 0;
    border-top: 1px solid var(--border);
}
.footer-affiliate-bar p { font-size: 13px; color: var(--muted); }
.footer-main { background: #1a1a2e; color: #ccc; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: #9CA3AF; margin-bottom: 16px; }
.social-links { display: flex; gap: 12px; }
.social-icon { font-size: 22px; }
.footer-col h4 { color: white; font-weight: 800; margin-bottom: 16px; font-size: 15px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; color: #9CA3AF; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { background: #111; padding: 16px 0; }
.footer-bottom p { text-align: center; font-size: 12px; color: #6B7280; }

/* ─── Empty State ─── */
.empty-state {
    text-align: center; padding: 64px 20px;
    color: var(--muted); font-size: 18px;
}

/* ─── Breadcrumb ─── */
.breadcrumb span { color: var(--text); font-weight: 600; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-logo-big { display: none; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    /* Tighter header on tablets — pills scroll horizontally */
    .header-inner { gap: 10px; }
    .nav-link { font-size: 12px; padding: 5px 10px; }
}

@media (max-width: 768px) {
    .section { padding: 40px 0; }
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .category-card { padding: 16px 10px; }
    .cat-emoji { font-size: 28px; }
    .category-card h3 { font-size: 13px; }
    .articles-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .product-box { grid-template-columns: 1fr; }
    .product-image img { max-width: 220px; margin: 0 auto; }
    .hero-stats { gap: 20px; }
    .hero-search { flex-direction: column; }
    .hero-search input, .hero-search button { width: 100%; }
    .eeat-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-hero { flex-direction: column; text-align: center; }
    .search-form-large { flex-direction: column; }
    .category-header { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .section-header h2 { font-size: 26px; }
    .hero-text h1 { font-size: 28px; }
    .current-price { font-size: 20px; }
    /* Legibility: lift sub-12px labels to the 12px minimum */
    .card-cat, .new-week-date { font-size: 12px; }
    /* Sticky buy bar: keep name + price + button on one row without overflowing */
    .sticky-buy-inner { gap: 8px; padding: 8px 12px; }
    .sticky-product-name { font-size: 12px; }
    /* Keep the ≥44px touch target on small phones — do not shrink below it. */
    .sticky-buy-btn { padding: 12px 16px; font-size: 13px; min-height: 44px; }
    /* Never let a long product title push past the viewport */
    .product-name, .product-specs li, .bj-cmp .pc-title { overflow-wrap: break-word; word-wrap: break-word; }
}

/* ═══════════════════════════════════════════════════════════
   UI UPGRADE — April 2026
   ══════════════════════════════════════════════════════════*/

/* ── Product Box: full-width orange CTA ─────────────────── */
.btn-amazon-cta {
    display: block; width: 100%; text-align: center;
    background: var(--amazon-orange);
    color: #fff; font-weight: 800; font-size: 1rem;
    font-family: var(--font);
    padding: 15px 20px; border-radius: var(--radius);
    text-decoration: none; margin: 16px 0 8px;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(255,153,0,.35);
    letter-spacing: .3px;
}
.btn-amazon-cta:hover {
    background: #e68900; color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,0,.45);
}

/* Product badges */
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.badge-best-price {
    background: #e8f5e9; color: #2e7d32;
    font-size: 12px; font-weight: 700;
    padding: 4px 10px; border-radius: 50px;
    border: 1px solid #a5d6a7;
}
/* Image + title are click targets; keep them visually unchanged so the card still
   reads as a card, not a wall of links. */
.product-image-link { display: block; text-decoration: none; }
.product-name-link { color: inherit; text-decoration: none; }
.product-name-link:hover { color: var(--amazon-orange, #FF9900); text-decoration: underline; }
.badge-oos {
    background: #fff4e5; color: #b45309;
    font-size: 12px; font-weight: 700;
    padding: 4px 10px; border-radius: 50px;
    border: 1px solid #fcd34d;
}
.badge-hot {
    background: #fff3e0; color: #e65100;
    font-size: 12px; font-weight: 800;
    padding: 4px 10px; border-radius: 50px;
    border: 1px solid #ffcc80;
}

/* Price checked timestamp */
.price-checked {
    display: block; font-size: 11.5px; color: #888;
    margin-top: 4px; font-style: italic;
}

/* ── Helpful bar ─────────────────────────────────────────── */
.helpful-bar {
    display: flex; align-items: center; gap: 12px;
    background: #f0faff; border: 1px solid #b3e5fc;
    border-radius: var(--radius); padding: 14px 20px;
    margin: 20px 0; font-size: 0.93rem; color: #555;
}
.helpful-thumbs { font-size: 1.5rem; }
.helpful-bar strong { color: var(--dark); }

/* ── Mid-article email optin ─────────────────────────────── */
.mid-article-optin {
    display: flex; gap: 16px; align-items: flex-start;
    background: linear-gradient(135deg, #fff8e1 0%, #fff0f5 100%);
    border: 2px solid var(--yellow); border-radius: var(--radius);
    padding: 18px 20px; margin: 28px 0;
}
.optin-inline-icon { font-size: 2rem; flex-shrink: 0; }
.mid-article-optin > div { flex: 1; }
.mid-article-optin strong { display: block; font-size: 0.97rem; margin-bottom: 2px; color: var(--dark); }
.mid-article-optin span { font-size: 0.85rem; color: #666; }
.optin-inline-form { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.optin-inline-form input[type="email"] {
    flex: 1; min-width: 180px;
    padding: 10px 14px; border-radius: 8px;
    border: 1.5px solid var(--border); font-family: var(--font);
    font-size: 0.88rem;
}
.optin-inline-form button {
    background: var(--pink); color: #fff;
    border: none; padding: 10px 18px; border-radius: 8px;
    font-weight: 700; font-family: var(--font); cursor: pointer;
    font-size: 0.88rem; transition: background .2s;
}
.optin-inline-form button:hover { background: var(--blue); }
@media (max-width: 600px) {
    .mid-article-optin { flex-direction: column; }
    .optin-inline-form { flex-direction: column; }
    .optin-inline-form input[type="email"] { min-width: 0; }
}

/* ── Share bar ───────────────────────────────────────────── */
.share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 16px;
}
.share-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-right: 2px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity .15s, transform .1s;
    white-space: nowrap;
    line-height: 1;
}
.share-btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.share-btn:active { transform: translateY(0); }
.share-wa { background: #25D366; color: #fff; }
.share-native { background: #f0f4f8; color: #444; }
/* Mobile: sticky strip just below header */
@media (max-width: 767px) {
    .share-bar {
        position: sticky;
        top: 58px;
        z-index: 90;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        padding: 8px 16px;
        margin: 0 -16px 16px;
        border-bottom: 1px solid #eee;
        box-shadow: 0 2px 8px rgba(0,0,0,.07);
        justify-content: center;
    }
}

/* ── Sticky mobile buy bar ───────────────────────────────── */
.sticky-buy-bar {
    /* z-index must stay ABOVE .wa-float (9990) — the WhatsApp pill used to render
       on top of the primary buy button on phones. */
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9995;
    background: #fff; border-top: 2px solid var(--amazon-orange);
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    transform: translateY(100%); transition: transform .3s ease;
    display: none;
}
.sticky-buy-bar.visible { transform: translateY(0); }
.sticky-buy-inner {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px; max-width: 600px; margin: 0 auto;
}
.sticky-product-name { flex: 1; font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.sticky-product-price { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--amazon-orange); white-space: nowrap; }
.sticky-buy-btn {
    background: var(--amazon-orange); color: #fff;
    padding: 13px 20px; border-radius: 8px; font-weight: 800;
    font-size: 14px; text-decoration: none; white-space: nowrap;
    transition: background .2s;
    /* ≥44px tall — iOS/Android minimum touch target for the highest-intent button. */
    min-height: 44px; display: inline-flex; align-items: center;
}
.sticky-buy-btn:hover { background: #e68900; color: #fff; }
/* Show only on mobile */
@media (min-width: 768px) { .sticky-buy-bar { display: none !important; } }
@media (max-width: 767px) { .sticky-buy-bar { display: block; } }

/* ── New This Week strip ─────────────────────────────────── */
.new-this-week { background: #fff; }
.new-week-scroll {
    display: flex; gap: 16px; overflow-x: auto;
    padding-bottom: 12px; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.new-week-scroll::-webkit-scrollbar { height: 4px; }
.new-week-scroll::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 2px; }
.new-week-scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
.new-week-card {
    flex: 0 0 220px; scroll-snap-align: start;
    border-radius: var(--radius); overflow: hidden;
    border: 1.5px solid var(--border); text-decoration: none;
    background: #fff; transition: box-shadow .2s, transform .2s;
    display: flex; flex-direction: column;
}
.new-week-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.new-week-card img { width: 100%; height: 130px; object-fit: cover; }
.new-week-placeholder {
    width: 100%; height: 130px; display: flex; align-items: center;
    justify-content: center; font-size: 2.5rem; background: var(--bg-light);
}
.new-week-body { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.new-week-cat { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; }
.new-week-title { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.new-week-date { font-size: 11px; color: #999; margin-top: 4px; }

/* ── Updated date on article cards ──────────────────────── */
.card-updated { font-size: 11.5px; color: #6B7280; }
.card-meta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; font-size: 13px; color: var(--muted); margin: 8px 0 12px; }

/* ── Amazon Search CTA Banner ───────────────────────────── */
.amazon-search-cta {
    background: linear-gradient(135deg, #fff8ee 0%, #fff3e0 100%);
    border: 2px solid #ff9900;
    border-radius: var(--radius);
    padding: 18px 20px;
    margin: 24px 0;
}
.amazon-cta-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.amazon-cta-icon { font-size: 2rem; flex-shrink: 0; }
.amazon-cta-inner > div {
    flex: 1;
    min-width: 160px;
}
.amazon-cta-inner strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3px;
}
.amazon-cta-inner span {
    font-size: 12px;
    color: var(--muted);
}
.amazon-cta-inner .btn-amazon-cta {
    width: auto;
    margin: 0;
    white-space: nowrap;
    padding: 12px 22px;
    font-size: 14px;
}

/* ── Inline products section (mid-article) ──────────────── */
.products-inline {
    border-top: 3px solid var(--amazon-orange);
    border-radius: var(--radius);
    background: #fff9f0;
    padding: 20px;
    margin: 24px 0;
}
.products-inline h2 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

/* ─── New Arrivals Product Scroll ──────────────────────────────────────────── */
.new-arrivals-section { background: linear-gradient(180deg, #fff8f0 0%, #fff 100%); }

.na-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.na-header h2 { margin: 0; font-size: 1.5rem; }
.na-header p  { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.na-header > div:nth-child(2) { flex: 1; min-width: 160px; }

.na-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff0f0;
    color: #e53935;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.na-dot {
    width: 8px; height: 8px;
    background: #e53935;
    border-radius: 50%;
    animation: na-pulse 1.4s ease-in-out infinite;
}
@keyframes na-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.7); opacity: 0.45; }
}

.na-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.na-arrow {
    width: 38px; height: 38px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .15s, background .15s;
    color: var(--text);
}
.na-arrow:hover { border-color: var(--blue); background: #eef8fd; }

.na-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--pink) var(--bg-light);
    padding: 4px 2px 14px;
}
.na-scroll::-webkit-scrollbar       { height: 4px; }
.na-scroll::-webkit-scrollbar-track { background: var(--bg-light); border-radius: 4px; }
.na-scroll::-webkit-scrollbar-thumb { background: var(--pink);     border-radius: 4px; }

.na-card {
    flex: 0 0 240px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform .2s, box-shadow .2s;
    animation: na-slide-in .5s ease both;
}
.na-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,.14);
}
@keyframes na-slide-in {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
}

.na-card-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--bg-light);
}
.na-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.na-card:hover .na-card-img img { transform: scale(1.05); }
.na-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    background: var(--bg-light);
}
.na-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: linear-gradient(135deg, #F26B8A, #ff8a65);
    color: #fff;
    font-size: 10px; font-weight: 900;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    animation: na-pulse 2s ease-in-out infinite;
}

.na-card-body   { padding: 14px; }
.na-cat {
    font-size: 10px; font-weight: 800;
    color: var(--blue);
    text-transform: uppercase; letter-spacing: .5px;
    display: block; margin-bottom: 5px;
}
.na-product-name {
    font-size: 13px; font-weight: 800;
    color: var(--text);
    margin-bottom: 8px; line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.na-price {
    font-size: 17px; font-weight: 900;
    color: #2e7d32;
    font-family: var(--mono);
    margin-bottom: 12px;
}
.na-mrp {
    font-size: 12px; color: var(--muted); font-weight: 400;
    margin-left: 6px;
    font-family: var(--mono);
}
.na-actions     { display: flex; flex-direction: column; gap: 8px; }
.na-btn-amazon  {
    background: #FF9900; color: #fff;
    text-align: center; padding: 9px;
    border-radius: 8px; font-size: 12px; font-weight: 800;
    text-decoration: none; display: block;
    transition: background .15s, transform .1s;
}
.na-btn-amazon:hover  { background: #e68900; text-decoration: none; transform: scale(1.02); }
.na-btn-blog {
    background: var(--bg-light); color: var(--text);
    text-align: center; padding: 9px;
    border-radius: 8px; font-size: 12px; font-weight: 800;
    text-decoration: none; display: block;
    transition: background .15s;
}
.na-btn-blog:hover { background: #e5e7eb; text-decoration: none; }

@media (max-width: 768px) {
    .na-card      { flex: 0 0 200px; }
    .na-card-img  { height: 130px; }
    .na-arrows    { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOOL PAGE — SEO / GEO / AI RANKING LAYER
   ═══════════════════════════════════════════════════════════════════════════ */

/* Quick Facts */
.tool-quick-facts{background:linear-gradient(135deg,#f0fbff 0%,#fff8fc 100%);padding:40px 0;border-top:2px solid #e8f6fd}
.tqf-title{font-size:1.15rem;font-weight:900;color:#1a1a2e;margin-bottom:20px;display:flex;align-items:center;gap:8px}
.tqf-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:14px;margin:0}
.tqf-item{background:#fff;border-radius:12px;padding:16px;box-shadow:0 2px 12px rgba(0,0,0,.06);border-left:4px solid #5BC8F5}
.tqf-item dt{font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.4px;color:#5BC8F5;margin-bottom:4px}
.tqf-item dd{font-size:.9rem;color:#333;font-weight:600;line-height:1.5;margin:0}

/* Trust Bar */
.tool-trust-bar{background:#1a1a2e;padding:14px 0}
.ttb-items{display:flex;flex-wrap:wrap;justify-content:center;gap:20px}
.ttb-items span{color:rgba(255,255,255,.8);font-size:.82rem;font-weight:700}

/* Source Citations */
.tool-sources{background:#f8f9fc;padding:36px 0;border-top:1px solid #eee}
.ts-title{font-size:1.1rem;font-weight:900;color:#1a1a2e;margin-bottom:6px}
.ts-sub{color:#666;font-size:.88rem;margin-bottom:16px}
.ts-list{list-style:none;padding:0;margin:0 0 16px;display:flex;flex-direction:column;gap:8px}
.ts-list li a{color:#5BC8F5;font-size:.88rem;font-weight:700;text-decoration:none}
.ts-list li a:hover{text-decoration:underline}
.ts-disclaimer{font-size:.82rem;color:#666;background:#fff8e1;border-left:4px solid #FFD166;border-radius:8px;padding:12px 14px;line-height:1.6}

/* Related Tools */
.tool-related-section{background:#fff;padding:40px 0;border-top:1px solid #eee}
.trs-title{font-size:1.2rem;font-weight:900;color:#1a1a2e;margin-bottom:20px;text-align:center}
.trs-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px}
.trs-card{display:flex;flex-direction:column;gap:4px;padding:16px;background:#f8f9fc;border-radius:14px;text-decoration:none;border:2px solid transparent;transition:.2s}
.trs-card:hover{border-color:#5BC8F5;background:#f0fbff;transform:translateY(-2px)}
.trs-emoji{font-size:1.6rem}
.trs-name{font-size:.9rem;font-weight:800;color:#1a1a2e}
.trs-desc{font-size:.78rem;color:#666;line-height:1.4}
.trs-all-link{display:inline-block;padding:10px 24px;background:linear-gradient(135deg,#5BC8F5,#F26B8A);color:#fff;border-radius:10px;font-weight:800;font-size:.9rem;text-decoration:none}
.trs-all-link:hover{opacity:.9}

@media(max-width:600px){
    .tqf-grid{grid-template-columns:1fr}
    .trs-grid{grid-template-columns:1fr 1fr}
    .ttb-items{gap:12px}
    .ttb-items span{font-size:.75rem}
}

/* Quick Answer Box — tools & articles */
.quick-answer-box{background:#fff8e1;border-left:5px solid #FFD166;border-radius:10px;padding:18px 20px;margin:24px 0;font-size:.97rem;line-height:1.7}
.quick-answer-box strong{color:#b45309;font-size:.85rem;text-transform:uppercase;letter-spacing:.05em;display:block;margin-bottom:6px}
.quick-answer-box p{margin:0;color:#1a1a2e}

/* Expert / Paediatrician Section — tools */
.tool-expert-box{background:#f0f9ff;border-left:5px solid #5BC8F5;border-radius:10px;padding:20px 22px;margin:28px 0}
.tool-expert-box h3{font-size:1rem;font-weight:800;color:#0c4a6e;margin:0 0 10px}
.tool-expert-box p{color:#1e3a5f;font-size:.93rem;margin:0 0 10px;line-height:1.7}
.tool-expert-box ul{color:#1e3a5f;font-size:.9rem;padding-left:18px;margin:0;line-height:1.8}
