@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    color-scheme: dark;
    --forest-950: #030806;
    --forest-900: #07120d;
    --forest-850: #0b1d14;
    --forest-800: #102b1d;
    --forest-700: #173d29;
    --leaf-500: #3b8f5a;
    --gold-300: #ffe3a1;
    --gold-400: #f8c15b;
    --gold-500: #d99524;
    --amber-600: #a96312;
    --honey: #ffb936;
    --cream: #fff8e7;
    --mist: rgba(255, 248, 231, 0.76);
    --muted: rgba(255, 248, 231, 0.62);
    --line: rgba(255, 227, 161, 0.16);
    --line-strong: rgba(255, 227, 161, 0.34);
    --glass: rgba(9, 26, 17, 0.62);
    --glass-light: rgba(255, 248, 231, 0.07);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
    --glow: 0 0 44px rgba(248, 193, 91, 0.22);
    --radius: 22px;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);

    --color-forest-900: var(--forest-900);
    --color-forest-800: var(--forest-800);
    --color-forest-700: var(--forest-700);
    --color-forest-600: var(--leaf-500);
    --color-amber-600: var(--amber-600);
    --color-amber-500: var(--gold-500);
    --color-gold-500: var(--gold-500);
    --color-gold-400: var(--gold-400);
    --color-cream-100: var(--cream);
    --color-cream-200: #f9edd1;
    --color-cream-300: #edd8aa;
    --color-dark: var(--forest-950);
    --color-gray: var(--muted);
    --color-light-gray: var(--line);
    --bg-main: var(--forest-950);
    --bg-secondary: var(--forest-900);
    --bg-tertiary: var(--forest-850);
    --text-main: var(--mist);
    --text-muted: var(--muted);
    --text-heading: var(--cream);
    --border-color: var(--line);
    --card-glass: var(--glass);
    --header-glass: rgba(4, 12, 8, 0.58);
    --shadow-premium: var(--shadow);
    --shadow-hover: 0 32px 90px rgba(248, 193, 91, 0.18), 0 24px 70px rgba(0, 0, 0, 0.36);
    --shadow-dark: 0 30px 100px rgba(0, 0, 0, 0.62);
    --transition-smooth: 700ms var(--ease);
    --transition-fast: 300ms var(--ease);
}

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

html {
    background: var(--forest-950);
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: auto;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 15% 5%, rgba(248, 193, 91, 0.16), transparent 29rem),
        radial-gradient(circle at 88% 16%, rgba(59, 143, 90, 0.2), transparent 33rem),
        linear-gradient(135deg, var(--forest-950), #08170f 46%, #020604);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
}

body::before {
    background-image:
        linear-gradient(rgba(255, 227, 161, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 227, 161, 0.03) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
    z-index: 5000;
    opacity: 0.11;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.7) 0 1px, transparent 1.5px),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.42) 0 1px, transparent 1.3px);
    background-size: 4px 4px, 7px 7px;
    mix-blend-mode: overlay;
    animation: grainShift 1.2s steps(2) infinite;
}

@keyframes grainShift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-1.5%, 1%, 0); }
    100% { transform: translate3d(1%, -1%, 0); }
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--forest-950); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--forest-700), var(--gold-500));
    border: 2px solid var(--forest-950);
    border-radius: 999px;
}

.ambient-stage,
.liquid-light,
.particle-field,
.page-transition,
.scroll-progress,
.cursor-dot,
.cursor-outline {
    pointer-events: none;
}

.ambient-stage {
    position: fixed;
    inset: 0;
    width: 100vw;
    z-index: -2;
    overflow: hidden;
    contain: paint;
}

.liquid-light {
    position: absolute;
    width: 34rem;
    height: 34rem;
    border-radius: 42% 58% 46% 54%;
    filter: blur(42px);
    opacity: 0.22;
    animation: morphBlob 14s ease-in-out infinite alternate;
}

.liquid-light.one {
    left: -9rem;
    top: 18vh;
    background: rgba(248, 193, 91, 0.46);
}

.liquid-light.two {
    right: -12rem;
    top: 44vh;
    background: rgba(31, 101, 62, 0.72);
    animation-delay: -5s;
}

.liquid-light.three {
    left: 48%;
    bottom: -17rem;
    background: rgba(169, 99, 18, 0.42);
    animation-delay: -9s;
}

@keyframes morphBlob {
    0% { transform: translate3d(0, 0, 0) scale(1); border-radius: 42% 58% 46% 54%; }
    100% { transform: translate3d(6vw, -4vh, 0) scale(1.12); border-radius: 58% 42% 62% 38%; }
}

.particle-field {
    position: fixed;
    inset: 0;
    width: 100vw;
    z-index: 1;
    overflow: hidden;
    contain: paint;
}

.honey-particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    left: var(--x);
    top: 105vh;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 236, 178, 0.95), rgba(248, 193, 91, 0.55) 46%, transparent 72%);
    box-shadow: 0 0 18px rgba(248, 193, 91, 0.36);
    opacity: 0;
    animation: particleRise var(--duration) linear infinite;
    animation-delay: var(--delay);
}

@keyframes particleRise {
    0% { transform: translate3d(0, 0, 0) scale(0.7); opacity: 0; }
    12% { opacity: 0.8; }
    82% { opacity: 0.58; }
    100% { transform: translate3d(var(--drift), -118vh, 0) scale(1.15); opacity: 0; }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    z-index: 6000;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--leaf-500));
    box-shadow: 0 0 18px rgba(248, 193, 91, 0.72);
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 7000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--gold-400);
    box-shadow: 0 0 18px var(--gold-400);
}

.cursor-outline {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(248, 193, 91, 0.55);
    transition: width 240ms var(--ease), height 240ms var(--ease), background 240ms var(--ease), border 240ms var(--ease);
}

.cursor-outline.hover-state {
    width: 64px;
    height: 64px;
    background: rgba(248, 193, 91, 0.08);
    border-color: rgba(248, 193, 91, 0.9);
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 6500;
    background:
        radial-gradient(circle at 50% 50%, rgba(248, 193, 91, 0.18), transparent 32rem),
        linear-gradient(135deg, #020604, #0d2318 54%, #030806);
    transform: translateY(100%);
}

.container {
    width: min(92%, 1220px);
    margin: 0 auto;
}

.grid-2,
.grid-3 {
    display: grid;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.text-center { text-align: center; }

section {
    position: relative;
    padding: clamp(5.5rem, 10vw, 9rem) 0;
}

h1,
h2,
h3,
h4 {
    color: var(--text-heading);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 0.98;
    text-wrap: balance;
}

h1 {
    font-size: clamp(3.25rem, 8vw, 7.6rem);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    letter-spacing: 0;
}

h3 { font-size: clamp(1.45rem, 2.4vw, 2.05rem); }
h4 { font-size: 1.2rem; }

p {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    margin-bottom: 1rem;
    color: var(--gold-400);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tag::before {
    content: "";
    width: 2.2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400));
}

.btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.95rem 1.55rem;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--cream);
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 450ms var(--ease), border 450ms var(--ease), box-shadow 450ms var(--ease), color 450ms var(--ease);
}

.btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -2;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300), var(--amber-600));
    transition: transform 560ms var(--ease), opacity 560ms var(--ease);
}

.btn::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background: rgba(6, 18, 12, 0.86);
    transition: opacity 460ms var(--ease), transform 460ms var(--ease);
}

.btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 227, 161, 0.68);
    box-shadow: var(--glow), 0 18px 44px rgba(0, 0, 0, 0.3);
}

.btn:hover::after {
    opacity: 0.72;
    transform: scale(0.97);
}

.btn-primary { color: var(--cream); }

.btn-secondary,
.btn-outline {
    background: rgba(255, 248, 231, 0.035);
}

.btn-secondary::before,
.btn-outline::before {
    opacity: 0;
}

.btn-secondary:hover::before,
.btn-outline:hover::before {
    opacity: 1;
}

.nav-btn {
    min-height: 2.75rem;
    padding: 0.68rem 1.2rem;
    font-size: 0.82rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 0.9rem 0;
    transition: padding 500ms var(--ease), transform 500ms var(--ease);
}

header::before {
    content: "";
    position: absolute;
    inset: 0.7rem max(1rem, 3vw);
    z-index: -1;
    border: 1px solid rgba(255, 227, 161, 0.13);
    border-radius: 999px;
    background: rgba(4, 12, 8, 0.38);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 20px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px) saturate(145%);
    transition: inset 500ms var(--ease), background 500ms var(--ease), border 500ms var(--ease);
}

header.scrolled {
    padding: 0.35rem 0;
}

header.scrolled::before {
    inset: 0.45rem max(0.75rem, 2vw);
    background: rgba(4, 12, 8, 0.76);
    border-color: rgba(248, 193, 91, 0.24);
}

.nav-container {
    min-height: 4.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 800;
}

.logo-img {
    width: 8.2rem;
    height: 5.6rem;
    object-fit: contain;
    border-radius: 0;
}

.logo-icon {
    height: 3.2rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
}

.loader-icon {
    height: 5rem;
    width: auto;
    object-fit: contain;
    animation: loaderPulse 1.8s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(248, 193, 91, 0.25));
}

.loader-text-img {
    height: 3.2rem;
    width: auto;
    object-fit: contain;
}

@keyframes loaderPulse {
    0% { transform: scale(0.96); filter: drop-shadow(0 0 10px rgba(248, 193, 91, 0.1)); }
    100% { transform: scale(1.04); filter: drop-shadow(0 0 28px rgba(248, 193, 91, 0.45)); }
}

.footer-logo img {
    width: 9.4rem;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.nav-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2.2rem);
    list-style: none;
}

.nav-links a:not(.btn) {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    color: rgba(255, 248, 231, 0.78);
    font-size: 0.92rem;
    font-weight: 700;
    transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.nav-links a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.1rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: var(--gold-400);
    box-shadow: 0 0 18px var(--gold-400);
    opacity: 0;
    transform: translateX(-50%) scale(0.2);
    transition: 260ms var(--ease);
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
    color: var(--cream);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 1.5rem;
    height: 2px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.theme-toggle {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 248, 231, 0.06);
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--cream);
    transition: 300ms var(--ease);
}

.mobile-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 8000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(248, 193, 91, 0.18), transparent 22rem),
        linear-gradient(135deg, #010302, #07120d 48%, #030806);
    transition: opacity 700ms var(--ease), visibility 700ms var(--ease), transform 900ms var(--ease);
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3%);
}

.loader-content {
    display: grid;
    justify-items: center;
    gap: 1.2rem;
}

.honey-spinner,
.honeycomb-svg {
    position: relative;
    width: 5.3rem;
    height: 5.3rem;
    filter: drop-shadow(0 0 28px rgba(248, 193, 91, 0.36));
}

.honey-spinner {
    animation: spin 7s linear infinite;
}

.hexagon {
    position: absolute;
    width: 1.45rem;
    height: 1.45rem;
    clip-path: polygon(50% 0%, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
    background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
    animation: hexPulse 1.45s ease-in-out infinite alternate;
}

.hex-1 { top: 0.2rem; left: 1.9rem; }
.hex-2 { top: 1rem; left: 3.25rem; animation-delay: 0.12s; }
.hex-3 { top: 2.65rem; left: 3.25rem; animation-delay: 0.24s; }
.hex-4 { top: 3.45rem; left: 1.9rem; animation-delay: 0.36s; }
.hex-5 { top: 2.65rem; left: 0.55rem; animation-delay: 0.48s; }
.hex-6 { top: 1rem; left: 0.55rem; animation-delay: 0.6s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes hexPulse {
    from { transform: scale(0.58); opacity: 0.44; }
    to { transform: scale(1); opacity: 1; }
}

.loader-text {
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.loader-status {
    color: var(--gold-400);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.loader-bar {
    width: min(18rem, 52vw);
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 248, 231, 0.12);
}

.loader-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-400), var(--honey));
    animation: loaderSlide 1.1s var(--ease) both;
}

@keyframes loaderSlide {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

#hero,
.page-header {
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--cream);
    background:
        linear-gradient(90deg, rgba(3, 8, 6, 0.78), rgba(3, 8, 6, 0.36) 45%, rgba(3, 8, 6, 0.76)),
        linear-gradient(180deg, rgba(3, 8, 6, 0.22), rgba(3, 8, 6, 0.76)),
        url('assets/hero_bg.png') center/cover;
}

#hero::before,
.page-header::before {
    content: "";
    position: absolute;
    inset: -12%;
    z-index: 0;
    background:
        radial-gradient(circle at 72% 28%, rgba(248, 193, 91, 0.22), transparent 24rem),
        radial-gradient(circle at 28% 72%, rgba(59, 143, 90, 0.24), transparent 27rem);
    filter: blur(12px);
    animation: heroBreath 10s ease-in-out infinite alternate;
}

@keyframes heroBreath {
    from { transform: scale(1) translateY(0); }
    to { transform: scale(1.08) translateY(-1.6rem); }
}

#hero::after,
.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, transparent 62%, var(--forest-950));
}

.hero-container,
.page-header .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    width: min(760px, 100%);
    padding-top: 4rem;
}

#hero h1,
.page-header h1 {
    margin-bottom: 1.25rem;
    color: var(--cream);
    text-shadow: 0 16px 58px rgba(0, 0, 0, 0.48);
}

#hero p,
.page-header p {
    width: min(680px, 100%);
    color: rgba(255, 248, 231, 0.78);
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.4rem;
}

.hero-stagger-item,
.stagger-item {
    opacity: 0;
    transform: translateY(34px);
}

.hero-stagger-item.stagger-active,
.stagger-item.stagger-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.section-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 3;
    color: var(--forest-950);
}

.section-wave svg {
    width: 100%;
    height: 86px;
    display: block;
    fill: currentColor;
    filter: drop-shadow(0 -18px 28px rgba(248, 193, 91, 0.1));
}

.bee-container {
    position: fixed;
    inset: 0;
    width: 100vw;
    z-index: 2;
    overflow: hidden;
    contain: paint;
    pointer-events: none;
}

.bee {
    position: absolute;
    opacity: 0.38;
    filter: drop-shadow(0 0 12px rgba(248, 193, 91, 0.55));
    animation: floatBee 18s ease-in-out infinite;
}

.bee-1 { top: 18%; left: -3rem; }
.bee-2 { top: 62%; right: -3rem; animation-delay: -6s; animation-duration: 22s; }
.bee-3 { top: 38%; left: 45%; animation-delay: -11s; animation-duration: 16s; }

@keyframes floatBee {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(12deg); }
    50% { transform: translate3d(38vw, -7vh, 0) rotate(-12deg); }
}

.origin-section,
.products-section,
.process-section,
.gallery-section,
.testimonials-section,
.story-block,
main > .container {
    background: transparent;
}

.origin-section::before,
.products-section::before,
.process-section::before,
.gallery-section::before,
.testimonials-section::before,
.story-block::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 248, 231, 0.028), transparent 42%),
        radial-gradient(circle at 80% 12%, rgba(248, 193, 91, 0.08), transparent 24rem);
}

.text-content p + p {
    margin-top: 1rem;
}

.origin-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.origin-badge,
.product-card,
.process-step,
.purity-card,
.gallery-item,
.testimonial-card,
.contact-info-card,
.contact-form-wrapper,
.modal-content,
.map-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 248, 231, 0.095), rgba(255, 248, 231, 0.035));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(138%);
}

.origin-badge {
    align-items: center;
    display: flex;
    gap: 0.62rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--cream);
    font-weight: 800;
}

.origin-badge svg,
.purity-icon svg,
.contact-icon svg {
    color: var(--gold-400);
}

.image-stack,
.image-wrapper {
    position: relative;
    perspective: 1000px;
}

.origin-img-wrapper,
.image-wrapper {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.origin-img-wrapper img,
.image-wrapper img,
.process-section img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.origin-img-wrapper:hover img,
.image-wrapper:hover img {
    transform: scale(1.08);
    filter: saturate(1.12) contrast(1.05);
}

.origin-experience-card {
    position: absolute;
    right: -1rem;
    bottom: -1.4rem;
    width: min(250px, 72%);
    padding: 1.35rem;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(5, 17, 11, 0.72);
    box-shadow: var(--glow), var(--shadow);
    backdrop-filter: blur(18px);
    text-align: center;
}

.origin-experience-number {
    color: var(--gold-400);
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 0.9;
}

.origin-experience-text {
    margin-top: 0.4rem;
    color: var(--cream);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.products-section {
    overflow: hidden;
}

.product-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    transform-style: preserve-3d;
    transition: border 450ms var(--ease), box-shadow 450ms var(--ease), transform 450ms var(--ease);
}

.product-card::before,
.purity-card::before,
.contact-info-card::before,
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(248, 193, 91, 0.22), transparent 16rem);
    opacity: 0;
    transition: opacity 360ms var(--ease);
}

.product-card::after,
.gallery-item::after {
    content: "";
    position: absolute;
    inset: -45% -70%;
    z-index: 2;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.24), transparent 65%);
    transform: translateX(-100%) rotate(8deg);
    transition: transform 850ms var(--ease);
}

.product-card:hover,
.purity-card:hover,
.contact-info-card:hover,
.testimonial-card:hover {
    border-color: rgba(248, 193, 91, 0.42);
    box-shadow: var(--shadow-hover);
}

.product-card:hover::before,
.purity-card:hover::before,
.contact-info-card:hover::before,
.testimonial-card:hover::before {
    opacity: 1;
}

.product-card:hover::after,
.gallery-item:hover::after {
    transform: translateX(100%) rotate(8deg);
}

.product-img-wrapper {
    position: relative;
    z-index: 1;
    min-height: 330px;
    display: grid;
    place-items: center;
    padding: 2rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 58%, rgba(248, 193, 91, 0.22), transparent 11rem),
        linear-gradient(180deg, rgba(255, 248, 231, 0.09), rgba(255, 248, 231, 0.02));
}

.product-img {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.42));
    transform: translateZ(42px);
    transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.product-card:hover .product-img {
    transform: translateZ(70px) scale(1.08) rotate(2deg);
    filter: drop-shadow(0 32px 44px rgba(248, 193, 91, 0.24));
}

.product-info {
    position: relative;
    z-index: 3;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.8rem;
}

.product-description {
    margin-top: 0.7rem;
    font-size: 0.96rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.8rem;
}

.price {
    color: var(--gold-300);
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
}

.product-tag {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    z-index: 4;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(248, 193, 91, 0.32);
    border-radius: 999px;
    background: rgba(3, 8, 6, 0.62);
    color: var(--gold-300);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.process-grid,
.purity-grid,
.gallery-grid {
    margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.process-step {
    min-height: 260px;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: left;
}

.process-num-wrapper {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(248, 193, 91, 0.32);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 193, 91, 0.2), rgba(255, 248, 231, 0.04));
}

.process-num {
    color: var(--gold-400);
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 700;
}

.process-step p {
    margin-top: 0.75rem;
    font-size: 0.96rem;
}

.purity-section {
    overflow: hidden;
    background:
        linear-gradient(rgba(3, 8, 6, 0.76), rgba(3, 8, 6, 0.88)),
        url('assets/honey_extraction.png') center/cover fixed;
}

.purity-section h2,
.purity-card h3 {
    color: var(--cream);
}

.purity-section .text-center > p {
    width: min(650px, 100%);
    margin: 1rem auto 0;
}

.purity-card {
    min-height: 260px;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.purity-icon,
.contact-icon {
    display: grid;
    place-items: center;
    width: 3.6rem;
    height: 3.6rem;
    margin: 0 auto 1.2rem;
    border: 1px solid rgba(248, 193, 91, 0.24);
    border-radius: 50%;
    background: rgba(248, 193, 91, 0.09);
}

.gallery-item {
    height: 380px;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 950ms var(--ease), filter 950ms var(--ease);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.6rem;
    background: linear-gradient(to top, rgba(3, 8, 6, 0.86), transparent 62%);
    opacity: 0;
    transition: opacity 500ms var(--ease);
}

.gallery-overlay svg,
.gallery-overlay h4 {
    color: var(--cream);
    transform: translateY(1rem);
    transition: transform 500ms var(--ease);
}

.gallery-overlay svg {
    color: var(--gold-400);
    margin-bottom: 0.7rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: saturate(1.12);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay svg,
.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.testimonial-card {
    min-height: 310px;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius);
}

.testimonial-quote {
    position: relative;
    z-index: 1;
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-style: italic;
    line-height: 1.35;
}

.quote-icon {
    position: absolute;
    top: 0.4rem;
    right: 1.5rem;
    color: rgba(248, 193, 91, 0.18);
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 1;
}

.testimonial-author {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    display: grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
    color: var(--forest-950);
    font-weight: 900;
}

.author-info h4 {
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 1rem;
}

.author-info p {
    font-size: 0.86rem;
}

.page-header {
    min-height: 72svh;
    padding: 11rem 0 7rem;
    text-align: center;
}

.page-header .container {
    display: grid;
    justify-items: center;
}

.story-block:nth-of-type(even)::before {
    background:
        linear-gradient(180deg, rgba(255, 248, 231, 0.04), transparent),
        radial-gradient(circle at 16% 24%, rgba(59, 143, 90, 0.12), transparent 26rem);
}

.story-features {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.7rem;
    list-style: none;
}

.story-features li {
    position: relative;
    padding: 0.9rem 1rem 0.9rem 2.6rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 248, 231, 0.05);
    color: var(--mist);
}

.story-features li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.32rem;
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 16px var(--gold-400);
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.filter-btn {
    min-height: 2.85rem;
    padding: 0.7rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 248, 231, 0.055);
    color: var(--mist);
    cursor: pointer;
    font-weight: 800;
    transition: 350ms var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: rgba(248, 193, 91, 0.5);
    background: rgba(248, 193, 91, 0.12);
    color: var(--cream);
    box-shadow: var(--glow);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 1.45rem;
    border-radius: 18px;
}

.contact-icon {
    flex: 0 0 auto;
    margin: 0;
    border-radius: 18px;
}

.contact-details h3 {
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.3;
}

.contact-details p {
    margin-top: 0.2rem;
    font-size: 0.94rem;
}

.contact-form-wrapper {
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--radius);
}

.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--gold-300);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea,
.newsletter-input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: none;
    background: rgba(3, 8, 6, 0.42);
    color: var(--cream);
    transition: border 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.newsletter-input::placeholder {
    color: rgba(255, 248, 231, 0.34);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.newsletter-input:focus {
    border-color: rgba(248, 193, 91, 0.58);
    background: rgba(255, 248, 231, 0.07);
    box-shadow: 0 0 0 4px rgba(248, 193, 91, 0.09), var(--glow);
}

.map-wrapper {
    height: 320px;
    margin-top: 2rem;
    border-radius: var(--radius);
}

.map-placeholder {
    position: relative;
    display: grid;
    place-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    background:
        linear-gradient(45deg, rgba(248, 193, 91, 0.07) 25%, transparent 25% 50%, rgba(248, 193, 91, 0.07) 50% 75%, transparent 75%) 0 0 / 42px 42px,
        radial-gradient(circle at 50% 50%, rgba(59, 143, 90, 0.2), rgba(3, 8, 6, 0.1));
}

.map-placeholder svg {
    margin-bottom: 1rem;
    color: var(--gold-400);
}

.map-placeholder h4 {
    color: var(--cream) !important;
}

footer {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 9vw, 8rem) 0 2.4rem;
    border-top: 1px solid rgba(248, 193, 91, 0.2);
    background:
        radial-gradient(circle at 20% 0%, rgba(248, 193, 91, 0.14), transparent 25rem),
        radial-gradient(circle at 85% 20%, rgba(59, 143, 90, 0.18), transparent 28rem),
        linear-gradient(135deg, #020604, #0a1a12);
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.23;
    background: linear-gradient(110deg, transparent, rgba(248, 193, 91, 0.1), transparent);
    animation: footerGlow 8s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    from { transform: translateX(-22%); }
    to { transform: translateX(22%); }
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h3 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-desc {
    margin-top: 1rem;
    font-size: 0.96rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.social-btn {
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 248, 231, 0.06);
    color: var(--cream);
    transition: 350ms var(--ease);
}

.social-btn:hover {
    transform: translateY(-4px) rotate(4deg);
    border-color: rgba(248, 193, 91, 0.56);
    background: rgba(248, 193, 91, 0.14);
    box-shadow: var(--glow);
}

.footer-links {
    display: grid;
    gap: 0.7rem;
    list-style: none;
}

.footer-links a,
.footer-bottom-links a {
    color: var(--muted);
    transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.footer-links a:hover,
.footer-bottom-links a:hover {
    color: var(--gold-400);
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    flex: 0 0 auto;
    margin-top: 0.25rem;
    color: var(--gold-400);
}

.footer-contact-item p {
    font-size: 0.94rem;
}

.newsletter-form {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.3rem;
}

.newsletter-input {
    min-width: 0;
    padding: 0.9rem 1rem;
}

.btn-newsletter {
    flex: 0 0 auto;
    min-height: 3rem;
    padding: 0.75rem 1.1rem;
    color: var(--cream);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 4.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}

.footer-bottom-links {
    display: flex;
    gap: 1.4rem;
}

.modal,
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    overflow: auto;
    background: rgba(1, 3, 2, 0.7);
    opacity: 0;
    backdrop-filter: blur(18px);
    transition: opacity 500ms var(--ease);
}

.modal.show,
.lightbox.show {
    opacity: 1;
}

.modal-content {
    width: min(92%, 560px);
    margin: 5rem auto;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--radius);
    transform: translateY(2rem) scale(0.98);
    transition: transform 500ms var(--ease);
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close,
.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    z-index: 2;
    color: var(--cream);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.modal-close:hover,
.lightbox-close:hover {
    color: var(--gold-400);
    transform: rotate(12deg) scale(1.08);
}

.lightbox {
    z-index: 3200;
}

.lightbox-content {
    position: relative;
    top: 50%;
    max-width: min(90vw, 1100px);
    max-height: 82vh;
    margin: auto;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow-dark);
    transform: translateY(-50%) scale(0.94);
    transition: transform 520ms var(--ease);
}

.lightbox.show .lightbox-content {
    transform: translateY(-50%) scale(1);
}

.toast-container {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 9000;
    display: grid;
    gap: 0.7rem;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: min(380px, calc(100vw - 2.4rem));
    padding: 0.9rem 1rem;
    border: 1px solid rgba(248, 193, 91, 0.35);
    border-left: 4px solid var(--gold-400);
    border-radius: 16px;
    background: rgba(5, 17, 11, 0.9);
    color: var(--cream);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(1rem);
    backdrop-filter: blur(14px);
    transition: 420ms var(--ease);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(44px);
}

.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-down { transform: translateY(-44px); }
.zoom-in { transform: scale(0.94); }

.reveal.active {
    opacity: 1;
    transform: none;
    transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease);
}

.char {
    display: inline-block;
    will-change: transform, opacity, filter;
}

@media (min-width: 1025px) {
    body:not(.native-cursor),
    body:not(.native-cursor) a,
    body:not(.native-cursor) button,
    body:not(.native-cursor) input,
    body:not(.native-cursor) select,
    body:not(.native-cursor) textarea,
    body:not(.native-cursor) .gallery-item {
        cursor: none;
    }

    .story-block .grid-2,
    .origin-section .grid-2 {
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 820px) {
    section {
        padding: 5rem 0;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(36px);
    }

    .liquid-light,
    .bee-2,
    .bee-3 {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 2200;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        z-index: 2100;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 1rem;
        padding: 6rem max(1.4rem, 8vw);
        background:
            radial-gradient(circle at 75% 20%, rgba(248, 193, 91, 0.16), transparent 22rem),
            rgba(3, 8, 6, 0.94);
        backdrop-filter: blur(22px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-1.5rem);
        transition: 460ms var(--ease);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a:not(.btn) {
        width: 100%;
        min-height: 3.5rem;
        border-bottom: 1px solid var(--line);
        color: var(--cream);
        font-family: var(--font-serif);
        font-size: clamp(2.1rem, 11vw, 4.8rem);
        line-height: 1;
    }

    .nav-links a:not(.btn)::after {
        display: none;
    }

    .nav-btn {
        width: 100%;
        margin-top: 1rem;
    }

    #hero,
    .page-header {
        min-height: 86svh;
        align-items: flex-end;
        padding-bottom: 7rem;
    }

    .hero-buttons,
    .newsletter-form,
    .product-footer,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .product-img-wrapper {
        min-height: 280px;
    }

    .origin-experience-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .image-wrapper[style*="order"] {
        order: initial !important;
    }

    .footer-bottom {
        text-align: center;
    }

    footer .grid-3[style] {
        grid-template-columns: 1fr !important;
        gap: 2.4rem !important;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(90%, 1220px);
    }

    header::before {
        inset: 0.5rem;
    }

    .nav-container {
        min-height: 4rem;
    }

    .logo-icon {
        height: 2.6rem;
    }
    .logo-text {
        height: 1.8rem;
    }

    .logo-img,
    .footer-logo img {
        width: 6.2rem;
        height: auto;
    }

    #hero,
    .page-header {
        min-height: 92svh;
    }

    .product-info,
    .process-step,
    .purity-card,
    .testimonial-card,
    .contact-form-wrapper {
        padding: 1.35rem;
    }

    .gallery-item {
        height: 300px;
    }

    .contact-info-card {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .particle-field,
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* Light Theme Overrides */
[data-theme="light"] {
    --forest-950: #f9f6f0;
    --forest-900: #f1ebd9;
    --forest-850: #e8ddc4;
    --mist: #23382c;
    --muted: #3d5a49;
    --cream: #091a11;
    --line: rgba(9, 26, 17, 0.1);
    --line-strong: rgba(9, 26, 17, 0.22);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 32px 90px rgba(248, 193, 91, 0.2), 0 24px 70px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] body::after {
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0,0,0,0.15) 0 1px, transparent 1.5px),
        radial-gradient(circle at 70% 60%, rgba(0,0,0,0.1) 0 1px, transparent 1.3px);
}

[data-theme="light"] header::before {
    background: rgba(249, 246, 240, 0.65);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.8), 0 10px 40px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] header.scrolled::before {
    background: rgba(249, 246, 240, 0.92);
    border-color: rgba(248, 193, 91, 0.4);
}

[data-theme="light"] .nav-links a:not(.btn) { color: rgba(9, 26, 17, 0.78); }
[data-theme="light"] .nav-links a:not(.btn):hover,
[data-theme="light"] .nav-links a:not(.btn).active { color: #091a11; }

[data-theme="light"] .origin-badge,
[data-theme="light"] .btn,
[data-theme="light"] #hero h1, 
[data-theme="light"] .page-header h1,
[data-theme="light"] .gallery-overlay h4,
[data-theme="light"] .product-tag {
    color: #fff8e7; /* Force elements on dark backgrounds to stay light */
}

[data-theme="light"] #hero p,
[data-theme="light"] .page-header p {
    color: rgba(255, 248, 231, 0.9);
}

[data-theme="light"] .btn-secondary,
[data-theme="light"] .btn-outline {
    color: #091a11;
    background: rgba(9, 26, 17, 0.05);
}
[data-theme="light"] .btn-secondary:hover,
[data-theme="light"] .btn-outline:hover { color: #fff8e7; }

[data-theme="light"] .origin-badge,
[data-theme="light"] .product-card,
[data-theme="light"] .process-step,
[data-theme="light"] .purity-card,
[data-theme="light"] .gallery-item,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .contact-form-wrapper,
[data-theme="light"] .modal-content,
[data-theme="light"] .map-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .newsletter-input {
    background: rgba(255, 255, 255, 0.6);
    color: #091a11;
}

[data-theme="light"] footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(248, 193, 91, 0.14), transparent 25rem),
        radial-gradient(circle at 85% 20%, rgba(59, 143, 90, 0.18), transparent 28rem),
        linear-gradient(135deg, #f9f6f0, #eae1cc);
}

[data-theme="light"] .loader-wrapper { background: #f9f6f0; }
[data-theme="light"] .loader-text { color: #091a11; }
[data-theme="light"] .mobile-menu-toggle span { background: #091a11; }
