/* Font Declarations */
@font-face {
    font-family: 'ProximaNova-Regular';
    src: url('../fonts/ProximaNova-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova-Bold';
    src: url('../fonts/ProximaNova-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova-Light';
    src: url('../fonts/ProximaNova-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova-Semibold';
    src: url('../fonts/ProximaNova-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova-Black';
    src: url('../fonts/ProximaNova-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
}

/* Variables */
:root {
    /* Primary Colors - Daily with Doc & Becca Brand Colors */
    --blue-sky: #3CAADF;
    --health-blue: #0068B3;
    --tangy-yellow: #FFB81C;
    --glorious-sunset: #F58A34;
    --hot-chocolate: #784434;
    
    /* Secondary Colors */
    --white: #FFFFFF;
    --black: #000000;
    --shade-of-grey: #58595B;
    
    /* Neutral Colors */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --background-light: #F9F9F9;
    --background-white: #FFFFFF;
    
    /* Font Families */
    --heading-font: 'ProximaNova-Bold', sans-serif;
    --subheading-font: 'ProximaNova-Semibold', sans-serif;
    --body-font: 'Montserrat', sans-serif;
    --accent-font: 'ProximaNova-Regular', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container Width */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f0f8ff; /* Light blue background instead of white */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--health-blue);
}

h3 {
    font-size: 1.5rem;
    font-family: var(--subheading-font);
    color: var(--health-blue);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--blue-sky);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--health-blue);
}

ul {
    list-style: none;
}

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

/* Hero Section Styles */
.hero {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    background-color: var(--health-blue);
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: var(--spacing-lg);
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.3rem;
    color: white;
    font-weight: 700;
    text-shadow: 
        -2px -2px 0 #00407A,  
        2px -2px 0 #00407A,
        -2px 2px 0 #00407A,
        2px 2px 0 #00407A,
        0 3px 6px rgba(0,0,0,0.4);
}

.orange-text {
    color: var(--glorious-sunset) !important;
    font-weight: 700;
    text-shadow: 
        -1.5px -1.5px 0 #00407A,  
        1.5px -1.5px 0 #00407A,
        -1.5px 1.5px 0 #00407A,
        1.5px 1.5px 0 #00407A,
        0 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.white-text {
    color: white !important;
    font-weight: 700;
    text-shadow: 
        -1px -1px 0 rgba(0, 64, 122, 0.9),  
        1px -1px 0 rgba(0, 64, 122, 0.9),
        -1px 1px 0 rgba(0, 64, 122, 0.9),
        1px 1px 0 rgba(0, 64, 122, 0.9),
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 12px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1.2px;
    font-size: 2.9rem;
}

.product-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 
        -2px -2px 0 #00407A,  
        2px -2px 0 #00407A,
        -2px 2px 0 #00407A,
        2px 2px 0 #00407A,
        0 3px 7px rgba(0,0,0,0.5);
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 700;
    text-shadow: 
        -1px -1px 0 #00407A,  
        1px -1px 0 #00407A,
        -1px 1px 0 #00407A,
        1px 1px 0 #00407A,
        0 2px 5px rgba(0,0,0,0.4);
    letter-spacing: 0.8px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: white;
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
    text-shadow: 
        -1px -1px 0 rgba(0, 64, 122, 0.7),  
        1px -1px 0 rgba(0, 64, 122, 0.7),
        -1px 1px 0 rgba(0, 64, 122, 0.7),
        1px 1px 0 rgba(0, 64, 122, 0.7),
        0 2px 4px rgba(0,0,0,0.3);
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 0.5rem 0.75rem;
    background-color: rgba(0, 64, 122, 0.2);
    border-radius: 6px;
}

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

.hero-image img {
    max-height: 400px;
    object-fit: contain;
}

.lifestyle-inset-image {
    position: absolute;
    bottom: -40px;
    right: -20px;
    max-width: 180px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

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

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--health-blue);
    font-size: 1.1rem;
}

.highlight {
    color: var(--health-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-family: var(--subheading-font);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-family: var(--subheading-font);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--health-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--blue-sky);
    color: white;
}

.btn-secondary {
    background-color: var(--glorious-sunset);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--tangy-yellow);
    color: var(--text-dark);
}

.btn-buy-now, .btn-learn-more {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    min-width: 100px;
}

.btn-buy-now {
    background-color: var(--health-blue);
    color: white;
    border: none;
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
}

.btn-buy-now:hover {
    background-color: #005294;
}

.btn-learn-more {
    background-color: var(--glorious-sunset);
    color: white;
    border: none;
    display: block;
    width: 100%;
}

.btn-learn-more:hover {
    background-color: #e57a23;
}

/* Header Styles */
header {
    background-color: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 600;
    font-family: var(--subheading-font);
}

.nav-menu li a:hover {
    color: var(--health-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-toggle span.active:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.mobile-menu-toggle span.active:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle span.active:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}

header.sticky {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
}

/* Shopping Cart Styles */
.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--glorious-sunset);
    color: white;
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--background-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right var(--transition-medium);
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

body.cart-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    margin-bottom: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart-message {
    text-align: center;
    color: var(--text-medium);
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.cart-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 1rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background: none;
    border: 1px solid #ddd;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.quantity-value {
    margin: 0 0.5rem;
    width: 30px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    margin-left: auto;
    font-size: 1.2rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    padding-top: calc(80px + var(--spacing-xl));
    background: linear-gradient(135deg, var(--health-blue) 0%, var(--blue-sky) 75%);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
    box-shadow: inset -5px 0 15px rgba(0, 0, 0, 0.2);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
    padding-bottom: var(--spacing-xl);
}

.lifestyle-inset-image {
    display: none; /* Hide the original lifestyle image since we're using it as background */
}

.hero-content {
    flex: 1;
    color: white;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    line-height: 1.6;
}

.hero-content h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-size: 2.5rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    text-align: left;
    color: var(--tangy-yellow);
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    margin: 0 auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
    z-index: 3;
    text-align: center;
}

.hero-image:hover img:first-child {
    transform: translateY(-15px);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.2));
}

.hero-image img:first-child {
    max-height: 500px;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, filter 0.3s ease;
    transform: translateY(0);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.25));
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

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

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Features Section */
.why-choose {
    background: linear-gradient(135deg, rgba(240, 248, 255, 1) 0%, rgba(220, 240, 255, 1) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0 var(--spacing-xxl);
    z-index: 1;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 173, 65, 0.1) 0%, rgba(250, 173, 65, 0) 70%);
    z-index: -1;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 170, 223, 0.1) 0%, rgba(60, 170, 223, 0) 70%);
    z-index: -1;
}

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

.section-header {
    margin-bottom: 2rem;
}

.why-choose .section-intro {
    color: var(--health-blue);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-card:nth-child(1) {
    border-bottom-color: var(--tangy-yellow);
}

.feature-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--tangy-yellow), var(--health-blue));
}

.feature-card:nth-child(2) {
    border-bottom-color: var(--glorious-sunset);
}

.feature-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--glorious-sunset), var(--health-blue));
}

.feature-card:nth-child(3) {
    border-bottom-color: var(--blue-sky);
}

.feature-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--blue-sky), var(--health-blue));
}

.feature-card:nth-child(4) {
    border-bottom-color: var(--health-blue);
}

.feature-card:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--health-blue), var(--blue-sky));
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i.fa-brain {
    color: var(--tangy-yellow);
    text-shadow: 2px 2px 8px rgba(250, 173, 65, 0.3);
}

.feature-icon i.fa-seedling {
    color: var(--glorious-sunset);
    text-shadow: 2px 2px 8px rgba(245, 138, 52, 0.3);
}

.feature-icon i.fa-leaf {
    color: var(--blue-sky);
    text-shadow: 2px 2px 8px rgba(60, 170, 223, 0.3);
}

.feature-icon i.fa-pills {
    color: var(--health-blue);
    text-shadow: 2px 2px 8px rgba(0, 104, 179, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    font-weight: 700;
}

.feature-card:nth-child(1) h3 {
    color: var(--tangy-yellow);
}

.feature-card:nth-child(1) h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--tangy-yellow), var(--health-blue));
    border-radius: 2px;
}

.feature-card:nth-child(2) h3 {
    color: var(--glorious-sunset);
}

.feature-card:nth-child(2) h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--glorious-sunset), var(--health-blue));
    border-radius: 2px;
}

.feature-card:nth-child(3) h3 {
    color: var(--blue-sky);
}

.feature-card:nth-child(3) h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--blue-sky), var(--health-blue));
    border-radius: 2px;
}

.feature-card:nth-child(4) h3 {
    color: var(--health-blue);
}

.feature-card:nth-child(4) h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--health-blue), var(--blue-sky));
    border-radius: 2px;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Add animated shine effect to feature cards */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Add subtle background patterns to feature cards */
.feature-card:nth-child(1) {
    background-image: radial-gradient(circle at 90% 10%, rgba(250, 173, 65, 0.07) 0%, transparent 60%);
}

.feature-card:nth-child(2) {
    background-image: radial-gradient(circle at 90% 10%, rgba(245, 138, 52, 0.07) 0%, transparent 60%);
}

.feature-card:nth-child(3) {
    background-image: radial-gradient(circle at 90% 10%, rgba(60, 170, 223, 0.07) 0%, transparent 60%);
}

.feature-card:nth-child(4) {
    background-image: radial-gradient(circle at 90% 10%, rgba(0, 104, 179, 0.07) 0%, transparent 60%);
}

/* Enhanced why-choose section title */
.why-choose h2 {
    color: var(--health-blue);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--blue-sky), var(--health-blue), var(--glorious-sunset));
    border-radius: 4px;
}

.feature-icon i.fa-pills {
    color: var(--health-blue);
}

/* Ingredients Section */
.ingredients {
    background: linear-gradient(to bottom, #f8f9fa, #f0f8ff);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.ingredients::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(60, 170, 223, 0.1) 0%, rgba(60, 170, 223, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.ingredients::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 138, 52, 0.1) 0%, rgba(245, 138, 52, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.ingredient-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ingredient-card:nth-child(1) {
    border-top: 4px solid var(--blue-sky);
}

.ingredient-card:nth-child(2) {
    border-top: 4px solid var(--tangy-yellow);
}

.ingredient-card:nth-child(3) {
    border-top: 4px solid var(--glorious-sunset);
}

.ingredient-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.ingredient-card:nth-child(1) h3 {
    color: var(--health-blue);
}

.ingredient-card:nth-child(1) h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--blue-sky), var(--health-blue));
    border-radius: 2px;
}

.ingredient-card:nth-child(2) h3 {
    color: var(--tangy-yellow);
}

.ingredient-card:nth-child(2) h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--tangy-yellow), var(--glorious-sunset));
    border-radius: 2px;
}

.ingredient-card:nth-child(3) h3 {
    color: var(--glorious-sunset);
}

.ingredient-card:nth-child(3) h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--glorious-sunset), var(--tangy-yellow));
    border-radius: 2px;
}

.ingredient-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ingredient-card ul {
    margin-top: 1rem;
    margin-left: 0.5rem;
    padding-left: 1rem;
    list-style-type: none;
}

.ingredient-card li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.ingredient-card:nth-child(1) li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--blue-sky);
    font-size: 1rem;
}

.ingredient-card:nth-child(2) li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--tangy-yellow);
    font-size: 1rem;
}

.ingredient-card:nth-child(3) li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--glorious-sunset);
    font-size: 1rem;
}

.research-link {
    position: relative;
    color: var(--health-blue);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.research-link:hover {
    color: var(--blue-sky);
    text-decoration: underline;
}

.nutrition-facts {
    text-align: center;
    margin-top: 2rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--health-blue);
}

.nutrition-facts h3 {
    font-size: 1.8rem;
    color: var(--health-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.nutrition-facts h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--blue-sky), var(--health-blue));
    border-radius: 2px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.ingredient-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--health-blue);
}

.ingredient-card ul {
    list-style: disc;
    padding-left: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.ingredient-card ul li {
    margin-bottom: var(--spacing-xs);
}

.nutrition-facts {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.nutrition-image {
    margin: 0 auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    background-color: #f8f9fa;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,184,28,0.15) 0%, rgba(255,184,28,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,104,179,0.15) 0%, rgba(0,104,179,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid transparent;
}

.benefit-card:nth-child(odd) {
    border-bottom-color: var(--tangy-yellow);
}

.benefit-card:nth-child(even) {
    border-bottom-color: var(--health-blue);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-card:nth-child(odd) .benefit-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,184,28,0.2) 0%, rgba(245,138,52,0.05) 70%);
    border-radius: 50%;
    z-index: 0;
}

.benefit-card:nth-child(even) .benefit-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(60,170,223,0.2) 0%, rgba(0,104,179,0.05) 70%);
    border-radius: 50%;
    z-index: 0;
}

.benefit-card:nth-child(odd) .benefit-icon {
    background: linear-gradient(135deg, var(--tangy-yellow), var(--glorious-sunset));
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(245, 138, 52, 0.3);
}

.benefit-card:nth-child(even) .benefit-icon {
    background: linear-gradient(135deg, var(--health-blue), var(--blue-sky));
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 104, 179, 0.3);
}

.benefit-card:nth-child(odd) .benefit-accent {
    height: 3px;
    width: 50px;
    background: linear-gradient(to right, var(--tangy-yellow), var(--glorious-sunset));
    margin: 0.5rem auto 1rem;
    border-radius: 5px;
}

.benefit-card:nth-child(even) .benefit-accent {
    height: 3px;
    width: 50px;
    background: linear-gradient(to right, var(--health-blue), var(--blue-sky));
    margin: 0.5rem auto 1rem;
    border-radius: 5px;
}

.benefit-card:nth-child(odd) h3 {
    color: var(--glorious-sunset);
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.benefit-card:nth-child(even) h3 {
    color: var(--health-blue);
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}
.benefits {
    background-color: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--tangy-yellow); /* Gold color from brand guidelines */
}

/* Reviews Section */
.reviews {
    background-color: var(--white);
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.rating-summary {
    display: inline-block;
    text-align: center;
}

.average-rating {
    font-size: 3rem;
    font-weight: bold;
    color: var(--health-blue);
}

.stars {
    color: var(--tangy-yellow);
    font-size: 1.5rem;
    margin: var(--spacing-sm) 0;
}

.review-count {
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.verified-by {
    font-size: 0.9rem;
}

.yotpo {
    color: var(--blue-sky);
    font-weight: bold;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.review-card {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.reviewer-name {
    font-weight: bold;
}

.reviewer-location {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.review-date {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--tangy-yellow);
    margin-bottom: var(--spacing-sm);
}

.review-title {
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
}

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

/* How to Use Section */
.how-to-use {
    background: linear-gradient(135deg, var(--health-blue), var(--blue-sky));
    color: var(--white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.how-to-use .section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.how-to-use h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.header-accent {
    height: 3px;
    width: 60px;
    background: var(--tangy-yellow);
    margin: 0.5rem auto 1.5rem;
    border-radius: 3px;
}

.how-to-use .section-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 1.5rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform var(--transition-medium), background-color var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.step:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-number-1 {
    background: var(--tangy-yellow);
    color: var(--text-dark);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.step-number-2 {
    background: var(--white);
    color: var(--health-blue);
    text-shadow: none;
}

.step-number-3 {
    background: var(--tangy-yellow);
    color: var(--text-dark);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.step-number-4 {
    background: var(--white);
    color: var(--health-blue);
    text-shadow: none;
}

.step-content {
    z-index: 1;
}

.step h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile optimization for How to Use section */
@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .step {
        padding: 1.25rem 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step {
        padding: 1.5rem;
        margin-bottom: 1rem;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: 1rem;
        min-width: 50px;
    }
    
    .step-content {
        flex: 1;
    }
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.step:last-child {
    border-right: none;
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--health-blue);
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step:nth-child(1) {
    border-top-color: var(--health-blue);
}

.step:nth-child(2) {
    border-top-color: var(--blue-sky);
}

.step:nth-child(3) {
    border-top-color: var(--glorious-sunset);
}

.step:nth-child(4) {
    border-top-color: var(--tangy-yellow);
}

.step:nth-child(1) .step-number {
    background: linear-gradient(135deg, var(--health-blue) 0%, var(--blue-sky) 60%);
}

.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, var(--blue-sky) 0%, var(--health-blue) 60%);
}

.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--glorious-sunset) 0%, var(--tangy-yellow) 60%);
}

.step:nth-child(4) .step-number {
    background: linear-gradient(135deg, var(--tangy-yellow) 0%, var(--glorious-sunset) 60%);
}

/* Buy Now Section */
.buy-now {
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.best-value, .save-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--glorious-sunset);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: bold;
}

.save-badge {
    background-color: var(--tangy-yellow);
    color: var(--text-dark);
}

.save-btn-primary {
    background-color: var(--health-blue);
    color: var(--white);
    border: none;
}

.product-image {
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-details {
    padding: var(--spacing-lg);
    text-align: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--health-blue);
    margin: var(--spacing-sm) 0;
}

.product-sku {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

/* FAQ Section */
.faq {
    background-color: var(--background-light);
}

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

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 1px solid #eee;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-md);
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--health-blue);
}

.faq-answer {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    padding: var(--spacing-md);
    max-height: 500px;
}

/* Newsletter Section */
.newsletter {
    position: relative;
    padding: var(--spacing-xl) 0;
    color: var(--white);
    overflow: hidden;
}

.newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/beach-family.jpg') center/cover no-repeat;
    filter: brightness(1.05) contrast(0.95);
    z-index: -2;
}

.newsletter .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 104, 179, 0.75), rgba(60, 170, 223, 0.65));
    z-index: -1;
}

.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.header-underline {
    height: 4px;
    width: 70px;
    background: var(--tangy-yellow);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.newsletter-form-container {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--blue-sky);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.newsletter-form input,
.newsletter-form select,
.newsletter-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-md);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    color: var(--text-dark);
    background-color: var(--white);
}

.newsletter-form input:focus,
.newsletter-form select:focus,
.newsletter-form textarea:focus {
    outline: none;
    border-color: var(--blue-sky);
    box-shadow: 0 0 0 3px rgba(60, 170, 223, 0.2);
}

.form-submit {
    margin-top: 0.5rem;
}

.btn-subscribe-full {
    background-color: var(--blue-sky);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    font-size: 1rem;
    width: 100%;
    display: block;
    text-align: center;
}

.btn-subscribe-full:hover {
    background-color: var(--health-blue);
}

@media (max-width: 768px) {
    .newsletter-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .newsletter h2 {
        font-size: 2rem;
    }
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.newsletter-content p {
    margin-bottom: var(--spacing-lg);
    color: white;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form .form-group {
    width: 100%;
}

.newsletter-form input,
.newsletter-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid white;
    border-radius: var(--border-radius-sm);
    background-color: white;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    color: var(--text-dark);
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
    outline: none;
    border-color: var(--tangy-yellow);
    box-shadow: 0 0 0 2px rgba(255, 184, 28, 0.4);
}

.newsletter-form textarea {
    resize: vertical;
    min-height: 90px;
}

.newsletter-form button {
    margin-top: var(--spacing-sm);
    align-self: center;
    min-width: 150px;
    background-color: var(--tangy-yellow);
    color: var(--text-dark);
    font-weight: 700;
    transition: background-color var(--transition-fast);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
}

.newsletter-form button:hover {
    background-color: var(--glorious-sunset);
    color: black;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0;
    position: relative;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo-container {
    flex: 1;
    min-width: 300px;
    margin-bottom: var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    flex: 2;
}

footer h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

footer h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--blue-sky);
}

.footer-logo img {
    max-width: 220px;
    margin-bottom: 1rem;
}

footer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.tagline {
    max-width: 80%;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: var(--spacing-md);
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--tangy-yellow);
}

.footer-col h3 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.step h3 {
    margin-bottom: var(--spacing-sm);
    color: white;
    font-weight: 600;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
    color: var(--text-light);
}

.footer-col ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.distributor-info {
    margin-bottom: var(--spacing-md);
}

.ygy-logo {
    max-height: 50px;
    margin-top: 10px;
}

/* Health Evaluation Section */
.health-evaluation-section {
    padding: var(--spacing-xl) 0;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.health-eval-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.health-evaluation-section h2 {
    color: var(--health-blue);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.health-evaluation-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--tangy-yellow), var(--glorious-sunset));
}

.health-evaluation-section .section-intro {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.health-eval-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.health-eval-content {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.eval-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform 0.3s ease;
}

.eval-feature-box:hover {
    transform: translateY(-5px);
}

.eval-icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: var(--blue-sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(60, 170, 223, 0.3);
    transition: all 0.3s ease;
}

.icon-tangy {
    background-color: var(--tangy-yellow);
    box-shadow: 0 4px 10px rgba(255, 184, 28, 0.3);
}

.icon-sunset {
    background-color: var(--glorious-sunset);
    box-shadow: 0 4px 10px rgba(245, 138, 52, 0.3);
}

.icon-health-blue {
    background-color: var(--health-blue);
    box-shadow: 0 4px 10px rgba(0, 104, 179, 0.3);
}

.eval-feature-box:hover .eval-icon-circle {
    transform: scale(1.1);
}

.eval-feature-box:hover .icon-tangy {
    background-color: #e6a500;
}

.eval-feature-box:hover .icon-sunset {
    background-color: #e67722;
}

.eval-feature-box:hover .icon-health-blue {
    background-color: #005091;
}

.eval-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.eval-feature-text h3 {
    font-size: 1.3rem;
    color: var(--health-blue);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.3;
}

.eval-feature-text p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.5;
    max-width: 400px;
}

.health-eval-image {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    white-space: nowrap;
}

.floating-card i {
    margin-right: 5px;
}

.card-1 {
    top: 20%;
    left: 5%;
    animation: float-1 6s ease-in-out infinite;
}

.card-1 i {
    color: var(--blue-sky);
}

.card-2 {
    top: 10%;
    right: 10%;
    animation: float-2 7s ease-in-out infinite;
}

.card-2 i {
    color: var(--tangy-yellow);
}

.card-3 {
    bottom: 25%;
    right: 0;
    animation: float-3 5s ease-in-out infinite;
}

.card-3 i {
    color: var(--glorious-sunset);
}

@keyframes float-1 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes float-2 {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes float-3 {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(10px) translateX(-5px); }
    100% { transform: translateY(0) translateX(0); }
}

.health-eval-illustration {
    max-width: 100%;
    height: auto;
    max-height: 420px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.health-eval-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.take-assessment-btn {
    background-color: var(--blue-sky);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 104, 179, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.take-assessment-btn.tangy-btn {
    background-color: var(--tangy-yellow);
    color: #000;
    box-shadow: 0 4px 10px rgba(255, 184, 28, 0.3);
}

.take-assessment-btn:hover {
    background-color: var(--health-blue);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 104, 179, 0.3);
}

.take-assessment-btn.tangy-btn:hover {
    background-color: #e6a500;
    color: #000;
    box-shadow: 0 8px 15px rgba(255, 184, 28, 0.4);
}

.take-assessment-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.take-assessment-btn:hover i {
    transform: translateX(5px);
}

/* Media queries for health evaluation section */
@media (max-width: 992px) {
    .health-eval-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .health-evaluation-section h2 {
        font-size: 1.9rem;
    }
    
    .health-eval-wrapper {
        flex-direction: column-reverse;
    }
    
    .health-eval-content {
        padding: 0 1rem;
    }
    
    .eval-feature-box {
        max-width: 100%;
    }
    
    .health-eval-cta {
        margin-top: 1.5rem;
    }
    
    .eval-icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }
    
    .eval-feature-text h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .health-evaluation-section {
        padding: var(--spacing-lg) 0;
    }
    
    .health-evaluation-section h2 {
        font-size: 1.7rem;
    }
    
    .health-evaluation-section .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .eval-feature-text p {
        font-size: 0.95rem;
    }
    
    .take-assessment-btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
}

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

/* Research Links Styling */
.research-link {
    color: var(--health-blue);
    position: relative;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.research-link:hover {
    color: var(--glorious-sunset);
}

.research-link strong {
    font-weight: 600;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Animation Classes */
.animate {
    animation: fadeInUp 0.5s ease forwards;
}

/* Testimonial Carousel */
.testimonial-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-md) 0;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeEffect 1s;
    padding: 0 20px;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}

.testimonial-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-md);
}

.carousel-prev,
.carousel-next {
    background-color: var(--health-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--blue-sky);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--health-blue);
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Buy Now Button */
.floating-buy-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 95;
}

.btn-floating-buy {
    display: inline-block;
    background-color: var(--health-blue);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--subheading-font);
}

.btn-floating-buy:hover {
    background-color: var(--glorious-sunset);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h2 {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-actions {
        margin-top: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        transition: left var(--transition-medium);
        z-index: 900;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .features-grid, .benefits-grid, .ingredients-grid, .reviews-grid, .steps-container, .products-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* 90 For Life Section */
.ninety-for-life {
    background-color: rgba(60, 170, 223, 0.1); /* Very light blue-sky background */
    padding: var(--spacing-xl) 0;
}

.ninety-for-life .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.ninety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.ninety-info p {
    margin-bottom: var(--spacing-lg);
}

/* Enhanced text for 90 For Life section */
.highlight-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--health-blue);
    margin-bottom: 1.5rem;
}

.highlight-quote .first-line {
    font-weight: bold;
    color: var(--health-blue);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.ninety-problem-solution {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.problem-box, .solution-box {
    margin-bottom: var(--spacing-lg);
}

.problem-box h3, .solution-box h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--health-blue);
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--glorious-sunset);
    margin-bottom: var(--spacing-sm);
}

.multiple-ways-title {
    text-align: center;
    margin: var(--spacing-xl) 0 var(--spacing-lg);
    color: var(--health-blue);
    font-size: 1.75rem;
}

.ninety-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.ninety-products-grid .product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-medium);
    text-align: center;
}

.ninety-products-grid .product-card:hover {
    transform: translateY(-5px);
}

.ninety-products-grid .product-image {
    height: 200px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.ninety-products-grid .product-image img {
    max-height: 100%;
    object-fit: contain;
}

.ninety-products-grid .product-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.ninety-products-grid .product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--health-blue);
    margin: 1rem 0;
}

.product-actions {
    display: block;
    margin-top: 1rem;
    padding-top: 0.5rem;
    text-align: center;
}

.ninety-products-grid .product-name {
    font-size: 1.2rem;
    color: var(--health-blue);
    margin: 0;
}

.ninety-products-grid .product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--health-blue);
    margin: 1rem 0;
}

.flavor-text {
    font-style: italic;
    color: var(--glorious-sunset);
    display: block;
    margin-top: 4px;
}

.ninety-products-grid .product-description {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.essential-nutrients {
    margin-top: var(--spacing-xl);
}

.essential-nutrients h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--health-blue);
}

.nutrients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.nutrient-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: var(--spacing-md);
    text-align: center;
}

.nutrient-card img {
    height: 100px;
    object-fit: contain;
    margin: 0 auto var(--spacing-md);
}

.nutrient-card h4 {
    color: var(--health-blue);
    margin-bottom: var(--spacing-sm);
}

.nutrient-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Responsive styles for 90 For Life section */
@media (max-width: 992px) {
    .ninety-content {
        grid-template-columns: 1fr;
    }
    
    .ninety-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nutrients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ninety-products-grid {
        grid-template-columns: 1fr;
    }
    
    .nutrients-grid {
        grid-template-columns: 1fr;
    }
    
    .ninety-products-grid .product-actions {
        flex-direction: column;
    }
}
