  :root {
            --primary-orange: #F97A00;
            --bright-green: #B4E50D;
            --bold-red: #FF3F33;
            --soft-yellow: #FED16A;
            --pastel-peach: #FFDDAB;
            --deep-magenta: #E50046;
            --white: #FFFFFF;
            --black: #121212;
            --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
        
        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.8;
        }

        .art-font { font-family: 'Neonderthaw', cursive; text-transform: none; font-weight: 400; }

        /* --- NAVIGATION --- */
        header {
            background: rgba(255, 221, 171, 0.9);
            backdrop-filter: blur(12px);
            height: 90px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0,0,0,0.05);
        }

        .logo { font-size: 5.2rem; cursor: pointer; color: var(--deep-magenta); text-shadow: 2px 2px 0px var(--soft-yellow); }

        nav ul { display: flex; list-style: none; gap: 35px; align-items: center; }
        nav a { 
            text-decoration: none; 
            color: var(--black); 
            font-weight: 800; 
            font-size: 0.9rem; 
            position: relative;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
        }
        nav a:hover { color: var(--deep-magenta); }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0;
            width: 0; height: 3px;
            background: var(--deep-magenta);
            transition: 0.3s;
        }
        nav a:hover::after { width: 100%; }
        
        .nav-actions { display: flex; gap: 20px; align-items: center; }
        .icon-btn { background: none; border: none; cursor: pointer; color: var(--black); position: relative; transition: 0.3s; display: flex; align-items: center; }
        .icon-btn:hover { color: var(--primary-orange); transform: scale(1.1); }
        .badge { position: absolute; top: -10px; right: -10px; background: var(--deep-magenta); color: white; width: 22px; height: 22px; border-radius: 50%; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; font-weight: 800; border: 2px solid white; }

        .search-container { position: relative; display: flex; align-items: center; background: white; padding: 8px 18px; border-radius: 40px; border: 1px solid rgba(0,0,0,0.1); }
        .search-container input { border: none; background: none; padding: 5px; font-family: inherit; width: 140px; transition: 0.4s; outline: none; }
        .search-container input:focus { width: 220px; }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: #fff;
        }
        .hero-bg-anim {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(135deg, var(--pastel-peach), var(--soft-yellow), var(--bright-green), var(--primary-orange), var(--deep-magenta));
            background-size: 400% 400%;
            animation: gradientMove 12s ease infinite;
            opacity: 0.4;
        }
        @keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            width: 100%;
            padding: 0 8%;
            position: relative;
            z-index: 10;
        }

        .hero-text h1 { font-size: 8rem; line-height: 0.8; margin-bottom: 25px; color: var(--black); animation: fadeUp 1s both; }
        .hero-text p { font-size: 1.3rem; max-width: 600px; margin-bottom: 50px; color: #444; animation: fadeUp 1s 0.2s both; }

        @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        .btn {
            padding: 22px 55px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1rem;
            display: inline-block;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .btn-red { background: var(--bold-red); color: var(--white); }
        .btn-red:hover { background: var(--bright-green); color: var(--black); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(180, 229, 13, 0.4); }

        .hero-visual { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
        .floating-art {
            position: absolute;
            width: 320px;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.2);
            border: 10px solid white;
            transition: 0.8s;
            animation: float 8s ease-in-out infinite;
        }
        .fa-1 { top: 0; left: 0; transform: rotate(-10deg); animation-delay: 0s; }
        .fa-2 { bottom: 0; right: 0; transform: rotate(12deg); animation-delay: 1.5s; }
        .fa-3 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(3deg); animation-delay: 3s; z-index: 5; }
        
        @keyframes float { 0%, 100% { transform: translateY(0) rotate(var(--rot)); } 50% { transform: translateY(-30px) rotate(var(--rot)); } }
        .fa-1 { --rot: -10deg; } .fa-2 { --rot: 12deg; } .fa-3 { --rot: 3deg; }

        /* --- SECTIONS --- */
        .section { padding: 140px 8%; position: relative; overflow: hidden; }
        .section-header { margin-bottom: 90px; }
        .section-header h2 { font-size: 6rem; line-height: 1; margin-bottom: 25px; color: var(--deep-magenta); }
        .section-header p { font-size: 1.2rem; max-width: 700px; opacity: 0.8; }

        /* Collections */
        .coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .coll-card {
            height: 600px;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
        }
        .coll-card img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
        .coll-card:hover img { scale: 1.2; filter: brightness(0.7); }
        .coll-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 50px;
            opacity: 0;
            transform: translateY(20px);
            transition: 0.5s;
        }
        .coll-card:hover .coll-overlay { opacity: 1; transform: translateY(0); }
        .coll-card h3 { font-size: 3.5rem; color: white; line-height: 1; }

        /* Shop Grid */
        .shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 45px; }
        .product-card {
            background: white;
            border-radius: 40px;
            padding: 25px;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }
        .product-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 50px 100px rgba(0,0,0,0.1);
        }
        .product-card img { width: 100%; height: 350px; object-fit: cover; border-radius: 30px; margin-bottom: 25px; cursor: pointer; }
        .category-tag { position: absolute; top: 40px; left: 40px; background: var(--bright-green); padding: 6px 18px; border-radius: 12px; font-weight: 800; font-size: 0.7rem; }
        .add-btn { width: 100%; padding: 18px; border: none; border-radius: 25px; background: var(--black); color: white; font-weight: 800; cursor: pointer; transition: 0.3s; margin-top: 20px; }
        .add-btn:hover { background: var(--deep-magenta); }

        /* Sidebar Cart */
        .cart-sidebar {
            position: fixed;
            top: 0; right: -500px;
            width: 450px; height: 100vh;
            background: white;
            z-index: 2000;
            box-shadow: -20px 0 60px rgba(0,0,0,0.15);
            padding: 50px;
            transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
            display: flex;
            flex-direction: column;
        }
        .cart-sidebar.open { right: 0; }
        .cart-list { flex: 1; overflow-y: auto; margin-top: 40px; }
        .cart-item { display: flex; gap: 20px; align-items: center; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
        .cart-item img { width: 80px; height: 80px; border-radius: 15px; object-fit: cover; }

        /* Auth */
        .auth-card { max-width: 550px; margin: 150px auto; background: var(--soft-yellow); padding: 80px; border-radius: 60px; text-align: center; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
        .auth-input { width: 100%; padding: 22px; border-radius: 20px; border: 2px solid transparent; margin-bottom: 25px; font-size: 1rem; outline: none; transition: 0.3s; }
        .auth-input:focus { border-color: var(--deep-magenta); }

        /* Content Pages */
        .content-page { padding: 180px 15% 120px; min-height: 100vh; }
        .content-page h1 { font-size: 5rem; color: var(--deep-magenta); margin-bottom: 40px; }
        .content-page h2 { font-size: 2.5rem; margin: 40px 0 20px; color: var(--primary-orange); }
        .content-page p { font-size: 1.15rem; margin-bottom: 25px; color: #444; }

        /* Footer */
        footer { background: var(--bold-red); color: white; padding: 120px 8% 60px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
        .footer-links h4 { color: var(--soft-yellow); margin-bottom: 30px; font-size: 1.5rem; }
        .footer-links a { color: white; text-decoration: none; display: block; margin-bottom: 15px; opacity: 0.7; transition: 0.3s; font-weight: 600; cursor: pointer; }
        .footer-links a:hover { opacity: 1; transform: translateX(10px); color: var(--bright-green); }

        /* Utils */
        .page { display: none; }
        .page.active { display: block; }
        .hidden { display: none; }
        header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    cursor: pointer;
}

/* Navigation */
.nav-links ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Hamburger menu (hidden on desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Search input */
.search-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.search-container input {
    padding: 0.25rem 0.5rem;
}

/* Badge */
.badge {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 0 6px;
    font-size: 0.75rem;
    position: relative;
    top: -8px;
    left: -10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hamburger {
        display: block;
    }

    .nav-actions {
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
}