/* ===== The Pressed Juice Bar ===== */

/* ===== Fonts ===== */
@font-face { font-family: 'Be Vietnam Pro'; src: url('fonts/BeVietnamPro-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Be Vietnam Pro'; src: url('fonts/BeVietnamPro-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Be Vietnam Pro'; src: url('fonts/BeVietnamPro-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Be Vietnam Pro'; src: url('fonts/BeVietnamPro-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Be Vietnam Pro'; src: url('fonts/BeVietnamPro-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Be Vietnam Pro'; src: url('fonts/BeVietnamPro-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }

/* ===== CSS Variables ===== */
:root {
    --color-bg: #EEF5EC;
    --color-bg-alt: #E2EDDF;
    --color-surface: #FFFFFF;
    --color-primary: #1B3A2D;
    --color-primary-light: #2E7D32;
    --color-accent: #4CAF50;
    --color-accent-warm: #F5A623;
    --color-text: #1B3A2D;
    --color-text-light: #5A7A6A;
    --color-text-muted: #8FA898;
    --color-border: rgba(27, 58, 45, 0.1);
    --color-white: #FFFFFF;
    --color-black: #0A1F14;
    --green: #2E7D32;
    --orange: #E65100;
    --beet: #880E4F;
    --teal: #00897B;
    --red: #D32F2F;
    --font: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --section-pad: clamp(60px, 8vw, 120px);
    --container-max: 1200px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--color-text); background-color: var(--color-bg); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }

/* ===== PRELOADER - MiCha Split Reveal ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-half {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--color-primary);
    z-index: 1;
}

.preloader-half-left { left: 0; }
.preloader-half-right { right: 0; }

.preloader-vine {
    position: absolute;
    z-index: 2;
    opacity: 0;
    filter: brightness(0) invert(1);
}

.preloader-vine-left {
    left: 10%;
    top: 50%;
    transform: translateY(-50%) scale(0.5);
    width: clamp(120px, 18vw, 250px);
}

.preloader-vine-right {
    right: 10%;
    top: 50%;
    transform: translateY(-50%) scale(0.5);
    width: clamp(100px, 14vw, 200px);
}

.preloader-center {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    width: clamp(100px, 15vw, 180px);
    filter: brightness(0) invert(1);
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--color-white);
    border-radius: 3px;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.announcement-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.announcement-track span { flex-shrink: 0; padding-right: 4px; }

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

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(238, 245, 236, 0.92);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s var(--ease);
}

@supports (backdrop-filter: blur(20px)) {
    .site-header { background: rgba(238, 245, 236, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
}

.site-header.scrolled { background: rgba(238, 245, 236, 0.95); box-shadow: 0 1px 20px rgba(0,0,0,0.06); }

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img { height: 48px; width: auto; transition: transform 0.3s var(--ease); }
.logo:hover img { transform: scale(1.05); }

.nav-list { display: flex; gap: 32px; align-items: center; }

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-light);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--color-primary-light); }
.nav-link:hover::after { width: 100%; }

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

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.3s var(--ease); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-primary { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-light); border-color: var(--color-primary-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25); }

.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }

.btn-white { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); }
.btn-white:hover { background: transparent; color: var(--color-white); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline-white:hover { background: var(--color-white); color: var(--color-primary); transform: translateY(-2px); }

/* WhatsApp Button Glow */
.btn-glow {
    animation: btnGlow 2.5s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(255,255,255,0.2); }
    50% { box-shadow: 0 0 25px rgba(255,255,255,0.4), 0 0 60px rgba(46, 125, 50, 0.15); }
}

/* ===== Section Utilities ===== */
.section-header { margin-bottom: clamp(32px, 5vw, 56px); }
.section-header.centered { text-align: center; }

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-light);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-desc {
    font-size: clamp(15px, 1.2vw, 18px);
    color: var(--color-text-light);
    margin-top: 12px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Heading Accent Decorations ===== */
.heading-accent {
    width: clamp(28px, 3.5vw, 48px);
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    opacity: 0.35;
    filter: hue-rotate(90deg) saturate(2) brightness(0.6);
}

.heading-accent-left { margin-right: 12px; }
.heading-accent-right { margin-left: 12px; }

/* ===== Floating Botanicals ===== */
.floating-botanical {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    will-change: transform;
    filter: hue-rotate(90deg) saturate(1.2) brightness(0.5) sepia(0.3);
}

.fb-1 { top: 8%; left: -3%; width: clamp(60px, 8vw, 120px); }
.fb-2 { top: 55%; right: -2%; width: clamp(50px, 7vw, 100px); }
.fb-3 { bottom: 15%; left: 5%; width: clamp(40px, 6vw, 90px); }
.fb-4 { top: 20%; right: 8%; width: clamp(35px, 5vw, 70px); }
.fb-5 { top: 10%; right: -4%; width: clamp(55px, 7vw, 100px); }
.fb-6 { bottom: 10%; left: -3%; width: clamp(45px, 6vw, 80px); }
.fb-7 { top: 15%; left: -5%; width: clamp(50px, 7vw, 110px); }
.fb-8 { bottom: 12%; right: -3%; width: clamp(45px, 6vw, 90px); }
.fb-9 { top: 5%; right: -4%; width: clamp(50px, 7vw, 100px); }
.fb-10 { bottom: 8%; left: -3%; width: clamp(40px, 5vw, 80px); }
.fb-cta-1 { top: -10%; left: 5%; width: clamp(50px, 6vw, 100px); }
.fb-cta-2 { bottom: -8%; right: 8%; width: clamp(45px, 6vw, 90px); }

/* ===== Polkadot Strips ===== */
.polkadot-strip {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    filter: hue-rotate(90deg) saturate(1.5) brightness(0.6);
    width: clamp(40px, 5vw, 70px);
    will-change: transform;
}

.polkadot-left { left: -2%; top: 20%; }
.polkadot-right { right: -2%; top: 30%; }

/* ===== Spin Animations ===== */
.spin-slow { animation: spinSlow 25s linear infinite; }
.spin-reverse { animation: spinReverse 30s linear infinite; }

@keyframes spinSlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes spinReverse { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }

/* ===== Product Float Animation ===== */
.product-float {
    animation: productFloat var(--float-duration, 4s) var(--float-delay, 0s) ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(0.5deg); }
    75% { transform: translateY(4px) rotate(-0.5deg); }
}

/* ===== Bubbles Overlay ===== */
.bubbles-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: url('images/bubbles-overlay.png') center/cover;
    opacity: 0.06;
    mix-blend-mode: overlay;
}

/* ===== Wavy Dividers ===== */
.wavy-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
    z-index: 2;
}

.wavy-divider svg {
    width: 100%;
    height: clamp(40px, 5vw, 80px);
    display: block;
}

/* ===== Hero Orbit Elements ===== */
.hero-orbit {
    position: absolute;
    width: clamp(30px, 4vw, 55px);
    opacity: 0.3;
    pointer-events: none;
    filter: hue-rotate(90deg) saturate(1.5) brightness(0.6);
    will-change: transform;
}

.hero-orbit-1 {
    top: 5%;
    right: -8%;
    animation: orbit1 12s ease-in-out infinite;
}

.hero-orbit-2 {
    bottom: 15%;
    left: -10%;
    animation: orbit2 15s ease-in-out infinite;
}

.hero-orbit-3 {
    top: 50%;
    right: -15%;
    animation: orbit3 18s ease-in-out infinite;
}

@keyframes orbit1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-15px, 10px) rotate(90deg) scale(1.1); }
    50% { transform: translate(5px, -15px) rotate(180deg) scale(0.95); }
    75% { transform: translate(10px, 8px) rotate(270deg) scale(1.05); }
}

@keyframes orbit2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -12px) rotate(120deg); }
    66% { transform: translate(-10px, 15px) rotate(240deg); }
}

@keyframes orbit3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-18px, -10px) rotate(180deg) scale(1.15); }
}

/* ===== Review Shape Decorations ===== */
.review-shape {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    opacity: 0.18;
    pointer-events: none;
    filter: hue-rotate(90deg) saturate(1.5) brightness(0.6);
    animation: reviewShapeFloat 8s ease-in-out infinite;
}

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

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: clamp(60px, 8vw, 100px) 0 var(--section-pad);
    overflow: hidden;
    background: var(--color-bg);
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-light);
    padding: 8px 20px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 100px;
    margin-bottom: 20px;
}

/* Hero Heading - Word Split */
.hero-heading {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 4px;
}

.word {
    display: inline-block;
    transform: translateY(110%);
}

.hero-sub {
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9) rotateY(15deg);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.hero-slide img {
    max-height: 90%;
    max-width: 75%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
    transition: transform 0.4s var(--ease);
}

.hero-slide.active img:hover { transform: scale(1.05) rotate(-2deg); }

.hero-dots { display: flex; gap: 10px; margin-top: 24px; position: relative; z-index: 5; }

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
}

.hero-dot.active { background: var(--color-primary-light); transform: scale(1.3); }
.hero-dot:hover { background: var(--color-text-muted); }

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -15%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(46, 125, 50, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: background 0.8s var(--ease);
}

/* ===== Trust Bar ===== */
.trust-bar {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
}

.trust-bar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--color-text); }

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.08);
    color: var(--color-primary-light);
}

.trust-icon svg { width: 18px; height: 18px; }

/* ===== About Section ===== */
.about-section { padding: var(--section-pad) 0; position: relative; overflow: hidden; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.about-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.about-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.about-card-image {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.about-card-image img {
    max-height: 80%;
    max-width: 60%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}

.about-card:hover .about-card-image img { transform: scale(1.08) rotate(-3deg); }

.about-card-content { padding: 28px 28px 36px; }
.about-card-content h3 { font-size: clamp(18px, 1.5vw, 22px); font-weight: 800; margin-bottom: 12px; color: var(--color-primary); }
.about-card-content p { font-size: 14px; line-height: 1.7; color: var(--color-text-light); }

/* ===== Products Section ===== */
.products-section { padding: var(--section-pad) 0; background: var(--color-bg-alt); position: relative; overflow: hidden; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
}

.product-card { transition: transform 0.4s var(--ease); }
.product-card:hover { transform: translateY(-8px); }

.product-card-inner {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.02em;
}

.product-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-height: 85%;
    max-width: 65%;
    object-fit: contain;
    transition: transform 0.5s var(--ease-bounce);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.product-card:hover .product-image img { transform: scale(1.1) rotate(-5deg); }

.product-info { padding: 20px 24px 28px; background: var(--color-surface); flex: 1; }
.product-name { font-size: clamp(16px, 1.3vw, 20px); font-weight: 800; color: var(--color-primary); margin-bottom: 6px; }
.product-ingredients { font-size: 13px; color: var(--color-text-light); margin-bottom: 12px; line-height: 1.5; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: rgba(46, 125, 50, 0.08); color: var(--color-primary-light); letter-spacing: 0.02em; }

/* ===== Wellness Shots ===== */
.wellness-section { padding: var(--section-pad) 0; background: var(--color-bg); position: relative; overflow: hidden; }

.wellness-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.wellness-info { padding-right: 20px; }
.wellness-info .section-title { margin-bottom: 16px; }

.wellness-desc { font-size: 15px; color: var(--color-text-light); line-height: 1.8; margin-bottom: 28px; }

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

.shot-card { transition: transform 0.4s var(--ease); }
.shot-card:hover { transform: translateY(-6px); }

.shot-card-inner {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.4s var(--ease);
}

.shot-card:hover .shot-card-inner { box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

.shot-image { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

.shot-image img {
    max-height: 85%;
    max-width: 70%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    transition: transform 0.4s var(--ease-bounce);
}

.shot-card:hover .shot-image img { transform: scale(1.08); }

.shot-name { font-size: 15px; font-weight: 800; color: var(--color-primary); margin-bottom: 4px; }
.shot-ingredients { font-size: 12px; color: var(--color-text-muted); }

/* ===== Marquee Banner ===== */
.marquee-banner { background: var(--color-primary); padding: 18px 0; overflow: hidden; }

.marquee-track {
    display: flex;
    align-items: center;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font);
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 0 clamp(16px, 2vw, 32px);
    flex-shrink: 0;
    letter-spacing: -0.01em;
}

.marquee-dot {
    display: inline-block;
    width: 8px !important;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Reviews ===== */
.reviews-section { padding: var(--section-pad) 0; background: var(--color-bg-alt); overflow: hidden; }
.reviews-carousel { overflow: hidden; margin: 0 -8px; }
.reviews-track { display: flex; gap: 20px; padding: 8px; }

.review-card {
    min-width: calc(33.333% - 16px);
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
    border-top: 3px solid var(--card-accent, var(--color-primary-light));
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }

.review-stars { display: flex; gap: 2px; color: #FAB80B; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--color-text); flex: 1; }

.review-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--color-border); }

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-accent, var(--color-primary-light));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.review-name { font-weight: 700; font-size: 14px; color: var(--color-primary); }
.review-location { font-size: 12px; color: var(--color-text-muted); }

.reviews-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }

.reviews-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.3s var(--ease);
    background: var(--color-surface);
}

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

/* ===== Story Section ===== */
.story-section { padding: var(--section-pad) 0; background: var(--color-bg); }

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 8vw, 80px);
    margin-top: clamp(40px, 6vw, 64px);
}

.story-chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.story-chapter-reverse {
    direction: rtl;
}
.story-chapter-reverse > * {
    direction: ltr;
}

.story-chapter-image {
    position: relative;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.story-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.story-chapter-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-chapter-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.12;
    line-height: 1;
    letter-spacing: -2px;
}

.story-chapter-content h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--color-text);
    margin-top: -8px;
}

.story-chapter-content p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.story-cta {
    text-align: center;
    margin-top: clamp(32px, 5vw, 56px);
}

/* ===== Delivery Areas ===== */
.delivery-section { padding: var(--section-pad) 0; background: var(--color-bg); }

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.delivery-area {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s var(--ease);
}

.delivery-area:hover {
    background: rgba(46, 125, 50, 0.08);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.delivery-coming-soon {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.delivery-coming-soon::after {
    content: 'soon';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-white);
    background: var(--color-primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.2;
}

.delivery-note {
    text-align: center;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.delivery-note a {
    color: var(--color-primary-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.delivery-note a:hover { color: var(--color-primary); }

/* ===== FAQ ===== */
.faq-section { padding: var(--section-pad) 0; background: var(--color-surface); }

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.faq-header { position: sticky; top: 100px; }
.faq-header p { font-size: 15px; color: var(--color-text-light); line-height: 1.7; margin-top: 16px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
}

.faq-item:hover, .faq-item.active, .faq-item[open] { border-color: var(--color-primary-light); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    color: var(--color-primary);
    background: transparent;
    transition: background 0.3s var(--ease);
    gap: 16px;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

.faq-question:hover { background: rgba(46, 125, 50, 0.03); }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    transition: all 0.3s var(--ease);
}

.faq-item.active .faq-icon, .faq-item[open] .faq-icon { background: var(--color-primary-light); color: var(--color-white); transform: rotate(45deg); }

.faq-answer { padding: 0 24px 20px; }
.faq-item:not([open]) .faq-answer { display: none; }

.faq-answer p { font-size: 14px; line-height: 1.8; color: var(--color-text-light); }

/* ===== CTA ===== */
.cta-section { padding: var(--section-pad) 0; background: var(--color-bg); position: relative; overflow: hidden; }

.cta-card {
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    padding: clamp(40px, 6vw, 80px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on CTA */
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 50%);
    animation: ctaShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaShimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20%, 10%); }
}

.cta-title { font-size: clamp(24px, 3vw, 40px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-text { font-size: 15px; line-height: 1.7; opacity: 0.8; margin-bottom: 28px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

/* CTA Social Links */
.cta-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.cta-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-contact-item { display: flex; flex-direction: column; gap: 4px; }
.cta-contact-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.5; }
.cta-contact-value { font-size: 16px; font-weight: 700; }

/* ===== Footer ===== */
.site-footer { background: var(--color-black); color: rgba(255,255,255,0.7); padding: clamp(48px, 6vw, 80px) 0 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 60px);
    padding-bottom: clamp(40px, 5vw, 60px);
}

.footer-logo { height: 56px; width: auto; margin-bottom: 16px; filter: brightness(10); }
.footer-tagline { font-size: 16px; font-weight: 700; color: var(--color-white); margin-bottom: 12px; }
.footer-address { font-size: 14px; line-height: 1.6; }
.footer-heading { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { order: 1; }
    .hero-image { order: 0; }
    .hero-sub { max-width: none; }
    .hero-buttons { justify-content: center; }
    .hero-carousel { max-width: 300px; }
    .about-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .wellness-split { grid-template-columns: 1fr; text-align: center; }
    .wellness-info { padding-right: 0; }
    .wellness-info .btn { margin: 0 auto; }
    .story-chapter { grid-template-columns: 1fr; }
    .story-chapter-reverse { direction: ltr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-header { position: static; text-align: center; }
    .cta-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .review-card { min-width: calc(50% - 16px); }
    .floating-botanical { display: none; }
    .polkadot-strip { display: none; }
    .hero-orbit { display: none; }
}

@media (max-width: 768px) {
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(238, 245, 236, 0.95); }
    .nav { position: fixed; inset: 0; background: var(--color-bg); padding: 100px 32px 40px; display: flex; align-items: flex-start; justify-content: center; transform: translateX(100%); opacity: 0; transition: all 0.4s var(--ease); z-index: 999; }
    .nav.active { transform: translateX(0); opacity: 1; }
    .nav-list { flex-direction: column; gap: 24px; text-align: center; }
    .nav-link { font-size: 20px; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .header-inner { height: 64px; }
    .logo img { height: 40px; width: auto; }
    .btn-sm.btn-primary { display: none; }
    .hero { padding-top: 40px; }
    .hero-carousel { max-width: 240px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .wellness-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .review-card { min-width: calc(85% - 16px); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-bar-inner { gap: 12px; }
    .trust-item { font-size: 12px; }
    .trust-item span:not(.trust-icon) { display: none; }
    .trust-icon { width: 40px; height: 40px; }
    .heading-accent { display: none; }
    .bubbles-overlay { display: none; }
}

@media (max-width: 480px) {
    .hero-heading { font-size: 32px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .products-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .about-grid { max-width: none; }
    .cta-card { padding: 32px 24px; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .cta-socials { justify-content: center; }
    .announcement-bar { font-size: 11px; }
    .trust-item span:not(.trust-icon) { display: inline; font-size: 11px; }
    .trust-icon { width: 32px; height: 32px; }
    .trust-bar-inner { justify-content: center; gap: 16px; }
    .trust-item { flex: 0 0 calc(50% - 8px); justify-content: center; }
}

/* ===== GSAP-driven animation initial states ===== */
[data-animate] { opacity: 0; }

/* ===== GSAP Fallback - if JS fails, show content ===== */
@media (scripting: none) {
    [data-animate] { opacity: 1; }
    .word { transform: none; }
}

/* ===== Skip Link ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10001;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: top 0.3s var(--ease);
    text-decoration: none;
}

.skip-link:focus {
    top: 16px;
}

/* ===== Focus Visible Styles ===== */
.btn:focus-visible,
.nav-link:focus-visible,
.hero-dot:focus-visible,
.faq-question:focus-visible,
.reviews-btn:focus-visible,
.cta-social-link:focus-visible,
.footer-col a:focus-visible,
.nav-toggle:focus-visible {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 3px;
}

.hero-dot:focus-visible {
    outline-offset: 2px;
    outline-color: var(--color-primary-light);
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .product-float { animation: none; }
    .spin-slow, .spin-reverse { animation: none; }
    .announcement-track { animation: none; }
    .marquee-track { animation: none; }
    .hero-orbit { animation: none; }
    .btn-glow { animation: none; }
    .whatsapp-float { animation: none; }
    [data-animate] { opacity: 1 !important; }
    .word { transform: none !important; }
}

/* ===== Touch devices: prevent sticky hover states ===== */
@media (hover: none) {
    .about-card:hover { transform: none; box-shadow: none; }
    .about-card:hover .about-card-image img { transform: none; }
    .product-card:hover { transform: none; }
    .product-card:hover .product-image img { transform: none; }
    .shot-card:hover { transform: none; }
    .shot-card:hover .shot-card-inner { box-shadow: none; }
    .shot-card:hover .shot-image img { transform: none; }
    .review-card:hover { transform: none; box-shadow: none; }
    .story-img:hover { transform: none; box-shadow: none; }
    .delivery-area:hover { transform: none; }
    .cta-social-link:hover { transform: none; }
    .whatsapp-float:hover { transform: none; }
}

/* ===== Mobile: disable heavy decorative animations ===== */
@media (max-width: 768px) {
    .product-float { animation: none; }
    .spin-slow, .spin-reverse { animation: none; }
    .hero-slide { transition: opacity 0.3s ease; transform: none !important; }
    .hero-slide.active { transform: none !important; }
    .hero-slide img { filter: none; }
    .review-shape { animation: none; }
    .cta-card::before { animation: none; }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 3px;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ===== Product Card Color Classes (replacing inline styles) ===== */
.product-card-green { background-color: #e8f5e9; }
.product-card-orange { background-color: #fff3e0; }
.product-card-pink { background-color: #fce4ec; }
.product-card-teal { background-color: #e0f7fa; }

.product-badge-green { background: #2E7D32; color: #fff; }
.product-badge-orange { background: #E65100; color: #fff; }

.about-card-green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.about-card-orange { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.about-card-pink { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }

/* ===== Mobile WhatsApp button sizing ===== */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}
