        :root {
            --electric-purple: #00f529;
            --deep-plum: #ca603c;
            --white: #e71515;
            --overlay: rgba(106, 0, 102, 0.7);
            --transition-slow: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
            --transition-fast: all 0.3s ease;
        }

        /* --- GLOBAL RESET & TYPOGRAPHY --- */
        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
        
        body {
            background-color: #00f529 ;
            color: var(--deep-plum);
            font-family: 'Cookie', cursive;
            font-size: 1.5rem;
            letter-spacing: 0.05em;
            overflow-x: hidden;
        }


        .popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.popup-overlay.active{
    display:flex;
}

.popup-content{
    background:rgb(137, 254, 20);
    padding:30px;
    max-width:500px;
    width:90%;
    border-radius:10px;
    position:relative;
    animation:popupFade 0.3s ease;
}

.popup-close{
    position:absolute;
    top:10px;
    right:15px;
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
}

@keyframes popupFade{
    from{transform:scale(0.9);opacity:0;}
    to{transform:scale(1);opacity:1;}
}

        /* Override for body text parts that need readability */
        p, span, input, textarea, .sans {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 0;
        }

        h1, h2, h3, .script-font { font-family: 'Cookie', cursive; font-weight: 400; line-height: 1; }

        button, .btn {
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 2px;
            padding: 16px 32px;
            border-radius: 4px;
            cursor: pointer;
            border: none;
            transition: var(--transition-fast);
            display: inline-block;
        }

        .btn-purple { background: var(--deep-plum); color: var(--electric-purple); }
        .btn-purple:hover { background: var(--white); color: var(--deep-plum); transform: translateY(-2px); }
        .btn-white { background: var(--white); color: var(--deep-plum); }
        .btn-white:hover { background: var(--deep-plum); color: var(--white); }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; left: 0; width: 100%;
            padding: 30px 5%; display: flex; justify-content: space-between;
            align-items: center; z-index: 1000; transition: background 0.5s;
        }
        header.scrolled { background: var(--deep-plum); padding: 15px 5%; }
        header.scrolled .logo { color: var(--electric-purple); }

        .header-left { display: flex; gap: 25px; color: var(--white); }
        .header-left span { cursor: pointer; font-size: 0.75rem; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; transition: 0.3s; }
        .header-left span:hover { color: var(--electric-purple); }

        .logo { font-size: 2.8rem; color: var(--white); position: absolute; left: 50%; transform: translateX(-50%); cursor: pointer; }

        .menu-trigger {
            width: 60px; height: 60px; border-radius: 50%;
            background: var(--deep-plum); color: var(--electric-purple);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: var(--transition-fast);
        }
        .menu-trigger:hover { transform: scale(1.1) rotate(90deg); background: var(--white); }

        /* --- OVERLAYS --- */
        #menuOverlay {
            position: fixed; inset: 0; background: var(--deep-plum);
            z-index: 2000; display: none; flex-direction: column;
            align-items: center; justify-content: center; opacity: 0;
            transition: var(--transition-slow);
        }
        #menuOverlay.active { display: flex; opacity: 1; }
        .menu-item { font-size: 4.5rem; color: var(--electric-purple); margin: 10px 0; cursor: pointer; transition: 0.4s; }
        .menu-item:hover { color: var(--white); transform: scale(1.1); padding-left: 20px; }
        .close-icon { position: absolute; top: 40px; right: 5%; color: var(--electric-purple); cursor: pointer; transition: 0.3s; }
        .close-icon:hover { color: var(--white); }

        /* --- HERO SECTION --- */
        .hero { height: 100vh; display: flex; align-items: center; padding: 0 5%; background: linear-gradient(to right, #00f529, #00f529); position: relative; }
        .hero-left { flex: 0 0 70%; padding-right: 50px; z-index: 2; }
        .hero-right { flex: 0 0 30%; position: relative; }
        
        .hero-title { font-size: 7rem; color: var(--deep-plum); overflow: hidden; }
        .line-reveal { transform: translateY(100%); transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1); }
        .active .line-reveal { transform: translateY(0); }
        
        .hero-img-container {
            width: 100%; height: 700px; border-radius: 40px; overflow: hidden;
        }
        .hero-img-container img { width: 100%; height: 100%; object-fit: cover; }
        @keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-30px) rotate(2deg); } }

        /* --- THREE SPLIT BACKGROUND SECTION --- */
        .split-section { display: flex; flex-direction: column; }
        .split-row { height: 700px; display: flex; border-bottom: 2px solid var(--deep-plum); }
        .split-row:nth-child(even) { flex-direction: row-reverse; }
        
        .split-left { flex: 0 0 30%; background-attachment: fixed; background-size: cover; background-position: center; position: relative; border-right: 2px solid var(--deep-plum); }
        .split-right { flex: 0 0 70%; background-attachment: fixed; background-size: cover; background-position: center; position: relative; }
        
        .split-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 60px; background: linear-gradient(to top, rgba(106,0,102,0.9), transparent); color: var(--white); }
        .split-content h3 { font-size: 4rem; margin-bottom: 10px; }

        /* --- LONG TEXT + CARDS --- */
        .inverse-bg { background: var(--deep-plum); padding: 120px 5%; color: var(--electric-purple); text-align: center; }
        .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 80px; }
        .fashion-card { 
            background: var(--electric-purple); padding: 50px; border-radius: 30px; color: var(--deep-plum);
            border: 2px solid transparent; transition: var(--transition-fast); position: relative; overflow: hidden;
        }
        .fashion-card:hover { border-color: var(--white); transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
        .fashion-card svg { width: 60px; height: 60px; margin-bottom: 25px; fill: var(--deep-plum); }

        /* --- PARALLAX SECTION --- */
        .parallax-full {
            height: 100vh; background-attachment: fixed; background-size: cover; background-position: center;
            display: flex; align-items: center; justify-content: center; position: relative;
        }
        .parallax-full::after { content: ''; position: absolute; inset: 0; background: rgba(106, 0, 102, 0.4); }
        .parallax-text { position: relative; z-index: 5; font-size: 8rem; color: var(--white); text-shadow: 0 10px 30px rgba(0,0,0,0.5); text-align: center; }

        /* --- MIXED CARDS SECTION --- */
        .mixed-container { display: flex; flex-wrap: wrap; background: var(--electric-purple); }
        .mixed-item { flex: 1; min-width: 33.33%; height: 600px; display: flex; flex-direction: column; justify-content: center; padding: 60px; position: relative; overflow: hidden; }
        .mixed-item.img-item { padding: 0; }
        .mixed-item img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
        .mixed-item.img-item:hover img { transform: scale(1.1); }
        .mixed-item h2 { font-size: 4rem; margin-bottom: 20px; }

        /* --- CART SIDEBAR --- */
        #cartSidebar {
            position: fixed; right: -450px; top: 0; width: 450px; height: 100%;
            background: var(--white); color: var(--deep-plum); z-index: 3000;
            padding: 50px; transition: var(--transition-slow); box-shadow: -15px 0 50px rgba(0,0,0,0.2);
        }
        #cartSidebar.active { right: 0; }
        .cart-list { margin-top: 40px; max-height: 60vh; overflow-y: auto; }
        .cart-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid #eee; }
        .cart-row img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }

        /* --- SERVICES PAGE SPECIFIC --- */
        .filter-bar { padding: 40px 5%; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; background: var(--deep-plum); }
        .filter-btn { background: transparent; border: 1px solid var(--electric-purple); color: var(--electric-purple); padding: 8px 20px; border-radius: 20px; cursor: pointer; transition: 0.3s; font-size: 0.7rem; font-family: 'Inter'; font-weight: 800; }
        .filter-btn.active { background: var(--electric-purple); color: var(--deep-plum); }

        /* --- AUTH PAGES --- */
        .auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--deep-plum); padding: 20px; }
        .auth-card { background: var(--electric-purple); width: 100%; max-width: 500px; padding: 60px; border-radius: 40px; box-shadow: 0 30px 100px rgba(0,0,0,0.5); color: var(--deep-plum); }
        .form-group { margin-bottom: 25px; }
        .form-group label { display: block; font-family: 'Inter'; font-weight: 800; font-size: 0.7rem; text-transform: uppercase; margin-bottom: 10px; }
        .form-group input { width: 100%; padding: 18px; border: 2px solid var(--deep-plum); background: transparent; border-radius: 12px; outline: none; font-family: 'Inter'; font-size: 1rem; color: var(--deep-plum); }
        .form-group input:focus { border-color: var(--white); background: rgba(255,255,255,0.1); }

        /* --- FOOTER --- */
        footer { background: var(--deep-plum); padding: 120px 5% 40px; color: white; border-top: 10px solid var(--electric-purple); }
        .footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 80px; }
        .footer-logo { font-size: 4rem; color: white; margin-bottom: 20px; }
        .footer-links h4 { font-size: 2.5rem; color: white; margin-bottom: 25px; }
        .footer-links a { display: block; color: white; text-decoration: none; margin-bottom: 15px; font-family: 'Inter'; font-size: 0.85rem; opacity: 0.7; transition: 0.3s; }
        .footer-links a:hover { opacity: 1; color: white; transform: translateX(5px); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; text-align: center; font-family: 'Inter'; font-size: 0.7rem; letter-spacing: 2px; opacity: 0.5; }

        /* --- QUICK VIEW MODAL --- */
        .modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 5000; display: none; align-items: center; justify-content: center; padding: 20px; }
        .modal.active { display: flex; }
        .modal-content { background: var(--electric-purple); width: 100%; max-width: 1100px; border-radius: 30px; display: flex; overflow: hidden; position: relative; }
        .modal-left { flex: 1; height: 600px; }
        .modal-left img { width: 100%; height: 100%; object-fit: cover; }
        .modal-right { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; color: var(--deep-plum); }
        .modal-right h2 { font-size: 5rem; }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .hero { flex-direction: column; text-align: center; height: auto; padding: 150px 5% 80px; }
            .hero-left, .hero-right { flex: 0 0 100%; padding: 0; }
            .hero-title { font-size: 4.5rem; }
            .split-row { flex-direction: column !important; height: auto; }
            .split-left, .split-right { height: 400px; }
            .card-grid { grid-template-columns: 1fr 1fr; }
            .mixed-item { min-width: 50%; }
            .parallax-text { font-size: 4rem; }
            .footer-main { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 600px) {
            .card-grid { grid-template-columns: 1fr; }
            .mixed-item { min-width: 100%; height: 500px; }
            .modal-content { flex-direction: column; }
            .modal-left { height: 300px; }
        }

        .newsletter-wrapper {
    margin-top: 20px;
}

.newsletter-input input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--electric-purple);
    padding: 10px 0;
    color: white;
    font-family: 'Inter';
    outline: none;
}

.newsletter-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-actions button {
    background: var(--electric-purple);
    border: none;
    padding: 8px 16px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    color: var(--deep-plum);
    transition: 0.3s;
}

.newsletter-actions button:hover {
    opacity: 0.8;
}

.unsubscribe-btn {
    background: transparent;
    border: 1px solid var(--electric-purple);
    color: var(--electric-purple);
}

.newsletter-message {
    margin-top: 15px;
    font-size: 0.8rem;
    font-family: 'Inter';
    font-weight: 600;
    min-height: 20px;
    opacity: 1;
}   