@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');
:root {
  --navy: #0a1628;
  --royal: #1a3a6b;
  --gold: #c8922a;
  --gold-light: #f0c060;
  --cream: #fdf8f0;
  --white: #ffffff;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --text: #1a1a2e;
  --accent: #e8f4fd;
  --border: #e5e7eb;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; }

/* HEADER */
.site-header { background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%); padding: 16px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-light); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.back-btn { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.back-btn:hover { color: var(--gold-light); }
.header-cta { background: var(--gold); color: white; padding: 8px 18px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.82rem; transition: background 0.2s; white-space: nowrap; }
.header-cta:hover { background: var(--gold-light); color: var(--navy); }

/* POST HERO */
.post-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a2e5a 100%); padding: 60px 24px 50px; text-align: center; position: relative; overflow: hidden; }
.post-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(200,146,42,0.15) 0%, transparent 65%); }
.post-hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.post-kw { display: inline-block; background: rgba(200,146,42,0.2); color: var(--gold-light); border: 1px solid rgba(200,146,42,0.4); padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.post-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4.5vw, 2.8rem); color: white; line-height: 1.2; margin-bottom: 16px; }
.post-hero p.sub { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 600px; margin: 0 auto 20px; }
.post-meta { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.post-meta span { font-size: 0.8rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 5px; }

/* LAYOUT */
.post-layout { max-width: 1100px; margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .post-layout { grid-template-columns: 1fr; } .sidebar { order: -1; } }

/* ARTICLE */
article h2 { font-family: 'Playfair Display', serif; font-size: 1.65rem; color: var(--navy); margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
article h3 { font-size: 1.15rem; font-weight: 600; color: var(--royal); margin: 24px 0 10px; }
article p { font-size: 0.97rem; color: #374151; margin-bottom: 16px; line-height: 1.8; }
article ul, article ol { margin: 12px 0 20px 20px; }
article li { font-size: 0.95rem; color: #374151; margin-bottom: 8px; line-height: 1.7; }
article strong { color: var(--navy); font-weight: 600; }
article a { color: var(--royal); text-decoration: underline; }
article a:hover { color: var(--gold); }

/* HIGHLIGHT BOX */
.highlight-box { background: var(--accent); border-left: 4px solid var(--royal); border-radius: 0 10px 10px 0; padding: 20px 24px; margin: 24px 0; }
.highlight-box p { margin: 0; color: var(--royal); font-size: 0.95rem; }

/* VERDICT BOX */
.verdict-box { background: linear-gradient(135deg, var(--navy), var(--royal)); color: white; border-radius: 12px; padding: 28px 32px; margin: 32px 0; }
.verdict-box h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold-light); margin-bottom: 12px; }
.verdict-box p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* INGREDIENT CARD */
.ing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin: 24px 0; }
.ing-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 20px; border-top: 3px solid var(--gold); }
.ing-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.ing-card p { font-size: 0.85rem; color: var(--gray); margin: 0; line-height: 1.6; }
.ing-card .benefit-tag { display: inline-block; background: #f0fdf4; color: #166534; font-size: 0.72rem; font-weight: 600; padding: 2px 8px; border-radius: 10px; margin-top: 8px; }

/* BENEFIT ITEM */
.benefit-list { margin: 20px 0; }
.benefit-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.benefit-item:last-child { border-bottom: none; }
.benefit-num { min-width: 36px; height: 36px; background: var(--navy); color: var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.benefit-item h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.benefit-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* PRICING TABLE */
.price-table { width: 100%; border-collapse: collapse; margin: 20px 0; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.price-table th { background: var(--navy); color: var(--gold-light); padding: 13px 16px; font-size: 0.82rem; font-weight: 600; text-align: left; }
.price-table td { padding: 12px 16px; font-size: 0.88rem; border-bottom: 1px solid var(--border); background: white; }
.price-table tr.best td { background: #fffbeb; font-weight: 600; }
.price-table .badge-best { background: var(--gold); color: white; font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-left: 6px; }

/* CTA IN ARTICLE */
.cta-box { background: linear-gradient(135deg, var(--navy), #1a3a6b); border-radius: 14px; padding: 32px 36px; text-align: center; margin: 36px 0; }
.cta-box h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; margin-bottom: 8px; }
.cta-box p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 20px; }
.cta-box a { display: inline-block; background: var(--gold); color: white; padding: 12px 30px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: background 0.2s; }
.cta-box a:hover { background: var(--gold-light); color: var(--navy); }
.cta-box .guarantees { margin-top: 14px; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.cta-box .guarantees span { color: rgba(255,255,255,0.65); font-size: 0.78rem; }

/* SIDEBAR */
.sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: white; border-radius: 12px; padding: 22px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 24px; border: 1px solid var(--border); }
.sidebar-widget h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.related-links { list-style: none; }
.related-links li { padding: 8px 0; border-bottom: 1px solid var(--light-gray); }
.related-links li:last-child { border-bottom: none; }
.related-links a { font-size: 0.85rem; color: var(--royal); text-decoration: none; font-weight: 500; display: flex; align-items: flex-start; gap: 6px; }
.related-links a:hover { color: var(--gold); }
.related-links a::before { content: '→'; flex-shrink: 0; margin-top: 1px; }
.sidebar-buy { background: linear-gradient(135deg, var(--navy), var(--royal)); border-radius: 12px; padding: 22px; text-align: center; color: white; }
.sidebar-buy .price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold-light); margin: 8px 0; }
.sidebar-buy .old { text-decoration: line-through; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.sidebar-buy a { display: block; background: var(--gold); color: white; padding: 11px; border-radius: 8px; font-weight: 700; text-decoration: none; margin-top: 14px; font-size: 0.9rem; transition: background 0.2s; }
.sidebar-buy a:hover { background: var(--gold-light); color: var(--navy); }
.sidebar-buy .guar { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 10px; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; background: white; border: none; padding: 16px 20px; text-align: left; font-size: 0.95rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: 'DM Sans', sans-serif; }
.faq-q:hover { background: var(--light-gray); }
.faq-q .toggle { font-size: 1.2rem; font-weight: 300; color: var(--royal); transition: transform 0.2s; }
.faq-a { display: none; padding: 0 20px 16px; font-size: 0.9rem; color: var(--gray); line-height: 1.7; background: white; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .toggle { transform: rotate(45deg); }

/* DISCLAIMER */
.disclaimer { background: var(--light-gray); border-radius: 8px; padding: 16px 20px; margin-top: 40px; font-size: 0.78rem; color: var(--gray); line-height: 1.6; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.55); text-align: center; padding: 32px 24px; font-size: 0.82rem; margin-top: 32px; }
.site-footer .footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 12px; flex-wrap: wrap; }
.site-footer a { color: var(--gold-light); text-decoration: none; }
