 :root {
            --primary: #FA5C5C;
            --white: #FFFFFF;
            --black: #FA5C5C;
            --light-red: #fff9f9;
            --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            font-family: 'Inter', sans-serif; 
            color: var(--black); 
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        .ephesis { font-family: 'Ephesis', cursive; }
        
        /* --- NAVIGATION --- */
        header {
            position: absolute;
            top: 0; left: 0; width: 100%;
            padding: 50px 8% 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }
        header.sticky {
            position: fixed;
            background: rgba(255, 255, 255, 0.98);
            padding: 15px 8%;
            box-shadow: 0 10px 40px rgb(212, 66, 66);
            backdrop-filter: blur(10px);
            
        }
        header.sticky .logo, header.sticky .nav-links a, header.sticky .auth-icons { 
            color: var(--primary) !important; 
        }
        .nav-links{
            color:#FA5C5C;
        }

        .logo { font-size: 4rem; color: #FA5C5C; text-decoration: none; cursor: pointer; transition: 0.3s; }
        .logo:hover { transform: scale(1.05); }
        
        .nav-row { display: flex; gap: 45px; margin-top: 25px; }
        .nav-links a { 
            color: var(--white); 
            text-decoration: none; 
            text-transform: uppercase; 
            font-weight: 700; 
            font-size: 0.85rem; 
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
            background: var(--primary); transition: 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        .auth-icons { position: absolute; right: 8%; top: 60px; display: flex; gap: 25px; color: var(--white); align-items: center; }
        header.sticky .auth-icons { top: 25px; }
        .auth-icons i { cursor: pointer; transition: 0.3s; }
        .auth-icons i:hover { color: var(--primary); transform: translateY(-3px); }

        /* --- HERO --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(17, 17, 17, 0.4), rgba(250, 92, 92, 0.3)),
                        url('https://static.wixstatic.com/media/84770f_69417a89835249a39e6893b4a22c18f4~mv2.jpg/v1/fill/w_1882,h_1097,al_c,q_90,enc_avif,quality_auto/84770f_69417a89835249a39e6893b4a22c18f4~mv2.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
            position: relative;
        }
        .hero-bg-anim {
            position: absolute; inset: 0;
            background: inherit;
            animation: heroZoom 25s infinite alternate ease-in-out;
            z-index: 1;
        }
        @keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.15); } }

        .hero-inner { max-width: 1000px; padding: 20px; z-index: 10; position: relative; }
        .hero-inner h1 { font-size: 8rem; line-height: 0.8; margin-bottom: 25px; text-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .hero-inner h2 { font-size: 1.6rem; text-transform: uppercase; letter-spacing: 10px; font-weight: 300; }
        .hero-divider { width: 80px; height: 3px; background: var(--primary); margin: 40px auto; }

        .btn {
            padding: 20px 50px;
            border-radius: 60px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            text-decoration: none;
            border: 2px solid transparent;
            font-size: 0.85rem;
        }
        .btn-red { background: var(--primary); color: var(--white); box-shadow: 0 10px 20px rgba(250, 92, 92, 0.3); }
        .btn-red:hover { background: var(--white); color: var(--primary); transform: translateY(-5px); }
        .btn-outline { border-color: var(--white); color: var(--white); }
        .btn-outline:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-5px); }

        /* --- SECTIONS --- */
        .section-padding { padding: 140px 8%; }
        .title-block { text-align: center; margin-bottom: 90px; }
        .title-block h3 { font-size: 5rem; color: var(--primary); line-height: 1; }
        .title-block p { font-size: 1.2rem; color: #666; max-width: 600px; margin: 20px auto 0; }

        /* Categories */
        .cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .cat-card {
            position: relative; height: 600px; overflow: hidden; cursor: pointer;
            border-radius: 12px;
        }
        .cat-card img { width: 100%; height: 100%; object-fit: cover; transition: 1.2s; }
        .cat-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(250,92,92,0.9) 0%, transparent 60%);
            display: flex; align-items: flex-end; padding: 50px;
        }
        .cat-card:hover img { transform: scale(1.1) rotate(1deg); }
        .cat-card h4 { color: white; font-size: 3rem; border-bottom: 4px solid var(--white); padding-bottom: 10px; }

        /* Essentials Scroller */
        .essentials { background: var(--primary); color: white; position: relative; overflow: hidden; }
        .filter-bar { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
        .filter-btn {
            background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
            color: white; padding: 10px 25px; border-radius: 30px; cursor: pointer; transition: 0.3s;
            font-weight: 600; font-size: 0.8rem;
        }
        .filter-btn.active { background: white; color: var(--primary); }

        .product-scroller { display: flex; gap: 40px; overflow-x: auto; padding: 40px 0; scrollbar-width: none; }
        .product-card {
            min-width: 320px; background: rgba(255,255,255,0.05); border-radius: 25px;
            padding: 40px; text-align: center; transition: 0.4s; 
            border: 1px solid rgba(255,255,255,0.1);
            animation: float 8s ease-in-out infinite;
        }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }
        .product-card:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }
        .product-card img { width: 100%; height: 220px; object-fit: contain; margin-bottom: 25px; }

        /* --- MODALS --- */
        .modal {
            position: fixed; inset: 0; background: rgba(17,17,17,0.95); z-index: 3000;
            display: none; align-items: center; justify-content: center; padding: 40px;
            backdrop-filter: blur(8px);
        }
        .modal.active { display: flex; }
        .modal-content { 
            background: white; max-width: 1100px; width: 100%; display: grid; 
            grid-template-columns: 1fr 1.2fr; position: relative; border-radius: 30px; overflow: hidden;
            box-shadow: 0 50px 100px rgba(0,0,0,0.5);
        }
        .modal-close { position: absolute; top: 30px; right: 30px; cursor: pointer; z-index: 10; background: white; border-radius: 50%; padding: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

        /* --- FOOTER --- */
        footer { padding: 120px 8% 60px; background: var(--white); }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; text-align: left; }
        .footer-logo { font-size: 4rem; color: var(--primary); margin-bottom: 20px; }
        .footer-col h5 { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; color: var(--black); }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 15px; }
        .footer-col ul li a { color: #666; text-decoration: none; font-size: 0.95rem; transition: 0.3s; cursor: pointer; }
        .footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { border-top: 2px solid var(--primary); margin-top: 80px; padding-top: 40px; display: flex; justify-content: space-between; align-items: center; }

        /* NEWSLETTER */
        .newsletter-wrap { background: var(--primary); padding: 80px; border-radius: 40px; text-align: center; color: white; margin-bottom: 100px; }
        .newsletter-input { display: flex; max-width: 600px; margin: 40px auto 0; background: white; border-radius: 50px; padding: 8px; }
        .newsletter-input input { flex: 1; border: none; padding: 0 30px; font-family: inherit; font-size: 1rem; border-radius: 50px; }
        .newsletter-input button { background: var(--primary); color: white; border: none; padding: 15px 40px; border-radius: 50px; font-weight: 800; cursor: pointer; }

        /* AUTH PAGES */
        .auth-container { max-width: 500px; width: 100%; background: white; padding: 60px; border-radius: 40px; position: relative; }
        .input-group { margin-bottom: 25px; }
        .input-group label { display: block; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; }
        .input-group input { width: 100%; padding: 18px; border: 2px solid #f0f0f0; border-radius: 15px; font-family: inherit; transition: 0.3s; }
        .input-group input:focus { border-color: var(--primary); outline: none; }

        /* CONTENT PAGES */
        .page-node { display: none; }
        .page-node.active { display: block; }
        .long-content { max-width: 1000px; margin: 0 auto; padding: 200px 20px 100px; }
        .long-content h2 { font-size: 6rem; color: var(--primary); margin-bottom: 50px; }
        .long-content section { margin-bottom: 80px; }
        .long-content h3 { font-size: 2.2rem; margin-bottom: 25px; color: var(--black); }
        .long-content p { font-size: 1.15rem; color: #444; margin-bottom: 25px; }
        .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
        .content-img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; }

        /* CART PANEL */
        .cart-panel {
            position: fixed; top: 0; right: -450px; width: 450px; height: 100vh; background: white;
            box-shadow: -20px 0 60px rgba(0,0,0,0.1); z-index: 4000; padding: 60px 40px;
            transition: var(--transition);
        }
        .cart-panel.active { right: 0; }
        .cart-item { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid #eee; }

        @media (max-width: 1024px) {
            .hero-inner h1 { font-size: 5rem; }
            .cat-grid, .footer-grid, .modal-content, .content-grid { grid-template-columns: 1fr; }
            .auth-icons { position: static; margin-top: 20px; justify-content: center; }
            .modal-content img { height: 350px; }
        }

        .newsletter-wrap {
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    outline: none;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #111;
    color: #fff;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #333;
}

.newsletter-message {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}