:root {
    --color-primary: #D4AF37;
    /* Gold */
    --color-primary-dark: #B5952F;
    --color-secondary: #5E5B52;
    /* Dark Taupe/Olive from Screenshot */
    --color-bg-cream: #F4F4F4;
    /* Neutral Light Grey instead of warm cream */
    --color-white: #FFFFFF;
    --color-text-body: #4A4A4A;
    --color-border: #E5E5E5;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --container-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-secondary);
    line-height: 1.6;
    background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

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

/* Announcement Bar */
.announcement-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Header */
.main-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-primary-outline {
    border: 1px solid var(--color-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-primary-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    padding: var(--spacing-lg) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Slightly more space for image */
    gap: 3rem;
    align-items: start;
}

/* Hero Gallery */
.main-image {
    background-color: var(--color-white);
    padding: 0;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    overflow: hidden;
    position: relative;
    border: 8px solid white;
    /* Frame effect */
}

.main-image::before {
    content: "THE ONLY GUMMY A MAN NEEDS";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #D4AF37;
    /* Gold banner */
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.main-image img {
    margin-top: 3rem;
    /* Space for banner */
    max-width: 100%;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.thumb {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    background: white;
}

.thumb.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary);
}

/* Product Details Right Column */
.science-badge {
    display: inline-block;
    background-color: #F0F0F0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.reviews-stars {
    color: #F8B706;
    /* Star yellow */
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.reviews-stars span {
    color: #000;
    font-weight: 600;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    background: #F0F0F0;
    padding: 2px 6px;
    border-radius: 4px;
}

.product-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #111;
}

.product-subtitle {
    font-family: var(--font-body);
    /* Reset font */
    color: #E6B800;
    /* Gold/Brown text */
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
    /* Ensure left align for hero */
}

/* Benefit Circles */
.benefit-circles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.circle-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.circle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E6DBC6;
    /* Icon bg */
    color: #8A701E;
    /* Gold icon */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.circle-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

/* Selling Fast / Notification Bar */
.selling-fast {
    background-color: #EFE6D5;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #D32F2F;
    /* REd dot */
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.free-shipping-tag {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hurry-timer {
    text-align: center;
    font-size: 0.9rem;
    color: #D32F2F;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Equal columns */
    gap: 0.5rem;
    /* Tight gap */
    margin-bottom: 1.5rem;
    align-items: stretch;
}

.pricing-option {
    background: white;
    border: 1px solid #ddd;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    /* Flex to stretch */
    flex-direction: column;
}

/* Removed selected highlight logic */
.pricing-option.selected {
    border: 1px solid #ddd;
    background-color: white;
    position: relative;
    z-index: 1;
    transform: none;
    box-shadow: none;
}

.option-header {
    background-color: #E6B800;
    /* Gold header */
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem;
    text-transform: uppercase;
}

/* 1 Month & 3 Month - Grey Gradient */
.pricing-option:nth-child(1) .option-header,
.pricing-option:nth-child(2) .option-header {
    background: linear-gradient(to bottom, #757575, #424242);
    color: white;
}

/* 5 Month - Light Green */
.pricing-option:nth-child(3) .option-header {
    background: #66BB6A;
    color: white;
}

/* Override existing popular style if necessary */
.pricing-option.popular .option-header {
    background: linear-gradient(to bottom, #757575, #424242);
}

.option-body {
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.option-body img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

/* Stacking Images logic (simplified CSS representation) */
.product-stack {
    position: relative;
    height: 60px;
    width: 60px;
    margin: 0 auto 0.5rem;
}

.product-stack img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: contain;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: white;
}

.stack-1 {
    left: 0;
    z-index: 3;
}

.stack-2 {
    left: 5px;
    z-index: 2;
    top: -5px;
    transform: scale(0.9);
    opacity: 0.9;
}

.stack-3 {
    left: 10px;
    z-index: 1;
    top: -10px;
    transform: scale(0.8);
    opacity: 0.8;
}

.option-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.per-unit {
    font-size: 0.7rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
}

.old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #999;
}

/* Shipping Info */
.shipping-info {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    /* Or left if preferred, centered looks good under button */
}

.dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2E7D32;
}

/* CTA */
.cta-container {
    text-align: center;
}

.add-to-cart-btn-large {
    width: 100%;
    background: linear-gradient(to bottom, #D4AF37, #B5952F);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    /* Pillow shape like reference */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(181, 149, 47, 0.4);
    margin-bottom: 1rem;
    transition: transform 0.2s;
    text-transform: uppercase;
}

.add-to-cart-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(181, 149, 47, 0.5);
}

.btn-card-add {
    width: 100%;
    background: #FFD700;
    /* Solid Yellow */
    color: black;
    /* Text should be black for better contrast on yellow */
    border: none;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    /* Slightly rounded */
    cursor: pointer;
    margin-top: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-transform: uppercase;
}

.btn-card-add:hover {
    transform: translateY(-1px);
    background: linear-gradient(to bottom, #E6C258, #C4A43E);
}

.payment-methods {
    font-size: 1.5rem;
    color: #888;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Hero Guarantee Box */
.guarantee-box {
    background-color: #F0F0F0;
    border: 1px solid #E6B800;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: #1A1A1A;
}

.guarantee-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.guarantee-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #444;
}

/* Hero FAQ */
.hero-faq-list {
    border-top: 1px solid #ddd;
}

.hero-faq-item {
    border-bottom: 1px solid #ddd;
}

.hero-faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.hero-faq-answer {
    display: none;
    padding-bottom: 1rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.hero-faq-item.active .hero-faq-answer {
    display: block;
}

.hero-faq-item.active .plus {
    transform: rotate(45deg);
}

.plus {
    font-size: 1.2rem;
    font-weight: 400;
    transition: transform 0.2s;
}

/* Reviews Snippet */
.reviews-snippet {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    /* Larger title */
    color: #E6B800;
    /* Gold/Brown color from reference */
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-heading);
    /* Playfair Display */
    font-size: 1.3rem;
    color: #4A4A4A;
    max-width: 600px;
    margin: -1.5rem auto 3rem;
    /* Pull closer to title, center horizontally */
    line-height: 1.6;
    font-style: italic;
    /* Start with italic for a premium feel */
}

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

.review-card {
    background-color: var(--color-white);
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.review-img-container {
    width: 100%;
    height: 300px;
    /* Fixed height for consistency */
    overflow: hidden;
}

.review-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-header {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-header .stars {
    color: #E6B800;
    /* Gold star color */
    font-size: 0.9rem;
}

.reviewer-meta {
    font-size: 0.9rem;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-badge {
    background-color: #FEF9EB;
    color: #E6B800;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Pushes purchase card to bottom */
}

.purchase-card {
    background-color: #F9F9F9;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: center;
    border: 1px solid #eee;
}

.purchase-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
    padding: 2px;
    border: 1px solid #ddd;
}

.purchase-info h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
    color: #333;
}

.purchase-price {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #E6B800;
    margin-bottom: 4px;
}

.purchase-date {
    display: block;
    font-size: 0.7rem;
    color: #999;
}

/* How To Use */
.how-to-use {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.step-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Journey Section */
.journey-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 4px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-primary);
}

/* Verified Section */
.verified-section {
    padding: var(--spacing-lg) 0;
    background-color: #F9F4EB;
    /* Matches cream background */
    overflow: hidden;
}

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

.text-left {
    text-align: left;
    max-width: 100%;
}

.verified-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-bg-cream);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #8A701E;
    /* Dark gold icon */
    margin-bottom: 1rem;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}

.feature-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.verified-image {
    display: flex;
    justify-content: flex-end;
}

.verified-image img {
    max-height: 500px;
    mix-blend-mode: multiply;
    /* Blends white background into cream */
    filter: contrast(1.1);
}

@media (max-width: 768px) {
    .verified-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .verified-features {
        grid-template-columns: 1fr;
        /* Stack features on mobile */
        gap: 2rem;
    }

    .verified-image {
        justify-content: center;
    }
}

/* Ingredients Section New Layout */
.ingredients-section {
    padding: var(--spacing-md) 0;
    background-color: var(--color-white);
}

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

.ingredients-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ingredients-image-col img {
    max-width: 100%;
    border-radius: 8px;
    /* Optional: subtle shadow if it helps it pop */
}

.ingredient-features {
    background-color: #F8F8F8;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #eee;
}

.ing-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.ing-feature:last-child {
    margin-bottom: 0px;
}

.ing-icon {
    font-size: 1.2rem;
    color: #E6B800;
    /* Base gold */
    margin-top: 2px;
}

.ing-text h4 {
    font-size: 1rem;
    color: #bf8f57;
    /* Slightly darker/richer gold for headers */
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.ing-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}


/* Comparison Section New Layout */
.comparison-section {
    padding: var(--spacing-md) 0;
    background-color: var(--color-bg-cream);
}

.comparison-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

.comparison-intro h2 {
    color: #333;
    /* Dark title */
}

.comparison-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.comparison-table-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    /* Custom widths for columns */
    align-items: stretch;
}

/* Row Labels on left of table */
.comparison-labels {
    padding-top: 180px;
    /* Push down to align with rows */
    display: flex;
    flex-direction: column;
}

.c-row-label {
    height: 60px;
    /* Fixed row height */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.c-row-label i {
    color: #ccc;
}

/* Total T Column (Card style) */
.us-col {
    background-color: #F0F0F0;
    /* Light Gold/Tan background */
    border-radius: 12px;
    padding: 0 0 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
}

.us-card-header {
    text-align: center;
    padding: 2rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 180px;
    /* Match header height space */
    justify-content: flex-end;
}

.us-card-header img {
    height: 80px;
    margin-bottom: 0.5rem;
}

.us-card-header h3 {
    color: #bfa15f;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.science-tag {
    background: #d4b06a;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.check-circle {
    width: 28px;
    height: 28px;
    background-color: #E6B800;
    /* Solid Gold */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    margin: 0 auto;
}

.c-row-check {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(193, 154, 107, 0.2);
}

/* Them Column */
.them-col {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
}

.them-header {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.them-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.them-header p {
    font-size: 0.8rem;
    color: #999;
}

.cross-circle {
    width: 28px;
    height: 28px;
    background-color: #111;
    /* Black */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    margin: 0 auto;
}

.c-row-cross {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


/* Impact Section New Layout */
.impact-section {
    padding: var(--spacing-md) 0;
    background-color: var(--color-white);
}

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

.impact-content .stat-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 2rem;
}

.impact-content .stat-row:last-of-type {
    border-bottom: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #E6B800;
    /* Gold number */
    min-width: 120px;
    line-height: 1;
}

.stat-text h4 {
    font-size: 1.2rem;
    color: #bfa15f;
    margin-bottom: 0.3rem;
}

.stat-text p {
    color: #777;
    font-size: 0.9rem;
}

.impact-note {
    background-color: #F8F8F8;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #999;
}

.impact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-image img {
    max-width: 80%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-body);
    /* Fix blue link color on mobile */
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-body);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}



/* Footer */
.main-footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-logo h3 {
    color: var(--color-white);
    font-size: 1.5rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #999;
}

.footer-links a:hover {
    color: var(--color-white);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    color: #777;
    font-size: 0.85rem;
}

@media (max-width: 768px) {

    .ingredients-layout,
    .impact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Mobile Comparison Table */
    .comparison-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        overflow-x: auto;
        /* Allow scroll if very narrow */
    }

    .comparison-table-new {
        grid-template-columns: 1.1fr 1fr 0.8fr;
        /* Label (widest) | Us | Them */
        font-size: 0.75rem;
        /* Smaller text for mobile */
        min-width: 340px;
        /* Ensure minimum readability width */
    }

    .comparison-labels {
        display: flex;
        /* Show labels */
        padding-top: 130px;
        /* Reduced header height space */
    }

    .c-row-label {
        height: 50px;
        /* Shorten rows slightly */
        font-size: 0.7rem;
        padding-right: 5px;
        line-height: 1.2;
    }

    .c-row-check,
    .c-row-cross {
        height: 50px;
        /* Match row height */
    }

    .us-card-header,
    .them-header {
        height: 130px;
        /* Reduced header height */
        padding: 1rem 0.25rem;
    }

    .us-card-header img {
        height: 50px;
        /* Smaller bottle */
    }

    .us-card-header h3,
    .them-header h3 {
        font-size: 0.9rem;
    }

    .science-tag {
        font-size: 0.6rem;
        padding: 2px 6px;
        white-space: nowrap;
        transform: scale(0.9);
    }

    .check-circle,
    .cross-circle {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    .comparison-intro {
        text-align: center;
        margin-bottom: 0.5rem;
        /* Reduced spacing */
    }

    .comparison-intro h2 {
        text-align: center;
        /* Force center override */
    }

    .comparison-subtitle {
        margin-bottom: 0.5rem;
        /* Reduced subtitle spacing */
    }

    @media (max-width: 768px) {
        .header-container {
            flex-direction: column;
            gap: 1rem;
        }

        .main-nav ul {
            gap: 1rem;
        }

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

        /* Reduce spacing on mobile */
        .hero-section {
            padding-top: 1rem;
            /* Reduced from 4rem */
            padding-bottom: 2rem;
        }

        .main-header {
            padding: 0.5rem 0;
            /* Reduced header padding */
        }


        .reviews-grid,
        .steps-grid,
        .ingredients-grid {
            grid-template-columns: 1fr;
        }

        /* Mobile Pricing Grid Layout */
        .pricing-grid {
            grid-template-columns: 1fr 1fr;
            /* Two columns side by side */
            gap: 0.5rem;
        }

        .pricing-option:nth-child(3) {
            grid-column: 1 / -1;
            /* 5 Month supply spans full width */
        }

        /* Remove Highlighting on Mobile */
        .pricing-option.selected,
        .pricing-option:hover {
            transform: none;
            border: 1px solid #ddd;
            background-color: white;
            box-shadow: none;
            z-index: 1;
        }

        /* Reset popular header color on mobile */
        .pricing-option.popular .option-header {
            background-color: #E6B800;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .timeline::before {
            left: 10px;
        }

        .timeline-item {
            padding-left: 40px;
        }

        .timeline-marker {
            width: 30px;
            height: 30px;
            left: -5px;
            font-size: 0.8rem;
        }
    }

    /* Detailed Ingredients Grid */
    .detailed-ingredients-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .det-ing-card {
        background-color: var(--color-white);
        padding: 1.5rem;
        border-radius: 8px;
        border: 1px solid #eee;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        transition: transform 0.2s;
    }

    .det-ing-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    }

    .det-ing-card h3 {
        color: #E6B800;
        /* Gold */
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .det-ing-card p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .detailed-ingredients-grid {
            grid-template-columns: 1fr;
        }

        /* Logo Images */
        .logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .footer-logo-img {
            height: 60px;
            /* Slightly larger for footer */
            width: auto;
            object-fit: contain;
            background: rgba(255, 255, 255, 0.1);
            /* Subtle backing if transparent/black on black */
            padding: 5px;
            border-radius: 4px;
        }
    }
}
}