/* ============================================
   Aromatic Life - Wellness Lifestyle Aesthetic
   Soft greens, lavender, cream tones
   ============================================ */

:root {
    --sage: #8fae8b;
    --sage-dark: #6b8e68;
    --sage-light: #c5d8c3;
    --lavender: #b8a9d4;
    --lavender-light: #e8e0f0;
    --lavender-dark: #7e6ba3;
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --warm-white: #fffdf9;
    --text-primary: #3a3a3a;
    --text-secondary: #6b6b6b;
    --text-light: #9a9a9a;
    --border: #e8e4de;
    --shadow: rgba(60, 60, 40, 0.08);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--lavender-dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-dark);
    letter-spacing: 0.5px;
}

.nav-logo:hover {
    color: var(--lavender-dark);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--sage-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--sage-dark);
    color: white;
    border-color: var(--sage-dark);
}

.btn-primary:hover {
    background: var(--sage);
    border-color: var(--sage);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 142, 104, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--sage-dark);
    border-color: var(--sage-dark);
}

.btn-outline:hover {
    background: var(--sage-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-lavender {
    background: var(--lavender-dark);
    color: white;
    border-color: var(--lavender-dark);
}

.btn-lavender:hover {
    background: var(--lavender);
    border-color: var(--lavender);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(126, 107, 163, 0.3);
}

.btn-amazon {
    background: #f0a830;
    color: #111;
    border-color: #f0a830;
    font-weight: 700;
}

.btn-amazon:hover {
    background: #e09720;
    border-color: #e09720;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(240, 168, 48, 0.3);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250,247,242,0.85) 0%, rgba(200,195,185,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px 24px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Sections ---- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--cream);
}

.section-lavender {
    background: var(--lavender-light);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Product Cards ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(60, 60, 40, 0.12);
}

.product-card-img {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--cream);
}

.product-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sage-dark);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.product-card-badge.lavender {
    background: var(--lavender-dark);
}

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card-body .rating {
    font-size: 0.85rem;
    color: #e6a817;
    margin-bottom: 8px;
}

.product-card-body .desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sage-dark);
}

/* ---- Content Pages (articles) ---- */
.article-hero {
    margin-top: 72px;
    padding: 60px 0 40px;
    background: var(--cream);
    text-align: center;
}

.article-hero .container {
    max-width: 800px;
}

.article-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-hero .meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 600;
    margin: 48px 0 16px;
    color: var(--text-primary);
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 36px 0 12px;
    color: var(--text-primary);
}

.article-body p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin: 0 0 20px 20px;
    color: var(--text-secondary);
}

.article-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-body a {
    color: var(--sage-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--sage-light);
}

.article-body a:hover {
    color: var(--lavender-dark);
    border-color: var(--lavender);
}

/* ---- Product Review Box ---- */
.review-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    margin: 32px 0;
    box-shadow: 0 2px 12px var(--shadow);
}

.review-box h3 {
    margin-top: 0 !important;
    font-size: 1.2rem !important;
}

.review-box .rating {
    color: #e6a817;
    font-size: 1rem;
    margin-bottom: 12px;
}

.review-box .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sage-dark);
    margin-bottom: 12px;
}

.review-box .pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}

.review-box .pros h4,
.review-box .cons h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.review-box .pros h4 { color: var(--sage-dark); }
.review-box .cons h4 { color: #c57a5a; }

.review-box .pros ul,
.review-box .cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.review-box .pros li::before { content: "+ "; color: var(--sage-dark); font-weight: 700; }
.review-box .cons li::before { content: "- "; color: #c57a5a; font-weight: 700; }

.review-box .cta {
    margin-top: 16px;
}

/* ---- Tip Box ---- */
.tip-box {
    background: var(--lavender-light);
    border-left: 4px solid var(--lavender-dark);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.tip-box strong {
    color: var(--lavender-dark);
}

/* ---- Info Box ---- */
.info-box {
    background: var(--sage-light);
    border-left: 4px solid var(--sage-dark);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
    color: var(--text-primary);
}

/* ---- Feature Grid ---- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin: 48px 0;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--lavender-dark) 100%);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    color: white;
    margin: 48px 0;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: white;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- TOC ---- */
.toc {
    background: var(--cream);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 28px 0;
}

.toc h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 12px;
}

.toc ol {
    margin: 0 0 0 20px;
}

.toc li {
    margin-bottom: 6px;
}

.toc a {
    border-bottom: none;
    font-weight: 500;
}

/* ---- Internal Links Section ---- */
.internal-links {
    background: var(--cream);
    padding: 48px 0;
}

.internal-links .container {
    max-width: 800px;
}

.internal-links h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 24px;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.link-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all var(--transition);
    display: block;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
    color: var(--sage-dark);
}

.link-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 4px;
}

.link-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

/* ---- Footer ---- */
.footer {
    background: #2a2f2a;
    color: #c9c9c0;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sage-light);
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo:hover {
    color: white;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: white;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 8px;
}

.footer li a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer li a:hover {
    color: white;
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #555;
    border-radius: 50px;
    background: #333;
    color: white;
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.footer-newsletter input::placeholder {
    color: #888;
}

.footer-newsletter button {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background: var(--sage);
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background var(--transition);
}

.footer-newsletter button:hover {
    background: var(--sage-dark);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: #888;
}

.footer-bottom a {
    color: #aaa;
}

.footer-bottom a:hover {
    color: white;
}

.affiliate-disc {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 8px;
}

/* ---- About Page ---- */
.about-hero {
    margin-top: 72px;
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 24px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 40px 0 12px;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ---- Privacy Page ---- */
.legal-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 36px 0 12px;
}

.legal-content p, .legal-content li {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
    }

    .section {
        padding: 48px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .review-box .pros-cons {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}
