        :root {
            --pink: #e66868;
            --ivory: #FBF6F6;
            --mint: #C7EABB;
            --dark: #1C1C1C;
            --white: #ffffff;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* --- GLOBAL --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: "Edu AU VIC WA NT Pre", cursive; 
            background: var(--ivory); 
            color: var(--dark);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .logo { font-family: "Moo Lah Lah", sans-serif; font-weight: 400; }

        .page { display: none; min-height: 100vh; animation: fadeIn 0.6s ease-out; }
        .page.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; width: 100%; padding: 20px 8%;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000; transition: 0.3s;
        }
        header.scrolled { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(15px); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .logo { font-size: 2.5rem; color: var(--pink); cursor: pointer; text-shadow: 2px 2px var(--white); }
        
        nav ul { display: flex; list-style: none; gap: 30px; }
        nav ul li a { text-decoration: none; color: var(--pink); font-weight: 700; font-size: 1.2rem; transition: 0.3s; }
        nav ul li a:hover { transform: scale(1.1); color: var(--mint); }

        .header-icons { display: flex; gap: 20px; align-items: center; color: var(--pink); }
        .cart-icon { position: relative; cursor: pointer; }
.cart-badge { 
    position: absolute;
    top: -10px; /* corrected */
    right: -10px;
    background: var(--mint); 
    color: var(--dark); 
    font-size: 0.7rem; 
    padding: 2px 6px; 
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    pointer-events: none; /* badge doesn’t block clicks */
}
        /* --- HERO --- */
        .hero { 
            height: 100vh; background: url('https://i.pinimg.com/1200x/13/c7/0b/13c70b3dd91f4018f864af0cbc64d403.jpg') center/cover no-repeat fixed;
            display: flex; align-items: center; justify-content: center; position: relative;
        }
        .hero-overlay {
            background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(2px);
            padding: 60px; border-radius: 50px; text-align: center; max-width: 800px;
            border: 2px solid rgba(255,255,255,0.4);
            animation: slideUp 1s ease-out;
        }
        @keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
        .hero h1 { font-size: 5.5rem; color: var(--pink); line-height: 1; margin-bottom: 20px; }
        .hero p { font-size: 1.8rem; color: var(--dark); margin-bottom: 30px; }

        /* --- BUTTONS --- */
        .btn {
            padding: 15px 40px; border-radius: 40px; border: none; cursor: pointer;
            font-family: inherit; font-weight: 700; transition: var(--transition);
            text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
        }
        .btn-mint { background: var(--mint); color: var(--pink); font-size: 1.3rem; }
        .btn-mint:hover { transform: scale(1.05) rotate(-2deg); box-shadow: 0 10px 20px rgba(199, 234, 187, 0.4); }
        .btn-pink { background: var(--pink); color: var(--ivory); }

        /* --- SECTIONS --- */
        section { padding: 100px 8%; }
        .section-title { font-size: 4rem; text-align: center; color: var(--pink); margin-bottom: 60px; }

        /* --- CAROUSEL / CARDS --- */
        .scroll-container { 
            display: flex; overflow-x: auto; gap: 30px; padding: 40px 0; 
            scrollbar-width: none; -ms-overflow-style: none;
        }
        .scroll-container::-webkit-scrollbar { display: none; }
        
        .product-card {
            min-width: 300px; background: var(--white); border-radius: 40px;
            padding: 30px; text-align: center; transition: var(--transition);
            position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
        .product-card:hover { transform: translateY(-15px) rotate(1deg); box-shadow: 0 20px 40px rgba(255, 178, 178, 0.2); }
        .product-card img { width: 100%; border-radius: 30px; margin-bottom: 20px; }
        .product-card h3 { font-size: 2rem; margin-bottom: 10px; color: var(--dark); }
        .product-card p { font-size: 1.1rem; color: #777; margin-bottom: 20px; }
        .price { font-size: 1.5rem; font-weight: 700; color: var(--pink); margin-bottom: 20px; }

        /* --- STORY SECTION --- */
        .story-section { background: var(--pink); color: var(--white); display: flex; align-items: center; gap: 80px; overflow: hidden; }
        .story-img { flex: 1; border-radius: 50px; transform: translateX(-50px); opacity: 0; transition: 1s; }
        .story-text { flex: 1; transform: translateX(50px); opacity: 0; transition: 1s; }
        .story-section.active .story-img, .story-section.active .story-text { transform: translateX(0); opacity: 1; }
        .story-img img { width: 100%; border-radius: 50px; box-shadow: 20px 20px 0 var(--mint); }

        /* --- TESTIMONIALS --- */
        .testimonials { background: var(--mint); display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .testi-card { 
            background: var(--white); padding: 40px; border-radius: 40px; text-align: center;
            transition: var(--transition); 
        }
        .testi-card:hover { transform: translateY(-10px) tilt(3deg); }
        .testi-card img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 20px; border: 4px solid var(--pink); }

        /* --- CATEGORY GRID --- */
        .cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .cat-card { 
            position: relative; height: 500px; border-radius: 50px; overflow: hidden; cursor: pointer;
        }
        .cat-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .cat-overlay { 
            position: absolute; inset: 0; background: linear-gradient(transparent, rgba(255, 178, 178, 0.8));
            display: flex; flex-direction: column; justify-content: flex-end; padding: 40px;
            color: var(--white);
        }
        .cat-card:hover img { transform: scale(1.1); }
        .cat-card:hover h3 { color: var(--mint); }

        /* --- NEWSLETTER --- */
        .newsletter { background: var(--pink); text-align: center; position: relative; overflow: hidden; }
        .news-box { background: var(--ivory); padding: 80px; border-radius: 60px; max-width: 900px; margin: 0 auto; }
        .floating-teddy { position: absolute; font-size: 3rem; animation: float 6s ease-in-out infinite; opacity: 0.3; }
        @keyframes float { 0%, 100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(100px, -50px) rotate(20deg); } }

        /* --- AUTH MODALS --- */
        .modal { 
            position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000;
            display: none; align-items: center; justify-content: center; backdrop-filter: blur(5px);
        }
        .modal-content { 
            background: var(--ivory); width: 100%; max-width: 500px; border-radius: 50px; 
            padding: 50px; position: relative; border: 8px solid var(--pink);
        }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 10px; font-weight: 700; }
        .form-group input { width: 100%; padding: 15px; border-radius: 20px; border: 2px solid var(--pink); font-family: inherit; }

        /* --- QUICK VIEW / CART DRAWER --- */
        .drawer {
            position: fixed; top: 0; right: -100%; width: 400px; height: 100%;
            background: var(--ivory); z-index: 3000; transition: 0.5s;
            box-shadow: -10px 0 30px rgba(0,0,0,0.1); padding: 40px;
        }
        .drawer.active { right: 0; }
        .cart-item { display: flex; gap: 20px; margin-bottom: 20px; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 15px; }
        .cart-item img { width: 60px; height: 60px; border-radius: 10px; }

        /* --- FOOTER --- */
        footer { background: var(--dark); color: var(--pink); padding: 100px 8% 40px; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 80px; border-bottom: 1px solid #333; padding-bottom: 60px; }
        .footer-col h4 { font-size: 1.8rem; margin-bottom: 30px; color: var(--white); }
        .footer-col a { display: block; color: var(--pink); text-decoration: none; margin-bottom: 15px; transition: 0.3s; }
        .footer-col a:hover { padding-left: 10px; color: var(--mint); }
        .socials { display: flex; gap: 20px; margin-top: 30px; }
        .socials i:hover { transform: scale(1.3); color: var(--white); cursor: pointer; }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .hero h1 { font-size: 3.5rem; }
            .testimonials, .cat-grid, .footer-grid { grid-template-columns: 1fr; }
            .story-section { flex-direction: column; text-align: center; }
            header nav { display: none; }
        }
        /* Header Base */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: #fff;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--mint, #00ffc2);
    color: var(--dark, #111);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #111;
        z-index: 10;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        text-align: center;
    }

    nav.active {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .header-icons {
        gap: 10px;
    }
}
