:root {
    /* Updated Website Color System - 2025 Redesign */
    --primary-teal: #00A19C;
    --primary-teal-hover: #008B87;
    --primary-navy: #1B2951;
    --primary-beige: #F5E6D3;
    --primary-white: #FFFFFF;
    --primary-black: #242424;
    
    /* Legacy Purple (for reference) */
    --legacy-purple: #4e4b87;
    
    /* Text Colors */
    --text-primary: #242424;
    --text-secondary: #313131;
    --text-light: #919191;
    --text-white: #FFFFFF;
    
    /* Accent Colors */
    --accent-orange: #FF6B35;
    --accent-coral: #f16f7b;
    --accent-yellow: #F9D949;
    --accent-gold: #FFD700;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-beige: #F5E6D3;
    --bg-beige-light: #FAF4EB;
    --bg-light: #F3F3F3;
    --bg-dark: #242424;
    --bg-footer: #1B2951;
    --bg-footer-dark: #0F1A2F;
    
    /* Borders & Dividers */
    --border-light: rgba(36, 36, 36, 0.1);
    --border-medium: rgba(36, 36, 36, 0.5);
    --border-dark: #0a0a0a;
    
    /* Typography - Updated from brand guide */
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    
    /* Shadows - Minimal as observed */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-xl: 0 8px 12px rgba(0,0,0,0.12);
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2rem;     /* 32px */
    --space-xl: 3rem;     /* 48px */
    --space-2xl: 4rem;    /* 64px */
    --space-3xl: 6rem;    /* 96px */
    
    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;
    
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
}

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

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile First Styles */
/* Top Banner */
.top-banner {
    background: var(--primary-teal);
    color: var(--primary-white);
    padding: 0.375rem 0;
    text-align: center;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.trust-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.625rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-primary);
}

.trust-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary-teal);
}

/* Header - Mobile First */
header {
    background: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    height: 56px;
}

.logo {
    height: 28px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: none;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons a {
    color: var(--text-primary);
    transition: color 0.2s ease;
}

/* Hero Section - Mobile First */
.hero {
    background: var(--bg-beige);
    overflow: hidden;
}

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

/* Hero Image - Mobile First */
.hero-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #00A19C 0%, #F5E6D3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-dr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* Hero Text - Mobile First */
.hero-text {
    padding: 1.5rem 0.75rem 2rem;
}

.hero-text h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}

.hero-bullets {
    list-style: none;
    margin: 0.75rem 0;
}

.hero-bullets li {
    padding: 0.3rem 0;
    font-size: 0.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.hero-bullets li svg {
    width: 16px;
    height: 16px;
    color: var(--primary-teal);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.hero-subtext {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0.75rem 0 1rem;
    font-style: italic;
    line-height: 1.4;
}
/* Calculator Section - Mobile First */
.calculator-section {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 1rem 0;
}

.calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.calculator-title {
    font-size: 0.875rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin: 0;
}

.product-preview {
    display: block;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.product-preview img {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.product-preview:hover {
    /* transform: scale(1.05); */
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.calculator-controls {
    margin-bottom: 0.5rem;
}

.weight-control {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.weight-control label {
    font-size: 0.75rem;
    white-space: nowrap;
}

.weight-control input[type="range"] {
    flex: 1;
}

.weight-value {
    font-weight: 600;
    min-width: 35px;
    font-size: 0.875rem;
}

.calculator-result {
    background: var(--bg-beige);
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
}

.calculator-result p:first-child {
    font-size: 0.75rem;
    margin: 0;
}

.calculator-result p:last-child {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin: 0.25rem 0 0;
}

.cta-button {
    background: var(--primary-teal);
    color: var(--primary-white);
    padding: 0.875rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    justify-content: center;
}

.cta-button:hover {
    background: var(--primary-teal-hover);
}

.cta-button svg {
    width: 16px;
    height: 16px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Top Banner - Desktop */
    .top-banner {
        padding: 0.625rem 0;
        font-size: 0.75rem;
    }
    
    /* Trust Bar - Desktop */
    .trust-bar {
        padding: 0.75rem 0;
    }
    
    .trust-bar-content {
        gap: 3rem;
        font-size: 0.875rem;
    }
    
    .trust-item {
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .trust-item svg {
        width: 18px;
        height: 18px;
    }
    
    /* Header - Desktop */
    header {
        border-bottom: 1px solid #e5e5e5;
    }
    
    nav {
        padding: 1rem 0;
        height: 70px;
    }
    
    .logo {
        height: 32px;
    }
    
    .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
        align-items: center;
    }
    
    .nav-links a {
        text-decoration: none;
        color: var(--text-primary);
        font-weight: 500;
        font-size: 0.75rem;
        transition: color 0.2s ease;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .nav-links a:hover {
        color: var(--primary-teal);
    }
    
    /* Hero Section - Desktop */
    .hero-content {
        display: grid;
        grid-template-columns: 55% 45%;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hero-image {
        order: 2;
        height: 600px;
        border-radius: 0;
    }
    
    .hero-dr-image {
        object-position: center;
        transition: transform 0.3s ease;
    }
    
    .hero-image:hover .hero-dr-image {
        /* transform: scale(1.05); */
        filter: brightness(1.05);
    }
    
    .hero-text {
        order: 1;
        padding: 4rem 3rem 4rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-bullets {
        margin: 1.5rem 0;
    }
    
    .hero-bullets li {
        padding: 0.5rem 0;
        font-size: 1.125rem;
    }
    
    .hero-bullets li svg {
        font-size: 1.25rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
        margin: 1.5rem 0 2rem;
    }
    
    /* Calculator - Desktop */
    .calculator-section {
        display: flex;
        gap: 1rem;
        align-items: center;
        margin: 0.75rem 0;
        padding: 1rem;
    }
    
    .calculator-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .calculator-content {
        flex: 1;
        min-width: 0;
    }
    
    .product-preview img {
        width: 80px;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.875rem;
        width: auto;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        grid-template-columns: 55% 45%;
    }
}
/* Social Proof Bar */
.social-proof-bar {
    background: var(--bg-primary);
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.proof-stats {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.proof-stat {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.proof-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-teal);
    display: block;
}

.proof-label {
    font-size: 0.5rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .social-proof-bar {
        padding: 2rem 0;
    }
    
    .proof-stats {
        justify-content: center;
        gap: 3rem;
    }
    
    .proof-number {
        font-size: 2rem;
    }
    
    .proof-label {
        font-size: 0.875rem;
    }
}

/* /* Featured Logos */ */
.featured-section {
    padding: 2rem 0;
    text-align: center;
    background: var(--bg-primary);
    border-bottom: 1px solid #e5e5e5;
}

.featured-title {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #919191;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 0 1rem;
}

.featured-logos:hover {
    opacity: 0.8;
}

.featured-logos img {
    height: 25px;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.featured-logos img:hover {
    /* transform: scale(1.05); */
    opacity: 0.9;
}

@media (max-width: 768px) {
    .featured-section {
        padding: 1.5rem 0;
    }
    
    .featured-logos {
        gap: 1.5rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .featured-logos::-webkit-scrollbar {
        display: none;
    }
    
    .featured-logos img {
        height: 20px;
        min-width: 60px;
    }
}

@media (min-width: 768px) {
    .featured-section {
        padding: 3rem 0;
    }

    .featured-title {
        font-size: 0.75rem;
        margin-bottom: 2rem;
    }

    .featured-logos {
        gap: 3rem;
        flex-wrap: wrap;
    }

    .featured-logos img {
        height: 30px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.875rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-light);
}

.testimonial-result {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .testimonial-author {
        font-size: 1rem;
    }
    
    .testimonial-location {
        font-size: 0.875rem;
    }
}

/* Shop by Goal - Mobile First */
.shop-by-goal {
    padding: 2rem 0;
    background: var(--bg-primary);
}

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

.goal-item {
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.goal-item:hover {
    /* transform: translateY(-4px); */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.goal-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--primary-teal);
}

.goal-text {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    font-weight: 600;
}

@media (min-width: 768px) {
    .shop-by-goal {
        padding: 4rem 0;
    }
    
    .goal-grid {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .goal-image {
        width: 180px;
        height: 180px;
        margin-bottom: 1rem;
        border: 3px solid var(--primary-teal);
    }
    
    .goal-text {
        font-size: 0.875rem;
    }
}
/* Products Section */
.products-section {
    padding: 2rem 0;
    background: var(--bg-beige-light);
}

.products-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.products-header h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .products-section {
        padding: 4rem 0;
    }
    
    .products-header {
        margin-bottom: 3rem;
    }
    
    .products-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.product-card {
    background: var(--bg-primary);
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    /* transform: translateY(-4px); */
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    position: relative;
    background: var(--bg-light);
    padding-top: 100%;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-teal);
    color: var(--primary-white);
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-badge.trending {
    background: var(--accent-orange);
}

.product-badge.sale {
    background: var(--accent-coral);
}

.product-badge.new {
    background: var(--accent-yellow);
    color: var(--text-primary);
}

.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-price {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.875rem;
}

.review-count {
    color: var(--text-light);
    font-size: 0.75rem;
}

.add-to-cart-btn {
    background: var(--primary-teal);
    color: var(--primary-white);
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.add-to-cart-btn:hover {
    background: var(--primary-teal-hover);
}

/* Express Checkout Buttons */
.express-checkout {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.express-btn {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #e5e5e5;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.express-btn:hover {
    border-color: #999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.express-btn img {
    height: 20px;
    width: auto;
}

/* Subscribe & Save Section */
.subscribe-save-section {
    background: var(--bg-beige-light);
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .subscribe-save-section {
        padding: 4rem 0;
    }
}

/* === BUNDLE PRICING SECTION === */

.bundle-pricing-section {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    padding: 3rem 0;
    position: relative;
}

@media (min-width: 768px) {
    .bundle-pricing-section {
        padding: 5rem 0;
    }
}

/* Pricing Header */
.pricing-header-content {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-header-content .section-title {
    font-family: var(--font-secondary);
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .pricing-header-content .section-title {
        font-size: 3rem;
    }
}

.pricing-header-content .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0;
    }
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.pricing-card:hover {
    /* transform: translateY(-4px); */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card--basic {
    border-color: #e5e7eb;
}

.pricing-card--popular {
    border-color: var(--primary-teal);
    /* transform: scale(1.05); */
    z-index: 2;
}

.pricing-card--popular:hover {
    /* transform: scale(1.05) translateY(-4px); */
    box-shadow: 0 16px 32px rgba(0, 161, 156, 0.2);
}

.pricing-card--premium {
    border-color: #e5e7eb;
}

.pricing-card-inner {
    padding: 2rem;
}

@media (min-width: 768px) {
    .pricing-card-inner {
        padding: 2.5rem;
    }
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-teal) 0%, #008B87 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 161, 156, 0.3);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.pricing-card--popular .pricing-header {
    padding-top: 2rem;
}

.pricing-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Pricing Price */
.pricing-price {
    margin-bottom: 2rem;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    align-self: flex-start;
    margin-top: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-card--popular .price-amount {
    color: var(--primary-teal);
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
}

.price-savings {
    background: #fef3c7;
    color: #d97706;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
}

/* Features */
.pricing-features {
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-included .feature-icon {
    color: #10b981;
}

.feature-excluded .feature-icon {
    color: #ef4444;
}

.feature-excluded span {
    color: #9ca3af;
}

.feature-highlighted {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-teal);
}

.feature-bonus {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left: 3px solid #f59e0b;
}

.feature-bonus .feature-icon {
    color: #f59e0b;
}

/* Pricing Buttons */
.pricing-footer {
    margin-top: auto;
}

.pricing-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.pricing-button--primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #008B87 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 161, 156, 0.3);
}

.pricing-button--primary:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 8px 20px rgba(0, 161, 156, 0.4);
    filter: brightness(1.1);
}

.pricing-button--secondary {
    background: white;
    color: var(--text-primary);
    border-color: #d1d5db;
}

.pricing-button--secondary:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.pricing-button--outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.pricing-button--outline:hover {
    background: var(--text-primary);
    color: white;
}

.button-subtext {
    font-size: 0.75rem;
    text-transform: none;
    opacity: 0.9;
    font-weight: 400;
}

/* Payment Options */
.payment-options {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.payment-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.payment-logo {
    height: 20px;
    width: auto;
}

.payment-divider {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Social Proof Bottom */
.pricing-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
    flex-wrap: wrap;
}

.social-proof-item {
    text-align: center;
}

.social-proof-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.25rem;
}

.social-proof-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.social-proof-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.guarantee-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-teal);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .pricing-card--popular {
        transform: none;
        order: -1;
    }
    
    .pricing-card--popular:hover {
        /* transform: translateY(-4px); */
        box-shadow: 0 8px 16px rgba(0, 161, 156, 0.15);
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .trust-item {
        min-width: 100px;
    }
    
    .pricing-social-proof {
        gap: 1.5rem;
    }
}

/* Why Different Section */
.why-different-section {
    padding: 2rem 0;
    background: var(--bg-primary);
}

@media (min-width: 768px) {
    .why-different-section {
        padding: 4rem 0;
    }
}

.comparison-table {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    background: var(--primary-teal);
    color: white;
    font-size: 0.75rem;
}

.comparison-table td {
    padding: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .comparison-table {
        margin: 3rem auto;
        overflow-x: visible;
    }
    
    .comparison-table table {
        min-width: auto;
    }
    
    .comparison-table th {
        padding: 1.5rem;
        font-size: 0.875rem;
    }
    
    .comparison-table td {
        padding: 1.25rem;
        font-size: 0.875rem;
    }
}

.comparison-table tr:nth-child(even) {
    background: #f9fafb;
}
/* Transformation Banner */
.transformation-banner {
    background: var(--bg-primary);
    padding: 2rem 0;
}

.transformation-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .transformation-banner {
        padding: 4rem 0;
    }
    
    .transformation-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.before-after-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .before-after-container {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
    }
}

.before-after-image {
    text-align: center;
}

.before-after-image img {
    width: 150px;
    height: 225px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .before-after-image img {
        width: 200px;
        height: 300px;
        margin-bottom: 1rem;
    }
}

.before-after-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .before-after-label {
        font-size: 0.875rem;
    }
}

/* Guarantee Section */
.guarantee-section {
    background: var(--bg-beige);
    padding: 2rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .guarantee-section {
        padding: 3rem 0;
    }
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.guarantee-icon svg {
    width: 30px;
    height: 30px;
}

.guarantee-text h3 {
    margin-bottom: 0.25rem;
    color: var(--primary-teal);
    font-size: 1.125rem;
}

.guarantee-text p {
    margin: 0;
    font-size: 0.875rem;
}

/* Footer */
footer {
    background: #1e3a5f;
    color: #8fa5c4;
    padding: 2rem 0 1.5rem;
}

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

@media (min-width: 768px) {
    footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

.footer-section h4 {
    margin-bottom: 0.75rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #b8c7db;
}

@media (min-width: 768px) {
    .footer-section h4 {
        margin-bottom: 1rem;
        font-size: 0.75rem;
    }
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #8fa5c4;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

@media (min-width: 768px) {
    .footer-section a {
        font-size: 0.875rem;
    }
}

.footer-section a:hover {
    color: #b8c7db;
}

.footer-contact {
    margin-top: 1rem;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-contact {
        font-size: 0.875rem;
    }
}

.footer-contact p {
    color: #8fa5c4;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(143, 165, 196, 0.2);
    font-size: 0.75rem;
    color: #8fa5c4;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.875rem;
    }
}

.footer-bottom p {
    color: #8fa5c4;
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #b8c7db;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Mobile Bottom Tab Bar */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .mobile-tab-bar {
        display: block;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    /* Ensure body has bottom padding for mobile elements */
    body {
        padding-bottom: 70px !important; /* Space for tab bar */
    }
    
    /* Adjust main content when mobile sticky CTA is visible */
    .mobile-sticky-cta.visible ~ main,
    .mobile-sticky-cta.visible ~ .container {
        margin-bottom: 80px; /* Additional space for sticky CTA */
    }
}

.tab-bar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 0.5rem 0;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    padding: 0.5rem;
    transition: color 0.2s ease;
    min-width: 60px;
}

.tab-item:hover,
.tab-item.active {
    color: var(--primary-teal);
}

.tab-item i {
    width: 20px;
    height: 20px;
    margin-bottom: 0.25rem;
}

.tab-item span {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.2;
}

.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.tab-item:hover,
.tab-item.active {
    color: var(--primary-teal);
}

.tab-item svg {
    width: 18px;
    height: 18px;
    margin-bottom: 0.125rem;
}

.tab-item span {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 70px; /* Above tab bar */
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 1rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

.mobile-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.mobile-sticky-info {
    flex: 1;
}

.mobile-sticky-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.mobile-sticky-price {
    font-size: 0.875rem;
    color: var(--primary-teal);
    font-weight: 700;
}

.mobile-sticky-btn {
    background: var(--primary-teal);
    color: white;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mobile-sticky-btn:hover {
    background: var(--primary-teal-hover);
}

/* Spacing for mobile navigation */
@media (max-width: 767px) {
    body {
        padding-bottom: 100px;
    }
}

/* ========================================
   HERO SECTION - Modern Best Practices
   ======================================== */

.hero-combined {
    position: relative;
    width: 100%;
    height: calc(100vh - 140px);
    min-height: 600px;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D5C4 50%, #DBC4A8 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Subtle overlay for better text contrast */
.hero-combined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg, 
        rgba(255,255,255,0.1) 0%, 
        transparent 50%, 
        rgba(0,0,0,0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Dr. Kellyann Background - Right Anchored */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.background-dr-kellyann {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 85%;
    max-width: 60%;
    object-fit: contain;
    filter: blur(6px) brightness(1.15) contrast(0.85);
    opacity: 0.65;
    transform-origin: bottom right;
    transition: all 0.3s ease;
}

/* Hero Content - Best Practices Layout */
.hero-content-v2 {
    position: absolute;
    top: 15%;
    left: 50px;
    right: 50px;
    text-align: center;
    z-index: 5;
    color: #2c3e50;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-v2 h1 {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-shadow: 2px 2px 8px rgba(255,255,255,0.9);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-content-v2 .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    color: #555;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.7);
    font-weight: 500;
    line-height: 1.4;
}

.hero-content-v2 .cta-button {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #008a85 100%);
    color: white;
    padding: 1.2rem 2.8rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 25px rgba(0, 161, 156, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-content-v2 .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-content-v2 .cta-button:hover {
    /* transform: translateY(-3px); */
    box-shadow: 0 12px 35px rgba(0, 161, 156, 0.4);
    filter: brightness(1.05);
}

.hero-content-v2 .cta-button:hover::before {
    left: 100%;
}

/* Product Showcase - Hero Best Practices */
.product-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 4;
    width: 450px;
    height: 320px;
}

/* Product Links - Proper Layering */
.product-link {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    will-change: transform;
}

.product-link:hover {
    /* transform: translateY(-12px) scale(1.02); */
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

/* Mug positioned behind (lower z-index) */
.product-link:first-child {
    left: 20px;
    z-index: 3;
}

/* Packet positioned in front (higher z-index) */
.product-link:last-child {
    right: 20px;
    z-index: 4;
}

/* Mug Container with Steam */
.mug-container {
    position: relative;
    display: inline-block;
}

/* Product Sizing - Hero Best Practices */
.mug {
    height: 320px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9; /* Slightly faded since it's behind */
}

.packet {
    height: 340px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1; /* Full opacity as hero product */
}

/* Enhanced Steam Animation */
.steam-animation {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    pointer-events: none;
    z-index: 5;
}

.steam {
    position: absolute;
    background: linear-gradient(
        180deg, 
        rgba(255,255,255,0.9) 0%, 
        rgba(255,255,255,0.6) 40%, 
        rgba(255,255,255,0.3) 70%,
        transparent 100%
    );
    border-radius: 50%;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(1px);
}

.steam-1 {
    width: 8px;
    height: 45px;
    left: 20%;
    animation: steam-rise-1 3s infinite;
    animation-delay: 0s;
}

.steam-2 {
    width: 6px;
    height: 38px;
    left: 40%;
    animation: steam-rise-2 3.2s infinite;
    animation-delay: 0.5s;
}

.steam-3 {
    width: 7px;
    height: 42px;
    left: 60%;
    animation: steam-rise-3 2.8s infinite;
    animation-delay: 1s;
}

.steam-4 {
    width: 5px;
    height: 35px;
    left: 80%;
    animation: steam-rise-4 3.5s infinite;
    animation-delay: 1.5s;
}

/* Enhanced Steam Keyframes */
@keyframes steam-rise-1 {
    0% {
        transform: translateY(0) scale(0.8) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) scale(1.2) rotate(3deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-80px) scale(1.6) rotate(8deg);
        opacity: 0;
    }
}

@keyframes steam-rise-2 {
    0% {
        transform: translateY(0) scale(0.9) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.7;
    }
    50% {
        transform: translateY(-35px) scale(1.3) rotate(-2deg);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-70px) scale(1.7) rotate(-6deg);
        opacity: 0;
    }
}

@keyframes steam-rise-3 {
    0% {
        transform: translateY(0) scale(0.7) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-45px) scale(1.1) rotate(4deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-90px) scale(1.5) rotate(10deg);
        opacity: 0;
    }
}

@keyframes steam-rise-4 {
    0% {
        transform: translateY(0) scale(0.6) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50px) scale(1.4) rotate(-5deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scale(1.8) rotate(-12deg);
        opacity: 0;
    }
}

/* Steam Animation - Optimized for layered layout */
.steam-animation {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 80px;
    pointer-events: none;
}

.steam {
    position: absolute;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    border-radius: 50%;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.steam-1 {
    width: 6px;
    height: 30px;
    left: 25%;
    animation: steam-rise-1 2.3s infinite;
    animation-delay: 0s;
}

.steam-2 {
    width: 4px;
    height: 25px;
    left: 45%;
    animation: steam-rise-2 2.6s infinite;
    animation-delay: 0.4s;
}

.steam-3 {
    width: 5px;
    height: 28px;
    left: 65%;
    animation: steam-rise-3 2.1s infinite;
    animation-delay: 0.8s;
}

.steam-4 {
    width: 3px;
    height: 20px;
    left: 80%;
    animation: steam-rise-4 2.8s infinite;
    animation-delay: 1.2s;
}

/* Bottom Social Proof - Better Spacing */
.social-proof-bottom {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    z-index: 4;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.proof-stats {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1.2rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-stat {
    text-align: center;
    flex: 1;
    max-width: 140px;
}

.proof-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-teal);
    font-family: var(--font-secondary);
    margin-bottom: 0.2rem;
}

.proof-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1.2;
}

/* Bottom Featured Section - Better Spacing */
.featured-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-title {
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    margin: 1rem 0 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem 1.2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.featured-logos img {
    height: 28px;
    width: auto;
    opacity: 0.65;
    transition: all 0.3s ease;
    filter: grayscale(1);
}

.featured-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Steam Animation Keyframes */
@keyframes steam-rise-1 {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-60px) scale(1.5);
        opacity: 0;
    }
}

@keyframes steam-rise-2 {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 0.7;
    }
    50% {
        transform: translateY(-35px) scale(1.3) rotate(2deg);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-70px) scale(1.6) rotate(5deg);
        opacity: 0;
    }
}

@keyframes steam-rise-3 {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    30% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-25px) scale(1.1) rotate(-2deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-50px) scale(1.4) rotate(-4deg);
        opacity: 0;
    }
}

@keyframes steam-rise-4 {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) scale(1.4) rotate(3deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-80px) scale(1.7) rotate(6deg);
        opacity: 0;
    }
}

/* ========================================
   HERO SECTION V3 - Separated to hero.css
   ======================================== */
/* Hero CSS is now loaded separately from hero.css */

/* Responsive Design for Combined Hero */
@media (max-width: 1200px) {
    .hero-combined {
        height: calc(100vh - 120px);
        min-height: 550px;
    }
    
    .background-dr-kellyann {
        height: 80%;
        max-width: 55%;
    }
    
    .hero-content-v2 {
        left: 30px;
        right: 30px;
    }
    
    .product-container {
        width: 380px;
        height: 280px;
    }
    
    .mug {
        height: 280px;
    }
    
    .packet {
        height: 300px;
    }
    
    .social-proof-bottom {
        bottom: 60px;
    }
    
    .proof-stats {
        padding: 1rem 0.8rem;
    }
    
    .proof-stat {
        max-width: 120px;
    }
    
    .featured-logos {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-combined {
        height: calc(100vh - 100px);
        min-height: 450px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr auto auto;
        grid-template-areas: 
            "products content"
            "social social"
            "featured featured";
    }
    
    /* Right Column - Text + Dr. Kellyann */
    .hero-content-v2 {
        grid-area: content;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: left;
        z-index: 4;
        padding: 1rem 1rem 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    .hero-content-v2 h1 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .hero-content-v2 .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .hero-content-v2 .cta-button {
        padding: 0.6rem 1.4rem;
        font-size: 0.75rem;
        align-self: flex-start;
    }
    
    /* Dr. Kellyann positioned in right column background */
    .hero-background {
        grid-area: content;
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    
    .background-dr-kellyann {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        height: 90%;
        max-width: 120%;
        object-fit: contain;
        filter: blur(6px) brightness(1.1) contrast(0.9);
        opacity: 0.4;
    }
    
    /* Left Column - Products stickied to bottom left */
    .product-container {
        grid-area: products;
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        z-index: 3;
        padding: 0 0 2rem 0;
    }
    
    /* Mug positioned behind, sticking out from left */
    .product-link:first-child {
        position: absolute;
        left: -30px;
        bottom: 0;
        z-index: 3;
    }
    
    /* Packet positioned in front */
    .product-link:last-child {
        position: relative;
        left: 20px;
        z-index: 4;
    }
    
    .mug {
        height: 200px;
    }
    
    .packet {
        height: 170px;
        margin-left: 0;
    }
    
    /* Adjust steam for tablet layout */
    .steam-animation {
        width: 35px;
        height: 55px;
        top: -12px;
    }
    
    /* Bottom sections span full width */
    .social-proof-bottom {
        grid-area: social;
        position: relative;
        bottom: auto;
    }
    
    .featured-bottom {
        grid-area: featured;
        position: relative;
        bottom: auto;
    }
    
    .proof-stats {
        padding: 0.8rem 0.4rem;
    }
    
    .proof-stat {
        max-width: 80px;
        flex: 1;
    }
    
    .proof-number {
        font-size: 1.1rem;
    }
    
    .proof-label {
        font-size: 0.65rem;
    }
    
    .featured-logos {
        gap: 1rem;
        padding: 0.3rem 0.6rem 0.8rem;
    }
    
    .featured-logos img {
        height: 18px;
    }
    
    .featured-title {
        font-size: 0.7rem;
        margin: 0.6rem 0 0.4rem;
    }
}

@media (max-width: 480px) {
    .hero-combined {
        height: calc(100vh - 80px);
        min-height: 500px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr auto auto;
        grid-template-areas: 
            "products content"
            "social social"
            "featured featured";
    }
    
    /* Right Column - Text + Dr. Kellyann */
    .hero-content-v2 {
        grid-area: content;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: left;
        z-index: 4;
        padding: 0.8rem 0.8rem 0.8rem 0.3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    .hero-content-v2 h1 {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
        text-align: left;
    }
    
    .hero-content-v2 .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .hero-content-v2 .cta-button {
        padding: 0.5rem 1.1rem;
        font-size: 0.7rem;
        align-self: flex-start;
    }
    
    /* Dr. Kellyann positioned in right column background */
    .hero-background {
        grid-area: content;
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    
    .background-dr-kellyann {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        height: 85%;
        max-width: 130%;
        object-fit: contain;
        filter: blur(6px) brightness(1.1) contrast(0.9);
        opacity: 0.35;
    }
    
    /* Left Column - Products stickied to bottom left */
    .product-container {
        grid-area: products;
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        z-index: 3;
        padding: 0 0 1.5rem 0;
    }
    
    /* Mug positioned behind, sticking out from left */
    .product-link:first-child {
        position: absolute;
        left: -25px;
        bottom: 0;
        z-index: 3;
    }
    
    /* Packet positioned in front */
    .product-link:last-child {
        position: relative;
        left: 15px;
        z-index: 4;
    }
    
    .mug {
        height: 160px;
    }
    
    .packet {
        height: 130px;
        margin-left: 0;
    }
    
    /* Much smaller steam for mobile */
    .steam-animation {
        width: 25px;
        height: 40px;
        top: -8px;
    }
    
    .steam-1, .steam-2, .steam-3, .steam-4 {
        width: 3px;
        height: 15px;
    }
    
    /* Bottom sections span full width */
    .social-proof-bottom {
        grid-area: social;
        position: relative;
        bottom: auto;
    }
    
    .featured-bottom {
        grid-area: featured;
        position: relative;
        bottom: auto;
    }
    
    .proof-stats {
        padding: 0.5rem 0.2rem;
        justify-content: space-around;
        gap: 0;
    }
    
    .proof-stat {
        max-width: 60px;
        flex: 1;
    }
    
    .proof-number {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
    }
    
    .proof-label {
        font-size: 0.55rem;
        line-height: 1.1;
    }
    
    .featured-logos {
        gap: 0.6rem;
        padding: 0.2rem 0.3rem 0.5rem;
        justify-content: space-around;
    }
    
    .featured-logos img {
        height: 14px;
    }
    
    .featured-title {
        font-size: 0.6rem;
        margin: 0.4rem 0 0.2rem;
    }
}

/* Ultra-compact mobile screens */
@media (max-width: 375px) {
    .hero-combined {
        height: calc(100vh - 70px);
        min-height: 480px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr auto auto;
        grid-template-areas: 
            "products content"
            "social social"
            "featured featured";
    }
    
    /* Right Column - Text + Dr. Kellyann (Ultra Compact) */
    .hero-content-v2 {
        grid-area: content;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: left;
        z-index: 4;
        padding: 0.5rem 0.6rem 0.5rem 0.2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    .hero-content-v2 h1 {
        font-size: 0.9rem;
        line-height: 1.15;
        margin-bottom: 0.3rem;
        text-align: left;
    }
    
    .hero-content-v2 .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
        text-align: left;
    }
    
    .hero-content-v2 .cta-button {
        padding: 0.4rem 0.9rem;
        font-size: 0.65rem;
        align-self: flex-start;
    }
    
    /* Dr. Kellyann positioned in right column background */
    .hero-background {
        grid-area: content;
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    
    .background-dr-kellyann {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        height: 80%;
        max-width: 140%;
        object-fit: contain;
        filter: blur(5px) brightness(1.1) contrast(0.9);
        opacity: 0.3;
    }
    
    /* Left Column - Products stickied to bottom left (Ultra Compact) */
    .product-container {
        grid-area: products;
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        z-index: 3;
        padding: 0 0 1rem 0;
    }
    
    /* Mug positioned behind, sticking out from left */
    .product-link:first-child {
        position: absolute;
        left: -20px;
        bottom: 0;
        z-index: 3;
    }
    
    /* Packet positioned in front */
    .product-link:last-child {
        position: relative;
        left: 10px;
        z-index: 4;
    }
    
    .mug {
        height: 130px;
    }
    
    .packet {
        height: 110px;
        margin-left: 0;
    }
    
    .steam-animation {
        width: 20px;
        height: 30px;
        top: -6px;
    }
    
    /* Bottom sections span full width (Ultra Compact) */
    .social-proof-bottom {
        grid-area: social;
        position: relative;
        bottom: auto;
    }
    
    .featured-bottom {
        grid-area: featured;
        position: relative;
        bottom: auto;
    }
    
    .proof-stats {
        padding: 0.4rem 0.1rem;
    }
    
    .proof-number {
        font-size: 0.8rem;
    }
    
    .proof-label {
        font-size: 0.5rem;
    }
    
    .featured-logos {
        gap: 0.4rem;
        padding: 0.1rem 0.2rem 0.4rem;
    }
    
    .featured-logos img {
        height: 12px;
    }
    
    .featured-title {
        font-size: 0.55rem;
        margin: 0.3rem 0 0.1rem;
    }
}

/* ========================================
   BESTSELLERS SECTION - Daily Harvest Style
   ======================================== */

.bestsellers-section-dh {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.bestsellers-section-dh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 161, 156, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.dh-bestsellers-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.dh-bestsellers-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dh-bestsellers-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.dh-bestsellers-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    background: white;
    color: var(--text-secondary);
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 161, 156, 0.2);
}

.filter-btn.active {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
    box-shadow: 0 4px 15px rgba(0, 161, 156, 0.3);
}

.filter-btn.active:hover {
    background: var(--primary-teal-hover);
    border-color: var(--primary-teal-hover);
    transform: translateY(-2px);
}

/* Responsive Filter Bar */
@media (max-width: 768px) {
    .filter-bar {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}
    font-family: var(--font-primary);
    background-color: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.filter-btn:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.filter-btn.active {
    background-color: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
}

/* Product Grid */
.product-grid-dh {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Product Card - Enhanced Design with Pop Effect */
.product-card-dh {
    background-color: white;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    height: 100%;
    min-height: 480px;
    will-change: box-shadow;
    backface-visibility: hidden;
}

.product-card-dh:hover {
    text-decoration: none;
    color: var(--text-primary);
}

/* Product Image Container - Clean, No Animations */
.product-card-dh .product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f8f9fa; /* Simple solid background, no gradient animation */
}

.product-card-dh .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none; /* Remove image transitions */
}

/* Image Placeholder for Failed Loads */
.product-card-dh .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.product-card-dh .placeholder-content {
    text-align: center;
    color: #6c757d;
}

.product-card-dh .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.product-card-dh .placeholder-text {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.7;
    max-width: 200px;
    line-height: 1.3;
}

/* Product Badge */
.product-card-dh .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-coral);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Product Info Section */
.product-card-dh .product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-dh .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-dh .product-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Rating */
.product-card-dh .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.product-card-dh .product-rating .stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.product-card-dh .product-rating span:last-child {
    color: var(--text-light);
}

/* =================================================================
   PRODUCT CARD HOVER - Price/Button Swap Effect (MOBILE FIX)
   ================================================================= */

/* 1. Set up the container */
.product-card-dh .product-details {
    position: relative; /* This is crucial for positioning the button */
    height: 90px;      /* A fixed height prevents the layout from jumping */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

/* 2. Style the price container (visible by default) */
.product-card-dh .product-price-container {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.product-card-dh .product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-teal);
}

/* 3. Style the button container to respect padding (hidden by default) */
.product-card-dh .product-button-container {
    position: absolute;
    top: 50%;
    
    /* This is the key change: */
    left: 1.5rem;  /* Match the padding of .product-info */
    right: 1.5rem; /* Match the padding of .product-info */
    
    transform: translateY(-50%); /* Only center vertically */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* 4. Ensure the button itself fills this new, constrained container */

.product-card-dh .add-to-cart-btn {
    width: 100%;
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 161, 156, 0.3);
}

.product-card-dh .add-to-cart-btn:hover {
    background: var(--primary-teal-hover);
    box-shadow: 0 6px 18px rgba(0, 161, 156, 0.4);
    /* transform: translateY(-1px); */
}

/* 5. The hover effect that swaps visibility */
.product-card-dh:hover .product-price-container {
    opacity: 0; /* Hide the price on hover */
}

.product-card-dh:hover .product-button-container {
    opacity: 1; /* Show the button on hover */
}

/* Enhanced Mobile Touch Support */
@media (hover: none) and (pointer: coarse) {
    /* Mobile devices - show button by default instead of hover */
    .product-card-dh .product-price-container {
        display: none;
    }
    
    .product-card-dh .product-button-container {
        transform: translateY(0);
        opacity: 1;
        position: relative;
    }
    
    .product-card-dh .product-details {
        height: auto;
        overflow: visible;
    }
}

/* Performance optimization for hover effects */
.product-card-dh .product-price-container,
.product-card-dh .product-button-container {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-grid-dh {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .product-card-dh {
        min-height: 420px;
    }
    
    .product-card-dh .product-image-container {
        height: 200px;
    }
    
    .product-card-dh .product-info {
        padding: 1.25rem;
    }
    
    .product-card-dh .product-details {
        height: 45px;
    }
    
    .product-card-dh .add-to-cart-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .product-grid-dh {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem 0.5rem;
    }
    
    .product-card-dh {
        min-height: 380px;
    }
    
    .product-card-dh .product-image-container {
        height: 180px;
    }
    
    .product-card-dh .product-info {
        padding: 1rem;
    }
    
    .product-card-dh .product-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .product-card-dh .product-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .product-card-dh .product-details {
        height: 70px;
    }
}

.product-card-dh .product-badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.product-card-dh .product-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    font-weight: 600;
}

.product-card-dh .product-rating {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 1rem;
}

.product-card-dh .product-rating .stars {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.product-card-dh .product-details {
    margin-top: auto;
}

.product-card-dh .product-price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-card-dh .add-to-cart-btn {
    background-color: var(--primary-teal);
    color: white;
    width: 100%;
    padding: 0.875rem;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
    letter-spacing: 0.05em;
}

.product-card-dh .add-to-cart-btn:hover {
    background-color: var(--primary-teal-hover);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bestsellers-section-dh {
        padding: 3rem 0;
    }
    
    .dh-bestsellers-header h2 {
        font-size: 2rem;
    }
    
    .product-grid-dh {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .filter-bar {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .product-grid-dh {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }
    
    .product-card-dh {
        min-height: 380px;
    }
    
    .product-card-dh .product-image-container {
        height: 160px;
    }
    
    .product-card-dh .product-info {
        padding: 0.8rem;
    }
    
    .product-card-dh .product-title {
        font-size: 0.85rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .product-card-dh .product-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .product-card-dh .product-rating {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .product-card-dh .product-details {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
    }
    
    .product-card-dh .product-price-container {
        position: static;
        opacity: 1;
        transform: none;
    }
    
    .product-card-dh .product-button-container {
        position: static;
        opacity: 1;
        transform: none;
        left: auto;
        right: auto;
        top: auto;
    }
    
    .product-card-dh .add-to-cart-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    /* Disable hover effects on mobile */
    .product-card-dh:hover .product-price-container {
        opacity: 1;
    }
    
    .product-card-dh:hover .product-button-container {
        opacity: 1;
    }
}

/* Extra small screens - ensure 2 columns always */
@media (max-width: 360px) {
    .product-grid-dh {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem;
        padding: 1rem 0.25rem;
    }
    
    .product-card-dh {
        min-height: 360px;
    }
    
    .product-card-dh .product-info {
        padding: 0.6rem;
    }
    
    .product-card-dh .product-title {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .product-card-dh .add-to-cart-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}


/* ========================================
   ADDITIONAL SECTIONS - Gap Fixes
   ======================================== */

/* Calculator Section in Hero */
.calculator-section {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 400px;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.calculator-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.weight-control {
    margin-bottom: 1rem;
}

.weight-control label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.weight-control input[type="range"] {
    width: 100%;
    margin-bottom: 0.5rem;
    accent-color: var(--primary-teal);
}

.weight-value {
    font-weight: 600;
    color: var(--primary-teal);
}

.calculator-result {
    text-align: center;
    padding: 1rem;
    background: var(--bg-beige-light);
    border-radius: 8px;
}

/* Subscribe & Save Section */
.subscribe-save-section {
    padding: 4rem 0;
    background: var(--bg-beige-light);
}

/* Why Different Section */
.why-different-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.comparison-table {
    max-width: 800px;
    margin: 2rem auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-table thead tr {
    background: var(--primary-teal);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

/* Guarantee Section */
.guarantee-section {
    padding: 3rem 0;
    background: var(--bg-beige-light);
}

.guarantee-badge {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.guarantee-icon {
    margin-bottom: 1rem;
}

.guarantee-icon div {
    width: 80px;
    height: 80px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
}

.guarantee-text h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.guarantee-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .calculator-section {
        margin: 1.5rem auto;
        padding: 1rem;
        max-width: 320px;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .guarantee-badge {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .guarantee-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .calculator-section {
        max-width: 280px;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.25rem;
    }
}


/* === FOOTER STYLES === */

/* Footer Main Container */
footer {
    background: #1e3a5f;
    color: #8fa5c4;
    padding: 3rem 0 1.5rem;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Footer Sections */
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #b8c7db;
}

@media (min-width: 768px) {
    .footer-section h4 {
        font-size: 0.875rem;
    }
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section a {
    color: #8fa5c4;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

@media (min-width: 768px) {
    .footer-section a {
        font-size: 0.875rem;
    }
}

.footer-section a:hover {
    color: #b8c7db;
}

/* Footer Contact Info */
.footer-contact {
    margin-top: 1.5rem;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-contact {
        font-size: 0.875rem;
    }
}

.footer-contact p {
    color: #8fa5c4;
    margin-bottom: 0.25rem;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(143, 165, 196, 0.2);
    font-size: 0.75rem;
    color: #8fa5c4;
}

@media (min-width: 768px) {
    .footer-bottom {
        font-size: 0.875rem;
    }
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #b8c7db;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.payment-icons svg {
    height: 24px;
    width: auto;
}

.payment-icons span {
    font-size: 0.75rem;
    color: #8fa5c4;
    margin-left: 0.5rem;
}

.mobile-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-sticky-info {
    flex: 1;
}

.mobile-sticky-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.mobile-sticky-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-teal);
}

/* Guarantee Badge Updates */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.guarantee-icon i {
    width: 60px;
    height: 60px;
    color: var(--primary-teal);
}

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

.guarantee-text h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.guarantee-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .guarantee-text h3 {
        font-size: 1.25rem;
    }
}

/* =================================================================
   PRODUCT IMAGE HOVER EFFECTS
   ================================================================= */

/* Product Image Container for Hover Effects */
.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-beige-light);
}

/* Product Image Hover Transitions */
.product-image {
    transition: opacity 0.2s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Removed duplicate hover effects - using main definition above */

/* Removed loading state animations - keeping images clean and static */

/* Removed loading animation keyframes */

/* Responsive hover effects */
@media (max-width: 768px) {
    .product-card-dh:hover {
        text-decoration: none;
    }
}

/* Shop by Goal - Mobile First */
.shop-by-goal {
    padding: 2rem 0;
    background: var(--bg-primary);
}

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

.goal-item {
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.goal-item:hover {
    /* transform: translateY(-4px); */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.goal-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--primary-teal);
}

.goal-text {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    font-weight: 600;
}

@media (min-width: 768px) {
    .shop-by-goal {
        padding: 4rem 0;
    }
    
    .goal-grid {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .goal-image {
        width: 180px;
        height: 180px;
        margin-bottom: 1rem;
        border: 3px solid var(--primary-teal);
    }
    
    .goal-text {
        font-size: 0.875rem;
    }
}
/* =================================================================
   PRODUCT CARD ANIMATIONS & POLISH
   ================================================================= */

/* Fade in animation for product cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Product card loading state */
.product-card-dh.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.2s infinite linear;
}

/* Staggered animation delays */
.product-card-dh:nth-child(1) { animation-delay: 0.1s; }
.product-card-dh:nth-child(2) { animation-delay: 0.2s; }
.product-card-dh:nth-child(3) { animation-delay: 0.3s; }
.product-card-dh:nth-child(4) { animation-delay: 0.4s; }
.product-card-dh:nth-child(5) { animation-delay: 0.5s; }
.product-card-dh:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced focus states for accessibility */
.product-card-dh:focus {
    outline: 3px solid var(--primary-teal);
    outline-offset: 2px;
}

.filter-btn:focus {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

.add-to-cart-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .product-card-dh {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .filter-bar {
        display: none;
    }
    
    .add-to-cart-btn {
        display: none;
    }
}

/* Desktop and Large Tablet - Keep Original Layout */
@media (min-width: 769px) {
    .hero-combined {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        grid-template-columns: unset !important;
        grid-template-rows: unset !important;
        grid-template-areas: unset !important;
    }
    
    /* Reset to original positioning for desktop */
    .hero-content-v2 {
        position: absolute !important;
        top: 15% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        z-index: 4;
        color: #333;
        max-width: 700px;
        padding: 0 2rem;
        display: block !important;
        grid-area: unset !important;
        align-items: unset !important;
        justify-content: unset !important;
        flex-direction: unset !important;
    }
    
    .hero-content-v2 h1 {
        text-align: center !important;
    }
    
    .hero-content-v2 .hero-subtitle {
        text-align: center !important;
    }
    
    .hero-content-v2 .cta-button {
        align-self: unset !important;
    }
    
    .hero-background {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 2;
        grid-area: unset !important;
    }
    
    .background-dr-kellyann {
        position: absolute !important;
        top: 45% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: auto;
        height: 70%;
        max-width: 80%;
        object-fit: contain;
        filter: blur(8px) brightness(1.1) contrast(0.9);
        opacity: 0.6;
    }
    
    .product-container {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
        z-index: 3;
        width: 400px;
        height: 280px;
        grid-area: unset !important;
        padding: 0 !important;
    }
    
    /* Desktop product positioning - layered design */
    .product-link:first-child {
        position: absolute !important;
        left: 0 !important;
        z-index: 4;
        bottom: unset !important;
    }
    
    .product-link:last-child {
        position: absolute !important;
        right: 0 !important;
        z-index: 3;
        left: unset !important;
    }
    
    .mug {
        margin-left: unset !important;
    }
    
    .packet {
        margin-left: unset !important;
    }
    
    .social-proof-bottom {
        position: absolute !important;
        bottom: 70px !important;
        left: 0;
        right: 0;
        z-index: 4;
        grid-area: unset !important;
    }
    
    .featured-bottom {
        position: absolute !important;
        bottom: 0 !important;
        left: 0;
        right: 0;
        z-index: 4;
        grid-area: unset !important;
    }
}



/* Performance Optimizations */
.product-image {
    will-change: transform;
    backface-visibility: hidden;
}

/* .product-card-dh:hover .product-image {
    transform: scale(1.02);
    transition: transform 0.3s ease;
} */

/* Lazy loading placeholder - disabled shimmer effect */
/* img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
} */

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-container { gap: 1.5rem; }
    .product-grid { gap: 1rem; }
}

/* ===========================================
   CONSISTENT SHOP NOW BUTTON STYLES
   =========================================== */

/* Override all inconsistent button styles */
.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-hover) 100%) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    max-width: 200px !important;
    margin: 0 auto !important;
    box-shadow: 0 2px 8px rgba(0, 161, 156, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--primary-teal-hover) 0%, #006b69 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 161, 156, 0.3) !important;
}

.add-to-cart-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(0, 161, 156, 0.2) !important;
}

.add-to-cart-btn:focus {
    outline: 2px solid white !important;
    outline-offset: 2px !important;
}

/* Responsive button adjustments */
@media (max-width: 768px) {
    .add-to-cart-btn {
        padding: 0.6rem 1.25rem !important;
        font-size: 0.8rem !important;
        max-width: 180px !important;
    }
}

@media (max-width: 480px) {
    .add-to-cart-btn {
        padding: 0.55rem 1rem !important;
        font-size: 0.75rem !important;
        max-width: 160px !important;
    }
    
    /* Disable hover effects on mobile for better touch experience */
    .add-to-cart-btn:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 161, 156, 0.2) !important;
    }
}
        


/* Performance Optimizations */
.product-image {
    will-change: transform;
    backface-visibility: hidden;
}

.product-card-dh:hover .product-image {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-container { gap: 1.5rem; }
    .product-grid { gap: 1rem; }
}
        