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

:root {
    --bg-primary: #001F18;
    --bg-secondary: #002D24;
    --accent-warm: #003B2F;
    --accent-earth: #A0B0A8;
    --accent-olive: #E5B80B;
    --accent-gold: #F2D04D;
    --text-main: #F5F1E8;
    --text-light: #A0B0A8;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif; /* Fallback for Satoshi/General Sans */
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 5rem;
    
    --transition-slow: 1.2s cubic-bezier(0.2, 0, 0.2, 1);
    --transition-medium: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.loading {
    overflow: hidden;
}

/* --- Preloader Styles --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999 !important;
    overflow: hidden;
}

.preloader-content {
    position: relative;
}

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preloader-text {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    font-weight: 400;
    opacity: 1; /* Make visible by default */
}

.preloader-underline {
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    margin-top: 10px;
    opacity: 0.5;
}


body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 10000;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

ul {
    list-style: none;
}

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

/* --- Layout Utilities --- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: var(--transition-medium);
}

nav.scrolled {
    background: rgba(13, 23, 18, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-sm) 0;
}

nav.menu-open {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
    transition: var(--transition-medium);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-gold);
}

/* --- Mobile Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 12px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-medium);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-medium);
}

.menu-toggle.active span:first-child {
    transform: translateY(6px) rotate(45deg);
    width: 24px;
}

.menu-toggle.active span:last-child {
    transform: translateY(-5px) rotate(-45deg);
    width: 24px;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    visibility: hidden;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), visibility 0s 0.6s;
}

.mobile-menu.active {
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), visibility 0s 0s;
}

.menu-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
}

.mobile-menu-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--spacing-md) + 40px) var(--spacing-md) var(--spacing-md);
    z-index: 2;
    overflow-y: auto;
    scrollbar-width: none; /* Hide scrollbar for Chrome/Safari */
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(242, 208, 77, 0.2);
    color: var(--accent-gold);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

.mobile-menu-inner::-webkit-scrollbar {
    display: none;
}

.menu-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.02;
    pointer-events: none;
    z-index: -1;
}

.menu-watermark {
    width: 100%;
    filter: grayscale(1) invert(1);
}

.mobile-nav-container {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    max-width: 320px;
    margin: 1rem auto;
}

.menu-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0.6;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.mobile-nav-links li {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    padding: 1rem 0;
    text-transform: uppercase;
    color: var(--text-main);
    display: block;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-gold);
}



/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-image: url('images/hero background.png');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 31, 24, 0.6) 0%, var(--bg-primary) 100%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s var(--transition-slow) forwards;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-earth);
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: clamp(5rem, 10vw, 8rem);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.typing-animation {
    display: inline-block;
    border-right: 4px solid var(--accent-gold);
    line-height: 1.2;
    padding-right: 5px; /* Give cursor space */
    animation: blink 0.75s step-end infinite;
}

.herbal-oil-text {
    display: block;
    font-size: 0.25em;
    color: var(--accent-earth);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 500;
    margin-top: 0.2rem;
}

.herbal-oil-text.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-gold) }
}


.hero-subtext {
    font-size: 1.2rem;
    color: var(--accent-earth);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
}

.hero-description {
    margin-bottom: var(--spacing-md);
    color: var(--accent-earth);
    opacity: 0.8;
}

.hero-description p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.3rem;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    font-family: var(--font-sans);
    border-radius: 100px;
    display: inline-block;
    font-weight: 500;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--text-main);
}

.btn-primary:hover {
    background-color: rgba(229, 184, 11, 0.1);
    transform: translateY(-5px);
}

.btn-secondary {
    background-color: var(--accent-olive);
    color: var(--bg-primary);
    box-shadow: 0 10px 25px rgba(229, 184, 11, 0.2);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(229, 184, 11, 0.3);
}



/* --- Animations --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(242, 208, 77, 0.2);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-medium);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(242, 208, 77, 0.1);
}

.contact-submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 0.9rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-info-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition-medium);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(242, 208, 77, 0.2);
    transform: translateY(-5px);
}

.contact-info-card h3 {
    font-size: 1.4rem;
}

.social-media-section {
    margin-top: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-media-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(242, 208, 77, 0.1);
    color: var(--accent-gold);
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(242, 208, 77, 0.2);
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 600px) {
    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
        padding: 0;
    }
    .contact-form-container,
    .contact-info-grid,
    .social-media-section {
        width: 100% !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    .social-media-section {
        margin-top: 1.5rem;
        width: 100%;
    }
}

/* --- Reveal Section --- */
.reveal-section {
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reveal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    align-items: center;
}

.reveal-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.reveal-image img {
    width: 100%;
    transition: var(--transition-slow);
}

.reveal-image:hover img {
    transform: scale(1.05);
}

.reveal-info h2 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

/* --- Benefits Section --- */
.benefits-section {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(242, 208, 77, 0.2);
    transform: translateY(-10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    background: rgba(242, 208, 77, 0.1);
    border-radius: 16px;
    padding: 15px;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Story Section --- */
.story-section {
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-content {
    z-index: 2;
}

.story-content h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-main);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 500px;
}

.story-signature {
    margin-top: var(--spacing-lg);
}

.story-signature p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.signature-line {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
}

.story-image-wrapper {
    position: relative;
    padding: 2rem;
}

.story-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    z-index: 1;
    transform: translate(20px, -20px);
    opacity: 0.2;
}

@media (max-width: 992px) {
    .story-section {
        padding: 3rem 0 !important; /* Reduce overall section padding */
    }

    .story-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important; /* Tightened gap */
        text-align: center;
    }

    .story-content {
        display: contents;
    }

    .story-grid .hero-tagline { order: 1; margin-bottom: 0.2rem; }
    .story-grid h2 { order: 2; margin-bottom: 0.8rem !important; }
    .story-grid .story-image-wrapper { 
        order: 3; 
        margin: 0.5rem 0 1.5rem; 
        padding: 0;
    }
    .story-grid .story-image img {
        height: 380px;
    }
    .story-grid p:not(.hero-tagline) { 
        order: 4; 
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    .story-grid .story-action-wrapper { 
        order: 5; 
        margin-top: 0.5rem; 
    }
    .story-grid .story-signature { 
        order: 6; 
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem; /* Reduced from default */
    }
}

@media (max-width: 768px) {
    .story-content h2 {
        font-size: clamp(2.5rem, 10vw, 3rem);
    }
    
    .story-content p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 5px;
    }

    .story-image img {
        height: 350px;
    }
}

/* --- Ingredients --- */
.ingredients {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary); /* Brighten background */
    position: relative;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.ingredient-card {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: var(--spacing-md);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.ingredient-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(242, 208, 77, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Now correctly alternates cards */
.ingredient-card:nth-child(even) {
    flex-direction: row-reverse;
}

.ingredient-visual {
    flex: 1;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ingredient-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 1.2s ease, filter 0.6s ease;
    filter: brightness(1.1) contrast(1.05); /* Boost image brilliance */
}

.ingredient-card:hover .ingredient-visual img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
}

.ingredient-details {
    flex: 1;
    padding: var(--spacing-md);
}

.ingredient-details h3 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
    color: var(--accent-gold);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ingredient-details p {
    font-size: 1.15rem;
    color: var(--text-main); /* Brighter description text */
    opacity: 0.85;
    line-height: 1.8;
    font-weight: 300;
}

/* --- Combo Offers --- */
.combos-section {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-earth);
    letter-spacing: 0.1em;
}



.combo-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    letter-spacing: 0.1em;
}

.combo-name {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem; /* Space to clear the badge */
    color: var(--text-main);
    line-height: 1.1;
}

.combo-description {
    font-size: 1rem;
    color: var(--accent-earth);
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-weight: 500;
}

.combo-pricing {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1.2rem;
}

.old-price {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: var(--accent-earth);
    opacity: 0.5;
}

.new-price {
    font-size: 3.5rem;
    color: var(--text-main);
    font-weight: 400;
    font-family: var(--font-sans);
    font-weight: 600;
}

.combo-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.combo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    display: inline-block;
}

.combo-features li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.8rem;
}

.combo-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.combo-btn {
    display: block;
    width: 100%;
    padding: 1.3rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    transition: all 0.3s ease;
}

.combo-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Slider Base Styles - Now Global */
.combos-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0; /* Balanced padding for hover room without excessive gap */
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.combos-grid::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.combo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 4rem 2rem 2.5rem;
    border-radius: 24px;
    transform: scale(1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 1; /* Removed fade on desktop */
    filter: none; /* Removed blur on desktop */
}

.combo-info {
    display: flex;
    flex-direction: column;
    flex: 1; /* Fills the card height */
}

/* Featured card base styling - same size as others now */
.combo-card.featured {
    padding: 3.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    transform: scale(1) !important;
}

/* Hover/Active highlight for the centered card */
/* Only apply the highlight to the centered card on mobile via JS, 
   but for desktop we'll use a standard hover below */
.combo-card.hovered {
    z-index: 5;
    border-color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Desktop Hover Effect */
@media (min-width: 769px) {
    .combo-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: var(--accent-gold);
        transform: translateY(-15px) scale(1.05) !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        z-index: 5;
    }
}

.combo-card.featured.hovered {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.combo-slider-arrow {
    display: none; /* Hidden on desktop */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--accent-gold);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.combo-slider-arrow:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.2);
}

.combo-slider-arrow.prev { left: 1.5rem; }
.combo-slider-arrow.next { right: 1.5rem; }

.slider-fade {
    display: none; /* Hidden on desktop */
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 5;
    pointer-events: none;
}

.slider-fade.left-fade {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.slider-fade.right-fade {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

@media (max-width: 1024px) {
    .combos-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 0;
    }
    .combo-card {
        flex: 0 0 300px;
    }
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .combos-section {
        padding: 40px 0; /* Reduced for tighter vertical space on mobile */
    }
    
    .combos-section .section-header {
        margin-bottom: 0.5rem;
    }
    
    .combos-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 30px calc(50% - 140px) 30px;
        gap: 1.5rem;
    }

    .combo-slider-arrow {
        display: flex;
    }

    .slider-fade {
        display: block;
    }

    .combo-card {
        flex: 0 0 280px;
        padding: 2.5rem 1.8rem 2.2rem;
        scroll-snap-align: center; /* Enforce snapping to center */
    }

    .combo-card.hovered {
        border-color: var(--accent-gold) !important;
        background: rgba(255, 255, 255, 0.08) !important;
        transform: none !important;
        box-shadow: none;
    }
    
    .combo-badge {
        top: 1.2rem;
        right: 1.2rem;
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
    
    .combo-name {
        font-size: 2rem;
        margin-top: 1.5rem;
    }
    
    .combo-description {
        font-size: 0.95rem;
    }
    
    .combo-features {
        margin-bottom: 1rem;
    }

    .combo-slider-arrow {
        width: 44px;
        height: 44px;
    }
    
    .combo-slider-arrow.prev { left: 5px; }
    .combo-slider-arrow.next { right: 5px; }
    
    .slider-fade {
        width: 30px; /* Reduced to avoid overlapping card content on mobile */
    }

    .combo-name {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .combo-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .combo-pricing {
        flex-direction: row;
        gap: 0.8rem;
        margin-bottom: 1.8rem;
        justify-content: center;
        align-items: baseline;
    }

    .old-price {
        font-size: 1.1rem;
    }

    .new-price {
        font-size: 2.8rem;
    }

    .combo-features {
        margin-bottom: 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .combo-features li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        text-align: left;
        padding-left: 1.5rem;
        position: relative;
    }

    .combo-features li::before {
        position: absolute;
        left: 0;
        top: 0;
        margin-right: 0;
    }

    .combo-btn {
        padding: 1.1rem;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }
}

/* --- WhatsApp CTA --- */
.whatsapp-order {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.order-card {
    background: rgba(0, 45, 36, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 40px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.order-flex {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.order-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-product {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.product-glow {
    display: none;
}

.order-content {
    flex: 1.2;
    padding-right: var(--spacing-md);
}

.order-content h2 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-main);
}

.order-price {
    font-size: 1.8rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
}

.order-controls {
    margin: var(--spacing-md) 0;
}

.order-controls .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.size-selector {
    display: flex;
    gap: 12px;
}

.size-btn {
    flex: 0 1 auto;
    min-width: 130px;
    padding: 0.6rem 1.2rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(242, 208, 77, 0.2);
    color: var(--text-main);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.size-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(242, 208, 77, 0.3);
    font-weight: 700;
    transform: translateY(-2px);
}

.size-btn:hover:not(.active) {
    border-color: var(--accent-gold);
    background: rgba(242, 208, 77, 0.08);
    transform: translateY(-1px);
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.qty-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(229, 184, 11, 0.3);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-medium);
}

.qty-btn:hover {
    border-color: var(--accent-olive);
    background: rgba(229, 184, 11, 0.1);
}

.qty-val {
    font-size: 1.8rem;
    font-family: var(--font-sans);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--accent-olive) 0%, #B8860B 100%);
    color: var(--bg-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
    box-shadow: 0 15px 30px rgba(229, 184, 11, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(229, 184, 11, 0.3);
}

.order-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .order-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .order-visual {
        width: 100%;
        border-radius: 24px;
        margin-bottom: 1.5rem;
    }

    .floating-product {
        /* Inherits square cover from base */
    }

    .product-glow {
        display: none;
    }
    
    .order-content {
        padding-right: 0;
    }
    
    .qty-wrapper {
        justify-content: center;
    }
    
    .order-content h2 {
        font-size: 2.5rem;
    }
}

/* --- Footer --- */
footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(160, 176, 168, 0.1);
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-brand .logo {
    color: var(--text-main);
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 250px;
    line-height: 1.8;
}

.footer-column h4 {
    color: var(--text-main);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-sans);
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-medium);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(160, 176, 168, 0.05);
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-legal-links {
    display: flex;
    gap: var(--spacing-md);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1rem;
        text-align: center;
        padding: 0 10px;
    }

    .footer-brand {
        grid-column: span 2;
        margin-bottom: 0.5rem;
    }

    .footer-brand p {
        margin: 0 auto;
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-light);
        max-width: 320px;
        opacity: 0.9;
    }

    .footer-column h4 {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        position: relative;
        display: inline-block;
    }

    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 1px;
        background: var(--accent-gold);
        opacity: 0.5;
    }

    .footer-links li {
        margin-bottom: 1.2rem; /* More space for touch */
    }

    .footer-links a {
        font-size: 0.95rem;
        color: var(--text-main);
        letter-spacing: 0.02em;
    }

    .footer-bottom {
        padding-top: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-links a:hover {
        padding-left: 0;
        color: var(--accent-gold);
    }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 1024px) {
    :root {
        --spacing-xl: 6rem;
        --spacing-lg: 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--spacing-xl) + 60px);
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-title {
        align-items: center;
    }
    
    .hero-subtext {
        margin: 0 auto var(--spacing-lg);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: 1;
        height: 40vh;
        margin-bottom: var(--spacing-md);
    }

    .hero-image-wrapper {
        width: 60%;
    }
    
    .reveal-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .reveal-info h2 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
    
    .hero {
        background-image: url('images/hero background.png');
        background-size: cover;
        background-position: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 31, 24, 0.6) 0%, var(--bg-primary) 100%);
        z-index: 0;
    }

    .hero-grid {
        position: relative;
        z-index: 1;
    }

    .hero-content {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1.5s var(--transition-slow) forwards;
    }

    .hero-title {
        font-size: clamp(4.5rem, 15vw, 7.5rem);
    }

    .hero-visual {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1.1rem 2rem;
        font-size: 0.75rem;
    }
    
    .ingredient-card {
        margin-bottom: var(--spacing-lg);
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .ingredient-card, .ingredient-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .ingredient-visual {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        border-radius: 28px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .ingredient-visual img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        height: auto;
    }

    .ingredient-details {
        padding: 0 var(--spacing-sm);
    }

    .ingredient-details h3 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .ingredient-details p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .order-card {
        padding: var(--spacing-lg) var(--spacing-md);
        border-radius: 30px;
    }

    .order-content h2 {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .whatsapp-btn {
        padding: 1.4rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 3.5rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .nav-logo {
        width: 35px;
        height: 35px;
    }

    .logo {
        font-size: 1.3rem;
    }
}
@media (max-width: 768px) {
    .whatsapp-btn {
        margin-top: var(--spacing-md);
    }
    
    /* Optional: If you want it sticky at the bottom of the screen, uncomment below */
    /*
    .whatsapp-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1000;
        border-radius: 0;
        margin: 0;
        padding: 1.2rem;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
    }
    */
}

/* --- Benefits Visibility & Utilities --- */
.benefits-more-container {
    text-align: center;
    margin-top: 4rem;
}

.benefits-more-container .btn {
    background: rgba(242, 208, 77, 0.05);
    border: 1px solid rgba(242, 208, 77, 0.3);
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.benefits-more-container .btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-5px);
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .benefits-section .benefit-card:nth-child(n+3) {
        display: none;
    }

    .benefits-more-container {
        margin-top: 2.5rem;
        padding: 0 var(--spacing-md);
    }

    .benefits-more-container .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* --- Ingredients Visibility --- */
.ingredients .ingredient-card:nth-child(n+2) {
    display: none;
}

.ingredients-more-container {
    text-align: center;
    margin-top: 4rem;
}

.ingredients-more-container .btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.ingredients-more-container .btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .ingredients-more-container {
        margin-top: 2rem;
        padding: 0 var(--spacing-md);
    }

    .ingredients-more-container .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* --- Story Visibility --- */
.story-action-wrapper {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .story-action-wrapper {
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .story-action-wrapper .btn {
        width: 100%;
        max-width: 280px;
    }
}
