/**
 * Cugino's Premium Theme - Main Styles
 * A luxury one-product ecommerce experience
 */

/* =========================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================= */
:root {
    /* Colors - Deep Black & Warm Gold (matching logo) */
    --color-black: #000000;
    --color-black-deep: #0B0B0B;
    --color-black-soft: #0F0F0F;
    --color-black-medium: #1A1A1A;
    --color-black-light: #252525;
    
    --color-gold: #E9A84A;
    --color-gold-light: #F2BE6A;
    --color-gold-dark: #D4923A;
    --color-gold-muted: #C08A42;
    
    --color-white: #FFFFFF;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #D4D4D4;
    --color-gray-400: #A3A3A3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    
    /* Typography */
    --font-heading: 'Playfair Display', 'Cinzel', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Layout */
    --container-max: 1400px;
    --container-padding: 2rem;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 0 30px rgba(233, 168, 74, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-gray-300);
    background-color: var(--color-black-deep);
    overflow-x: hidden;
}

body.cuginos-dark-theme {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-deep) 100%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-black-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-700);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-muted);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: 1em;
}

.title-accent {
    color: var(--color-gold);
}

/* =========================================
   LAYOUT
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.site-content {
    min-height: 100vh;
}

/* Section Styles */
section {
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    max-width: 600px;
}

.section-header.centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   PRELOADER
   ========================================= */
.cuginos-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cuginos-preloader.loaded,
.cuginos-preloader.force-hide {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo .logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-gold);
}

.preloader-logo-img {
    height: 80px;
    width: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.preloader-line {
    width: 100px;
    height: 2px;
    background: var(--color-gray-800);
    margin: var(--space-lg) auto 0;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    animation: preloaderLine 1.5s ease-in-out infinite;
}

@keyframes preloaderLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-base);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.site-header.scrolled {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled::before {
    opacity: 0;
}

.header-inner {
    position: relative;
    height: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Logo */
.site-branding .custom-logo-link {
    display: flex;
    align-items: center;
}

.site-branding .site-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
}

.site-branding .custom-logo-link:hover .site-logo {
    filter: brightness(1.2);
}

.site-branding .logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    transition: var(--transition-base);
}

.site-branding a:hover .logo-text {
    text-shadow: 0 0 20px rgba(233, 168, 74, 0.5);
}

/* Navigation */
.main-navigation {
    display: none;
}

@media (min-width: 992px) {
    .main-navigation {
        display: block;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-menu li a {
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-300);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-base);
}

.nav-menu li a:hover {
    color: var(--color-white);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-white);
    transition: var(--transition-base);
}

.cart-link:hover {
    color: var(--color-gold);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: inline-flex;
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-sm);
        font-weight: 600;
        letter-spacing: 0.05em;
        border-radius: var(--radius-sm);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-base);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-inner {
    padding: var(--space-3xl) var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-nav-menu li a {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    color: var(--color-white);
    display: block;
    padding: var(--space-sm);
}

.mobile-cta {
    margin-top: var(--space-xl);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    border: none;
    padding: 0.875rem 1.75rem;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-gold:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gray-600);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-base);
}

.btn-arrow {
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(233, 168, 74, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(233, 168, 74, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--color-black) 0%, var(--color-black-deep) 100%);
}

.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
    justify-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
        justify-items: start;
    }
}

/* Hero Content */
.hero-content {
    text-align: center;
}

@media (max-width: 991px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(233, 168, 74, 0.1);
    border: 1px solid rgba(233, 168, 74, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.badge-icon {
    font-size: var(--font-size-xs);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.hero-title .title-line {
    display: block;
}

.hero-title .title-accent {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    max-width: 500px;
    margin-bottom: var(--space-2xl);
}

@media (min-width: 992px) {
    .hero-subtitle {
        margin-left: 0;
        margin-right: auto;
    }
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

@media (min-width: 992px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-trust {
        justify-content: flex-start;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.trust-item svg {
    color: var(--color-gold-muted);
}

/* Hero Product */
.hero-product {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 991px) {
    .hero-product {
        justify-content: center;
        width: 100%;
    }
    
    .product-image-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .product-image {
        display: flex;
        justify-content: center;
    }
    
    .hero-product-img {
        margin: 0 auto;
    }
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 250px;
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 168, 74, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.product-image {
    position: relative;
    z-index: 1;
}

/* Hero Product Image */
.hero-product-img {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-slow);
}

.hero-product:hover .hero-product-img {
    transform: scale(1.05) translateY(-3px);
}

@media (min-width: 992px) {
    .hero-product-img {
        max-width: 125px;
    }
}

@media (min-width: 1200px) {
    .hero-product-img {
        max-width: 150px;
    }
}

.product-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
    filter: blur(10px);
}

/* Product Placeholder (for demo) */
.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl);
}

.product-jar {
    position: relative;
    width: 200px;
}

.jar-body {
    width: 200px;
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 20px 20px 30px 30px;
    position: relative;
    box-shadow: 
        inset 0 2px 10px rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jar-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
}

.jar-label {
    text-align: center;
    padding: var(--space-md);
}

.jar-brand {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.jar-name {
    display: block;
    font-size: var(--font-size-xs);
    letter-spacing: 0.2em;
    color: var(--color-gray-400);
    text-transform: uppercase;
}

.jar-type {
    display: block;
    font-size: var(--font-size-xs);
    letter-spacing: 0.15em;
    color: var(--color-gray-500);
    text-transform: uppercase;
    margin-top: 2px;
}

.jar-cap {
    width: 180px;
    height: 30px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px 10px 0 0;
    margin: 0 auto;
    position: relative;
    top: -5px;
    box-shadow: 
        inset 0 2px 5px rgba(255, 255, 255, 0.1),
        0 -5px 15px rgba(0, 0, 0, 0.3);
}

/* Floating Tags */
.floating-tags {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(11, 11, 11, 0.9);
    border: 1px solid rgba(233, 168, 74, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    color: var(--color-gray-300);
    white-space: nowrap;
}

.floating-tag .tag-icon {
    color: var(--color-gold);
}

.floating-tag.tag-1 {
    top: 5%;
    right: 20%;
}

.floating-tag.tag-2 {
    top: 40%;
    right: 10%;
}

.floating-tag.tag-3 {
    bottom: 25%;
    right: 15%;
}

@media (max-width: 991px) {
    .floating-tags {
        display: none;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-gray-500);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--color-gray-700);
    margin: var(--space-md) auto 0;
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--color-gold);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: -20px; }
    50% { top: 60px; }
    100% { top: -20px; }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* =========================================
   STORY SECTION
   ========================================= */
.story-section {
    padding: var(--space-5xl) 0;
    background: var(--color-black-soft);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

@media (min-width: 992px) {
    .story-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
        align-items: center;
    }
}

/* Story Text */
.story-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.story-block {
    position: relative;
    padding-left: var(--space-2xl);
}

.story-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    color: var(--color-gold);
    opacity: 0.5;
}

.story-block h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
}

.story-block p {
    color: var(--color-gray-400);
    margin: 0;
}

/* Story Visual */
.story-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: var(--space-3xl);
}

.visual-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold-muted);
}

.corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.visual-content {
    text-align: center;
    padding: var(--space-2xl);
}

.visual-quote {
    position: relative;
}

.quote-icon {
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.visual-quote blockquote {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-style: italic;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: var(--space-lg);
}

.visual-quote cite {
    font-size: var(--font-size-sm);
    color: var(--color-gold);
    font-style: normal;
}

/* Brand Values */
.brand-values {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--color-gold);
    transition: var(--transition-base);
}

.value-item:hover .value-icon {
    border-color: var(--color-gold);
    background: rgba(233, 168, 74, 0.1);
}

.value-item span {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
}

/* Story Decoration */
.story-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--color-gold-muted), transparent);
    opacity: 0.1;
}

.deco-line-1 {
    top: 20%;
    left: -10%;
    width: 50%;
    height: 1px;
    transform: rotate(-5deg);
}

.deco-line-2 {
    bottom: 30%;
    right: -10%;
    width: 40%;
    height: 1px;
    transform: rotate(5deg);
}

/* =========================================
   HOW IT WORKS SECTION
   ========================================= */
.how-it-works-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 168, 74, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(233, 168, 74, 0.3);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(233, 168, 74, 0.2) 0%, transparent 70%);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:hover .icon-glow {
    opacity: 1;
}

.feature-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin: 0;
}

.feature-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    color: var(--color-gold);
    opacity: 0.1;
    line-height: 1;
}

/* Visual Stats */
.works-visual {
    position: relative;
}

.visual-line {
    height: 2px;
    background: var(--color-gray-800);
    margin-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.line-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
}

.visual-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    color: var(--color-white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    color: var(--color-gold);
}

.stat-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin-top: var(--space-sm);
}

/* Section Pattern */
.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.pattern-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-section {
    padding: var(--space-5xl) 0;
    background: var(--color-black-soft);
    position: relative;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 992px) {
    .benefits-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
    }
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    column-gap: var(--space-lg);
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.benefit-item:hover {
    border-color: rgba(233, 168, 74, 0.3);
    background: rgba(233, 168, 74, 0.05);
}

.benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(233, 168, 74, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    border: 1px solid rgba(233, 168, 74, 0.25);
    box-sizing: border-box;
}

.benefit-text {
    min-width: 0;
}

.benefit-text h4 {
    font-size: var(--font-size-lg);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.benefit-text p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-list {
        gap: var(--space-md);
    }

    .benefit-item {
        grid-template-columns: 52px 1fr;
        padding: 18px 18px;
        column-gap: var(--space-md);
    }

    .benefit-icon {
        width: 52px;
        height: 52px;
    }
}

/* Benefits Visual */
.visual-container {
    position: relative;
}

.visual-main {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--color-black-medium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.visual-image {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid rgba(233, 168, 74, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black-light) 0%, var(--color-black-medium) 100%);
}

.placeholder-content {
    text-align: center;
    color: var(--color-gray-600);
}

.placeholder-content svg {
    margin-bottom: var(--space-sm);
}

.placeholder-content span {
    display: block;
    font-size: var(--font-size-sm);
}

/* Benefits Section Image */
.benefits-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform var(--transition-slow);
    filter: brightness(0.85) contrast(1.1);
}

.visual-main:hover .benefits-image {
    transform: scale(1.02);
}

/* Darken the image overlay for better contrast with light background images */
.benefits-visual .image-overlay {
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.05) 40%,
        rgba(0, 0, 0, 0.05) 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

/* Image Glow Effect */
.benefits-visual .visual-main::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(233, 168, 74, 0.3) 0%, transparent 50%, rgba(233, 168, 74, 0.2) 100%);
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.benefits-visual .visual-main:hover::before {
    opacity: 1;
}

/* Visual Frame */
.benefits-visual .visual-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

.frame-line {
    position: absolute;
    background: var(--color-gold);
    opacity: 0.3;
}

.frame-top, .frame-bottom {
    height: 1px;
    width: 50px;
}

.frame-left, .frame-right {
    width: 1px;
    height: 50px;
}

.frame-top { top: 0; left: 0; }
.frame-right { top: 0; right: 0; }
.frame-bottom { bottom: 0; right: 0; }
.frame-left { bottom: 0; left: 0; }

/* Visual Badge */
.visual-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(233, 168, 74, 0.4);
    border: 3px solid var(--color-black-soft);
    z-index: 10;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    color: var(--color-black);
    line-height: 1;
    font-weight: 600;
}

.badge-label {
    font-size: 10px;
    color: var(--color-black);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Background Accent */
.benefits-bg-accent {
    position: absolute;
    top: 50%;
    right: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(233, 168, 74, 0.05) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

/* =========================================
   HOW TO USE SECTION
   ========================================= */
.how-to-use-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

/* Steps */
.steps-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .steps-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    text-align: center;
    padding: var(--space-2xl);
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.step-number span {
    font-family: var(--font-heading);
    font-size: var(--font-size-5xl);
    color: var(--color-gold);
    opacity: 0.1;
    line-height: 1;
}

.step-visual {
    margin-bottom: var(--space-lg);
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-base);
}

.step-card:hover .step-icon {
    border-color: var(--color-gold);
    background: rgba(233, 168, 74, 0.1);
}

.step-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin: 0;
}

/* Step Connector */
.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -30px;
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, var(--color-gray-700), var(--color-gold-muted));
    }
    
    .step-card:last-child .step-connector {
        display: none;
    }
}

/* Pro Tips */
.pro-tips {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: rgba(233, 168, 74, 0.05);
    border: 1px solid rgba(233, 168, 74, 0.2);
    border-radius: var(--radius-lg);
}

.tips-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    color: var(--color-gold);
    font-weight: 600;
}

.tips-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
}

.tip-icon {
    color: var(--color-gold);
    flex-shrink: 0;
}

.tip-item p {
    margin: 0;
}

/* Section Background */
.section-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: var(--radius-full);
    border: 1px solid rgba(233, 168, 74, 0.1);
}

.deco-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

/* =========================================
   PRODUCT SECTION
   ========================================= */
.product-section {
    padding: var(--space-5xl) 0;
    background: var(--color-black-soft);
    position: relative;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

@media (min-width: 992px) {
    .product-showcase {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
    }
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.gallery-main {
    position: relative;
    margin-bottom: var(--space-lg);
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Showcase Image */
.product-showcase-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 0;
    transition: transform var(--transition-slow);
}

.gallery-main:hover .product-showcase-img {
    transform: scale(1.02);
}

/* Product Placeholder Large */
.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl);
}

.placeholder-jar {
    position: relative;
}

.jar-body-lg {
    width: 280px;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 30px 30px 40px 40px;
    position: relative;
    box-shadow: 
        inset 0 2px 15px rgba(255, 255, 255, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jar-body-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border-radius: 30px 30px 0 0;
}

.jar-label-lg {
    text-align: center;
    padding: var(--space-lg);
}

.label-brand {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.label-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-muted), transparent);
    margin: var(--space-md) auto;
}

.label-name {
    display: block;
    font-size: var(--font-size-sm);
    letter-spacing: 0.15em;
    color: var(--color-gray-300);
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.label-weight {
    display: block;
    font-size: var(--font-size-xs);
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
}

.jar-cap-lg {
    width: 240px;
    height: 40px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px 15px 0 0;
    margin: 0 auto;
    position: relative;
    top: -8px;
    box-shadow: 
        inset 0 2px 8px rgba(255, 255, 255, 0.1),
        0 -8px 20px rgba(0, 0, 0, 0.3);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.badge {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
}

.badge-new {
    background: var(--color-gold);
    color: var(--color-black);
}

.badge-premium {
    background: var(--color-black);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

/* Gallery Thumbnails */
.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.thumb {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius-sm);
    background: var(--color-black-medium);
    cursor: pointer;
    transition: var(--transition-base);
    padding: 4px;
}

.thumb.active,
.thumb:hover {
    border-color: var(--color-gold);
}

.thumb-inner {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-black-light);
    border-radius: 2px;
}

/* Product Info */
.product-info {
    padding-top: var(--space-xl);
}

@media (min-width: 992px) {
    .product-info {
        padding-top: 0;
    }
}

.product-meta {
    margin-bottom: var(--space-md);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--color-gold);
}

.rating-count {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.product-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.product-description {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    margin-bottom: var(--space-xl);
}

/* Product Highlights */
.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
}

.highlight-item svg {
    color: var(--color-gold);
}

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.price-current,
.product-price .woocommerce-Price-amount {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    color: var(--color-white);
}

.price-original,
.product-price del {
    font-size: var(--font-size-lg);
    color: var(--color-gray-600);
    text-decoration: line-through;
}

.price-badge {
    padding: var(--space-xs) var(--space-md);
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* Product Form */
.product-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.quantity-selector label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-gray-400);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black-medium);
    color: var(--color-white);
    transition: var(--transition-base);
}

.qty-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.qty-input {
    width: 60px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Add to Cart Button */
.btn-add-to-cart {
    width: 100%;
    padding: var(--space-lg);
    font-size: var(--font-size-base);
    justify-content: center;
    gap: var(--space-md);
}

.btn-add-to-cart .btn-price {
    opacity: 0.8;
    font-weight: 400;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-gray-800);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.trust-badge svg {
    color: var(--color-gold-muted);
}

/* Product Background */
.product-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(100px);
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    background: rgba(233, 168, 74, 0.05);
}

.bg-glow-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 10%;
    background: rgba(233, 168, 74, 0.03);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    margin-bottom: var(--space-3xl);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonial Card */
.testimonial-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(233, 168, 74, 0.3);
}

.testimonial-content {
    margin-bottom: var(--space-lg);
}

.testimonial-content .quote-icon {
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.testimonial-content blockquote {
    font-size: var(--font-size-base);
    color: var(--color-gray-300);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    color: var(--color-gold);
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-black);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--color-white);
}

.author-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-xs);
    color: var(--color-gold);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.slider-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-base);
}

.slider-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--color-gray-700);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active,
.dot:hover {
    background: var(--color-gold);
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    color: var(--color-gold);
    line-height: 1;
}

.proof-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin-top: var(--space-xs);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-800);
}

@media (max-width: 576px) {
    .proof-divider {
        display: none;
    }
}

/* Testimonials Background */
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(233, 168, 74, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: var(--space-5xl) 0;
    background: var(--color-black-soft);
    position: relative;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 992px) {
    .faq-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-4xl);
        align-items: start;
    }
}

/* FAQ Header */
.faq-header {
    position: relative;
}

@media (min-width: 992px) {
    .faq-header {
        position: sticky;
        top: calc(var(--header-height) + var(--space-xl));
    }
}

.faq-header .section-subtitle {
    margin-bottom: var(--space-xl);
}

.faq-contact {
    display: inline-flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-lg);
    background: rgba(233, 168, 74, 0.05);
    border: 1px solid rgba(233, 168, 74, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    margin-bottom: var(--space-xl);
}

@media (min-width: 992px) {
    .faq-contact {
        margin-bottom: 0;
    }
}

.faq-contact:hover {
    border-color: var(--color-gold);
    background: rgba(233, 168, 74, 0.1);
}

.faq-contact span:first-child {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.contact-link {
    color: var(--color-gold);
    font-weight: 600;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(233, 168, 74, 0.3);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-gray-400);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Background */
.faq-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 50%, rgba(233, 168, 74, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta-section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(233, 168, 74, 0.05) 0%, rgba(233, 168, 74, 0.02) 100%);
    border: 1px solid rgba(233, 168, 74, 0.2);
    border-radius: var(--radius-xl);
}

@media (min-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1.5fr 1fr;
        padding: var(--space-4xl);
    }
}

/* CTA Content */
.cta-content {
    text-align: center;
}

@media (min-width: 992px) {
    .cta-content {
        text-align: left;
    }
}

.cta-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(233, 168, 74, 0.2);
    color: var(--color-gold);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

@media (min-width: 992px) {
    .cta-subtitle {
        margin-left: 0;
        margin-right: auto;
    }
}

.cta-buttons {
    margin-bottom: var(--space-xl);
}

/* CTA Trust */
.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
}

@media (min-width: 992px) {
    .cta-trust {
        justify-content: flex-start;
    }
}

.trust-element {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.trust-element svg {
    color: var(--color-gold-muted);
}

/* CTA Visual */
.cta-visual {
    display: none;
}

@media (min-width: 992px) {
    .cta-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.visual-product {
    position: relative;
    width: 200px;
    height: 200px;
}

.product-glow-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(233, 168, 74, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite;
}

.product-silhouette {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.silhouette-jar {
    width: 120px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
    border-radius: 15px 15px 20px 20px;
    position: relative;
    opacity: 0.2;
}

.jar-shine {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    border-radius: 10px;
}

/* CTA Background Effects */
.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-gradient-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(233, 168, 74, 0.05) 0%, transparent 50%);
}

.bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(233, 168, 74, 0.1), transparent);
    height: 1px;
}

.line-1 { top: 20%; left: 0; width: 40%; }
.line-2 { top: 50%; right: 0; width: 30%; }
.line-3 { bottom: 30%; left: 10%; width: 50%; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================
   HOME REVIEWS (CENTER CAROUSEL)
   ========================================= */
.home-reviews {
    position: relative;
    padding: var(--space-5xl) 0;
    background: radial-gradient(800px 300px at 50% 0%, rgba(var(--color-gold-rgb), 0.07), transparent 60%),
                var(--color-black-soft);
    overflow: hidden;
}

@media (max-width: 768px) {
    .home-reviews {
        padding: var(--space-3xl) 0;
    }
}

.home-reviews__summary {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.home-reviews__rating {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.home-reviews__rating-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    line-height: 1;
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .home-reviews__rating-number {
        font-size: var(--font-size-3xl);
    }
}

.home-reviews__stars {
    display: flex;
    gap: 6px;
    font-size: 16px;
}

.home-reviews__stars .star.filled {
    color: var(--color-gold);
}

.home-reviews__stars .star.empty {
    color: rgba(255, 255, 255, 0.16);
}

.home-reviews__count {
    color: var(--color-gray-500);
    font-size: var(--font-size-sm);
}

.home-reviews__carousel {
    margin-top: var(--space-3xl);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: var(--space-lg);
}

.home-reviews__carousel.is-single {
    grid-template-columns: 1fr;
}

.home-reviews__carousel.is-single .home-reviews__viewport {
    max-width: 820px;
}

@media (max-width: 768px) {
    .home-reviews__carousel {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: var(--space-md);
        margin-top: var(--space-2xl);
    }
}

.home-reviews__viewport {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.home-reviews__track {
    display: flex;
    width: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.home-reviews__track .testimonial-card {
    flex: 0 0 100%;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    user-select: none;
}

.slider-btn:hover {
    border-color: rgba(var(--color-gold-rgb), 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(var(--color-gold-rgb), 0.08);
    transform: translateY(-1px);
}

.slider-btn span {
    font-size: 22px;
    line-height: 1;
    color: var(--color-gold);
}

.home-review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .home-review-card {
        padding: var(--space-xl);
    }
}

.home-review-card__quote {
    font-family: var(--font-heading);
    font-size: 54px;
    line-height: 1;
    color: rgba(var(--color-gold-rgb), 0.28);
    margin-bottom: var(--space-sm);
}

.home-review-card__content p {
    margin: 0 0 var(--space-lg);
    color: var(--color-gray-300);
    font-size: var(--font-size-lg);
    line-height: 1.75;
}

.home-review-card__rating {
    display: flex;
    gap: 6px;
    margin-bottom: var(--space-xl);
    font-size: 16px;
}

.home-review-card__rating .star.filled {
    color: var(--color-gold);
}

.home-review-card__rating .star.empty {
    color: rgba(255, 255, 255, 0.16);
}

.home-review-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-review-card .author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.home-review-card .author-name {
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.home-review-card .author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--color-gray-600);
    font-size: var(--font-size-xs);
    margin-top: 2px;
}

.home-review-card .author-verified {
    color: var(--color-gold);
    font-weight: 600;
}

.home-review-card .author-meta .sep {
    color: rgba(255, 255, 255, 0.18);
}

.slider-dots {
    margin-top: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-dots .dot.active {
    width: 22px;
    border-color: rgba(var(--color-gold-rgb), 0.6);
    background: rgba(var(--color-gold-rgb), 0.35);
}

.home-reviews .reviews-cta {
    margin-top: var(--space-2xl);
    text-align: center;
}

.footer-inner {
    padding: var(--space-4xl) 0 var(--space-2xl);
}

@media (max-width: 768px) {
    .footer-inner {
        padding: var(--space-2xl) 0 var(--space-lg);
    }
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
        align-items: flex-start;
    }
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-base);
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(1.2);
}

.footer-tagline {
    color: var(--color-gray-500);
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

/* Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

@media (min-width: 576px) {
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-gray-500);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.footer-bullets .footer-bullet {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-gold);
    margin-top: 0.55em;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(var(--color-gold-rgb), 0.08);
}

.footer-bullets .footer-inline-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bullets .footer-inline-links .sep {
    color: rgba(255, 255, 255, 0.18);
}

.footer-bullets .footer-inline-links a {
    color: var(--color-gray-400);
}

.footer-bullets .footer-inline-links a:hover {
    color: var(--color-gold);
}

.footer-col a {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    transition: var(--transition-base);
}

.footer-col a:hover {
    color: var(--color-gold);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    transition: var(--transition-base);
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

@media (min-width: 576px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* =========================================
   FLOATING BUY BUTTON (Mobile)
   ========================================= */
.floating-buy-btn {
    position: fixed;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.floating-buy-btn.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .floating-buy-btn {
        display: none;
    }
}

.floating-buy-btn .btn-gold {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    box-shadow: var(--shadow-xl);
}

/* =========================================
   CART NOTIFICATION
   ========================================= */
.cart-notification {
    position: fixed;
    top: calc(var(--header-height) + var(--space-md));
    right: var(--space-lg);
    padding: var(--space-md) var(--space-xl);
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transform: translateX(calc(100% + var(--space-lg)));
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* =========================================
   LEGAL PAGES (Privacy / Terms)
   ========================================= */
.legal-page {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-deep) 100%);
}

.legal-article {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.legal-header {
    text-align: center;
    margin-bottom: 28px;
}

.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(var(--color-gold-rgb), 0.08);
    border: 1px solid rgba(var(--color-gold-rgb), 0.22);
    color: var(--color-gold);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.legal-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: clamp(30px, 3.2vw, 44px);
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}

.legal-subtitle {
    max-width: 70ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.legal-content {
    max-width: 88ch;
    margin: 0 auto;
    color: var(--color-gray-300);
    line-height: 1.9;
    font-size: 15px;
}

.legal-content h2,
.legal-content h3 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin: 26px 0 10px;
    letter-spacing: -0.01em;
}

.legal-content h2 { font-size: 22px; }
.legal-content h3 { font-size: 18px; }

.legal-content p { margin: 0 0 14px; }

.legal-content ul,
.legal-content ol {
    margin: 12px 0 18px;
    padding-left: 22px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-position: under;
}

.legal-content a:hover {
    color: var(--color-gold-light);
    text-decoration: none;
}

.legal-content .legal-callout {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid rgba(var(--color-gold-rgb), 0.65);
    border-radius: 16px;
    padding: 16px 18px;
    margin: 18px 0;
    color: rgba(255, 255, 255, 0.80);
}

@media (max-width: 768px) {
    .legal-page {
        padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-3xl);
    }

    .legal-article {
        padding: 22px;
        border-radius: 16px;
    }

    .legal-content {
        font-size: 14px;
    }
}

.cart-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
}

.check-icon {
    color: var(--color-black);
}

/* =========================================
   ANIMATIONS & UTILITIES
   ========================================= */

/* Fade animations */
/* AOS Animations - with fallback support */
[data-aos] {
    transition-property: transform, opacity;
    transition-duration: 0.8s;
    transition-timing-function: ease-out;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate,
.aos-fallback [data-aos="fade-up"] {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
    opacity: 0;
}

[data-aos="fade-down"].aos-animate,
.aos-fallback [data-aos="fade-down"] {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
}

[data-aos="fade-left"].aos-animate,
.aos-fallback [data-aos="fade-left"] {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
}

[data-aos="fade-right"].aos-animate,
.aos-fallback [data-aos="fade-right"] {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}

[data-aos="zoom-in"].aos-animate,
.aos-fallback [data-aos="zoom-in"] {
    transform: scale(1);
    opacity: 1;
}

/* Force content visible when AOS fails (fallback mode) */
body.aos-fallback [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading state */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--color-gold);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }
    
    h1 { font-size: var(--font-size-3xl); }
    h2 { font-size: var(--font-size-2xl); }
    h3 { font-size: var(--font-size-xl); }
    
    .section-header {
        margin-bottom: var(--space-lg);
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
    
    .story-section,
    .how-it-works-section,
    .benefits-section,
    .how-to-use-section,
    .product-section,
    .faq-section,
    .final-cta-section {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-md);
    }
}

