
:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --muted-color: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Galada', cursive;
    
    /* Dynamic Background Variables */
    --bg-inner: #0b8a78;
    --bg-mid: #044e3b;
    --bg-outer: #011411;
}

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

body {
    background: radial-gradient(circle at center, var(--bg-inner) 0%, var(--bg-mid) 50%, var(--bg-outer) 100%);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    transition: background 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body.blue-theme {
    --bg-inner: #0b4f8a;
    --bg-mid: #04294e;
    --bg-outer: #010c14;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.nav {
    display: flex;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 0.4rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    /* backdrop-filter: blur(10px);  -- Replaced by liquid glass */
}

.nav.glass {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-item {
    font-family: 'Manrope', sans-serif;
    color: var(--muted-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background: #fbcfe8;
    color: #011d17;
}

.contact-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: none;
}

.contact-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
    box-shadow: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4%;
    padding-top: 5rem;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Stretch columns to full height */
    width: 100%;
    max-width: 100%;
    /* Take full width */
    padding: 0;
    /* Match header by using parent's 4% padding */
    height: 100%;
    position: relative;
}

/* Typography */
.main-title,
.side-title {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 10vw, 12rem);
    line-height: 0.8;
    font-weight: 400;
    text-transform: none;
    white-space: nowrap;
    color: white;
    letter-spacing: normal;
}

.outline {
    color: var(--text-color);
}

/* Left Content */
.hero-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 6rem 0;
    gap: 2rem;
    z-index: 100;
}

@keyframes fadeInEntry {
    to {
        opacity: 1;
        transform: none;
    }
}

.description {
    color: var(--muted-color);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 400px;
}

a.primary-btn { text-decoration: none; color: white; }
.primary-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: none;
}

.primary-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-3px);
    box-shadow: none;
}

.plus-icon {
    background: #fbcfe8;
    color: #011d17;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    padding-bottom: 2px;
    /* Compensate for baseline shift */
    border: none;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto; /* Push to bottom */
}

.award-icon {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-text {
    display: flex;
    flex-direction: column;
}

.award-title {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--muted-color);
}

.award-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Center Product */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.3s forwards, float 6s ease-in-out infinite;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

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

#bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble-img {
    position: absolute;
    pointer-events: none;
}

@keyframes floatUpImg {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-110vh) translateX(30px) rotate(360deg);
        opacity: 0;
    }
}


.main-product-3d {
    width: 80vw;
    height: 80vh;
    outline: none;
    --progress-bar-color: transparent;
    --poster-color: transparent;
    z-index: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(25deg);
    pointer-events: none;
}

/* Berries */
.berries-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 110; /* Above text (100) and can (50) */
    transition: transform 0.1s ease-out;
}

.berries-container-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    /* Behind everything */
    transition: transform 0.1s ease-out;
}

.leaves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    /* Even further behind */
    transition: transform 0.1s ease-out;
}

.berry {
    position: absolute;
    width: 120px;
    height: 120px;
    outline: none;
    --progress-bar-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.berry.no-animation {
    animation: none !important;
}

.b1 {
    top: 25%;
    left: 30%;
    width: 220px;
    height: 220px;
}

.b2 {
    top: 60%;
    left: 42%;
    width: 100px;
    height: 100px;
}

.b3 {
    top: 30%;
    left: 62%;
    width: 250px;
    height: 250px;
}

.b4 {
    top: 15%;
    left: 48%;
    width: 140px;
    height: 140px;
}

.b5 {
    top: 75%;
    left: 20%;
    width: 120px;
    height: 120px;
}

.b6 {
    top: 45%;
    left: 75%;
    width: 180px;
    height: 180px;
}

.b7 {
    top: 15%;
    left: 40%;
    width: 80px;
    height: 80px;
    opacity: 0.7;
}

.b8 {
    top: 50%;
    left: 55%;
    width: 70px;
    height: 70px;
    opacity: 0.6;
}

.b9 {
    top: 80%;
    left: 35%;
    width: 75px;
    height: 75px;
    opacity: 0.7;
}

/* Leaf Positions */
.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: -1;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.l1 {
    top: 10%;
    left: 15%;
}

.l2 {
    top: 40%;
    left: 80%;
    width: 140px;
    height: 140px;
    opacity: 0.4;
}

.l3 {
    top: 70%;
    left: 75%;
    width: 80px;
    height: 80px;
}

.l4 {
    top: 85%;
    left: 20%;
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

@keyframes shine {
    from { transform: translateX(-100%) rotate(45deg); }
    to { transform: translateX(200%) rotate(45deg); }
}

/* Enable interaction only on the model area if needed, but for now let's make it large */
.main-product-3d[camera-controls] {
    pointer-events: auto;
}

@media (max-width: 1200px) {
    .main-product-3d {
        width: 100vw;
        height: 60vh;
        top: 40%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Right Content */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
    height: 100%;
    padding: 6rem 0;
    z-index: 100;
    width: 450px;
    pointer-events: none;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-carousel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
    pointer-events: auto; /* Enable interaction */
}

.carousel-cards {
    display: flex;
    gap: 1rem;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    padding-top: 5rem;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 135px;
    position: relative;
    backdrop-filter: blur(10px);
    text-align: center;
}

.card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
}

.card.active {
    border-color: #fbcfe8;
    border-width: 1px;
    background: var(--glass-bg);
    box-shadow: none;
}

.card img {
    width: 140px;
    height: auto;
    margin-top: -8rem;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    display: block;
    will-change: transform;
    pointer-events: none; /* Mouse passes through image to trigger card hover */
}

.card:hover img {
    transform: translateY(-30px) rotate(-12deg) scale(1.15) !important;
}

.card-info {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    width: 100%;
    word-wrap: break-word;
}

.card-info span:first-child {
    font-weight: 600;
}

.card-info span:last-child {
    color: var(--muted-color);
}

.carousel-nav {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

.side-title {
    align-self: flex-end;
    text-align: right;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 8rem;
    }

    .hero-center {
        order: -1;
    }

    .main-title,
    .side-title {
        font-size: 5rem;
    }

    .hero-right {
        align-items: center;
        text-align: center;
    }

    .side-title {
        align-self: center;
        text-align: center;
    }
}

.sv-panel{position:relative;z-index:4;max-width:860px;margin:0 auto;padding:5.5rem 1.5rem;color:#fff}
.sv-panel .eyebrow{letter-spacing:.18em;text-transform:uppercase;font-size:.72rem;opacity:.7}
.sv-panel h2{font-family:var(--font-heading);font-size:clamp(2.4rem,6vw,4.5rem);margin:.3rem 0 1rem;font-weight:400}
.sv-panel p{color:var(--muted-color);line-height:1.6;max-width:38rem}
.sv-flavors{display:grid;gap:1rem;margin:2rem 0 0}
@media (min-width:720px){.sv-flavors{grid-template-columns:1fr 1fr}}
.sv-flavors article{padding:1.4rem;border:1px solid var(--glass-border);background:var(--glass-bg);border-radius:1.4rem}
.sv-flavors h3{margin:0 0 .4rem;font-size:1.2rem}
.sv-panel form{display:grid;gap:.85rem;margin-top:1.6rem}
.sv-panel input{border:0;border-bottom:1px solid rgba(255,255,255,.4);background:transparent;padding:.75rem 0;color:#fff}
.sv-panel button{height:3rem;border:0;border-radius:999px;background:#fff;color:#111;cursor:pointer;font-weight:600}
#sample-bar{position:fixed;inset:auto 0 0 0;z-index:200;height:2.75rem;display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:0 .85rem;background:rgba(0,0,0,.88);color:rgba(255,255,255,.72);font:400 11px/1.3 ui-sans-serif,system-ui,sans-serif;border-top:1px solid rgba(255,255,255,.12)}
#sample-bar .links{display:flex;align-items:center;gap:.75rem}
#sample-bar .pill{background:#fff;color:#111;border-radius:999px;padding:.25rem .7rem;font-weight:600;text-decoration:none}
body{padding-bottom:2.75rem}
