/* ===== MENGEREDSTOO.CO.UK - Men's Skin Redness & Flushing ===== */

:root {
    --bg: #f7f5f3;
    --bg-alt: #efecea;
    --surface: #ffffff;
    --text: #2d2926;
    --text-light: #6b635b;
    --primary: #c0392b;
    --primary-light: #e74c3c;
    --primary-dark: #962d22;
    --secondary: #2c6e8a;
    --secondary-light: #3498b5;
    --accent: #d4a843;
    --border: #e0dbd6;
    --shadow: rgba(45,41,38,0.08);
    --shadow-md: rgba(45,41,38,0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --header-height: 72px;
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.7; font-size: 17px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
a { color: var(--secondary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 48px 0 20px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin: 32px 0 14px; }
p { margin-bottom: 16px; }
ul, ol { margin: 0 0 20px 24px; }
li { margin-bottom: 8px; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(247,245,243,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: all 0.3s; height: var(--header-height); display: flex; align-items: center; }
.header.scrolled { border-bottom-color: var(--border); box-shadow: 0 2px 20px var(--shadow); }
.header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.2rem; color: var(--text); }
.logo:hover { color: var(--primary); }
.logo-icon { flex-shrink: 0; }
.logo span { line-height: 1.2; }
.logo strong { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 0.92rem; font-weight: 500; color: var(--text-light); transition: all 0.3s; }
.nav-link:hover { color: var(--primary); background: rgba(192,57,43,0.06); }
.nav-link.active { color: var(--primary); background: rgba(192,57,43,0.08); font-weight: 600; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { padding: 140px 0 80px; background: linear-gradient(135deg, var(--bg) 0%, #f0e8e6 50%, var(--bg-alt) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%); border-radius: 50%; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(192,57,43,0.1); color: var(--primary); padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.15rem; color: var(--text-light); max-width: 520px; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--surface); padding: 28px 24px; border-radius: var(--radius-lg); box-shadow: 0 4px 20px var(--shadow); text-align: center; transition: transform 0.3s; }
.stat-card:hover { transform: translateY(-4px); }
.stat-card .stat-number { font-family: var(--font-heading); font-size: 2.2rem; color: var(--primary); display: block; margin-bottom: 4px; }
.stat-card .stat-label { font-size: 0.85rem; color: var(--text-light); line-height: 1.3; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 120px 0 50px; background: linear-gradient(135deg, var(--bg) 0%, #f0e8e6 100%); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }
.breadcrumb a { color: var(--secondary); }
.breadcrumb .current { color: var(--primary); font-weight: 500; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: var(--text-light); max-width: 700px; }

/* ===== PAGE CONTENT ===== */
.page-content { padding: 60px 0 80px; }
.content-wrapper { max-width: 800px; }
.content-wrapper h2:first-child { margin-top: 0; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ===== CONDITION CARDS ===== */
.conditions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.condition-card { background: var(--surface); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: 0 2px 16px var(--shadow); border-left: 4px solid var(--primary); transition: all 0.3s; }
.condition-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px var(--shadow-md); }
.condition-card .card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 16px; }
.condition-card h3 { font-size: 1.25rem; margin: 0 0 10px; }
.condition-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.card-link { color: var(--secondary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { color: var(--primary); gap: 10px; }

.icon-rosacea { background: rgba(192,57,43,0.1); }
.icon-eczema { background: rgba(44,110,138,0.1); }
.icon-sunburn { background: rgba(212,168,67,0.1); }
.icon-acne { background: rgba(231,76,60,0.1); }
.icon-shaving { background: rgba(44,110,138,0.15); }
.icon-psoriasis { background: rgba(150,45,34,0.1); }

/* ===== MYTH CARDS ===== */
.myths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.myth-card { background: var(--surface); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 2px 16px var(--shadow); }
.myth-label { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.myth-label.myth { background: rgba(192,57,43,0.1); color: var(--primary); }
.myth-label.fact { background: rgba(44,110,138,0.1); color: var(--secondary); }
.myth-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.myth-card p { color: var(--text-light); font-size: 0.93rem; margin: 0; }

/* ===== TIPS LIST ===== */
.tips-list { list-style: none; margin: 0; padding: 0; counter-reset: tips; }
.tips-list li { counter-increment: tips; padding: 20px 20px 20px 70px; position: relative; background: var(--surface); border-radius: var(--radius); margin-bottom: 12px; box-shadow: 0 2px 8px var(--shadow); }
.tips-list li::before { content: counter(tips); position: absolute; left: 20px; top: 20px; width: 36px; height: 36px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }

/* ===== TABLES ===== */
.comparison-table { width: 100%; border-collapse: collapse; margin: 24px 0; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px var(--shadow); font-size: 0.93rem; }
.comparison-table thead { background: var(--primary); color: white; }
.comparison-table th { padding: 14px 16px; text-align: left; font-weight: 600; font-family: var(--font-body); }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(192,57,43,0.03); }

/* ===== INFO BOXES ===== */
.info-box { padding: 24px 28px; border-radius: var(--radius); margin: 28px 0; }
.info-box h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 10px; font-size: 1rem; }
.info-box p { margin-bottom: 0; font-size: 0.95rem; }
.info-box.tip { background: rgba(44,110,138,0.08); border-left: 4px solid var(--secondary); }
.info-box.tip h4 { color: var(--secondary); }
.info-box.warning { background: rgba(192,57,43,0.06); border-left: 4px solid var(--primary); }
.info-box.warning h4 { color: var(--primary); }
.info-box.medical { background: rgba(212,168,67,0.08); border-left: 4px solid var(--accent); }
.info-box.medical h4 { color: #b8922e; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--surface); border-radius: var(--radius); margin-bottom: 10px; box-shadow: 0 2px 8px var(--shadow); overflow: hidden; }
.faq-question { width: 100%; padding: 18px 24px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--text); text-align: left; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* ===== NEWSLETTER ===== */
.newsletter { padding: 60px 0; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%); color: white; text-align: center; }
.newsletter h2 { color: white; margin-top: 0; }
.newsletter p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 24px; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 2px solid rgba(255,255,255,0.3); border-radius: var(--radius); background: rgba(255,255,255,0.15); color: white; font-size: 0.95rem; font-family: var(--font-body); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { outline: none; border-color: white; background: rgba(255,255,255,0.2); }
.newsletter-form button { padding: 14px 28px; background: white; color: var(--primary); border: none; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--accent); color: white; }

/* ===== FOOTER ===== */
.footer { background: #2d2926; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-links h4 { color: white; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; margin-bottom: 16px; }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 0.83rem; color: rgba(255,255,255,0.4); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero p { margin: 0 auto; }
    .hero-stats { max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px; gap: 4px; transform: translateY(-100%); opacity: 0; pointer-events: none; transition: all 0.3s; box-shadow: 0 8px 30px var(--shadow-md); }
    .nav.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-toggle { display: flex; }
    .nav-link { padding: 12px 16px; width: 100%; }
    .conditions-grid { grid-template-columns: 1fr; }
    .myths-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; max-width: 260px; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    body { font-size: 16px; }
}

/* ===== SKIP TO CONTENT ===== */
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 0 0 8px 8px; font-weight: 700; font-size: 0.9rem; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* ===== READING PROGRESS BAR ===== */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); z-index: 1001; width: 0%; transition: width 0.1s linear; pointer-events: none; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 900; opacity: 0; transform: translateY(16px); transition: all 0.3s; box-shadow: 0 4px 16px rgba(192,57,43,0.35); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(192,57,43,0.45); }
.back-to-top:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }
.back-to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ===== TABLE OF CONTENTS ===== */
.toc { background: rgba(192,57,43,0.04); border: 1px solid var(--border); border-radius: var(--radius, 12px); padding: 24px 28px; margin: 32px 0; }
.toc h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary, var(--text-muted)); margin-bottom: 12px; }
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--primary); font-size: 0.95rem; }
.toc a:hover { color: var(--secondary); }

/* ===== RELATED GUIDES ===== */
.related-guides { padding: 64px 0; border-top: 1px solid var(--border); }
.related-guides h2 { text-align: center; margin-bottom: 40px; }
.related-guides .guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.related-guides .guide-card { background: rgba(192,57,43,0.04); border: 1px solid var(--border); border-radius: var(--radius, 12px); padding: 28px; transition: all 0.3s; }
.related-guides .guide-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.related-guides .guide-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 1.15rem; }
.related-guides .guide-card p { color: var(--text-secondary, var(--text-muted)); font-size: 0.95rem; line-height: 1.6; }
.guide-card-link { text-decoration: none; color: inherit; }

/* ===== TABLE WRAPPER ===== */
.table-wrapper { overflow-x: auto; margin: 24px 0; border-radius: var(--radius, 12px); border: 1px solid var(--border); }
.table-wrapper table { min-width: 600px; }

/* ===== FOCUS VISIBLE ===== */
*:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
input:focus-visible, textarea:focus-visible, button:focus-visible { outline-offset: 0; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f7f5f3; }
::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== SELECTION ===== */
::selection { background: rgba(192,57,43, 0.3); color: #fff; }

/* ===== PERFORMANCE ===== */
.faq, .newsletter, .footer { content-visibility: auto; contain-intrinsic-size: auto 500px; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .back-to-top { transition: none; }
}

/* ===== HIGH CONTRAST ===== */
@media (prefers-contrast: high) {
    .card, .faq-item { border: 1px solid rgba(0,0,0,0.3); }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .nav-toggle, .back-to-top, .progress-bar, .newsletter, .footer, .related-guides { display: none !important; }
    body { background: #fff; color: #111; font-size: 12pt; line-height: 1.5; }
    .hero, .page-hero { padding: 20px 0; background: none !important; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #666; }
    .card, section { break-inside: avoid; }
}
/* ===== COOKIE CONSENT ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(247,245,243,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 16px 24px; z-index: 9998; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 0.9rem; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { color: var(--text-secondary, #7a6e68); max-width: 600px; line-height: 1.5; margin: 0; }
.cookie-banner a { color: var(--primary); text-decoration: underline; }
.cookie-btn { background: var(--primary); color: #fff; border: none; padding: 10px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 0.9rem; white-space: nowrap; transition: background 0.2s; }
.cookie-btn:hover { opacity: 0.9; }
.cookie-btn.secondary { background: transparent; border: 1px solid var(--border); color: var(--text-secondary, #7a6e68); }
.cookie-btn.secondary:hover { border-color: var(--primary); color: var(--primary); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 12px 0; font-size: 0.85rem; color: var(--text-muted, var(--text-secondary, #7a6e68)); }
.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .separator { margin: 0 8px; opacity: 0.5; }

/* ===== ARTICLE META ===== */
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 16px 0; margin-bottom: 24px; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted, var(--text-secondary, #7a6e68)); }
.article-meta svg { width: 16px; height: 16px; vertical-align: -2px; margin-right: 4px; stroke: currentColor; fill: none; }
.reading-time, .last-updated { display: flex; align-items: center; gap: 4px; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.03); border: 1px solid var(--border); color: #7a6e68; padding: 6px 14px; border-radius: 6px; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.share-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(192,57,43, 0.08); }
.share-btn.copied { border-color: var(--success, var(--accent, #10b981)); color: var(--success, var(--accent, #10b981)); }
.share-btn svg { width: 14px; height: 14px; }

/* ===== PAGE LOAD ANIMATION ===== */
@keyframes fadeInPage { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.page-hero, .hero { animation: fadeInPage 0.5s ease both; }
.content-wrapper { animation: fadeInPage 0.5s ease 0.1s both; }

/* ===== TRIGGER TRACKER ===== */
.trigger-section { background: #f3efec; }
.trigger-card { background: #fff; border: 1px solid #e0d6cc; border-radius: 16px; padding: 32px; max-width: 750px; margin: 0 auto; }
.trigger-category { margin-bottom: 20px; }
.trigger-category h4 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 10px; color: #2c2c2c; }
.trigger-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.trigger-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; border: 1px solid #e0d6cc; cursor: pointer; transition: all 0.2s; font-size: 0.9rem; user-select: none; }
.trigger-item:hover { border-color: #c0392b; background: rgba(192,57,43,0.04); }
.trigger-item.checked { background: rgba(192,57,43,0.08); border-color: #c0392b; color: #c0392b; font-weight: 500; }
.trigger-item input[type="checkbox"] { accent-color: #c0392b; }
.trigger-summary { margin-top: 24px; padding: 20px; background: rgba(192,57,43,0.05); border-radius: 12px; border: 1px solid rgba(192,57,43,0.15); }
.trigger-summary h4 { font-family: 'DM Serif Display', serif; color: #c0392b; margin-bottom: 8px; }
.trigger-summary p { font-size: 0.9rem; color: #555; line-height: 1.6; margin: 0; }
.trigger-count { font-size: 2rem; font-weight: 700; color: #c0392b; font-family: 'DM Serif Display', serif; }

/* ===== NEWSLETTER ===== */
.newsletter-section { text-align: center; }
.newsletter-section .newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-input { flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 8px; border: 1px solid var(--border); background: #fff; color: #333; font-size: 1rem; font-family: inherit; }
.newsletter-input:focus { outline: none; border-color: var(--primary); }
.newsletter-btn { padding: 14px 28px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-weight: 600; font-size: 1rem; cursor: pointer; font-family: inherit; transition: opacity 0.2s; }
.newsletter-btn:hover { opacity: 0.9; }
.newsletter-btn:disabled { opacity: 0.7; cursor: default; }
