/*
Theme Name: Aurex Labs
Theme URI: https://aurexlabs.com
Author: Aurex Labs Team
Author URI: https://aurexlabs.com
Description: Premium research-grade peptides theme - WORKING CART (Dynamic cart count with AJAX updates)
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurex-labs
*/

/* ================================
   CSS VARIABLES - Premium Color Scheme
   ================================ */

:root {
    /* Colors - Black & Gold Premium */
    --color-black: #000000;
    --color-gold: #C4A962;
    --color-white: #FFFFFF;
    --color-cream: #F5F3EF;
    --color-text-dark: #1A1A1A;
    --color-text-light: #666666;
    --color-border: #E5E5E5;
    
    /* Typography */
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Container */
    --container-max: 1400px;
    
    /* Transitions */
    --transition: 0.3s ease;
}

/* ================================
   RESET & BASE
   ================================ */

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

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

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--color-gold);
}

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

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

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

/* ================================
   HEADER - Premium Black
   ================================ */

.site-header {
    background-color: var(--color-black);
    color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Placeholder */
.logo-placeholder {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.logo-aurex {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

.logo-labs {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    color: var(--color-white);
    margin-top: -0.2rem;
}

.custom-logo {
    max-height: 60px;
    width: auto;
}

/* Navigation */
.main-navigation {
    flex: 1;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-logo,
.mobile-menu-footer {
    display: none;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0;
    position: relative;
}

.primary-menu a {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    display: block;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width var(--transition);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after,
.primary-menu .current_page_item a::after {
    width: 100%;
}

/* WordPress Menu Classes Fix */
.primary-menu .menu-item {
    margin: 0;
}

.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-black);
    min-width: 200px;
    padding: 0.5rem 0;
    list-style: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.primary-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.primary-menu .sub-menu li {
    margin: 0;
}

.primary-menu .sub-menu a {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    text-transform: none;
}

.primary-menu .sub-menu a::after {
    display: none;
}

.primary-menu .sub-menu a:hover {
    background: rgba(196, 169, 98, 0.1);
    color: var(--color-gold);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon {
    color: var(--color-white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    transition: var(--transition);
    position: relative;
}

.header-icon:hover {
    color: var(--color-gold);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-gold);
    color: var(--color-black);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* ================================
   MAIN CONTENT
   ================================ */

.site-main {
    min-height: 70vh;
}

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

/* ================================
   PAGE STYLES
   ================================ */

.page-header {
    background-color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-text-dark);
    margin: 0;
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

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

.page-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: var(--spacing-md) 0;
}

.page-hero-content .page-title {
    color: var(--color-white);
}

.page-content-wrapper {
    padding: var(--spacing-lg) 0;
}

.page-content {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content > * {
    margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content img {
    border-radius: 8px;
    margin: 2rem 0;
}

/* ================================
   BLOG / POSTS
   ================================ */

.blog-wrapper {
    padding: var(--spacing-lg) 0;
}

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

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-md);
}

.post-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.post-thumbnail {
    height: 250px;
    overflow: hidden;
    background-color: var(--color-cream);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.post-content {
    padding: 2rem;
}

.entry-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.entry-meta {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.entry-excerpt {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.read-more-link:hover {
    color: var(--color-gold);
}

/* Pagination */
.pagination-wrapper {
    margin-top: var(--spacing-lg);
}

.pagination {
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination .current {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition);
}

.pagination a:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.pagination .current {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* No Content */
.no-posts {
    text-align: center;
    padding: var(--spacing-xl) 2rem;
}

.no-posts-content {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   FOOTER - Premium Black
   ================================ */

.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    margin-top: var(--spacing-xl);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing-lg) 2rem var(--spacing-md);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.footer-heading {
    color: var(--color-gold);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--color-gold);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
}

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

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.legal-links a:hover {
    color: var(--color-gold);
}

.legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

.theme-credit {
    text-align: center;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none; /* Will activate mobile menu in Phase 4 */
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .container,
    .footer-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
    }
    
    .page-content {
        padding: 2rem 1.5rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
}

/* ================================
   THE SCIENCE PAGE
   ================================ */

/* Hero Section */
.science-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.science-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md);
}

.science-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.science-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-gold);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Intro Section */
.science-intro {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-white);
    scroll-margin-top: 100px;
}

.science-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Principles Section */
.science-principles {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-cream);
    scroll-margin-top: 100px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-lg);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-lg);
}

.principle-card {
    background-color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.principle-icon {
    color: var(--color-gold);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.principle-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.principle-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.principle-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.principle-statement {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Quality Assurance Section */
.science-quality {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    scroll-margin-top: 100px;
}

.quality-header {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.section-intro {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.quality-header p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-item {
    padding: 2rem;
    background-color: var(--color-cream);
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
}

.quality-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.quality-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.quality-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.quality-item ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--color-text-light);
}

.quality-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Our Standard Section */
.science-standard {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--color-white);
    scroll-margin-top: 100px;
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.bg-black { background-color: var(--color-black); }
.bg-white { background-color: var(--color-white); }
.bg-cream { background-color: var(--color-cream); }

/* ================================
   HOVER EFFECTS (Keep these - they're nice!)
   ================================ */

.principle-card,
.quality-item,
.post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover,
.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.principle-icon,
.quality-icon {
    transition: color 0.3s ease;
}

.principle-card:hover .principle-icon,
.quality-item:hover .quality-icon {
    color: var(--color-gold);
}

/* ================================
   STATS SECTION - FIXED LAYOUT
   ================================ */

.science-stats {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--color-cream) 0%, var(--color-white) 100%);
    scroll-margin-top: 100px;
}

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

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ================================
   QUALITY GRID - FIXED
   ================================ */

.quality-item {
    padding: 2.5rem;
    background-color: var(--color-white);
    border-radius: 8px;
    border: 2px solid var(--color-gold);
    border-left-width: 6px;
}

.quality-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.quality-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}

.quality-item p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* ================================
   WHY AUREX LABS PAGE
   ================================ */

.page-hero-simple {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--color-white);
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-gold);
    max-width: 800px;
    margin: 0 auto;
}

.why-intro {
    padding: var(--spacing-lg) 0;
    background: var(--color-white);
}

.why-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-features {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}

.feature-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.trust-statement {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--color-white);
}

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

.trust-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--color-white);
    font-style: italic;
    line-height: 1.4;
}

/* ================================
   CERTIFICATES PAGE
   ================================ */

.certificates-intro {
    padding: var(--spacing-lg) 0;
    background: var(--color-white);
}

.intro-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testing-process {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.process-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-number {
    font-size: 3rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}

.process-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.process-card ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--color-text-light);
}

.process-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.coa-request {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

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

.coa-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.coa-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background: var(--color-primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ================================
   TERMS & CONDITIONS PAGE
   ================================ */

.terms-content {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}

.terms-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.terms-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.terms-notice h3 {
    font-size: 1.5rem;
    color: #856404;
    margin-bottom: 1rem;
}

.terms-notice p {
    font-size: 1.0625rem;
    color: #856404;
    line-height: 1.8;
    margin: 0;
}

/* ================================
   RESPONSIVE - NEW PAGES
   ================================ */

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .features-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   LEGAL PAGES (PRIVACY, SHIPPING, REGULATORY)
   ================================ */

.legal-content {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
}

.legal-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--color-text-light);
}

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.legal-section strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

.legal-section a {
    color: var(--color-gold);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--color-text-dark);
}

/* ================================
   CONTACT PAGE
   ================================ */

.contact-content {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.form-intro {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: var(--font-secondary);
    color: var(--color-text-dark);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-notice p {
    margin: 0;
    font-size: 0.9375rem;
    color: #856404;
}

.btn-large {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.125rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-block h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-gold);
}

.info-block p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-block a {
    color: var(--color-gold);
    font-weight: 600;
}

.info-block a:hover {
    color: var(--color-text-dark);
}

.info-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 1rem !important;
}

.info-highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--color-white);
}

.info-highlight h3 {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.info-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

/* Social Links in Contact */
.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links-contact .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-cream);
    border-radius: 50%;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.social-links-contact .social-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* FAQ Section */
.contact-faq {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    text-align: center;
}

.contact-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.contact-faq .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: var(--color-cream);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

.faq-card h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.faq-card p {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 600;
}

/* Success/Error Messages */
.contact-message {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

.contact-message.success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.contact-message.error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   HOMEPAGE STYLES
   ================================ */

/* Hero Section with Video */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--color-white);
    color: var(--color-black);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 169, 98, 0.4);
}

/* Beyond Supplements Section */
.beyond-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

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

.beyond-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
}

.beyond-point {
    margin-bottom: 2.5rem;
}

.beyond-point h3 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.beyond-point p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-black);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

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

.btn-dark:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
}

.section-title-center {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Longevity Section */
.longevity-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

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

.longevity-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.longevity-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.longevity-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Standard Section */
.standard-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
}

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

.standard-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.standard-point {
    margin-bottom: 2.5rem;
}

.standard-point h3 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.standard-point p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

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

.about-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e8e4dc;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-content h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.testimonial-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background-image: url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.newsletter-overlay {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    padding: var(--spacing-xl) 0;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-white);
}

.newsletter-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--color-white);
}

.newsletter-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: border-color 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.15);
}

.btn-gold {
    padding: 1.25rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 169, 98, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .beyond-grid,
    .longevity-grid,
    .standard-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .longevity-image,
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
}

/* ================================
   MOBILE MENU STYLES - COMPLETE FIX
   Replace the mobile menu section in style.css
   ================================ */

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1003;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Prevent body scroll when menu is open */
/* Prevent body scroll - HANDLED BY JAVASCRIPT NOW */
body.menu-open {
    /* JS handles: position: fixed, top, width, and scroll restoration */
}

/* Mobile menu overlay */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1001 !important;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Ensure header stays on top */
.site-header {
    position: sticky;
    z-index: 1003;
}

/* ================================
   RESPONSIVE - MOBILE MENU
   ================================ */

@media (max-width: 768px) {
    /* Show mobile toggle button */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* BOTTOM SLIDE-UP MENU */
    .main-navigation {
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        width: 100%;
        height: 65vh;
        max-height: 600px;
        background-color: var(--color-white);
        padding: 0;
        overflow-y: auto;
        transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999 !important;
        box-shadow: 0 -5px 40px rgba(0, 0, 0, 0.3);
        display: flex !important;
        flex-direction: column;
        border-radius: 20px 20px 0 0;
    }
    
    /* Show menu when active - slide up from bottom */
    .main-navigation.active {
        bottom: 0;
    }
    
    /* Remove old ::before */
    .main-navigation::before {
        display: none;
    }
    
    /* CLOSE BUTTON (X) - Top Right */
    .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 36px;
        height: 36px;
        background: transparent;
        border: 2px solid var(--color-text-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: var(--color-text-dark);
        transform: rotate(90deg);
    }
    
    .mobile-menu-close::before,
    .mobile-menu-close::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: var(--color-text-dark);
        transition: background 0.3s ease;
    }
    
    .mobile-menu-close:hover::before,
    .mobile-menu-close:hover::after {
        background: var(--color-white);
    }
    
    .mobile-menu-close::before {
        transform: rotate(45deg);
    }
    
    .mobile-menu-close::after {
        transform: rotate(-45deg);
    }
    
    /* Hide mobile menu logo (not needed in bottom menu) */
    .mobile-menu-logo {
        display: none;
    }
    
    /* Mobile menu list styles - CENTERED, LIGHT DESIGN */
    .primary-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 4rem 2rem 2rem;
        flex: 1;
    }
    
    .primary-menu li,
    .primary-menu .menu-item {
        margin: 0;
        border-bottom: 1px solid var(--color-border);
    }
    
    .primary-menu li:last-child {
        border-bottom: none;
    }
    
    /* Mobile submenu handling */
    .primary-menu .sub-menu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        padding-left: 1.5rem;
        min-width: auto;
    }
    
    .primary-menu .menu-item-has-children.open > .sub-menu {
        display: block;
    }
    
    .primary-menu .sub-menu li {
        border-bottom: 1px solid var(--color-border);
    }
    
    .primary-menu a {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.125rem;
        color: var(--color-text-dark) !important;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        text-transform: none;
        letter-spacing: normal;
        font-weight: 400;
    }
    
    .primary-menu .sub-menu a {
        padding: 1rem 0;
        font-size: 1rem;
    }
    
    .primary-menu a:hover,
    .primary-menu a:active {
        color: var(--color-gold) !important;
    }
    
    .primary-menu a::after {
        display: none;
    }
    
    /* Mobile menu footer with social links */
    .mobile-menu-footer {
        display: block;
        padding: 2rem;
        border-top: 1px solid var(--color-border);
        background: var(--color-cream);
    }
    
    .mobile-menu-footer h4 {
        color: var(--color-text-dark);
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .mobile-social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .mobile-social-links .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--color-white);
        border: 2px solid var(--color-border);
        border-radius: 50%;
        color: var(--color-text-dark);
        transition: all 0.3s ease;
    }
    
    .mobile-social-links .social-link:hover {
        background: var(--color-gold);
        border-color: var(--color-gold);
        color: var(--color-black);
        transform: translateY(-3px);
    }
        border-radius: 50%;
        color: var(--color-white);
        transition: all 0.3s ease;
    }
    
    .mobile-social-links .social-link:hover,
    .mobile-social-links .social-link:active {
        background: var(--color-gold);
        color: var(--color-black);
        transform: translateY(-3px);
    }
    
    /* Hide search icon on mobile for cleaner header */
    .header-icons .search-toggle {
        display: none;
    }
    
    /* Ensure header icons are visible */
    .header-icons {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 1003;
    }
    
    /* Make sure header container is properly positioned */
    .header-container {
        position: relative;
        z-index: 1003;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .main-navigation {
        width: 90%;
    }
    
    .mobile-menu-logo {
        padding: 1.5rem;
    }
    
    .mobile-menu-logo .logo-aurex {
        font-size: 1.75rem;
    }
    
    .mobile-menu-logo .logo-labs {
        font-size: 1rem;
    }
    
    .primary-menu {
        padding: 1.5rem;
    }
    
    .primary-menu a {
        font-size: 1rem;
        padding: 1rem 0;
    }
    
    .mobile-menu-footer {
        padding: 1.5rem;
    }
    
    .mobile-social-links .social-link {
        width: 40px;
        height: 40px;
    }
    
    .header-container {
        padding: 1rem;
    }
    
    .header-icons {
        gap: 0.75rem;
    }
}

/* Tablet - keep some icons hidden */
@media (max-width: 1024px) and (min-width: 769px) {
    .primary-menu {
        gap: 1.5rem;
    }
    
    .primary-menu a {
        font-size: 0.875rem;
    }
}

/* Desktop - hide mobile toggle */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .main-navigation {
        display: block;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
}



/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common FAB styles */
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* WhatsApp */
.fab-whatsapp {
    background: #25D366;
}

.fab-whatsapp svg {
    width: 26px;
    height: 26px;
}

/* Scroll to top */
.fab-top {
    background: #111;
    font-size: 20px;
    display: none;
}

.fab-whatsapp i {
    font-size: 26px;
}


/* ================================
   TRANSPARENT HEADER - HOMEPAGE ONLY
   ================================ */

/* Transparent header on homepage */
.page-template-template-homepage .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
}

/* Hero section - ensure it's full height when header is absolute */
.page-template-template-homepage .hero-section {
    padding-top: 0;
}

/* Header becomes solid on scroll (optional - add JavaScript later) */
.page-template-template-homepage .site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure logo is visible on transparent header */
.page-template-template-homepage .site-header .logo-aurex,
.page-template-template-homepage .site-header .logo-labs,
.page-template-template-homepage .site-header .primary-menu a,
.page-template-template-homepage .site-header .header-icon {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Add subtle background to header on homepage for readability */
.page-template-template-homepage .site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Mobile - Keep solid header on mobile for better usability */
@media (max-width: 768px) {
    .page-template-template-homepage .site-header {
        position: sticky;
        background-color: var(--color-black);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .page-template-template-homepage .site-header::before {
        display: none;
    }
    
    .page-template-template-homepage .site-header .logo-aurex,
    .page-template-template-homepage .site-header .logo-labs,
    .page-template-template-homepage .site-header .primary-menu a,
    .page-template-template-homepage .site-header .header-icon {
        text-shadow: none;
    }
}

/* ================================
   MOBILE SLIDERS - Benefits & Testimonials
   Desktop: Grid / Mobile: Swiper Slider
   ================================ */

/* Desktop - Grid (default) */
@media (min-width: 1025px) {
    /* Keep grid on desktop */
    .benefits-swiper,
    .testimonials-swiper {
        display: grid;
    }
    
    .benefits-swiper {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }
    
    .testimonials-swiper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    
    /* Hide slider controls on desktop */
    .swiper-pagination,
    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
    
    /* No swiper-wrapper on desktop */
    .swiper-wrapper {
        display: contents;
    }
}

/* Mobile & Tablet - Slider */
@media (max-width: 1024px) {
    
    /* Swiper Container */
    .benefits-swiper,
    .testimonials-swiper {
        overflow: hidden;
        padding-bottom: 4rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Swiper Wrapper */
    .swiper-wrapper {
        display: flex;
    }
    
    /* Slides */
    .swiper-slide {
        width: auto;
        height: auto;
    }
    
    /* Pagination (dots) */
    .swiper-pagination {
        bottom: 0 !important;
        position: relative;
        margin-top: 2rem;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: var(--color-text-light);
        opacity: 0.3;
        transition: all 0.3s ease;
    }
    
    .swiper-pagination-bullet-active {
        background: var(--color-gold);
        opacity: 1;
        width: 30px;
        border-radius: 5px;
    }
    
    /* Navigation Arrows */
    .swiper-button-prev,
    .swiper-button-next {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        color: var(--color-white);
        transition: all 0.3s ease;
    }
    
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: var(--color-gold);
        color: var(--color-black);
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 20px;
        font-weight: bold;
    }
    
    /* Hide arrows on phones, show on tablets */
    @media (max-width: 640px) {
        .swiper-button-prev,
        .swiper-button-next {
            display: none;
        }
    }
    
    /* Benefits Cards in Slider */
    .benefits-swiper .benefit-card {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    /* Testimonial Cards in Slider */
    .testimonials-swiper .testimonial-card {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    /* Ensure cards have consistent height */
    .swiper-slide .benefit-card,
    .swiper-slide .testimonial-card {
        height: 100%;
    }
}

/* Phone specific adjustments */
@media (max-width: 640px) {
    .benefits-swiper,
    .testimonials-swiper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

/* ================================
   SWIPER SLIDER FIXES - GOLD THEME
   Override default blue styling
   ================================ */

/* Navigation Arrows - GOLD THEME (Not Blue!) */
.benefits-swiper .swiper-button-prev,
.benefits-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    background: var(--color-gold) !important;
    border-radius: 50% !important;
    color: var(--color-black) !important;
    box-shadow: 0 4px 15px rgba(196, 169, 98, 0.4) !important;
    transition: all 0.3s ease !important;
}

.benefits-swiper .swiper-button-prev:hover,
.benefits-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    background: var(--color-black) !important;
    color: var(--color-gold) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4) !important;
}

.benefits-swiper .swiper-button-prev::after,
.benefits-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
    font-size: 22px !important;
    font-weight: 900 !important;
}

/* Pagination Dots - GOLD THEME (Not Blue!) */
.benefits-pagination .swiper-pagination-bullet,
.testimonials-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: var(--color-text-light) !important;
    opacity: 0.3 !important;
    margin: 0 6px !important;
    transition: all 0.4s ease !important;
}

.benefits-pagination .swiper-pagination-bullet-active,
.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold) !important;
    opacity: 1 !important;
    width: 40px !important;
    border-radius: 6px !important;
    transform: scale(1.2) !important;
}

/* Pagination Container Spacing */
.benefits-pagination,
.testimonials-pagination {
    position: relative !important;
    margin-top: 3rem !important;
    bottom: 0 !important;
}

/* MOBILE MENU - ENSURE WHITE BACKGROUND */
@media (max-width: 768px) {
    .main-navigation {
        background-color: #FFFFFF !important;
        background: #FFFFFF !important;
    }
    
    /* Lighter overlay - don't block menu */
    body.menu-open::before {
        background: rgba(0, 0, 0, 0.4) !important;
    }
    
    /* Ensure menu is above overlay */
    .main-navigation {
        z-index: 9999 !important;
    }
}

/* Hide arrows on phones, show on tablets */
@media (max-width: 640px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
    
    /* Make dots larger on phones */
    .benefits-pagination .swiper-pagination-bullet,
    .testimonials-pagination .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
    }
    
    .benefits-pagination .swiper-pagination-bullet-active,
    .testimonials-pagination .swiper-pagination-bullet-active {
        width: 30px !important;
    }
}

/* ================================
   CLICK FIX - Ensure menu is clickable
   ================================ */

/* Menu should receive all clicks - create stacking context */
@media (max-width: 768px) {
    .main-navigation {
        pointer-events: auto !important;
        touch-action: auto !important;
        isolation: isolate;
    }
    
    /* All children should be clickable */
    .main-navigation * {
        pointer-events: auto !important;
    }
}

/* Overlay is clickable to close menu */
body.menu-open::before {
    pointer-events: auto !important;
    cursor: pointer;
}
/* ================================
   MOBILE MENU - REBUILT FROM SCRATCH
   Simple, clean, guaranteed to work
   ================================ */

@media (max-width: 768px) {
    
    /* Show hamburger button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 10001;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 2px;
        background-color: var(--color-white);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Menu container - Hidden by default */
    .main-navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 70vh;
        background: #FFFFFF;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 10000;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -5px 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        padding: 2rem 0;
    }
    
    /* Menu open state */
    .main-navigation.menu-active {
        transform: translateY(0);
    }
    
    /* Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 9998;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Prevent body scroll when menu open - HANDLED BY JAVASCRIPT */
    body.menu-open {
        /* JS sets position: fixed and manages scroll position */
    }
    
    /* Menu items */
    .primary-menu {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
        padding: 0 2rem;
    }
    
    .primary-menu li {
        margin: 0;
        border-bottom: 1px solid #E0E0E0;
    }
    
    .primary-menu li:last-child {
        border-bottom: none;
    }
    
    .primary-menu a {
        display: block;
        padding: 1.2rem 0;
        color: #1A1A1A;
        text-decoration: none;
        font-size: 1.125rem;
        transition: color 0.3s ease;
    }
    
    .primary-menu a:hover {
        color: #C4A962;
    }
    
    /* Hide desktop menu elements */
    .main-navigation .sub-menu {
        display: none;
    }
}

/* Desktop - no changes */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ================================
   FIX SCROLL JUMP ISSUE
   JavaScript handles scroll locking now
   ================================ */

@media (max-width: 768px) {
    /* JS handles scroll lock via inline styles */
    body.menu-open {
        /* overflow and position are set by JS */
    }
}
/* ================================
   FIX OVERLAY BLOCKING MENU
   ================================ */

@media (max-width: 768px) {
    
    /* Menu MUST be above overlay */
    .main-navigation {
        z-index: 10000 !important;
        pointer-events: auto !important;
    }
    
    /* All menu children should be clickable */
    .main-navigation * {
        pointer-events: auto !important;
    }
    
    /* Overlay below menu - clickable to close */
    body.menu-open::before {
        z-index: 9998 !important;
        pointer-events: auto !important;
    }
    
    /* Hamburger button above everything */
    .mobile-menu-toggle {
        z-index: 10001 !important;
        pointer-events: auto !important;
    }
    
}


/* ================================
   MOBILE MENU - COMPLETE OVERLAY FIX
   Add this to the END of your style.css
   ================================ */

@media (max-width: 768px) {
    
    /* ===================================
       FIX 1: OVERLAY MUST BE BELOW MENU
       =================================== */
    
    /* Overlay - LOWER z-index, clickable */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999 !important; /* BELOW menu */
        pointer-events: auto;
        animation: fadeIn 0.3s ease;
    }
    
    /* ===================================
       FIX 2: MENU MUST BE ABOVE OVERLAY
       =================================== */
    
    /* Menu container - HIGHER z-index */
    .main-navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 70vh;
        background: #FFFFFF !important;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 9999 !important; /* ABOVE overlay */
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -5px 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        padding: 2rem 0;
        pointer-events: auto; /* Menu is clickable */
    }
    
    /* Menu open state */
    .main-navigation.menu-active {
        transform: translateY(0);
    }
    
    /* ALL menu children must be clickable */
    .main-navigation * {
        pointer-events: auto !important;
    }
    
    /* ===================================
       FIX 3: HAMBURGER BUTTON
       =================================== */
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 10000 !important; /* ABOVE everything */
        pointer-events: auto !important;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 2px;
        background-color: var(--color-white);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* ===================================
       FIX 4: CLOSE BUTTON (X)
       =================================== */
    
    .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 36px;
        height: 36px;
        background: transparent;
        border: 2px solid var(--color-text-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        pointer-events: auto !important;
    }
    
    .mobile-menu-close:hover {
        background: var(--color-text-dark);
        transform: rotate(90deg);
    }
    
    .mobile-menu-close::before,
    .mobile-menu-close::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: var(--color-text-dark);
        transition: background 0.3s ease;
    }
    
    .mobile-menu-close:hover::before,
    .mobile-menu-close:hover::after {
        background: var(--color-white);
    }
    
    .mobile-menu-close::before {
        transform: rotate(45deg);
    }
    
    .mobile-menu-close::after {
        transform: rotate(-45deg);
    }
    
    /* ===================================
       FIX 5: MENU ITEMS
       =================================== */
    
    .primary-menu {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
        padding: 4rem 2rem 2rem;
        pointer-events: auto !important;
    }
    
    .primary-menu li {
        margin: 0;
        border-bottom: 1px solid #E0E0E0;
        pointer-events: auto !important;
    }
    
    .primary-menu li:last-child {
        border-bottom: none;
    }
    
    .primary-menu a {
        display: block;
        padding: 1.2rem 0;
        color: #1A1A1A !important;
        text-decoration: none;
        font-size: 1.125rem;
        transition: color 0.3s ease;
        pointer-events: auto !important;
        cursor: pointer;
    }
    
    .primary-menu a:hover {
        color: #C4A962 !important;
    }
    
    /* ===================================
       FIX 6: MOBILE MENU FOOTER
       =================================== */
    
    .mobile-menu-footer {
        display: block;
        padding: 2rem;
        border-top: 1px solid var(--color-border);
        background: var(--color-cream);
        pointer-events: auto !important;
    }
    
    .mobile-menu-footer h4 {
        color: var(--color-text-dark);
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .mobile-social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        pointer-events: auto !important;
    }
    
    .mobile-social-links .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--color-white);
        border: 2px solid var(--color-border);
        border-radius: 50%;
        color: var(--color-text-dark);
        transition: all 0.3s ease;
        pointer-events: auto !important;
        cursor: pointer;
    }
    
    .mobile-social-links .social-link:hover {
        background: var(--color-gold);
        border-color: var(--color-gold);
        color: var(--color-black);
        transform: translateY(-3px);
    }
    
    /* ===================================
       FIX 7: HEADER POSITIONING
       =================================== */
    
    .site-header {
        position: sticky;
        z-index: 1000 !important;
    }
    
    .header-container {
        position: relative;
        z-index: 1000;
    }
    
    .header-icons {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 1000;
    }
    
    /* ===================================
       FIX 8: PREVENT BODY SCROLL
       =================================== */
    
    body.menu-open {
        /* JS handles this - don't add overflow: hidden here */
    }
    
    /* ===================================
       FIX 9: HIDE DESKTOP ELEMENTS
       =================================== */
    
    .main-navigation .sub-menu {
        display: none;
    }
    
    /* ===================================
       ANIMATION
       =================================== */
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

/* Desktop - hide mobile toggle */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-close {
        display: none !important;
    }
    
    .mobile-menu-footer {
        display: none !important;
    }
}



/* ================================
   WOOCOMMERCE SHOP PAGE
   Aurex Labs Style
   Add to style.css
   ================================ */

/* Shop Container */
.woocommerce-shop-page {
    padding: var(--spacing-lg) 0;
    background: var(--color-cream);
}

.shop-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   SHOP HEADER - Results & Sorting
   ================================ */

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.results-count {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    font-weight: 400;
}

/* Sorting Dropdown */
.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-secondary);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color 0.3s ease;
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* ================================
   PRODUCT GRID - 3 Columns
   ================================ */

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ================================
   PRODUCT CARD
   ================================ */

.product-card {
    position: relative;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ================================
   PRODUCT IMAGE
   ================================ */

.product-image {
    position: relative;
    background: var(--color-cream);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 12px;
}

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

/* ================================
   QUICK ADD BUTTON (Simple + Icon - Bio Atelier Style)
   ================================ */

.quick-add-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--color-black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.quick-add-btn svg {
    color: var(--color-white);
}

.quick-add-btn:hover {
    background: var(--color-gold);
    transform: scale(1.1);
}

.quick-add-btn:hover svg {
    color: var(--color-black);
}

/* ================================
   PRODUCT INFO
   ================================ */

.product-info {
    padding: 1rem 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-white);
}

/* Product Title */
.product-title {
    font-size: 0.9375rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    text-transform: none;
}

.product-title a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title a:hover {
    color: var(--color-gold);
}

/* Product Price */
.product-price {
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    font-weight: 400;
}

.product-price .price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-price .woocommerce-Price-amount {
    font-weight: 500;
}

/* Sale Price */
.product-price del {
    color: var(--color-text-light);
    font-size: 0.875rem;
    opacity: 0.6;
}

.product-price ins {
    text-decoration: none;
    color: var(--color-gold);
}

/* ================================
   TRUST BADGES SECTION
   ================================ */

.shop-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: var(--container-max);
    margin: var(--spacing-xl) auto 0;
    padding: var(--spacing-lg) 2rem 0;
    border-top: 1px solid var(--color-border);
}

.trust-badge {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
}

.trust-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--color-text-dark);
}

.trust-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* ================================
   PAGINATION
   ================================ */

.woocommerce-pagination {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-pagination li {
    margin: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-pagination a:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.woocommerce-pagination span.current {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* ================================
   RESPONSIVE - TABLET
   ================================ */

@media (max-width: 1024px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .shop-trust-badges {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ================================
   RESPONSIVE - MOBILE
   ================================ */

@media (max-width: 768px) {
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .shop-sorting {
        width: 100%;
    }
    
    .woocommerce-ordering select {
        width: 100%;
    }
    
    .products {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image {
        aspect-ratio: 4 / 3;
    }
    
    .quick-view-btn {
        opacity: 1;
        transform: translateY(0);
    }
    
    .shop-trust-badges {
        padding: var(--spacing-md) 1rem 0;
    }
    
    .trust-badge {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ================================
   NO PRODUCTS FOUND
   ================================ */

.woocommerce-info,
.woocommerce-no-products-found {
    text-align: center;
    padding: var(--spacing-xl) 2rem;
    background: var(--color-white);
    border-radius: 8px;
    margin: 2rem 0;
}

.woocommerce-info::before,
.woocommerce-no-products-found::before {
    display: none;
}

/* ================================
   SALE BADGE
   ================================ */

.onsale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

/* ================================
   OUT OF STOCK OVERLAY
   ================================ */

.product-card.outofstock .product-image::after {
    content: 'OUT OF STOCK';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
}


/* ================================
   SINGLE PRODUCT PAGE
   Aurex Labs Style
   Add to style.css
   ================================ */

.single-product-page {
    background: var(--color-white);
}

/* ================================
   PRODUCT MAIN SECTION
   ================================ */

.product-main-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================================
   PRODUCT IMAGES (LEFT)
   ================================ */

.product-images {
    position: sticky;
    top: 100px;
}

.woocommerce-product-gallery {
    position: relative;
}

.woocommerce-product-gallery__wrapper {
    margin: 0;
}

.woocommerce-product-gallery__image {
    margin: 0 0 1rem 0;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    background: var(--color-white);
}

/* Gallery Thumbnails */
.flex-control-thumbs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.flex-control-thumbs li {
    flex: 1;
    margin: 0;
}

.flex-control-thumbs img {
    width: 100%;
    height: auto;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.flex-control-thumbs li.flex-active img,
.flex-control-thumbs img:hover {
    opacity: 1;
    border-color: var(--color-gold);
}

/* Sale Badge */
.onsale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

/* ================================
   PRODUCT SUMMARY (RIGHT)
   ================================ */

.product-summary {
    padding: 2rem 0;
}

.product-summary-inner {
    max-width: 600px;
}

/* Product Title */
.product-title-single {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    color: var(--color-text-dark);
    line-height: 1.2;
}

/* Product Price */
.product-price-single {
    margin-bottom: 2rem;
}

.product-price-single .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.product-price-single del {
    color: var(--color-text-light);
    font-size: 1.25rem;
    opacity: 0.6;
    margin-right: 1rem;
}

.product-price-single ins {
    text-decoration: none;
    color: var(--color-gold);
}

/* Short Description */
.product-short-description {
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.product-short-description p {
    margin-bottom: 1rem;
}

/* ================================
   ADD TO CART SECTION
   ================================ */

.product-add-to-cart {
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Quantity Input */
.quantity {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}

.quantity label {
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quantity .qty {
    width: 80px;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-white);
    font-family: var(--font-secondary);
}

.quantity .qty:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* Add to Cart Button */
.single_add_to_cart_button {
    width: 100%;
    padding: 1.25rem 3rem;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.single_add_to_cart_button:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 169, 98, 0.3);
}

.single_add_to_cart_button:disabled {
    background: var(--color-border);
    cursor: not-allowed;
    transform: none;
}

/* ================================
   PRODUCT META
   ================================ */

.product-meta-info {
    margin-bottom: 2rem;
}

.product-meta-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.meta-label {
    font-weight: 600;
    color: var(--color-text-dark);
}

.meta-value {
    color: var(--color-text-light);
}

.meta-value a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-value a:hover {
    color: var(--color-gold);
}

/* ================================
   RESEARCH NOTICE
   ================================ */

.research-notice {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.research-notice svg {
    flex-shrink: 0;
    color: #856404;
    margin-top: 0.25rem;
}

.research-notice p {
    font-size: 0.9375rem;
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* ================================
   BENEFITS SECTION
   ================================ */

.product-benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

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

.benefit-card-single {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: var(--color-white);
}

.benefit-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.benefit-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* ================================
   BACKED BY SCIENCE SECTION
   ================================ */

.product-science-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background-image: url('../images/science-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.science-overlay {
    background: rgba(0, 0, 0, 0.8);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--color-white);
}

.science-overlay h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--color-white);
    letter-spacing: 0.1em;
}

.science-subtitle {
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.science-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.product-testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
}

.section-title-testimonials {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.testimonials-grid-single {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.testimonial-card-single {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card-single .testimonial-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testimonial-card-single .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card-single .testimonial-content {
    padding: 2rem;
}

.testimonial-card-single h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.testimonial-card-single p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ================================
   PRODUCT TABS
   ================================ */

.product-tabs-section {
    padding: var(--spacing-lg) 0;
    background: var(--color-white);
}

.woocommerce-tabs {
    margin-top: 2rem;
}

.woocommerce-tabs .tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0 0 3rem 0;
    padding: 0;
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-tabs .tabs li {
    margin: 0;
}

.woocommerce-tabs .tabs li a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
    color: var(--color-text-dark);
    border-bottom-color: var(--color-gold);
}

.woocommerce-tabs .panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* ================================
   RELATED PRODUCTS
   ================================ */

.related-products-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-cream);
}

.section-title-related {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-related em {
    font-style: italic;
    color: var(--color-gold);
}

.related .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ================================
   RESPONSIVE - TABLET & MOBILE
   ================================ */

@media (max-width: 768px) {
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .benefits-grid-single {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid-single {
        grid-template-columns: 1fr;
    }
}

/* ================================
   RESPONSIVE - MOBILE ONLY
   ================================ */

@media (max-width: 768px) {
    .product-main-section {
        padding: var(--spacing-md) 0;
    }
    
    .product-title-single {
        font-size: 1.75rem;
    }
    
    .product-price-single .price {
        font-size: 1.25rem;
    }
    
    .quantity {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .quantity .qty {
        width: 100%;
    }
    
    .testimonials-grid-single {
        grid-template-columns: 1fr;
    }
    
    .related .products {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-tabs .tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .woocommerce-tabs .tabs li a {
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
    }
}


/* ================================
   SHOPPING CART PAGE
   Bio Atelier / Aurex Labs Style
   Add to style.css
   ================================ */

.cart-page-wrapper {
    padding: var(--spacing-lg) 0;
    background: var(--color-cream);
    min-height: 80vh;
}

/* ================================
   CART HEADER
   ================================ */

.cart-page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.cart-page-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text-dark);
    margin: 0;
}

/* ================================
   CART LAYOUT - 2 COLUMNS
   ================================ */

.cart-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* ================================
   CART ITEMS SECTION (LEFT)
   ================================ */

.cart-items-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ================================
   CART ITEM CARD
   ================================ */

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Product Image */
.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-cream);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Details */
.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.cart-item-name a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-name a:hover {
    color: var(--color-gold);
}

/* Subscription Info */
.cart-item-meta {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.subscription-info {
    margin: 0.5rem 0 0 0;
}

.subscription-title {
    font-weight: 600;
    color: var(--color-text-dark);
}

.subscription-frequency {
    color: var(--color-text-light);
}

/* Quantity Selector */
.cart-item-quantity {
    margin-top: 1rem;
}

.quantity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.5rem;
    background: var(--color-white);
}

.quantity button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-dark);
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.quantity button:hover {
    color: var(--color-gold);
}

.quantity input[type="number"] {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    background: transparent;
    -moz-appearance: textfield;
}

.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input[type="number"]:focus {
    outline: none;
}

/* Product Price */
.cart-item-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Remove Button */
.cart-item-remove {
    display: flex;
    align-items: center;
}

.remove-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-light);
}

.remove-item:hover {
    background: #fee;
    border-color: #f00;
    color: #f00;
}

/* ================================
   CART TOTALS SECTION (RIGHT)
   ================================ */

.cart-totals-section {
    position: sticky;
    top: 100px;
}

.cart-totals-sticky {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Special Instructions */
.cart-special-notes {
    margin-bottom: 1.5rem;
}

.special-notes-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    text-align: left;
}

.special-notes-toggle:hover {
    border-color: var(--color-gold);
}

.special-notes-toggle svg {
    flex-shrink: 0;
}

.special-notes-textarea {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.9375rem;
    font-family: var(--font-secondary);
    resize: vertical;
    min-height: 100px;
}

.special-notes-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* Shipping Estimate */
.shipping-estimate-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    text-align: left;
}

.shipping-estimate-toggle:hover {
    border-color: var(--color-gold);
}

.shipping-estimate-toggle svg {
    flex-shrink: 0;
}

/* Divider */
.cart-totals-divider {
    height: 1px;
    background: var(--color-border);
    margin: 1.5rem 0;
}

/* Subtotal */
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.subtotal-label {
    color: var(--color-text-light);
}

.subtotal-amount {
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Total */
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.total-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.total-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

/* Terms Checkbox */
.cart-terms {
    margin-bottom: 1.5rem;
}

.terms-checkbox {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
    cursor: pointer;
}

.terms-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

/* Checkout Button */
.cart-checkout-button {
    margin-bottom: 1rem;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-checkout:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 169, 98, 0.3);
}

.checkout-price {
    font-weight: 700;
}

/* Taxes Notice */
.cart-taxes-notice {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0 0 1.5rem 0;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.payment-icons img {
    height: 24px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

/* ================================
   EMPTY CART
   ================================ */

.woocommerce-info,
.cart-empty {
    text-align: center;
    padding: var(--spacing-xl) 2rem;
    background: var(--color-white);
    border-radius: 8px;
    margin: 2rem 0;
}

.woocommerce-info::before,
.cart-empty::before {
    display: none;
}

.return-to-shop {
    margin-top: 2rem;
}

.return-to-shop .button {
    padding: 1rem 2rem;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.return-to-shop .button:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ================================
   RESPONSIVE - TABLET
   ================================ */

@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cart-totals-section {
        position: static;
    }
}

/* ================================
   RESPONSIVE - MOBILE
   ================================ */

@media (max-width: 768px) {
    .cart-page-wrapper {
        padding: var(--spacing-md) 0;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-price {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        text-align: right;
    }
    
    .cart-item-details {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .cart-item-quantity {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .cart-totals-sticky {
        padding: 1.5rem;
    }
    
    .btn-checkout {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ================================
   BREADCRUMBS - PROPER STYLING
   ================================ */

.woocommerce-breadcrumb {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.woocommerce-breadcrumb a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--color-gold);
}

/* Breadcrumb separator */
.woocommerce-breadcrumb::before {
    content: none;
}

/* Clean up WooCommerce default breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Style the current page in breadcrumb */
.woocommerce-breadcrumb span {
    color: var(--color-text-dark);
    font-weight: 500;
}

/* Breadcrumb separator styling */
.breadcrumb-separator {
    color: var(--color-text-light);
    margin: 0 0.5rem;
    font-weight: 300;
}

/* Shop page top spacing */
.woocommerce-shop-page .shop-container {
    padding-top: 2rem;
}

/* Better product count styling */
.shop-results {
    display: flex;
    align-items: center;
}

.results-count {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================
   FIX DUPLICATE BREADCRUMBS
   ================================ */

/* Hide default WooCommerce breadcrumb hook output on shop page */
.woocommerce-shop-page .woocommerce-breadcrumb:first-child {
    /* Breadcrumbs are now handled by WooCommerce hooks properly */
}

/* Ensure only one breadcrumb shows */
.woocommerce-breadcrumb + .woocommerce-breadcrumb {
    display: none !important;
}

/* Single product page breadcrumb spacing */
.single-product-page .woocommerce-breadcrumb {
    max-width: var(--container-max);
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem 0;
}

/* Shop page breadcrumb spacing */
.woocommerce-shop-page .woocommerce-breadcrumb {
    max-width: var(--container-max);
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem 0;
}

/* ================================
   DESCRIPTION ACCORDION (RIGHT SIDE - BIO ATELIER STYLE)
   ================================ */

.product-description-accordion {
    margin-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.description-item {
    border-bottom: 1px solid var(--color-border);
}

.description-item summary {
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.description-item summary::-webkit-details-marker {
    display: none;
}

.description-item summary::after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.description-item[open] summary::after {
    content: '−';
}

.description-content {
    padding: 0 0 1.5rem 0;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.description-content p {
    margin: 0 0 1rem 0;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* Hide default WooCommerce tabs since we have accordion */
.woocommerce-tabs {
    display: none !important;
}

/* ================================
   RELATED PRODUCTS STYLING
   ================================ */

.related-products-section .related.products > h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-dark);
}

.related-products-section .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .related-products-section .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .related-products-section .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-products-section .products {
        grid-template-columns: 1fr;
    }
}

/* ================================
   REMOVE BREADCRUMBS COMPLETELY
   ================================ */

.woocommerce-breadcrumb {
    display: none !important;
}

/* ================================
   FIX RELATED PRODUCTS - USE SHOP CARD STYLE
   ================================ */

.related.products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
}

.related.products .product {
    position: relative;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.related.products .product:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Product Image */
.related.products .product .woocommerce-loop-product__link {
    display: block;
}

.related.products .product .attachment-woocommerce_thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: var(--color-cream);
}

/* Quick Add Button */
.related.products .product .quick-add-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--color-black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.related.products .product .quick-add-btn svg {
    color: var(--color-white);
}

.related.products .product .quick-add-btn:hover {
    background: var(--color-gold);
    transform: scale(1.1);
}

/* Product Title */
.related.products .product .woocommerce-loop-product__title {
    font-size: 0.9375rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    padding: 1rem 1rem 0;
    line-height: 1.4;
    text-transform: none;
}

.related.products .product .woocommerce-loop-product__title:hover {
    color: var(--color-gold);
}

/* Product Price */
.related.products .product .price {
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    font-weight: 500;
    padding: 0 1rem 1.25rem;
}

.related.products .product .price del {
    color: var(--color-text-light);
    opacity: 0.6;
    margin-right: 0.5rem;
}

/* Hide add to cart button - we use + icon */
.related.products .product .button {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .related.products .products {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .related.products .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .related.products .products {
        grid-template-columns: 1fr;
    }
}

/* Related Products Section Spacing */
.related-products-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.related-products-section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Related Products Heading */
.related.products > h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: left;
    margin: 0 0 2rem 0;
    color: var(--color-text-dark);
}

.related.products > h2 em {
    font-style: italic;
    color: var(--color-gold);
}
/* =============================================
   COMPLETE BIO ATELIER SINGLE PRODUCT STYLING
   ============================================= */

/* =============================================
   SECTION 2: BENEFITS GRID
   ============================================= */

.product-benefits-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem 0;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
}

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

.benefit-card {
    position: relative;
    min-height: 250px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.benefit-content {
    padding: 2rem;
    color: var(--color-white);
    width: 100%;
    z-index: 2;
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--color-white);
}

.benefit-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   SECTION 3: BACKED BY SCIENCE
   ============================================= */

.product-science-section {
    position: relative;
    padding: 6rem 0;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/images/science-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    text-align: center;
}

.science-overlay {
    position: relative;
    z-index: 2;
}

.product-science-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.science-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    color: var(--color-white);
}

.science-description {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

/* =============================================
   SECTION 4: TESTIMONIALS
   ============================================= */

.product-testimonials-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 0.5rem 0;
    color: var(--color-text-dark);
}

.testimonials-subtitle {
    font-size: 1rem;
    text-align: center;
    margin: 0 0 3rem 0;
    color: var(--color-text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.testimonial-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
}

.testimonial-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* =============================================
   RESEARCH NOTICE BOX STYLING
   ============================================= */

.research-notice-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #FFF9E6;
    border: 1px solid #FFD966;
    border-radius: 6px;
    margin-top: 2rem;
}

.research-notice-box svg {
    flex-shrink: 0;
    color: #F4B400;
    margin-top: 0.125rem;
}

.research-notice-box p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-text-dark);
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */

@media (max-width: 768px) {
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .benefit-card {
        min-height: 200px;
    }
    
    .benefit-content {
        padding: 1.5rem;
    }
    
    .benefit-content h3 {
        font-size: 1.25rem;
    }
    
    .product-science-section {
        padding: 4rem 0;
    }
    
    .product-science-section h2 {
        font-size: 1.75rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   WORKING CART ICON STYLING
   ============================================= */

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* Hide count when zero */
.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}

/* Animation when cart is updated */
@keyframes cartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.cart-icon.cart-updated .cart-count {
    animation: cartPulse 0.5s ease;
}

.cart-icon:hover .cart-count {
    transform: scale(1.1);
    background: var(--color-white);
    color: var(--color-gold);
}

/* ================================
   SHOP PRODUCT IMAGES - SHOW FULL PRODUCT (NO CROP)
   ================================ */

.product-image img,
.product-card img,
.product-card .product-image img,
.products li.product img,
.woocommerce ul.products li.product img,
.woocommerce-loop-product__link img,
img.wp-post-image,
img.attachment-woocommerce_thumbnail,
.product-image .wp-post-image,
.product-image .attachment-woocommerce_thumbnail {
    object-fit: contain !important;
    object-position: center center !important;
    background: var(--color-cream);
    padding: 10px;
}

/* ================================
   TESTIMONIALS - DESKTOP SLIDER (2 visible at a time)
   ================================ */

@media (min-width: 1025px) {
    .testimonials-swiper .swiper-wrapper {
        display: flex !important;
        grid-template-columns: unset !important;
        transform: unset;
    }
    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        display: flex !important;
    }
}

/* ================================
   BENEFITS GRID - DYNAMIC CARD COUNTS
   ================================ */

/* 1 card - centred full width */
.benefits-grid.benefits-count-1 {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

/* 2 cards */
.benefits-grid.benefits-count-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* 3 cards */
.benefits-grid.benefits-count-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 4 cards */
.benefits-grid.benefits-count-4 {
    grid-template-columns: repeat(2, 1fr);
}

/* 5 cards - 3 on top, 2 centred on bottom */
.benefits-grid.benefits-count-5 {
    grid-template-columns: repeat(3, 1fr);
}
.benefits-grid.benefits-count-5 .benefit-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: 50%;
}
.benefits-grid.benefits-count-5 .benefit-card:nth-child(5) {
    grid-column: 2 / 3;
}

/* 6 cards - 2 columns */
.benefits-grid.benefits-count-6 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .benefits-grid.benefits-count-1,
    .benefits-grid.benefits-count-2,
    .benefits-grid.benefits-count-3,
    .benefits-grid.benefits-count-4,
    .benefits-grid.benefits-count-5,
    .benefits-grid.benefits-count-6 {
        grid-template-columns: 1fr;
    }
    .benefits-grid.benefits-count-5 .benefit-card:nth-child(4),
    .benefits-grid.benefits-count-5 .benefit-card:nth-child(5) {
        grid-column: auto;
        margin-left: 0;
    }
}