/* ==========================================
   🎨 DESIGN TOKENS — Warm Pastel Palette
   ========================================== */
:root {
    --bg-color: #FEF7EE;
    /* Warm ivory cream */
    --surface-color: #FFFCF8;
    /* Soft warm white */
    --primary-color: #C8836B;
    /* Dusty terracotta rose */
    --primary-hover: #B56E58;
    /* Deeper terracotta */
    --accent-color: #8BAF87;
    /* Muted sage green */
    --accent-hover: #739E6F;
    --whatsapp-color: #6BBF8C;
    /* Pastel green (not harsh #25D366) */
    --text-color: #3A2214;
    /* Deep warm espresso */
    --text-muted: #8A7268;
    /* Warm taupe */
    --border-color: #EDE3D9;
    /* Soft sand */
    --transition: all 0.3s ease;
    --font-title: 'Lancelot', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Koulen', sans-serif;
}

/* ==========================================
   🔄 RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* ==========================================
   🔤 TYPOGRAPHY
   ========================================== */
h1,
h2,
h3 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

/* ==========================================
   ✨ ANIMATIONS
   ========================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hero image & about image gentle float */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* Marquee scroll */
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==========================================
   📱 RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        flex-direction: column;
        background-color: rgba(58, 34, 20, 0.97);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.active {
        left: 0;
    }

    .navbar {
        padding: 0.8rem 5%;
    }

    .nav-logo {
        height: 55px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8.5rem;
        padding-bottom: 3rem;
    }

    .hero-content p {
        margin: 0 auto 2rem auto;
    }

    .hero-actions {
        justify-content: center;
    }


    .outline-btn {
        width: 100%;
        text-align: center;
    }

    /* Hide floating decorations on small screens */
    .hero-float {
        display: none;
    }

    /* Stats bar: hide dividers, let items wrap 2×2 */
    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 48%;
    }



    .social-links {
        flex-direction: column;
    }
}

@media (max-width: 450px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}