@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Design System Tokens */
    --color-moss-dark: hsl(158, 28%, 12%);
    --color-moss-medium: hsl(158, 22%, 24%);
    --color-sage: hsl(150, 15%, 45%);
    --color-sage-light: hsl(140, 24%, 95%);
    --color-peach: hsl(28, 85%, 62%);
    --color-peach-light: hsl(28, 90%, 96%);
    --color-white: hsl(0, 0%, 100%);
    --color-bg-base: hsl(0, 0%, 98%);
    --color-text-main: hsl(158, 28%, 15%);
    --color-text-muted: hsl(150, 10%, 40%);
    
    /* Font Weights & Family */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Glassmorphism Styles */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(12, 34, 25, 0.06);
    --glass-blur: blur(12px);

    /* Animation Timings */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: all 0.3s var(--ease-smooth);
}

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

/* Base Layout & Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--color-peach);
    margin-bottom: 1rem;
    display: inline-block;
}

/* Nav Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s var(--ease-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    color: var(--color-moss-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-peach);
    border-radius: 50%;
    display: inline-block;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-peach);
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--color-moss-dark);
    color: var(--color-white);
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(12, 34, 25, 0.15);
}

.nav-cta:hover {
    background-color: var(--color-moss-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 34, 25, 0.2);
}

/* Mobile Nav Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-moss-dark);
    transition: all 0.3s var(--ease-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    background: radial-gradient(circle at 80% 20%, var(--color-peach-light) 0%, transparent 45%),
                radial-gradient(circle at 10% 80%, var(--color-sage-light) 0%, transparent 50%),
                var(--color-bg-base);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-moss-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: linear-gradient(120deg, var(--color-moss-dark), var(--color-peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.btn {
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

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

.btn-primary:hover {
    background-color: var(--color-moss-medium);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(12, 34, 25, 0.25);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    color: var(--color-moss-dark);
}

.btn-secondary:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--color-moss-dark);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-peach-light) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    filter: blur(20px);
}

.hero-img-wrapper {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-img-wrapper img {
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(12, 34, 25, 0.12));
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: gentle-wobble 8s ease-in-out infinite;
}

.floating-card.c1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.c2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-peach-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-peach);
    font-size: 1.2rem;
}

.floating-card p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-moss-dark);
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gentle-wobble {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(5px, -5px) rotate(1deg);
    }
    66% {
        transform: translate(-3px, 3px) rotate(-1deg);
    }
}

/* Benefits Section */
.section-header {
    max-width: 600px;
    margin: 0 auto 5rem auto;
}

.section-title {
    font-size: 2.8rem;
    color: var(--color-moss-dark);
    margin-top: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-peach-light);
    box-shadow: 0 20px 45px rgba(12, 34, 25, 0.06);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background-color: var(--color-sage-light);
    color: var(--color-moss-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: all 0.4s var(--ease-smooth);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--color-peach-light);
    color: var(--color-peach);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-moss-dark);
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Quiz Section */
.quiz-section {
    background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-sage-light) 100%);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.quiz-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-sage), var(--color-peach));
    width: 33.3%;
    transition: width 0.4s var(--ease-smooth);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.5s var(--ease-smooth);
}

.quiz-question {
    font-size: 2rem;
    color: var(--color-moss-dark);
    margin-bottom: 2.5rem;
    text-align: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.quiz-option {
    background: var(--color-white);
    border: 2px solid transparent;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.quiz-option:hover {
    border-color: var(--color-peach-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.quiz-option.selected {
    border-color: var(--color-peach);
    background-color: var(--color-peach-light);
}

.option-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quiz-option.selected .option-circle {
    border-color: var(--color-peach);
    background-color: var(--color-peach);
}

.quiz-option.selected .option-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 50%;
}

.option-text h4 {
    font-size: 1.05rem;
    color: var(--color-moss-dark);
    margin-bottom: 0.2rem;
}

.option-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quiz-btn-prev {
    color: var(--color-text-muted);
}

.quiz-btn-prev:hover {
    color: var(--color-moss-dark);
}

.quiz-btn-next {
    background-color: var(--color-moss-dark);
    color: var(--color-white);
}

.quiz-btn-next:hover {
    background-color: var(--color-moss-medium);
}

/* Quiz Recommendation Screen */
.quiz-result {
    text-align: center;
    display: none;
}

.quiz-result.active {
    display: block;
    animation: fadeIn 0.6s var(--ease-smooth);
}

.result-badge {
    background-color: var(--color-peach-light);
    color: var(--color-peach);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.result-title {
    font-size: 2.2rem;
    color: var(--color-moss-dark);
    margin-bottom: 1rem;
}

.result-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
}

.result-product-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 420px;
    margin: 0 auto 3rem auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.result-product-img {
    width: 90px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    background-color: var(--color-bg-base);
    padding: 0.5rem;
}

.result-product-info h4 {
    font-size: 1.2rem;
    color: var(--color-moss-dark);
}

.result-product-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.result-product-price {
    font-weight: 700;
    color: var(--color-peach);
}

/* Animations for quiz step transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background-color: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
    transition: all 0.4s var(--ease-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-peach-light);
    box-shadow: 0 20px 40px rgba(12, 34, 25, 0.08);
}

.product-image-container {
    background-color: var(--color-sage-light);
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 320px;
}

.product-image-container img {
    max-height: 240px;
    object-fit: contain;
    transition: transform 0.6s var(--ease-smooth);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08) rotate(2deg);
}

.product-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--color-white);
    color: var(--color-moss-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.product-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-rating {
    display: flex;
    gap: 0.2rem;
    color: #FFB020;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.product-title {
    font-size: 1.5rem;
    color: var(--color-moss-dark);
    margin-bottom: 0.6rem;
}

.product-description {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

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

.btn-add-cart {
    background-color: var(--color-moss-dark);
    color: var(--color-white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(12, 34, 25, 0.15);
}

.btn-add-cart:hover {
    background-color: var(--color-peach);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 15px rgba(28, 85, 62, 0.25);
}

/* Ingredients Section */
.ingredients-section {
    background-color: var(--color-white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ingredient-item {
    border-bottom: 1px solid var(--color-sage-light);
    padding-bottom: 1.2rem;
    cursor: pointer;
}

.ingredient-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ingredient-header h4 {
    font-size: 1.25rem;
    color: var(--color-moss-dark);
    transition: color 0.3s;
}

.ingredient-item:hover .ingredient-header h4,
.ingredient-item.active .ingredient-header h4 {
    color: var(--color-peach);
}

.ingredient-icon-toggle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    transition: transform 0.3s var(--ease-smooth);
}

.ingredient-item.active .ingredient-icon-toggle {
    transform: rotate(45deg);
    color: var(--color-peach);
}

.ingredient-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth);
}

.ingredient-item.active .ingredient-details {
    max-height: 150px;
    margin-top: 1rem;
}

.ingredient-details p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.ingredient-details span {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-moss-dark);
    background-color: var(--color-sage-light);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
}

.ingredients-visual {
    background: radial-gradient(circle, var(--color-peach-light) 0%, transparent 60%);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.ingredient-main-img {
    max-height: 400px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
}

.badge-tag {
    position: absolute;
    background: var(--color-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-tag.tag-top {
    top: 10%;
    left: 15%;
}

.badge-tag.tag-bottom {
    bottom: 12%;
    right: 15%;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.review-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    position: relative;
    border: 1px solid var(--color-sage-light);
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-peach-light);
    z-index: 1;
}

.review-stars {
    color: #FFB020;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-peach-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-peach);
    font-size: 1.1rem;
}

.review-user-info h5 {
    font-size: 0.95rem;
    color: var(--color-moss-dark);
}

.review-user-info p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Footer Section */
footer {
    background-color: var(--color-moss-dark);
    color: var(--color-white);
    padding: 6rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-sage), var(--color-peach));
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-brand p {
    color: hsl(150, 15%, 75%);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 320px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 360px;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    transition: all 0.3s;
}

.newsletter-input:focus {
    border-color: var(--color-peach);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    background-color: var(--color-peach);
    color: var(--color-moss-dark);
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

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

.footer-links-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-col a {
    color: hsl(150, 15%, 75%);
    font-size: 0.9rem;
}

.footer-links-col a:hover {
    color: var(--color-peach);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: hsl(150, 15%, 65%);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--color-peach);
    color: var(--color-moss-dark);
    transform: translateY(-3px);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: var(--color-moss-dark);
    color: var(--color-white);
    padding: 1rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(12, 34, 25, 0.25);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    border-left: 4px solid var(--color-peach);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    color: var(--color-peach);
    font-size: 1.2rem;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .benefits-grid, .products-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobile navigation toggle logic */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: 1px solid var(--color-sage-light);
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .benefits-grid, .products-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .quiz-container {
        padding: 2.5rem 1.5rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
