  :root {
            --font-main: 'Nata Sans', sans-serif;
            --bg-card: rgba(255, 255, 255, 0.98);
            --text-black: #000000;
            --accent-hover: rgba(0, 0, 0, 0.08);
            --transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
            --main-bg-url: url('img1.avif');
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: var(--font-main); 
            color: var(--text-black);
            overflow-x: hidden;
            background: var(--main-bg-url) center/cover no-repeat fixed;
            min-height: 100vh;
        }

        /* --- BACKGROUND ANIMATION --- */
        body::before {
            content: '';
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.05);
            z-index: 0;
            animation: bgPulse 10s infinite alternate;
        }
        @keyframes bgPulse {
            from { background: rgba(0,0,0,0.02); }
            to { background: rgba(0,0,0,0.12); }
        }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            padding: 40px 60px; display: flex; align-items: center;
            justify-content: space-between; transition: var(--transition);
        }
        header.scrolled { padding: 20px 60px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); }
        
.logo { 
    display: flex;
    align-items: center;
    cursor: pointer;
    /* Remove text styles since the image is replacing text */
    font-size: unset;
    font-weight: unset;
    letter-spacing: unset;
    text-transform: unset;
}
        .header-tools { display: flex; align-items: center; gap: 35px; }
        .icon-btn { cursor: pointer; transition: transform 0.3s ease; position: relative; }
        .icon-btn:hover { transform: translateY(-2px); }
        .cart-count {
            position: absolute; top: -8px; right: -12px;
            background: black; color: white; font-size: 10px;
            width: 18px; height: 18px; display: flex; align-items: center;
            justify-content: center; border-radius: 50%;
        }
        .hero-section {
    display: flex;
    justify-content: flex-start;  /* left align horizontally */
    align-items: flex-start;      /* top align vertically */
    min-height: 100vh;
    padding: 80px 60px;           /* top-left padding for spacing */
    text-align: left;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-bottom: 6px solid white; /* underline */
    display: inline-block;          /* ensures border fits text width */
    padding-bottom: 10px;           /* spacing between text and underline */
}

        /* --- NAVIGATION OVERLAY --- */
        .nav-overlay {
            position: fixed; inset: 0; background: white; z-index: 2000;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transform: translateX(100%); transition: var(--transition);
        }
        .nav-overlay.active { transform: translateX(0); }
        .nav-links { list-style: none; text-align: center; }
        .nav-links li { margin: 30px 0; }
        .nav-links a { 
            font-size: clamp(2rem, 5vw, 4rem); font-weight: 200; text-decoration: none; color: black;
            text-transform: uppercase; letter-spacing: 8px; transition: 0.4s; cursor: pointer;
        }
        .nav-links a:hover { letter-spacing: 12px; font-weight: 600; }
        .close-nav { position: absolute; top: 40px; right: 60px; cursor: pointer; }

        /* --- CART DRAWER --- */
        .cart-drawer {
            position: fixed; top: 0; right: 0; width: 450px; height: 100vh;
            background: white; z-index: 3000; transform: translateX(100%);
            transition: var(--transition); padding: 60px 40px; display: flex; flex-direction: column;
        }
        .cart-drawer.active { transform: translateX(0); }
        .cart-items { flex: 1; overflow-y: auto; margin: 40px 0; }
        .cart-item { display: flex; gap: 20px; margin-bottom: 30px; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 20px;}
        .cart-item img { width: 80px; height: 80px; object-fit: cover; }
        .cart-footer { border-top: 1px solid #eee; padding-top: 20px; }

        /* --- PAGES & CARDS --- */
        .page { display: none; position: relative; z-index: 1; padding-top: 120px; padding-bottom: 120px; }
        .page.active { display: block; animation: cardFadeUp 1.2s ease forwards; }
        
        @keyframes cardFadeUp {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .container { max-width: 1000px; margin: 0 auto; padding: 0 30px; }
        .content-card {
            background: var(--bg-card); padding: 100px 80px; margin-bottom: 120px;
            border-radius: 8px; box-shadow: 0 40px 100px rgba(0,0,0,0.12);
            text-align: center; transition: var(--transition);
        }
        .hero-title { font-size: clamp(3rem, 10vw, 8rem); font-weight: 900; margin-bottom: 60px; line-height: 0.9; text-align: center; color: white; text-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .section-title { font-size: 3rem; font-weight: 800; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 4px; }
        .body-text { font-size: 1.2rem; line-height: 2; color: #111; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block; padding: 22px 55px; border: 2px solid black;
            text-decoration: none; color: black; text-transform: uppercase;
            font-weight: 700; letter-spacing: 3px; cursor: pointer;
            transition: var(--transition); background: transparent; position: relative; overflow: hidden;
        }
        .btn::after { content: ''; position: absolute; inset: 0; background: black; transform: scaleX(0); transition: 0.3s; z-index: -1; transform-origin: right; }
        .btn:hover::after { transform: scaleX(1); transform-origin: left; }
        .btn:hover { color: white; transform: translateY(-3px); }

        /* --- SHOP & FILTER --- */
        .filter-bar { 
            display: flex; justify-content: center; gap: 20px; margin-bottom: 80px; 
            background: white; padding: 20px; border-radius: 50px; width: fit-content; margin-left: auto; margin-right: auto;
        }
        .filter-tag {
            padding: 10px 30px; cursor: pointer; border-radius: 30px;
            font-size: 0.9rem; font-weight: 600; transition: 0.3s;
        }
        .filter-tag.active { background: black; color: white; }

        .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 50px; }
        .product-item { background: white; border-radius: 4px; padding: 20px; transition: 0.5s; cursor: pointer; text-align: left;}
        .product-item:hover { transform: translateY(-10px); }
        .product-item img { width: 100%; height: 400px; object-fit: cover; margin-bottom: 25px; border-radius: 4px; }

        /* --- MODAL --- */
        .modal {
            position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 4000;
            display: none; align-items: center; justify-content: center; padding: 40px;
        }
        .modal.active { display: flex; }
        .modal-body { 
            background: white; max-width: 1200px; width: 100%; display: grid; 
            grid-template-columns: 1.2fr 1fr; position: relative; overflow: hidden;
        }
        .modal-img { min-height: 600px; background-size: cover; background-position: center; }
        .modal-info { padding: 80px; }

        /* --- FOOTER --- */
        footer { padding: 120px 40px; text-align: center; z-index: 1; position: relative; }
        .newsletter-field { 
            max-width: 600px; margin: 50px auto; display: flex; gap: 0; 
            border-bottom: 2px solid black; 
        }
        .newsletter-field input { 
            flex: 1; padding: 20px; border: none; background: transparent; 
            font-size: 1.2rem; outline: none; font-family: var(--font-main);
        }

        /* Utils */
        .mb-100 { margin-bottom: 100px; }
        .text-center { text-align: center; }
        .flex { display: flex; }


        .newsletter-field {
    gap: 15px; /* space between input and buttons, and buttons themselves */
}