/* ============================================
   FEMELIA — Premium Curly Hair Brand
   Enhanced Edition with Heavy Animations
   ============================================ */

/* === VARIABLES === */
:root {
    --primary: #8B2240;
    --primary-light: #A83255;
    --primary-dark: #6B1C2A;
    --accent: #1A1018;
    --bg: #FAF8F8;
    --bg-alt: #F3EEED;
    --text: #1A1018;
    --text-light: #6B6068;
    --text-lighter: #9C9198;
    --white: #FFFFFF;
    --border: #E5DEDE;
    --gradient: linear-gradient(135deg, #A83255, #8B2240, #6B1C2A);
    --gradient-text: linear-gradient(135deg, #A83255, #6B1C2A);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(139,34,64,0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 100px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

body.loading {
    overflow: hidden;
}

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

/* === LOADER === */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-bottle {
    width: 40px;
    height: 80px;
    border: 3px solid var(--primary);
    border-radius: 8px 8px 14px 14px;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
}

.loader-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: var(--gradient);
    transition: height 0.3s ease;
    border-radius: 0 0 10px 10px;
}

.loader-liquid::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -5px;
    right: -5px;
    height: 12px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: liquidWave 1.5s ease-in-out infinite;
}

@keyframes liquidWave {
    0%, 100% { transform: translateX(-2px) rotate(-2deg); }
    50% { transform: translateX(2px) rotate(2deg); }
}

.loader-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.loader-icon {
    color: var(--primary);
    font-size: 1.2rem;
    animation: logoPulse 2s ease-in-out infinite;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 8px;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 0.1s ease;
}

.loader-pct {
    font-size: 0.75rem;
    color: var(--text-lighter);
    font-weight: 500;
}

/* === CUSTOM CURSORS (disabled) === */
.cursor-glow,
.cursor-dot,
.cursor-ring {
    display: none;
}

/* === PARTICLE CANVAS === */
#particleCanvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* === SECTION CONTAINERS === */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    transform: translateY(-100%);
    animation: navSlideIn 0.8s var(--ease-out-expo) 2.5s forwards;
}

@keyframes navSlideIn {
    to { transform: translateY(0); }
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(250,250,247,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.2rem;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(15deg); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 10px 24px;
    background: var(--text);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-nav .btn-inner {
    position: relative;
    z-index: 2;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.btn-nav:hover::before {
    width: 300px;
    height: 300px;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg);
    z-index: 999;
    padding: 100px 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    right: 0;
}

.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition);
}

.mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-link:hover {
    color: var(--primary);
    transform: translateX(10px) !important;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    margin-top: 36px;
}

/* Gradient Mesh BG */
.gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 20% 30%, rgba(139,34,64,0.12) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(139,34,64,0.08) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(107,28,42,0.05) 0%, transparent 60%);
    animation: meshMove 20s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, 3%); }
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(139,34,64,0.2);
    top: -200px;
    right: -100px;
    animation: shapeFloat1 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(139,34,64,0.15);
    bottom: -100px;
    left: -100px;
    animation: shapeFloat2 25s ease-in-out infinite;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(107,28,42,0.1);
    top: 50%;
    left: 50%;
    animation: shapeFloat3 18s ease-in-out infinite;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: rgba(139,34,64,0.08);
    top: 20%;
    left: 30%;
    animation: shapeFloat1 15s ease-in-out infinite reverse;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 30px) scale(1.1); }
    66% { transform: translate(30px, -20px) scale(0.95); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, -30px) rotate(15deg); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-40%, -60%) scale(1.2); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139,34,64,0.1);
    border: 1px solid rgba(139,34,64,0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(139,34,64,0.4); }
    50% { opacity: 0.7; transform: scale(1.5); box-shadow: 0 0 0 6px rgba(139,34,64,0); }
}

/* Text Reveal Animation */
.text-reveal {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.text-reveal-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s var(--ease-out-expo);
}

.text-reveal.revealed .text-reveal-inner {
    transform: translateY(0);
}

/* Reveal element */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: none;
    z-index: 1;
}

.btn:hover .btn-shine {
    animation: btnShine 0.6s ease;
}

@keyframes btnShine {
    to { left: 150%; }
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139,34,64,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(139,34,64,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(139,34,64,0.3); }
    50% { box-shadow: 0 4px 40px rgba(139,34,64,0.6); }
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === HERO STATS === */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-lighter);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* === 3D BOTTLE === */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bottle-scene {
    position: relative;
    width: 400px;
    height: 500px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottle-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(139,34,64,0.3) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 30px;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

.bottle-rings {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    border: 1px solid rgba(139,34,64,0.12);
    border-radius: 50%;
    animation: ringExpand 6s ease-in-out infinite;
}

.ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.ring-2 { width: 280px; height: 280px; animation-delay: 2s; }
.ring-3 { width: 360px; height: 360px; animation-delay: 4s; }

@keyframes ringExpand {
    0%, 100% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

/* Orbiting particles */
.orbit-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    animation: orbitSpin linear infinite;
}

.orbit-1 { width: 220px; height: 220px; animation-duration: 8s; }
.orbit-2 { width: 300px; height: 300px; animation-duration: 12s; animation-direction: reverse; }
.orbit-3 { width: 380px; height: 380px; animation-duration: 16s; }

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(139,34,64,0.6);
}

.orbit-2 .orbit-dot { width: 4px; height: 4px; background: var(--primary-light); }
.orbit-3 .orbit-dot { width: 3px; height: 3px; background: var(--primary-dark); }

.bottle-3d {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.bottle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.18));
    animation: bottleFloat 6s ease-in-out infinite;
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(0.5deg); }
    75% { transform: translateY(-8px) rotate(-0.5deg); }
    50% { transform: translateY(-18px) rotate(0deg); }
}

.bottle-cap {
    width: 50px;
    height: 30px;
    background: linear-gradient(135deg, #5A1020, #3D0A15);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.2);
}

.cap-highlight {
    position: absolute;
    top: 4px;
    left: 8px;
    width: 12px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.bottle-neck {
    width: 36px;
    height: 20px;
    background: linear-gradient(135deg, #A83255, #8B2240);
    position: relative;
    z-index: 1;
}

.bottle-body {
    width: 140px;
    height: 240px;
    background: linear-gradient(135deg, #C4687E, #A83255, #8B2240);
    border-radius: 12px 12px 20px 20px;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset -20px 0 30px rgba(0,0,0,0.1),
        inset 20px 0 30px rgba(255,255,255,0.15);
}

/* Liquid animation inside bottle */
.bottle-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(139,34,64,0.4), transparent);
    z-index: 0;
}

.liquid-wave {
    position: absolute;
    top: -8px;
    left: -10%;
    width: 120%;
    height: 16px;
    background: rgba(139,34,64,0.3);
    border-radius: 50%;
    animation: waveMotion 3s ease-in-out infinite;
}

@keyframes waveMotion {
    0%, 100% { transform: translateX(-5%) rotate(-1deg); }
    50% { transform: translateX(5%) rotate(1deg); }
}

.bottle-label {
    position: absolute;
    top: 30px;
    left: 15px;
    right: 15px;
    bottom: 40px;
    background: rgba(255,255,255,0.92);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.label-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
}

.label-line {
    width: 30px;
    height: 2px;
    background: var(--gradient);
    margin: 8px 0;
    border-radius: 2px;
}

.label-product {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
}

.label-detail {
    font-size: 0.5rem;
    color: var(--text-lighter);
    margin-top: 4px;
}

.label-volume {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
}

.bottle-shine {
    position: absolute;
    top: 0;
    left: 15%;
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: bottleShine 5s ease-in-out infinite;
    z-index: 2;
}

.bottle-shine-2 {
    position: absolute;
    top: 0;
    right: 10%;
    width: 8%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    z-index: 2;
}

@keyframes bottleShine {
    0%, 100% { transform: translateX(-200%); opacity: 0; }
    40%, 60% { opacity: 1; }
    50% { transform: translateX(400%); opacity: 1; }
}

.bottle-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(255,255,255,0.15), transparent);
    z-index: 2;
}

.bottle-base {
    width: 150px;
    height: 12px;
    background: linear-gradient(135deg, #7A1E35, #6B1C2A);
    border-radius: 0 0 24px 24px;
}

.bottle-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
    animation: shadowPulse 6s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.6; }
    50% { transform: translateX(-50%) scaleX(0.8); opacity: 0.3; }
}

/* Floating elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-leaf {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: leafFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.float-1 { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.float-2 { top: 20%; right: 10%; animation-delay: 1.5s; animation-duration: 9s; }
.float-3 { bottom: 25%; left: 5%; animation-delay: 3s; animation-duration: 8s; }
.float-4 { top: 50%; right: 5%; animation-delay: 4.5s; animation-duration: 6s; }
.float-5 { bottom: 15%; right: 15%; animation-delay: 6s; animation-duration: 10s; }
.float-6 { top: 35%; left: 0; animation-delay: 2s; animation-duration: 7.5s; color: var(--primary); }
.float-7 { bottom: 35%; right: 0; animation-delay: 5s; animation-duration: 8.5s; }

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-25px) rotate(15deg) scale(1.1); }
    50% { transform: translateY(-10px) rotate(-5deg) scale(0.95); }
    75% { transform: translateY(-20px) rotate(8deg) scale(1.05); }
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-lighter);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-lighter);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 3px;
    margin-top: 6px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* === MARQUEE === */
.marquee-section {
    padding: 20px 0;
    background: #6B1C2A;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #6B1C2A, transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #6B1C2A, transparent);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 40px;
    padding-right: 40px;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* === TRANSFORM / RESULTS SECTION === */
.transform-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.transform-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.transform-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.transform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,34,64,0.03), transparent);
}

.transform-before, .transform-after {
    text-align: center;
    flex: 1;
}

.transform-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.transform-before h4, .transform-after h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.transform-before ul, .transform-after ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transform-before li {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.transform-after li {
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.transform-arrow {
    color: var(--primary);
    flex-shrink: 0;
    animation: arrowBounce 2s ease-in-out infinite;
}

.transform-arrow svg {
    width: 60px;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Progress circles */
.transform-numbers {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.tn-circle {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto 16px;
}

.tn-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring {
    transition: stroke-dashoffset 2s var(--ease-out-expo);
}

.tn-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.tn-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* === SECTION HEADERS === */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* === PRODUCTS === */
.products {
    padding: 120px 0;
    position: relative;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: transparent;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139,34,64,0.08), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover .card-glow {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    z-index: 3;
    letter-spacing: 0.03em;
    animation: badgePulse 3s ease-in-out infinite;
}

.card-badge-new {
    background: #10B981;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139,34,64,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(139,34,64,0); }
}

.card-visual {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

/* Card sparkles */
.card-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .card-sparkles {
    opacity: 1;
}

.card-sparkles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: sparkleFloat 2s ease-in-out infinite;
}

.card-sparkles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.card-sparkles span:nth-child(2) { top: 60%; right: 25%; animation-delay: 0.5s; }
.card-sparkles span:nth-child(3) { bottom: 20%; left: 40%; animation-delay: 1s; }

@keyframes sparkleFloat {
    0%, 100% { transform: scale(0) translateY(0); opacity: 0; }
    50% { transform: scale(1) translateY(-10px); opacity: 1; }
}

.card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(139,34,64,0.05) 0%, transparent 70%);
}

.mini-bottle {
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.product-card:hover .mini-bottle {
    transform: scale(1.1) rotate(-3deg) translateY(-5px);
    filter: drop-shadow(0 20px 35px rgba(0,0,0,0.15));
}

.mini-cap {
    width: 28px;
    height: 16px;
    background: #5A1020;
    border-radius: 5px 5px 2px 2px;
}

.mini-body {
    width: 76px;
    height: 130px;
    background: var(--bottle-color);
    border-radius: 8px 8px 14px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset -10px 0 20px rgba(0,0,0,0.1);
}

.mini-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.card-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.card-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 8px 0;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.btn-card {
    padding: 8px 20px;
    background: var(--text);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-card .btn-inner {
    position: relative;
    z-index: 2;
}

.btn-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 1;
}

.btn-card:hover::before {
    transform: translateY(0);
}

.btn-card:hover {
    transform: scale(1.05);
    color: var(--white);
}

.btn-card:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #999;
}

.btn-card:disabled::before {
    display: none;
}

/* Stock indicators */
.stock-indicator {
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stock-indicator::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.stock-ok { color: #059669; }
.stock-ok::before { background: #059669; box-shadow: 0 0 6px rgba(5,150,105,0.5); }

.stock-low { color: #D97706; }
.stock-low::before { background: #D97706; box-shadow: 0 0 6px rgba(217,119,6,0.5); }

.stock-out { color: #DC2626; }
.stock-out::before { background: #DC2626; box-shadow: 0 0 6px rgba(220,38,38,0.5); }

.card-badge-oos {
    background: #DC2626 !important;
}

.card-badge-low {
    background: #D97706 !important;
}

.product-card.out-of-stock .card-visual {
    opacity: 0.4;
    filter: grayscale(60%);
}

.card-old-price {
    text-decoration: line-through;
    color: var(--text-lighter);
    font-size: 0.8rem;
    margin-right: 4px;
}

.card-prices {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

/* === INGREDIENTS === */
.ingredients {
    padding: 120px 0;
    background: var(--bg-alt);
    position: relative;
}

.ingredients-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.ingredient-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.ingredient-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.ingredient-card:hover::before {
    transform: scaleX(1);
}

.ingredient-icon {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%) scale(0.8);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.ingredient-card:hover .icon-circle {
    transform: scale(1.15) rotate(8deg);
    background: rgba(139,34,64,0.15);
}

.ingredient-card:hover .icon-ring {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
}

.ingredient-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.ingredient-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ingredient-bar {
    width: 100%;
    height: 4px;
    background: var(--bg-alt);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s var(--ease-out-expo);
    position: relative;
}

.bar-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(139,34,64,0.5);
    opacity: 0;
    transition: opacity 0.5s 1.5s;
}

.bar-fill[style*="width"]::after {
    opacity: 1;
}

.ingredient-pct {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* Process */
.process-section {
    text-align: center;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    transition: var(--transition);
}

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

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.4;
    transition: var(--transition);
}

.step:hover .step-number {
    opacity: 1;
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.step-line {
    width: 60px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.step-line-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient);
    transition: width 1s var(--ease-out-expo);
}

.step-line.animated .step-line-fill {
    width: 100%;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 40px;
}

@media (min-width: 768px) {
    .testimonial-card { min-width: 50%; }
}

.testimonial-card > * {
    max-width: 500px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: -30px;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-detail {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.slider-btn svg {
    width: 18px;
    height: 18px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(139,34,64,0.3);
}

/* === ABOUT === */
.about {
    padding: 120px 0;
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-light);
    border-radius: var(--radius);
    opacity: 0.3;
    transition: var(--transition);
}

.about-visual:hover .about-pattern {
    transform: translate(-5px, -5px);
    opacity: 0.5;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--gradient);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(0,0,0,0.1));
}

.about-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.ap-icon {
    font-size: 3rem;
    animation: logoPulse 3s ease-in-out infinite;
}

.ap-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.ap-sub {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 2;
}

.about-float-card-2 {
    position: absolute;
    top: 30px;
    right: -30px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatCard 6s ease-in-out infinite 3s;
    z-index: 2;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.afc-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.afc-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(139,34,64,0.05);
    transform: translateX(8px);
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* === CTA === */
.cta-section {
    padding: 100px 0;
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    animation: ctaCircleFloat 15s ease-in-out infinite;
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(139,34,64,0.06);
    top: -200px;
    right: -100px;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(139,34,64,0.04);
    bottom: -150px;
    left: -50px;
    animation-delay: 5s;
}

@keyframes ctaCircleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group-inline {
    display: flex;
    gap: 12px;
}

.cta-input {
    flex: 1;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.cta-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.cta-input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(139,34,64,0.2);
}

.cta-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin-top: 16px;
}

/* === CONTACT === */
.contact {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--bg-alt);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.3rem;
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(139,34,64,0.1);
    transform: scale(1.05);
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

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

.contact-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.social-link {
    padding: 8px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,34,64,0.1);
    transform: translateY(-1px);
}

/* === FOOTER === */
.footer {
    background: var(--accent);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.6);
}

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

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(6px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* === ANIMATIONS ON SCROLL === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .cursor-dot, .cursor-ring, .cursor-glow { display: none; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }

    .bottle-scene { width: 300px; height: 400px; }
    .bottle-body { width: 110px; height: 190px; }
    .bottle-cap { width: 40px; height: 24px; }
    .bottle-neck { width: 28px; height: 16px; }
    .bottle-base { width: 120px; height: 10px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .ingredients-showcase { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .transform-card { flex-direction: column; gap: 24px; }
    .transform-arrow { transform: rotate(90deg); }
    .transform-numbers { gap: 40px; }
}

@media (max-width: 768px) {
    .scroll-indicator { display: none; }

    .hero { padding-top: 100px; padding-bottom: 40px; }

    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .stat-divider { display: none; }

    .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .ingredients-showcase { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 80px; }

    .process-steps { flex-direction: column; }
    .step-line { width: 1px; height: 30px; }

    .form-group-inline { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }

    .btn-nav { display: none; }
    .transform-numbers { gap: 30px; }
}

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

    .bottle-scene { width: 250px; height: 340px; }
    .bottle-body { width: 90px; height: 160px; }
    .bottle-cap { width: 34px; height: 20px; }
    .bottle-neck { width: 24px; height: 14px; }
    .bottle-base { width: 100px; height: 8px; }
    .label-brand { font-size: 1.1rem; }
    .label-product { font-size: 0.45rem; }
}

/* === CART BADGE === */
.cart-badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    margin-left: 6px;
    transition: var(--transition);
    position: relative;
}

.cart-badge-count.bump {
    animation: cartBump 0.4s var(--ease-out-back);
}

@keyframes cartBump {
    0% { transform: scale(1); }
    40% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* === PRODUCT MODAL === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,16,24,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-visual {
    background: var(--bg-alt);
    border-radius: var(--radius) 0 0 var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.modal-bottle-scene {
    position: relative;
}

.modal-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,34,64,0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

.modal-bottle {
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    animation: bottleFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.modal-bottle:hover {
    transform: rotateY(8deg) rotateX(-3deg) scale(1.05);
}

.modal-body {
    width: 100px;
    height: 170px;
    border-radius: 10px 10px 18px 18px;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
}

.modal-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.modal-old-price {
    font-size: 1rem;
    color: var(--text-lighter);
    text-decoration: line-through;
}

.modal-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.qty-label {
    font-size: 0.85rem;
    font-weight: 600;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-alt);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
    color: var(--text);
}

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

.qty-value {
    width: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.modal-add {
    margin-top: auto;
}

/* === CART SIDEBAR === */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,16,24,0.4);
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    z-index: 2002;
    display: flex;
    flex-direction: column;
    transition: right 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-lg);
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 16px 0 4px;
}

.cart-empty span {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

/* Cart item */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    animation: cartItemIn 0.4s var(--ease-out-expo);
}

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

.cart-item-bottle {
    width: 50px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-item-bottle .ci-cap {
    width: 16px;
    height: 8px;
    border-radius: 3px 3px 1px 1px;
}

.cart-item-bottle .ci-body {
    width: 36px;
    height: 60px;
    border-radius: 5px 5px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-item-bottle .ci-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

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

.cart-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.cart-item-cat {
    font-size: 0.7rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.ci-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--bg-alt);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
}

.ci-qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.ci-qty-val {
    width: 32px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-lighter);
    font-size: 0.75rem;
    cursor: pointer;
    margin-top: 6px;
    transition: var(--transition-fast);
    font-family: inherit;
}

.cart-item-remove:hover {
    color: #DC2626;
}

.cart-stock-warn {
    font-size: 0.7rem;
    color: #D97706;
    font-weight: 600;
    margin-bottom: 4px;
}

.ci-qty-btn.disabled,
.ci-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Cart footer */
.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-subtotal span:first-child {
    font-weight: 500;
    color: var(--text-light);
}

.cart-total-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.cart-shipping {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 3000;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s var(--ease-out-expo);
    pointer-events: none;
}

.toast svg {
    color: #10B981;
    flex-shrink: 0;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* === CHECKOUT AUTH === */
.checkout-auth-note {
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-bottom: 16px;
}

.checkout-auth-error {
    color: #DC2626;
    font-size: 0.8rem;
    margin-top: 8px;
    min-height: 16px;
}

.checkout-logged {
    padding: 0 !important;
}

.checkout-logged-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(139,34,64,0.04);
    border: 1px solid rgba(139,34,64,0.1);
    border-radius: var(--radius-sm);
}

.checkout-logged-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.checkout-logged-name {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

.checkout-logged-email {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

/* === CHECKOUT MODAL === */
.checkout-card {
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-inner {
    padding: 40px;
}

.checkout-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.checkout-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.checkout-section {
    margin-bottom: 24px;
}

.checkout-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.checkout-section select {
    width: 100%;
    padding: 12px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: var(--transition);
    cursor: pointer;
    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='%239C9198' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.checkout-section select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,34,64,0.1);
}

.checkout-note {
    font-size: 0.75rem;
    color: var(--text-lighter);
    margin-top: 6px;
    line-height: 1.5;
    font-style: italic;
}

.checkout-prefilled-banner {
    background: rgba(139,34,64,0.06);
    border: 1px solid rgba(139,34,64,0.15);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--primary-dark);
}

.checkout-prefilled-banner svg { flex-shrink: 0; }

.promo-input-row {
    display: flex;
    gap: 8px;
}

.promo-input-row input {
    flex: 1;
    font-family: monospace;
    letter-spacing: 1px;
    font-weight: 600;
}

.promo-apply-btn {
    padding: 10px 20px;
    background: var(--text);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.promo-apply-btn:hover { background: var(--primary); }

.promo-status {
    font-size: 0.8rem;
    margin-top: 6px;
    min-height: 18px;
}

.promo-status.success { color: #059669; font-weight: 600; }
.promo-status.error { color: #DC2626; }

.checkout-recap {
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 20px;
}

.recap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.recap-row.recap-total {
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1.5px solid var(--border);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.recap-row.recap-total span:last-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
}

.recap-free {
    color: #059669;
    font-weight: 600;
}

/* === FLY ANIMATION === */
.fly-item {
    position: fixed;
    z-index: 3001;
    pointer-events: none;
    transition: none;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-visual {
        border-radius: var(--radius) var(--radius) 0 0;
        min-height: 250px;
        padding: 30px;
    }
    .modal-body {
        width: 70px;
        height: 120px;
    }
    .modal-info {
        padding: 24px;
    }
    .modal-title {
        font-size: 1.5rem;
    }
    .modal-features {
        grid-template-columns: 1fr;
    }
}

/* === SELECTION === */
::selection {
    background: rgba(139,34,64,0.3);
    color: var(--text);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================
   STRIPE PAYMENT SUCCESS MODAL
   ============================================ */
/* === PAYMENT SUCCESS OVERLAY === */
.payment-success-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.payment-success-overlay.visible { opacity: 1; }

.payment-success-modal {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2.5rem 2rem;
    text-align: center;
    max-width: 520px;
    width: 92%;
    transform: scale(0.8) translateY(40px);
    animation: paymentModalIn 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.15s forwards;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 60px rgba(139,34,64,0.1);
    position: relative;
    overflow: hidden;
}
.payment-success-modal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B2240, #D4A574, #10B981, #FFD700, #8B2240);
    background-size: 200% 100%;
    animation: shimmerBar 2s linear 0.5s infinite;
}
@keyframes shimmerBar {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes paymentModalIn {
    to { transform: scale(1) translateY(0); }
}

/* Particles background */
.payment-success-particles {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.success-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

/* Icon with ring */
.payment-success-icon {
    width: 90px; height: 90px;
    margin: 0 auto 1rem;
    position: relative;
}
.success-ring {
    position: absolute; inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(76,175,80,0.2);
    animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
    0%,100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}
.payment-success-icon svg { width: 100%; height: 100%; position: relative; z-index: 1; }
.payment-success-icon .circle-fill {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: circleDraw 0.6s ease 0.3s forwards;
}
@keyframes circleDraw { to { stroke-dashoffset: 0; } }
.payment-success-icon .checkmark-path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkDraw 0.4s ease 0.8s forwards;
}
@keyframes checkDraw { to { stroke-dashoffset: 0; } }

/* Badge */
.success-badge {
    display: inline-block;
    background: linear-gradient(135deg, #059669, #10B981);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    animation: badgeIn 0.4s ease 1s both;
}
@keyframes badgeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.payment-success-modal h2 {
    font-family: var(--font-display);
    color: #1a1018;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    animation: fadeInUp 0.4s ease 1.1s both;
}
.success-ref {
    color: #6B6068;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.4s ease 1.2s both;
}
.success-ref strong { color: #8B2240; font-weight: 700; }

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

/* Timeline */
.success-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 1.2rem 0;
    padding: 0.8rem 1rem;
    background: #FAF5F6;
    border-radius: 12px;
    animation: fadeInUp 0.4s ease 1.3s both;
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.timeline-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #E5DEDE;
    border: 2px solid #E5DEDE;
    transition: all 0.3s;
}
.timeline-step.active .timeline-dot {
    background: #10B981;
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
    animation: dotPulse 1.5s ease infinite;
}
@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(16,185,129,0.1); }
}
.timeline-label {
    font-size: 0.65rem;
    color: #9C9198;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.timeline-step.active .timeline-label { color: #059669; }
.timeline-line {
    width: 30px; height: 2px;
    background: #E5DEDE;
    margin: 0 4px;
    margin-bottom: 20px;
}

/* Info grid */
.success-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 1rem 0;
    animation: fadeInUp 0.4s ease 1.4s both;
}
.success-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FAF5F6;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: left;
    border: 1px solid #F0EDED;
    transition: transform 0.2s ease;
}
.success-info-item:hover {
    transform: translateY(-2px);
}
.success-info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.success-info-text strong {
    display: block;
    font-size: 0.8rem;
    color: #1a1018;
}
.success-info-text span {
    font-size: 0.7rem;
    color: #9C9198;
}

/* Actions */
.success-actions {
    display: flex;
    gap: 10px;
    margin: 1.2rem 0 0.8rem;
    animation: fadeInUp 0.4s ease 1.5s both;
}
.btn-success-primary, .btn-success-secondary {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-success-primary {
    background: var(--primary);
    color: white;
}
.btn-success-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139,34,64,0.4);
}
.btn-success-secondary {
    background: transparent;
    color: #8B2240;
    border: 2px solid #8B2240;
}
.btn-success-secondary:hover {
    background: #8B2240;
    color: white;
    transform: translateY(-2px);
}

.success-footer-note {
    font-size: 0.7rem;
    color: #9C9198;
    color: var(--text-muted);
    margin: 0;
    animation: fadeInUp 0.4s ease 1.6s both;
}

/* Responsive */
@media (max-width: 500px) {
    .payment-success-modal { padding: 1.5rem; }
    .success-info-grid { grid-template-columns: 1fr; }
    .success-actions { flex-direction: column; }
    .timeline-label { font-size: 0.55rem; }
    .timeline-line { width: 16px; }
}

/* ====================== */
/* PROMO TOP BANNER       */
/* ====================== */
.promo-top-banner {
    background: linear-gradient(90deg, #8B2240, #A8324F, #8B2240);
    color: white;
    height: 36px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.promo-scroll {
    display: flex;
    animation: promoScroll 20s linear infinite;
    white-space: nowrap;
}
.promo-scroll span {
    padding: 0 2rem;
}
@keyframes promoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.promo-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.promo-close:hover { background: rgba(255,255,255,0.4); }
.promo-top-banner.hidden { display: none; }

/* ====================== */
/* SEARCH BAR             */
/* ====================== */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}
.search-toggle {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}
.search-toggle:hover { color: var(--primary); }
.search-bar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card-bg);
    border-radius: 25px;
    border: 1px solid transparent;
}
.search-bar.active {
    width: 280px;
    border-color: var(--primary);
}
.search-input {
    width: 100%;
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
}
.search-input::placeholder { color: var(--text-muted); }
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid rgba(139,34,64,0.2);
    border-radius: 12px;
    margin-top: 4px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
}
.search-results.active { display: block; }
.search-result-item {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.search-result-item:hover { background: rgba(139,34,64,0.1); }
.search-result-item:last-child { border-bottom: none; }
.search-result-name { font-weight: 500; color: var(--text); font-size: 0.85rem; }
.search-result-cat { font-size: 0.7rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.search-result-price { margin-left: auto; color: var(--gold); font-weight: 600; font-size: 0.85rem; }
.search-no-result { padding: 14px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* ====================== */
/* REVIEWS                */
/* ====================== */
.reviews-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139,34,64,0.15);
}
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.reviews-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text); }
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(139,34,64,0.06);
    border-radius: 12px;
}
.reviews-avg { text-align: center; }
.reviews-avg-num { font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.reviews-avg-stars { color: #D4A574; font-size: 1.1rem; margin: 4px 0; }
.reviews-avg-count { font-size: 0.75rem; color: var(--text-muted); }
.reviews-bars { flex: 1; }
.review-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 3px 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.review-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}
.review-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4A574, #8B2240);
    border-radius: 3px;
    transition: width 0.6s ease;
}
.review-card {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(139,34,64,0.08);
}
.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.review-author { font-weight: 600; color: var(--text); font-size: 0.85rem; }
.review-verified {
    font-size: 0.7rem;
    color: #48BB78;
    background: rgba(72,187,120,0.1);
    padding: 2px 8px;
    border-radius: 10px;
}
.review-stars { color: #D4A574; font-size: 0.85rem; }
.review-date { font-size: 0.7rem; color: var(--text-muted); }
.review-comment { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-top: 6px; }
.review-helpful {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.review-helpful:hover { color: var(--primary); }
.review-form {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(139,34,64,0.06);
    border-radius: 12px;
}
.review-form h4 { font-family: 'Playfair Display', serif; margin-bottom: 0.8rem; color: var(--text); }
.review-stars-input { display: flex; gap: 4px; margin-bottom: 10px; }
.review-star-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}
.review-star-btn.active, .review-star-btn:hover { color: #D4A574; transform: scale(1.2); }
.review-form input, .review-form textarea {
    width: 100%;
    padding: 8px 12px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(139,34,64,0.15);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.review-form textarea { resize: vertical; min-height: 60px; }
.review-submit {
    background: linear-gradient(135deg, #8B2240, #A8324F);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}
.review-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(139,34,64,0.4); }

/* ====================== */
/* WISHLIST HEART          */
/* ====================== */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.3);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s, transform 0.3s;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}
.wishlist-btn:hover { background: rgba(139,34,64,0.5); transform: scale(1.1); }
.wishlist-btn.active { color: #E53E3E; background: rgba(229,62,62,0.2); }
.wishlist-btn.active:hover { background: rgba(229,62,62,0.3); }
@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.wishlist-btn.pulse { animation: heartBeat 0.5s ease; }

/* ====================== */
/* LOW STOCK BADGE         */
/* ====================== */
.stock-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
    letter-spacing: 0.3px;
}
.stock-badge.low { background: rgba(237,137,54,0.9); color: white; }
.stock-badge.out { background: rgba(229,62,62,0.9); color: white; }

/* ====================== */
/* COOKIE BANNER           */
/* ====================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(40,20,32,0.98);
    backdrop-filter: blur(12px);
    border-top: 2px solid rgba(139,34,64,0.5);
    z-index: 999;
    transform: translateY(100%);
    animation: cookieSlideUp 0.5s 1s forwards;
    font-family: 'Inter', sans-serif;
}
.cookie-banner.hidden { display: none; }
@keyframes cookieSlideUp {
    to { transform: translateY(0); }
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.cookie-text { flex: 1; }
.cookie-text strong { color: #ffffff; font-size: 1rem; }
.cookie-text p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-top: 6px; line-height: 1.4; }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.cookie-btn-accept { background: linear-gradient(135deg, #8B2240, #A8324F); color: white; }
.cookie-btn-accept:hover { box-shadow: 0 4px 15px rgba(139,34,64,0.4); transform: translateY(-1px); }
.cookie-btn-refuse { background: transparent; color: var(--text-muted); border: 1px solid rgba(255,255,255,0.15); }
.cookie-btn-refuse:hover { border-color: var(--primary); color: var(--text); }
.cookie-btn-custom { background: rgba(139,34,64,0.15); color: var(--primary); }
.cookie-btn-custom:hover { background: rgba(139,34,64,0.25); }
.cookie-custom-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.85rem;
    cursor: pointer;
}
.cookie-toggle small { color: var(--text-muted); font-size: 0.7rem; }
.cookie-toggle input { accent-color: #8B2240; }
@media (max-width: 768px) {
    .cookie-content { flex-direction: column; padding: 1rem; gap: 1rem; }
    .cookie-actions { width: 100%; justify-content: center; }
    .search-bar.active { width: 200px; }
    .reviews-summary { flex-direction: column; text-align: center; }
}

/* ====================== */
/* CHECKOUT PROGRESS BAR   */
/* ====================== */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}
.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.checkout-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.4s;
}
.checkout-step.active .checkout-step-icon {
    background: linear-gradient(135deg, #8B2240, #A8324F);
    border-color: #8B2240;
    color: white;
    box-shadow: 0 0 15px rgba(139,34,64,0.5);
}
.checkout-step.completed .checkout-step-icon {
    background: #48BB78;
    border-color: #48BB78;
    color: white;
}
.checkout-step-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.checkout-step.active .checkout-step-label { color: var(--primary); font-weight: 600; }
.checkout-step.completed .checkout-step-label { color: #48BB78; }
.checkout-line {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.checkout-line.filled { background: #48BB78; }
.checkout-line.filling {
    background: linear-gradient(90deg, #48BB78, #8B2240);
}
