* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0f1a0c;
    --forest: #162118;
    --grove: #1e3020;
    --canopy: #2a4a2c;
    --moss: #3d6b3a;
    --sage: #6a9e60;
    --gold: #d4880a;
    --amber: #f0a820;
    --ivory: #f8f2e4;
    --cream: #fdf9f0;
    --parchment: #ede4cf;
    --sand: #c4ad88;
    --muted: #8a7a5a;
    --r-lg: clamp(60px, 10vw, 60px);
    --r-md: clamp(50px, 8vw, 50px);
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

    /* paper grain */
    body::after {
        content: "";
        position: fixed;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
    }

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* ===== NAV (glassmorphic, animated) ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 52px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 136, 10, 0.1);
}

    .nav.scrolled {
        background: rgba(248, 242, 228, 0.92);
        backdrop-filter: blur(18px);
        padding: 10px 52px;
        box-shadow: 0 12px 40px rgba(15, 26, 12, 0.08);
    }

.text-decoration-none {
    text-decoration: none;
}

.nav-logo {
    font-family: "Fraunces", serif;
    font-weight: 900;
    font-size: 1.3 rem;
    letter-spacing: -0.02em;
    color: var(--ivory);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-mark {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(248, 242, 228, 0.08);
    padding: 4px;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.nav.scrolled .nav-mark {
    background: rgba(15, 26, 12, 0.04);
    filter: none;
}

.nav-logo span {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    /* margin-left: 8px; */
    opacity: 0.9;
}

.nav.scrolled .nav-logo {
    color: var(--ink);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
}

    .nav-links a {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(248, 242, 228, 0.9);
        text-decoration: none;
        /* padding-bottom: 4px; */
        border-bottom: 1px solid transparent;
        transition: color 0.3s, border-color 0.3s, transform 0.2s;
        display: inline-block;
    }

.nav.scrolled .nav-links a {
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--gold) !important;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.nav-shop {
    background: var(--gold);
    color: var(--ink) !important;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 8px 18px rgba(212, 136, 10, 0.3);
}

    .nav-shop:hover {
        background: var(--amber);
        transform: scale(1.02) translateY(-2px) !important;
    }

/* ===== HERO (cinematic particle field) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--forest);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 70% 40%, #2a4a2c 0%, transparent 60%), radial-gradient(ellipse 60% 60% at 20% 80%, rgba(212, 136, 10, 0.12) 0%, transparent 50%), #0f1a0c;
    overflow: hidden;
}

    .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        /* background: linear-gradient(90deg, rgba(15,26,12,0.65), rgba(15,26,12,0.15), rgba(15,26,12,0.55)),
                        url("seven.jpeg") center/cover no-repeat; */
        opacity: 0.22;
        filter: saturate(0.9) contrast(1.05);
    }

/* particle system (3D floating) */
.particle-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    perspective: 500px;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 136, 10, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 12px #d4880a;
    animation: float3d 16s infinite alternate ease-in-out;
}

@keyframes float3d {
    0% {
        transform: translate3d(0, 110vh, 0) rotateX(0deg);
        opacity: 0;
    }

    15% {
        opacity: 0.8;
    }

    85% {
        opacity: 0.6;
    }

    100% {
        transform: translate3d(40px, -10vh, 60px) rotateX(20deg);
        opacity: 0;
    }
}

/* generate 30 particles via js – we add static for demo */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 52px;
    width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-eyebrow-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.hero-eyebrow-text {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
}

.hero-h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(54px, 8vw, 110px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -3px;
    color: var(--ivory);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-h1-em {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 200;
    font-style: italic;
    color: var(--gold);
    display: block;
    margin: 20px 0 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-desc {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.9;
    color: rgba(248, 242, 228, 0.8);
    max-width: 700px;
    border-left: 2px solid var(--gold);
    padding-left: 28px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero-stats {
    display: flex;
    gap: 60px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero-stat-number {
    font-family: "Fraunces", serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--ivory);
    line-height: 1;
}

    .hero-stat-number em {
        color: var(--gold);
        font-size: 32px;
        font-style: italic;
    }

.hero-stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(248, 242, 228, 0.5);
    text-transform: uppercase;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MARQUEE (kinetic) ===== */
.marquee {
    background: var(--gold);
    height: 56px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-block: 1px solid rgba(15, 26, 12, 0.1);
}

.marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink);
    padding: 0 28px;
}

.marquee-sep {
    width: 6px;
    height: 6px;
    background: var(--ink);
    border-radius: 50%;
    opacity: 0.4;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== ABOUT (expressive cards with hover 3D) ===== */
.about {
    padding: var(--r-lg) 52px;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.about-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

    .about-label::before {
        content: "";
        width: 40px;
        height: 2px;
        background: var(--gold);
    }

.about-h {
    font-family: "Fraunces", serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

    .about-h em {
        color: var(--gold);
        font-style: italic;
    }

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 30px;
}

.about-highlight {
    font-family: "Fraunces", serif;
    font-size: 22px;
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    margin: 40px 0;
}

.milestone-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.milestone-card {
    background: var(--ivory);
    padding: 15px 30px;
    border-radius: 12px;
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid rgba(212, 136, 10, 0.1);
    position: relative;
    overflow: hidden;
}

    .milestone-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
        border-color: var(--gold);
    }

.milestone-year {
    font-family: "Fraunces", serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.milestone-title {
    font-size: 20px;
    font-weight: 700;
    margin: 8px 0 4px;
}

.milestone-desc {
    color: var(--muted);
}

/* ===== PRODUCTS (grid with tilt & glow) ===== */
.products {
    background: var(--parchment);
    padding: var(--r-lg) 52px;
}

.section-header {
    max-width: 1300px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-label {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gold);
    display: inline-flex;
    gap: 20px;
    align-items: center;
}

    .section-label::before,
    .section-label::after {
        content: "";
        width: 40px;
        height: 2px;
        background: var(--gold);
    }

.section-h {
    font-family: "Fraunces", serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.9;
    margin: 20px 0;
    letter-spacing: -2px;
}

    .section-h em {
        color: var(--gold);
        font-style: italic;
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: var(--ivory);
    padding: 45px 30px;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid rgba(212, 136, 10, 0.1);
    position: relative;
    overflow: hidden;
}

    .product-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(212, 136, 10, 0.2), transparent 70%);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .product-card:hover {
        transform: translateY(-16px) rotate(0.5deg);
        box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
        border-color: var(--gold);
    }

        .product-card:hover::before {
            opacity: 1;
        }

.product-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(212, 136, 10, 0.14);
    box-shadow: 0 18px 32px rgba(15, 26, 12, 0.1);
    transform: scale(1);
    transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1);
}

.product-card:hover .product-img {
    transform: scale(1.03);
}

.product-icon {
    font-size: 58px;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.product-title {
    font-size: 26px;
    font-weight: 700;
    font-family: "Fraunces", serif;
    margin-bottom: 12px;
}

.product-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-tag {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    border-bottom: 1px solid;
    padding-bottom: 2px;
}

/* ===== INNOVATION (split with animated molecular bg) ===== */
.innovation {
    background: var(--forest);
    padding: var(--r-lg) 52px;
    color: var(--ivory);
}

.innovation-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.molecule-bg {
    position: relative;
    height: 400px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.15"><circle cx="30" cy="40" r="4" fill="%23d4880a"/><circle cx="70" cy="20" r="3" fill="%23d4880a"/><circle cx="110" cy="50" r="5" fill="%23d4880a"/><circle cx="160" cy="30" r="4" fill="%23d4880a"/><circle cx="50" cy="90" r="4" fill="%23d4880a"/><circle cx="130" cy="120" r="6" fill="%23d4880a"/><circle cx="80" cy="150" r="4" fill="%23d4880a"/><circle cx="150" cy="170" r="5" fill="%23d4880a"/><line x1="30" y1="40" x2="70" y2="20" stroke="%23d4880a" stroke-width="0.5"/><line x1="70" y1="20" x2="110" y2="50" stroke="%23d4880a" stroke-width="0.5"/><line x1="110" y1="50" x2="160" y2="30" stroke="%23d4880a" stroke-width="0.5"/><line x1="50" y1="90" x2="130" y2="120" stroke="%23d4880a" stroke-width="0.5"/><line x1="130" y1="120" x2="80" y2="150" stroke="%23d4880a" stroke-width="0.5"/><line x1="80" y1="150" x2="150" y2="170" stroke="%23d4880a" stroke-width="0.5"/></svg>') repeat;
    animation: driftBg 40s linear infinite;
}

@keyframes driftBg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 200px;
    }
}

.innovation-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-circle {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 136, 10, 0.2);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .stat-circle:hover {
        border-color: var(--gold);
        transform: scale(1.05);
        background: rgba(212, 136, 10, 0.05);
    }

.stat-num {
    font-size: 44px;
    font-weight: 900;
    font-family: "Fraunces", serif;
    color: var(--gold);
}

/* ===== STEPS SECTION (how it works) ===== */
.steps-section {
    background: var(--cream);
    padding: var(--r-lg) 52px;
}

.steps-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--ivory);
    border-radius: 32px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(212, 136, 10, 0.1);
    overflow: hidden;
}

    .step-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.25);
        border-color: var(--gold);
    }

.step-number {
    font-family: "Fraunces", serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 0.8;
    color: rgba(212, 136, 10, 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: 0.2s;
}

.step-card:hover .step-number {
    color: rgba(212, 136, 10, 0.25);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.step-title {
    font-family: "Fraunces", serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ink);
}

.step-desc {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.step-connector {
    display: none;
}

@media (min-width: 1000px) {
    .step-card {
        position: relative;
    }
}

/* ===== ORUM SPOTLIGHT + ADD TO CART SECTION ===== */
.orum-spotlight {
    padding: var(--r-lg) 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.orum-bottle {
    max-width: 300px;
    margin: 0 auto;
    animation: float 6s infinite alternate;
    filter: drop-shadow(0 30px 30px rgba(212, 136, 10, 0.2));
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-2deg);
    }

    100% {
        transform: translateY(-30px) rotate(2deg);
    }
}

/* ADD TO CART PANEL (right side) */
.cart-panel {
    background: var(--ivory);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(212, 136, 10, 0.2);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

    .cart-panel:hover {
        border-color: var(--gold);
        box-shadow: 0 30px 50px -15px rgba(212, 136, 10, 0.3);
    }

.cart-title {
    font-family: "Fraunces", serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
}

.cart-sub {
    color: var(--muted);
    font-style: italic;
    border-bottom: 1px solid rgba(212, 136, 10, 0.2);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.size-selector {
    display: flex;
    gap: 10px;
    margin: 24px 0;
}

.size-btn {
    flex: 1;
    background: transparent;
    border: 1px solid var(--sand);
    padding: 12px 0;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
    cursor: pointer;
}

    .size-btn.active,
    .size-btn:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--ink);
    }

.price-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 20px;
}

.price {
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
}

    .price small {
        font-size: 16px;
        color: var(--muted);
        font-weight: 400;
    }

.qty-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    border-radius: 40px;
    border: 1px solid rgba(212, 136, 10, 0.2);
}

.qty-btn {
    width: 40px;
    height: 48px;
    background: transparent;
    border: none;
    font-size: 26px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 40px;
}

    .qty-btn:hover {
        background: rgba(212, 136, 10, 0.1);
        color: var(--gold);
    }

.qty-display {
    min-width: 40px;
    text-align: center;
    font-weight: 700;
}

.add-to-cart {
    width: 100%;
    background: var(--gold);
    border: none;
    padding: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 60px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 24px;
}

    .add-to-cart:hover {
        background: var(--amber);
        gap: 20px;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(212, 136, 10, 0.4);
    }

.cart-meta {
    list-style: none;
    margin-top: 24px;
}

    .cart-meta li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(212, 136, 10, 0.1);
        color: var(--muted);
    }

        .cart-meta li:last-child {
            border-bottom: none;
        }

/* ===== FOOTER ===== */
footer {
    background: var(--forest);
    padding: 70px 52px 30px;
    color: var(--ivory);
}

.foot-grid {
    max-width: 1300px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.foot-bottom {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.3);
}

.foot-logoimg {
    width: min(280px, 100%);
    height: auto;
    margin: 12px 0 16px;
    opacity: 0.92;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
}

/* back to top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

    .back-to-top.visible {
        opacity: 1;
    }

    .back-to-top:hover {
        background: var(--amber);
        transform: scale(1.1) translateY(-4px);
    }

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .about-grid,
    .products-grid,
    .innovation-grid,
    .orum-spotlight,
    .foot-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ADDITIONAL STYLES (Integrated from bottom CSS) ===== */

/* Nav adjustments */
.nav-logo p {
    margin-bottom: 0;
    line-height: 1.2;
}

.nav-logo span {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--gold);
    opacity: 0.9;
    display: block;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-visual-side {
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 136, 10, 0.3);
    border-radius: 30px;
    padding: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), inset 0 0 40px rgba(212, 136, 10, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

    .hero-product-card:hover {
        box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4), inset 0 0 50px rgba(212, 136, 10, 0.15);
        border-color: rgba(212, 136, 10, 0.5);
    }

.hero-product-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 136, 10, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    filter: blur(30px);
}

.hero-product-img {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 10px;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
}

.hero-product-info {
    position: relative;
    z-index: 2;
    background: rgba(15, 26, 12, 0.6);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-product-title {
    font-family: "Fraunces", serif;
    color: var(--ivory);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .hero-product-title span {
        font-family: "DM Sans", sans-serif;
        font-size: 10px;
        background: var(--gold);
        color: var(--ink);
        padding: 4px 10px;
        border-radius: 20px;
        letter-spacing: 1px;
        font-weight: 700;
    }

.hero-product-sub {
    color: rgba(248, 242, 228, 0.6);
    font-size: 13px;
    margin-bottom: 25px;
    font-style: italic;
}

.hero-size {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .hero-size .size-btn {
        background: transparent;
        color: var(--ivory);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 6px 20px;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s;
        font-size: 14px;
    }

        .hero-size .size-btn.active,
        .hero-size .size-btn:hover {
            background: var(--gold);
            color: var(--ink);
            border-color: var(--gold);
        }

.hero-price-qty {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .hero-price-qty .price {
        color: var(--gold);
        font-size: 24px;
        font-weight: 700;
    }

        .hero-price-qty .price small {
            color: rgba(248, 242, 228, 0.5);
            font-size: 12px;
            font-weight: 400;
        }

    .hero-price-qty .qty-selector {
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        border-radius: 30px;
        padding: 4px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-price-qty .qty-btn {
        background: transparent;
        border: none;
        color: var(--ivory);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
    }

        .hero-price-qty .qty-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

    .hero-price-qty .qty-display {
        color: var(--ivory);
        min-width: 20px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
    }

.hero-add-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: var(--ink);
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(212, 136, 10, 0.2);
}

    .hero-add-cart:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 25px rgba(212, 136, 10, 0.4);
        background: linear-gradient(135deg, var(--amber), #ffc145);
    }

/* Hamburger Menu Styles */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--ivory);
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.nav.scrolled .hamburger-btn {
    color: var(--ink);
}

.hamburger-btn:hover {
    color: var(--gold);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: none;
}

    .mobile-menu-overlay.active {
        right: 0;
    }

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: var(--forest);
    padding: 100px 30px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    border-left: 2px solid var(--gold);
}

    .mobile-menu .nav-links-mobile {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .mobile-menu .nav-links-mobile li {
            margin-bottom: 20px;
            opacity: 0;
            transform: translateX(30px);
            animation: slideInMenuItem 0.4s forwards;
        }

            .mobile-menu .nav-links-mobile li:nth-child(1) {
                animation-delay: 0.1s;
            }

            .mobile-menu .nav-links-mobile li:nth-child(2) {
                animation-delay: 0.15s;
            }

            .mobile-menu .nav-links-mobile li:nth-child(3) {
                animation-delay: 0.2s;
            }

            .mobile-menu .nav-links-mobile li:nth-child(4) {
                animation-delay: 0.25s;
            }

            .mobile-menu .nav-links-mobile li:nth-child(5) {
                animation-delay: 0.3s;
            }

            .mobile-menu .nav-links-mobile li:nth-child(6) {
                animation-delay: 0.35s;
            }

@keyframes slideInMenuItem {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu .nav-links-mobile a {
    color: var(--ivory);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 136, 10, 0.2);
    transition: all 0.3s ease;
}

    .mobile-menu .nav-links-mobile a:hover {
        color: var(--gold);
        padding-left: 10px;
        border-bottom-color: var(--gold);
    }

.mobile-menu .nav-shop-mobile {
    background: var(--gold);
    color: var(--ink) !important;
    padding: 15px 28px !important;
    border-radius: 40px;
    text-align: center;
    margin-top: 30px;
    border: none !important;
    font-weight: 700 !important;
}

    .mobile-menu .nav-shop-mobile:hover {
        background: var(--amber);
        padding-left: 28px !important;
    }

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 36px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .mobile-menu-close:hover {
        transform: rotate(90deg);
    }

/* Media Queries for Hamburger and Responsive */
@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual-side {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-grid,
    .products-grid,
    .innovation-grid,
    .orum-spotlight,
    .foot-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .about,
    .products,
    .innovation,
    .steps-section,
    .orum-spotlight {
        padding-left: 24px;
        padding-right: 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Milestone Card Adjustments */
.milestone-card {
    padding: 20px 32px;
}

.milestone-year {
    font-size: 22px;
}

.milestone-title {
    font-size: 16px;
    margin: 4px 0 4px;
}

/* Add to Cart Button Adjustment */
.add-to-cart {
    padding: 10px;
}

/* Footer Grid Margin */
.foot-grid {
    margin: 0 auto 30px;
}

/* Footer Bottom Color */
.foot-bottom {
    color: #fff;
}


/* -------------------------steps-css--started------------------------------  */


.organic-steps-needed {
    background-color: var(--parchment);
}

    /* CARD BASE */
    .organic-steps-needed .sol-card {
        background: linear-gradient(145deg, #1e3020, #243b25);
        border-radius: 18px;
        padding: 25px;
        color: #e8f5e9;
        position: relative;
        overflow: hidden;
        transition: 0.35s ease;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        text-align: left;
    }

        /* HOVER EFFECT */
        .organic-steps-needed .sol-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
        }

    /* NUMBER */
    .organic-steps-needed .sc-num {
        font-size: 12px;
        letter-spacing: 2px;
        color: #ffb347;
        display: block;
        margin-bottom: 10px;
    }

    /* ICON */
    .organic-steps-needed .sc-icon {
        font-size: 30px;
        margin-bottom: 12px;
        display: inline-block;
    }

    /* TITLE */
    .organic-steps-needed .sc-title {
        font-size: 17px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 10px;
    }

    /* DESCRIPTION */
    .organic-steps-needed .sc-desc {
        font-size: 14px;
        color: #cfe3d0;
        line-height: 1.6;
    }

    /* HOVER LIGHT EFFECT */
    .organic-steps-needed .sol-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(255, 180, 71, 0.15), transparent 40%);
        opacity: 0;
        transition: 0.3s;
    }

    .organic-steps-needed .sol-card:hover::before {
        opacity: 1;
    }

    /* EQUAL HEIGHT FIX (important) */
    .organic-steps-needed .sol-card.h-100 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

/* -------------------------steps-css--ended------------------------------  */


/* -------------------------review-css--started------------------------------  */


.review-section-new {
    background-color: var(--parchment);
    padding: 40px 0;
}

    .review-section-new .swiper {
        padding: 10px 15px 50px;
    }

    .review-section-new .swiper-slide {
        height: auto;
        display: flex;
        justify-content: center;
    }

    .review-section-new .rev {
        background: #1e3020d7;
        padding: 25px;
        border-radius: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 280px;
        width: 100%;
        max-width: 350px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        /* subtle glow */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

        /* Hover effect (clean lift) */
        .review-section-new .rev:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        }


    .review-section-new .rev-qmark {
        font-size: 60px;
        color: #ffb347;
        position: absolute;
        top: 10px;
        left: 15px;
        opacity: 0.15;
        font-family: serif;
    }


    .review-section-new .rev-stars {
        color: #ffc107;
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }


    .review-section-new .rev-text {
        font-size: 14px;
        line-height: 1.6;
        color: #e6e6e6;
        margin: 20px 0;
    }


    .review-section-new .rev-by {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
    }

    /* Avatar */
    .review-section-new .rev-av {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #ff7a18, #ffb347);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 16px;
    }

    /* Name */
    .review-section-new .rev-name {
        font-weight: 600;
        font-size: 14px;
        color: #ffffff;
    }

    /* Location */
    .review-section-new .rev-loc {
        font-size: 12px;
        color: #b5b5b5;
    }


    .review-section-new .swiper-button-next,
    .review-section-new .swiper-button-prev {
        color: #fff;
        background: #1e3020;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

        .review-section-new .swiper-button-next:hover,
        .review-section-new .swiper-button-prev:hover {
            background: #ff7a18;
            color: #fff;
        }


    .review-section-new .swiper-pagination-bullet {
        background: #777;
        opacity: 1;
    }

    .review-section-new .swiper-pagination-bullet-active {
        background: #ff7a18;
    }

    .review-section-new .swiper-button-next:after,
    .review-section-new .swiper-button-prev:after {
        font-size: 12px;
    }

@media (max-width: 768px) {
    .review-section-new .rev {
        min-height: 240px;
        padding: 20px;
    }

    .review-section-new .rev-text {
        font-size: 13px;
    }
}


/* -------------------------review-css--end------------------------------  */


/* -------------------------ingredient-css--started------------------------------  */


/* SECTION BACKGROUND */
.ingredient {
    background: linear-gradient(135deg, #0f1f14, #1e3020);
    color: #e8f5e9;
}

    /* LEFT IMAGE GLOW */
    .ingredient .ing-visual {
        position: relative;
    }

        .ingredient .ing-visual::before {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 180, 71, 0.2), transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

.ing-art {
    position: relative;
    z-index: 1;
}


/* POINT CARD */
.ingredient .ing-point {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    gap: 12px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    /* HOVER */
    .ingredient .ing-point:hover {
        background: rgba(255, 180, 71, 0.08);
        transform: translateX(5px);
    }

/* ICON */
.ingredient .ing-point-icon {
    font-size: 22px;
    min-width: 40px;
    height: 40px;
    background: #1e3020;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TITLE */
.ingredient .ing-point-title {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

/* DESC */
.ingredient .ing-point-desc {
    font-size: 13px;
    color: #b5cbb7;
}


/* -------------------------ingredient-css--ended------------------------------  */


.product-showcase .add-btn-v2 {
    background: linear-gradient(135deg, var(--gold), var(--amber)) !important;
    color: var(--ink) !important;
    border-radius: 30px !important;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1) !important;
    box-shadow: 0 10px 20px -8px rgba(212, 136, 10, 0.4) !important;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .product-showcase .add-btn-v2:hover {
        background: linear-gradient(135deg, var(--amber), var(--gold)) !important;
        transform: translateY(-2px) scale(1.02) !important;
        box-shadow: 0 15px 30px -10px rgba(212, 136, 10, 0.6) !important;
    }

/* ===== NEW PRODUCT SECTION (V2 - Plant Food Style) ===== */
.product-showcase {
    background-color: var(--parchment);
    padding: 150px 52px 80px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

    /* More pronounced dark "wash" at top to make the translucent header menu visible */
    .product-showcase::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 180px;
        /* Increased height */
        background: linear-gradient(to bottom, rgba(15, 26, 12, 0.75) 0%, rgba(15, 26, 12, 0.3) 50%, transparent 100%);
        pointer-events: none;
        z-index: 1;
    }

    .product-showcase .section-h {
        color: #2d5a27;
        margin-bottom: 40px;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .product-showcase .section-label {
        color: var(--gold);
        position: relative;
        z-index: 2;
    }


    .product-showcase .product-card-v2 {
        height: 100%;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

        .product-showcase .product-card-v2:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

    .product-showcase .img-container-v2 {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        background: #f0f7f4;
        overflow: hidden;
    }

        .product-showcase .img-container-v2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    /*.product-showcase .badge-v2 {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #3e7b64;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}*/

    .product-showcase .wishlist-v2 {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 36px;
        height: 36px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff4d4d;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        z-index: 2;
    }

    .product-showcase .ribbon-v2 {
        position: absolute;
        bottom: 10px;
        left: 0;
        background: #e9c44c;
        color: #4a4a4a;
        padding: 8px 30px 8px 15px;
        font-weight: 700;
        font-size: 14px;
        clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%);
        z-index: 2;
    }

    .product-showcase .product-content-v2 {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        background-color: white;
        /* Changed from light mint to white for contrast */
    }

    .product-showcase .product-title-v2 {
        font-size: 20px;
        font-weight: 700;
        color: #0b3d3d;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .product-showcase .product-subtitle-v2 {
        font-size: 15px;
        color: #3e7b64;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .product-showcase .rating-v2 {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 10px;
    }

    .product-showcase .stars-v2 {
        color: #ffc107;
        font-size: 14px;
    }

    .product-showcase .reviews-v2 {
        font-size: 13px;
        color: #666;
    }

    .product-showcase .variants-v2 {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
    }

    .product-showcase .variant-box {
        border: 1.5px solid #0b3d3d;
        border-radius: 8px;
        padding: 6px 12px;
        font-size: 13px;
        font-weight: 600;
        color: #0b3d3d;
        cursor: pointer;
        transition: all 0.2s;
    }

        .product-showcase .variant-box.active {
            background: #0b3d3d;
            color: white;
        }

        .product-showcase .variant-box:not(.active) {
            border-color: #ccc;
            color: #666;
        }

    .product-showcase .price-row-v2 {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    .product-showcase .price-now-v2 {
        font-size: 24px;
        font-weight: 700;
        color: #3e7b64;
    }

    .product-showcase .price-old-v2 {
        font-size: 18px;
        color: #888;
        text-decoration: line-through;
    }

    .product-showcase .add-btn-v2 {
        background: #4b7a1a;
        color: white;
        border: none;
        padding: 14px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 16px;
        width: 100%;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

        .product-showcase .add-btn-v2:hover {
            background: #3d6415;
            transform: scale(1.02);
        }

@media (max-width: 768px) {
    .product-showcase {
        padding: 130px 20px;
    }
}
