/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS (NATIVA - VEGAN/PLANT-BASED)
   ========================================================================== */
   :root {
    /* Color Palette - Earth Tones */
    --clr-primary: #4A6741; /* Moss Green */
    --clr-primary-hover: #3a5233;
    --clr-secondary: #C87A5B; /* Terracotta/Clay */
    --clr-secondary-hover: #b0694e;
    
    --clr-bg-main: #FDFBF7; /* Warm Paper / Cream */
    --clr-bg-light: #F4EFEA; /* Slightly darker cream for sections */
    --clr-bg-dark: #2C302B; /* Very dark olive/gray for footers */
    
    --clr-text-main: #3E3B35; /* Soft dark brown instead of harsh black */
    --clr-text-muted: #7A7569;
    
    --clr-border: #E8E2D5;
    
    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects - Softer Shadows & Rounded Corners */
    --shadow-sm: 0 4px 10px rgba(74, 103, 65, 0.04);
    --shadow-md: 0 10px 25px rgba(74, 103, 65, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    
    --trans-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-main);
    color: var(--clr-text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--clr-primary);
    line-height: 1.2;
}

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

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1100px; /* Slightly narrower for an elegant editorial feel */
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   UTILITY & BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-pill); /* Pill shaped buttons feel more natural */
    transition: all var(--trans-fast);
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: #FFF;
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-add-cart {
    width: 100%;
    background-color: var(--clr-bg-light);
    color: var(--clr-primary);
    padding: 14px;
    font-weight: 500;
    border-radius: var(--radius-pill);
    margin-top: 20px;
    border: 1px solid var(--clr-border);
    transition: all var(--trans-fast);
}

.btn-add-cart:hover {
    background-color: var(--clr-primary);
    color: #FFF;
    border-color: var(--clr-primary);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-secondary);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.link-arrow:hover {
    gap: 12px;
    border-color: var(--clr-secondary);
}

.eyebrow {
    display: inline-block;
    color: var(--clr-secondary);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */
.announcement-bar {
    background-color: var(--clr-primary);
    color: #FFF;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.announcement-bar i {
    color: var(--clr-secondary);
    margin-right: 4px;
}

.navbar {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: box-shadow var(--trans-fast), padding var(--trans-fast);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 400;
    color: var(--clr-text-main);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--clr-primary);
    transition: width var(--trans-fast), left var(--trans-fast);
}

.nav-links a:hover {
    color: var(--clr-primary);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.icon-link, .cart-btn {
    color: var(--clr-text-main);
    font-size: 1.25rem;
}

.icon-link:hover, .cart-btn:hover {
    color: var(--clr-secondary);
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.cart-text {
    font-size: 0.95rem;
    font-weight: 400;
}

.cart-count {
    background-color: var(--clr-secondary);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -8px;
}

.d-desktop { display: flex; }
.d-mobile { display: none; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 24px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--clr-secondary);
    font-weight: 400;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.8;
}

.hero-cta {
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    gap: 32px;
    border-top: 1px solid var(--clr-border);
    padding-top: 32px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.badge i {
    font-size: 1.5rem;
    color: var(--clr-primary);
}

.hero-image .image-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* Creating a soft, organic shape */
    border-radius: 200px 200px 20px 20px;
    box-shadow: var(--shadow-md);
    height: 600px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   FEATURES STRIP
   ========================================================================== */
.features-strip {
    background-color: #F9F7F1;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 24px 0;
}

.features-strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

.strip-item i {
    font-size: 1.5rem;
    color: var(--clr-secondary);
}

@media (max-width: 768px) {
    .features-strip-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section {
    padding: 100px 0;
    background-color: var(--clr-bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards looks more elegant than 4 */
    gap: 40px;
}

.product-card {
    background: #FFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--trans-fast), box-shadow var(--trans-fast);
    padding: 24px;
    border: 1px solid var(--clr-border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.product-img-wrapper {
    position: relative;
    height: 280px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 24px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--clr-bg-main);
    color: var(--clr-primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--clr-text-main);
}

.flavor {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.price {
    font-size: 1.2rem;
    color: var(--clr-text-main);
    display: block;
}

/* ==========================================================================
   TRANSPARENCY / SUSTAINABILITY
   ========================================================================== */
.transparency-section {
    padding: 120px 0;
}

.transparency-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.transparency-image img {
    box-shadow: var(--shadow-md);
    height: 600px;
    object-fit: cover;
}

.transparency-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.transparency-content > p {
    color: var(--clr-text-muted);
    font-size: 1.15rem;
    margin-bottom: 48px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--clr-secondary);
    font-size: 2rem;
    margin-top: -4px;
}

.feature-list h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--clr-text-main);
}

.feature-list p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--clr-bg-dark);
    color: #FDFBF7;
    padding-top: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(253, 251, 247, 0.1);
    margin-bottom: 60px;
}

.footer-brand p {
    color: #A3A8A1;
    margin-top: 16px;
    max-width: 300px;
}

.footer .logo {
    color: #FDFBF7;
}

.footer-newsletter h4 {
    color: #FDFBF7;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.footer-newsletter p {
    color: #A3A8A1;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #A3A8A1;
    padding-bottom: 8px;
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #FDFBF7;
    font-family: inherit;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #A3A8A1;
}

.newsletter-form button {
    color: var(--clr-secondary);
    font-size: 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links h4 {
    color: #FDFBF7;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #A3A8A1;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--clr-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    color: #A3A8A1;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 20px;
    font-size: 1.25rem;
}

.social-links a:hover {
    color: var(--clr-secondary);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container, .transparency-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge {
        align-items: center;
    }

    .hero-image .image-box {
        height: 400px;
        border-radius: 20px;
    }
    
    .transparency-image img {
        height: 400px;
        border-radius: 20px !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .d-desktop { display: none; }
    .d-mobile { display: block; }
    
    .mobile-menu-btn {
        font-size: 1.5rem;
        color: var(--clr-primary);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
