: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: 'Manrope', Arial, sans-serif;
    --font-heading: 'Inter', 'Arial', sans-serif;
    --head-scale: 0.8;
    
    /* Dynamic Background Variables */
    --bg-inner: #4e8a0b;
    --bg-mid: #2b4e04;
    --bg-outer: #0c1401;
    --brand: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { background-color: #0a0f0a; }
body {
    background-color: #0a0f0a; /* solid fallback so background is never white if the gradient fails */
    background-image: 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: hidden; /* Remove scroll */
    height: 100vh;
    transition: background 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body.blue-theme {
    --bg-inner: #0b8a82;
    --bg-mid: #043e42;
    --bg-outer: #01100f;
}

/* 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);
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.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: var(--font-main);
    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: var(--brand);
    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;
    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 {
    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: calc(clamp(4rem, 8vw, 9.5rem) * var(--head-scale, 1));
    line-height: 0.92;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    color: white;
    letter-spacing: -0.02em;
}

.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;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.socials {
    display: flex;
    gap: 0.6rem;
}

.social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.social svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social:hover {
    background: #fff;
    color: #071a12;
    transform: translateY(-3px);
}

.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: var(--brand);
    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: 78px;
    height: 78px;
    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: 130px;
    height: 130px;
}

.b2 {
    top: 60%;
    left: 42%;
    width: 64px;
    height: 64px;
}

.b3 {
    top: 30%;
    left: 62%;
    width: 150px;
    height: 150px;
}

.b4 {
    top: 15%;
    left: 48%;
    width: 88px;
    height: 88px;
}

.b5 {
    top: 75%;
    left: 20%;
    width: 76px;
    height: 76px;
}

.b6 {
    top: 45%;
    left: 75%;
    width: 110px;
    height: 110px;
}

.b7 {
    top: 15%;
    left: 40%;
    width: 52px;
    height: 52px;
    opacity: 0.7;
}

.b8 {
    top: 50%;
    left: 55%;
    width: 46px;
    height: 46px;
    opacity: 0.6;
}

.b9 {
    top: 80%;
    left: 35%;
    width: 50px;
    height: 50px;
    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: 1.25rem 1rem 1rem;
    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: var(--brand);
    border-width: 1px;
    background: var(--glass-bg);
    box-shadow: none;
}

.card img {
    width: auto;
    height: 130px;
    margin-top: 0;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.45));
    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;
    }
}

/* Feature pills (hero) */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    max-width: 360px;
}

.feat-pill {
    font-family: var(--font-main);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    color: var(--text-color);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

/* Ingredients / nutrition panel */
#info-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 200;
}

#info-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

#info-panel {
    --accent: #a6ca2a;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 440px;
    max-width: 92vw;
    background: rgba(10, 16, 12, 0.72);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 201;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#info-panel.open {
    transform: translateX(0);
}

.info-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 1.6rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-titles {
    display: flex;
    flex-direction: column;
    margin-right: auto;
}

.info-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--accent);
}

.info-sub {
    font-size: 0.72rem;
    color: var(--muted-color);
    margin-top: 0.35rem;
}

.info-lang {
    display: flex;
    gap: 0.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 0.2rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--muted-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0 0.9rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lang-btn.active {
    background: var(--accent, var(--brand));
    color: #06120a;
}

/* Header right cluster + language switch */
.header-right {
    display: flex;
    align-items: stretch;   /* lang switch matches the Contact button height */
    gap: 1rem;
}

.lang-switch {
    display: flex;
    align-items: stretch;
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 0.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#info-close {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease;
}

#info-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.info-body {
    padding: 1.4rem 1.6rem 2.5rem;
    overflow-y: auto;
    flex: 1;
}

.info-block {
    margin-bottom: 1.6rem;
}

.info-block h4 {
    font-family: var(--font-main);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.7rem;
}

.info-block p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--muted-color);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.info-row span {
    color: var(--muted-color);
}

.info-row b {
    font-weight: 700;
    white-space: nowrap;
}

.info-note {
    font-size: 0.72rem;
    color: var(--muted-color);
    margin-top: 0.5rem;
    font-style: italic;
}

.info-meta {
    font-size: 0.78rem;
    color: var(--muted-color);
    line-height: 1.9;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.2rem;
}

.info-barcode {
    margin-top: 0.6rem;
    font-family: 'Consolas', 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.info-barcode b {
    color: var(--text-color);
}

/* ===== Ingredients page ===== */
body.ing-page {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    background-color: #071a12; /* solid fallback so it's never white if the gradient fails */
    background-image: radial-gradient(circle at 20% 0%, #123a2a 0%, #071a12 45%, #030b08 100%);
}

.ing-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 9rem 6% 5rem;
}

.ing-back {
    display: inline-block;
    color: var(--muted-color);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    transition: color 0.25s ease;
}

.ing-back:hover {
    color: var(--brand);
}

.ing-title {
    font-family: var(--font-heading);
    font-size: calc(clamp(2.2rem, 4.5vw, 3.6rem) * var(--head-scale, 1));
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
}

.ing-intro {
    color: var(--muted-color);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.ing-section {
    margin-bottom: 2.5rem;
}

.ing-pills {
    max-width: none;
}

.ing-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.ing-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.6rem 1.7rem;
    backdrop-filter: blur(12px);
}

.ing-h {
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    margin-bottom: 1rem;
}

.ing-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted-color);
}

.flavor-card {
    border-top: 3px solid var(--fc, var(--brand));
}

.flavor-green {
    --fc: #a6ca2a;
}

.flavor-blue {
    --fc: #4ac0b4;
}

.flavor-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.flavor-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--fc);
}

.flavor-sub {
    font-size: 0.72rem;
    color: var(--muted-color);
    margin-top: 0.35rem;
}

.mono {
    font-family: 'Consolas', 'Courier New', monospace;
    letter-spacing: 0.04em;
}

.ing-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ing-meta-item {
    flex: 1;
    min-width: 200px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ing-meta-item span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-color);
}

.ing-meta-item b {
    font-size: 1rem;
}

@media (max-width: 820px) {
    .ing-grid {
        grid-template-columns: 1fr;
    }
    .header {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

/* Inactive nav items */
.nav-item.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

/* ===== Contact modal ===== */
#contact-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 300;
}

#contact-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

#contact-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.98);
    width: 440px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(14, 20, 16, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: var(--text-color);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.5, 1);
    z-index: 301;
    font-family: var(--font-main);
}

#contact-modal.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

#contact-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease;
}

#contact-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contact-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.7rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.contact-sub {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    margin-bottom: 1.6rem;
}

.cd-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: inherit;
    padding: 0.35rem 0.2rem;
    transition: color 0.2s ease;
}

a.cd-item:hover {
    color: var(--brand);
}

.cd-ic {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 1rem;
    color: #fff;
}

.cd-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.cd-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-color);
}

.cd-txt b {
    font-size: 0.95rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

#contact-form label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-color);
    margin-top: 0.6rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    resize: vertical;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--brand);
    background: rgba(255, 255, 255, 0.09);
}

.cf-submit {
    margin-top: 1.2rem;
    padding: 0.9rem;
    border-radius: 100px;
    border: none;
    background: var(--brand);
    color: #06120a;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.cf-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* ===== FAQ page ===== */
.faq-main {
    max-width: 820px;
}

.faq-cat {
    margin-bottom: 2.5rem;
}

.faq-cat .ing-h {
    margin-bottom: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item[open] {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.05rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: var(--muted-color);
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item[open] summary { color: #fff; }
.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--brand);
}

.faq-item summary:hover { color: #fff; }

.faq-answer {
    padding: 0 1.3rem 1.2rem;
    color: var(--muted-color);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ===== Ambassadors page ===== */
.amb-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.amb-chip {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--muted-color);
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
}

.amb-chip:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.amb-chip.active {
    background: var(--brand);
    color: #06120a;
    border-color: var(--brand);
}

.amb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.4rem;
}

.amb-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.amb-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.amb-photo {
    aspect-ratio: 4 / 5;
    background: #0c140d;
    overflow: hidden;
}

.amb-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amb-body {
    padding: 1.1rem 1.2rem 1.3rem;
}

.amb-role {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.amb-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.amb-bio {
    color: var(--muted-color);
    font-size: 0.85rem;
    line-height: 1.55;
}

.amb-bio-p {
    margin: 0 0 0.7rem;
}
.amb-bio-p:last-child { margin-bottom: 0; }

.amb-empty {
    color: var(--muted-color);
    padding: 2rem 0;
}

/* Ambassador card = clickable (name + role) */
.amb-card { cursor: pointer; }
.amb-card .amb-body { text-align: center; }
.amb-card .amb-name { margin-bottom: 0.35rem; }
.amb-card-role {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
}

/* Ambassador detail modal */
#amb-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 300;
}
#amb-backdrop.open { opacity: 1; pointer-events: auto; }

#amb-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.98);
    width: 460px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    background: rgba(14, 20, 16, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.5, 1);
    z-index: 301;
}
#amb-modal.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

#amb-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background 0.25s ease;
}
#amb-close:hover { background: rgba(0, 0, 0, 0.7); }

.amb-modal-photo {
    aspect-ratio: 4 / 4.4;
    background: #0c140d;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}
.amb-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.amb-modal-body { padding: 1.5rem 1.7rem 1.9rem; }
.amb-modal-body .amb-name { font-size: 1.55rem; margin-bottom: 0.7rem; }
.amb-modal-body .amb-bio { font-size: 0.92rem; line-height: 1.65; }

/* ============================================================
   RESPONSIVE / MOBILE
   ============================================================ */

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 11px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Tablet / mobile menu ---- */
@media (max-width: 900px) {
    .header {
        flex-wrap: wrap;
        padding: 1.1rem 5%;
        row-gap: 0;
    }
    .logo { order: 1; }
    .logo-img { height: 34px; }
    .nav-toggle { display: flex; order: 2; margin-left: auto; }

    .nav,
    .header-right {
        order: 3;
        flex-basis: 100%;
        display: none;
    }
    .nav {
        flex-direction: column;
        gap: 0.2rem;
        margin-top: 1rem;
        border-radius: 18px;
        padding: 0.6rem;
    }
    .nav-item { text-align: center; padding: 0.85rem; font-size: 0.95rem; }
    .header-right {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        margin-top: 0.7rem;
    }
    .lang-switch { justify-content: center; align-self: center; }
    .contact-btn { width: 100%; padding: 0.95rem; }

    body.nav-open .nav,
    body.nav-open .header-right { display: flex; }
    body.nav-open .header {
        background: rgba(8, 14, 10, 0.97);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        max-height: 100vh;
        overflow-y: auto;
        padding-bottom: 1.4rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* content pages */
    .ing-main { padding: 6.5rem 5% 4rem; }
    .ing-title { font-size: clamp(2rem, 7vw, 3rem); }
}

/* ---- Mobile hero (index) ---- */
@media (max-width: 900px) {
    body:not(.ing-page) {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
        min-height: 100vh;
    }
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6.5rem 6% 3rem;
    }
    .hero-content {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 1.6rem;
    }
    .hero-left {
        order: 1;
        height: auto;
        padding: 0;
        gap: 1.1rem;
    }
    .main-title { font-size: clamp(2.6rem, 13vw, 4rem); white-space: normal; }
    .side-title {
        order: 4;
        font-size: clamp(2.6rem, 13vw, 4rem);
        white-space: normal;
        text-align: center;
        align-self: center;
    }
    .description { max-width: none; font-size: 1rem; }

    /* 3D can becomes an inline block in the flow */
    .hero-center {
        position: relative;
        order: 2;
        width: 100%;
        height: 46vh;
        min-height: 300px;
    }
    .main-product-3d {
        position: relative !important;
        top: auto;
        left: auto;
        width: 100%;
        height: 100%;
        transform: rotate(10deg);
    }

    .hero-right {
        order: 3;
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 0;
    }
    .product-carousel { align-items: center; }

    /* hide floating fruit on small screens to avoid overlap */
    .berries-container,
    .berries-container-bg,
    .leaves-container { display: none; }
}

/* ---- Phone ---- */
@media (max-width: 560px) {
    .header { padding: 0.9rem 5%; }
    .hero { padding: 6rem 6% 2.5rem; }
    .main-title, .side-title { font-size: clamp(2.2rem, 12vw, 3rem); }
    .socials { justify-content: flex-start; }
    .amb-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
    .amb-name { font-size: 1.05rem; }
    .ing-grid { grid-template-columns: 1fr; }
    #contact-modal, #amb-modal { padding: 0; }
    #contact-modal { padding: 1.6rem 1.3rem; }
    .amb-modal-body { padding: 1.2rem 1.3rem 1.6rem; }
    .feat-pill { font-size: 0.66rem; padding: 0.4rem 0.7rem; }
}
