/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Roboto',sans-serif;color:#2d3748;background:#ffffff;line-height:1.7}
a{color:#2a9d8f;text-decoration:none;transition:color .2s}
a:hover{color:#238b7e}
img{max-width:100%;height:auto;display:block}
ul,ol{padding-left:1.5rem}

/* ===== LAYOUT ===== */
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* ===== HEADER ===== */
.site-header{background:#1a2332;color:#fff;padding:0;position:sticky;top:0;z-index:100;box-shadow:0 2px 12px rgba(0,0,0,.1)}
.header-top{background:#2a9d8f;padding:8px 0;font-size:.85rem;text-align:center;color:#fff}
.header-main{padding:16px 0}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px}
.logo{font-size:1.5rem;font-weight:700;color:#fff !important;display:flex;align-items:center;gap:10px}
.logo span{color:#2a9d8f}
.main-nav{display:flex;gap:4px}
.main-nav a{color:#fff;padding:8px 16px;border-radius:6px;font-size:.95rem;font-weight:500;transition:background .2s}
.main-nav a:hover,.main-nav a.active{background:#2a9d8f;color:#fff}
.mobile-menu-btn{display:none;background:none;border:none;color:#fff;font-size:1.5rem;cursor:pointer}

/* ===== HERO ===== */
.hero{background:linear-gradient(135deg,#1a2332 0%,#238b7e 100%);color:#fff;padding:80px 0 60px;text-align:center}
.hero h1{font-size:2.5rem;margin-bottom:16px;font-weight:700}
.hero p{font-size:1.15rem;opacity:.9;max-width:700px;margin:0 auto 30px}
.hero-cta{display:inline-block;background:#e8a838;color:#1a2332;padding:14px 36px;border-radius:8px;font-weight:700;font-size:1.05rem;transition:transform .2s,box-shadow .2s}
.hero-cta:hover{transform:translateY(-2px);box-shadow:0 4px 15px rgba(0,0,0,.2);color:#1a2332}

/* ===== CATEGORIES GRID ===== */
.categories-section{padding:60px 0}
.section-title{text-align:center;font-size:2rem;margin-bottom:40px;color:#1a2332}
.section-subtitle{text-align:center;color:#718096;margin-top:-30px;margin-bottom:40px;font-size:1.05rem}
.cat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px}
.cat-card{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:24px 20px;text-align:center;transition:transform .2s,box-shadow .2s;display:block;color:#2d3748}
.cat-card:hover{transform:translateY(-4px);box-shadow:0 8px 25px rgba(0,0,0,.08);border-color:#2a9d8f;color:#2d3748}
.cat-icon{font-size:2.5rem;margin-bottom:12px}
.cat-card h3{font-size:1.05rem;margin-bottom:6px;color:#1a2332}
.cat-card p{font-size:.85rem;color:#718096}

/* ===== PRODUCTS GRID ===== */
.products-section{padding:60px 0;background:#f7faf9}
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:24px}
.product-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.05);transition:transform .2s,box-shadow .2s;display:block;color:#2d3748}
.product-card:hover{transform:translateY(-4px);box-shadow:0 8px 25px rgba(0,0,0,.1);color:#2d3748}
.product-card-img{height:200px;background:#f7faf9;display:flex;align-items:center;justify-content:center;overflow:hidden}
.product-card-img img{max-height:180px;object-fit:contain}
.product-card-body{padding:20px}
.product-card-body h3{font-size:1.1rem;margin-bottom:8px;color:#1a2332}
.product-card-body .card-rating{color:#f6ad55;font-size:.9rem;margin-bottom:6px}
.product-card-body .card-price{font-weight:700;color:#2a9d8f;font-size:1.15rem}
.product-card-body .card-cat{font-size:.8rem;color:#718096;margin-top:6px}

/* ===== PRODUCT PAGE ===== */
.breadcrumb{padding:16px 0;font-size:.9rem;color:#718096}
.breadcrumb a{color:#2a9d8f}
.product-header{background:#f7faf9;border-radius:16px;padding:40px;margin-bottom:40px}
.product-header-content{display:grid;grid-template-columns:350px 1fr;gap:40px;align-items:start}
.product-image-wrap{background:#fff;border-radius:12px;padding:20px;text-align:center;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.product-image-wrap img{max-height:350px;margin:0 auto}
.product-intro h1{font-size:1.8rem;color:#1a2332;margin-bottom:16px;line-height:1.3}
.product-meta{display:flex;align-items:center;gap:20px;margin-bottom:16px;flex-wrap:wrap}
.rating-display{display:flex;align-items:center;gap:6px;font-size:1rem}
.rating-display .stars{color:#f6ad55;font-size:1.2rem}
.review-count{color:#718096;font-size:.9rem}
.product-category a{background:#e8f5f3;color:#2a9d8f;padding:4px 12px;border-radius:20px;font-size:.85rem}
.product-price-box{display:flex;align-items:center;gap:12px;margin-bottom:20px}
.price{font-size:2rem;font-weight:700;color:#2a9d8f}
.stock-badge{background:#48bb78;color:#fff;padding:4px 12px;border-radius:20px;font-size:.8rem}
.product-summary{color:#718096;font-size:1rem;line-height:1.7}

/* ===== ARTICLE CONTENT ===== */
.product-body{max-width:820px;margin:0 auto;padding-bottom:60px}
.toc{background:#f7faf9;border-radius:12px;padding:24px 30px;margin-bottom:40px;border-left:4px solid #2a9d8f}
.toc h2{font-size:1.15rem;margin-bottom:12px;color:#1a2332}
.toc ol{padding-left:1.5rem}
.toc li{margin-bottom:6px}
.toc a{color:#2d3748;font-size:.95rem}
.toc a:hover{color:#2a9d8f}
.content-section{margin-bottom:40px}
.content-section h2{font-size:1.5rem;color:#1a2332;margin-bottom:16px;padding-bottom:8px;border-bottom:2px solid #e8f5f3}
.content-section h3{font-size:1.15rem;color:#1a2332;margin:16px 0 8px}
.content-section p{margin-bottom:14px;line-height:1.8}
.content-section ul,.content-section ol{margin-bottom:16px}
.content-section li{margin-bottom:6px;line-height:1.6}
.benefits-list li{padding:4px 0}

/* ===== PROS/CONS ===== */
.pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.pros-box,.cons-box{border-radius:12px;padding:24px}
.pros-box{background:#f0fff4;border:1px solid #c6f6d5}
.cons-box{background:#fff5f5;border:1px solid #fed7d7}
.pros-box h3{color:#22543d;margin-bottom:12px}
.cons-box h3{color:#742a2a;margin-bottom:12px}
.pro-item{color:#276749}
.con-item{color:#9b2c2c}

/* ===== REVIEWS ===== */
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;margin-bottom:20px}
.review-card{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:20px}
.review-header{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.review-author{font-weight:600;color:#1a2332}
.review-badge{background:#e8f5f3;color:#2a9d8f;padding:2px 8px;border-radius:10px;font-size:.75rem}
.review-stars{color:#f6ad55;margin-bottom:8px}
.review-text{font-size:.95rem;color:#718096;line-height:1.6}

/* ===== FAQ ===== */
.faq-item{border:1px solid #e2e8f0;border-radius:10px;padding:20px;margin-bottom:12px;transition:border-color .2s}
.faq-item:hover{border-color:#2a9d8f}
.faq-question{font-size:1.05rem;color:#1a2332;margin-bottom:10px;cursor:pointer}
.faq-answer p{color:#718096;line-height:1.7}

/* ===== VERDICT ===== */
.verdict-box{display:flex;gap:30px;align-items:flex-start;background:#e8f5f3;border-radius:16px;padding:30px;border:2px solid #2a9d8f}
.verdict-score{text-align:center;min-width:80px}
.verdict-number{font-size:3rem;font-weight:700;color:#2a9d8f;display:block}
.verdict-max{font-size:1.2rem;color:#718096}
.verdict-text p{margin-bottom:10px}

/* ===== RELATED ===== */
.related-products{margin-top:40px;padding-top:40px;border-top:2px solid #e2e8f0}
.related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px;margin-bottom:20px}
.related-card{background:#f7faf9;border-radius:10px;padding:20px;text-align:center;transition:transform .2s;display:block;color:#2d3748;border:1px solid #e2e8f0}
.related-card:hover{transform:translateY(-3px);border-color:#2a9d8f;color:#2d3748}
.related-card h4{margin-bottom:8px;color:#1a2332}
.related-rating{color:#f6ad55;font-size:.9rem;display:block;margin-bottom:4px}
.related-price{font-weight:600;color:#2a9d8f}
.cross-links{font-size:.95rem;color:#718096}

/* ===== FOOTER ===== */
.site-footer{background:#1a2332;color:#cbd5e0;padding:50px 0 20px}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:40px;margin-bottom:40px}
.footer-col h4{color:#fff;margin-bottom:16px;font-size:1rem}
.footer-col a{color:#a0aec0;display:block;padding:4px 0;font-size:.9rem}
.footer-col a:hover{color:#2a9d8f}
.footer-col p{font-size:.9rem;line-height:1.6}
.footer-bottom{text-align:center;padding-top:20px;border-top:1px solid #2d3748;font-size:.85rem}

/* ===== INGREDIENTS GRID ===== */
.ingredients-grid{background:#f7faf9;border-radius:12px;padding:20px 30px;margin-bottom:16px}
.ingredients-grid li{padding:4px 0;font-weight:500}

/* ===== PAGE CONTENT ===== */
.page-content{padding:40px 0 60px;max-width:820px;margin:0 auto}
.page-content h1{font-size:2rem;color:#1a2332;margin-bottom:24px}
.page-content h2{font-size:1.4rem;color:#1a2332;margin:30px 0 14px}
.page-content p{margin-bottom:14px;line-height:1.8}
.page-content ul,.page-content ol{margin-bottom:16px}
.page-content li{margin-bottom:6px}

/* ===== CATEGORY PAGE ===== */
.category-hero{background:linear-gradient(135deg,#1a2332,#238b7e);color:#fff;padding:50px 0;text-align:center}
.category-hero h1{font-size:2.2rem;margin-bottom:12px}
.category-hero p{opacity:.9;max-width:600px;margin:0 auto}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .product-header-content{grid-template-columns:1fr}
    .product-image-wrap{max-width:300px;margin:0 auto}
    .pros-cons{grid-template-columns:1fr}
    .hero h1{font-size:1.8rem}
    .product-intro h1{font-size:1.4rem}
    .header-inner{flex-direction:column;gap:12px}
    .main-nav{flex-wrap:wrap;justify-content:center}
    .cat-grid{grid-template-columns:repeat(2,1fr)}
    .verdict-box{flex-direction:column;text-align:center}
    .mobile-menu-btn{display:block}
}
@media(max-width:480px){
    .cat-grid{grid-template-columns:1fr}
    .reviews-grid{grid-template-columns:1fr}
    .related-grid{grid-template-columns:1fr}
}
