        :root {
            --primary-yellow: #FFEB00;
            --pink-accent: #DA498D;
            --sky-blue: #81BFDA;
            --white: #FFFFFF;
            --soft-black: #333333;
            --font-heading: 'Kings', cursive;
            --font-body: 'Quicksand', sans-serif;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: var(--font-body); 
            background-color: #fdfdfd; 
            color: var(--soft-black);
            overflow-x: hidden;
        }


/* ========================= */
/* 🌈 CATEGORIES SECTION */
/* ========================= */
.categories-section {
    background: linear-gradient(to bottom, #ffffff, #fff5fb);
    padding: 120px 5%;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.category-card {
    background: white;
    border-radius: 40px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 5px solid var(--primary-yellow);
}

.category-card:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 2rem;
    color: var(--pink-accent);
    margin-bottom: 10px;
}

.category-card p {
    color: #666;
}


/* ========================= */
/* 💖 BENEFITS SECTION */
/* ========================= */
.benefits-section {
    background: var(--sky-blue);
    padding: 120px 5%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.benefit-card:hover {
    transform: scale(1.08);
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--pink-accent);
}


/* ========================= */
/* 📸 GALLERY */
/* ========================= */
.gallery-section {
    background: var(--primary-yellow);
    padding: 120px 5%;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 30px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05) rotate(2deg);
}


/* ========================= */
/* 🌸 TESTIMONIALS */
/* ========================= */
.testimonial-section {
    background: linear-gradient(to bottom, #fff, #e0f2ff);
    padding: 120px 5%;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    border: 6px solid var(--pink-accent);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    color: var(--pink-accent);
    font-weight: bold;
}


/* ========================= */
/* ✉ NEWSLETTER */
/* ========================= */
.newsletter-section {
    background: var(--pink-accent);
    color: white;
    padding: 120px 5%;
    text-align: center;
}

.newsletter-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 15px 25px;
    border-radius: 40px;
    border: none;
    width: 300px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}


/* ========================= */
/* 🎀 FINAL CTA */
/* ========================= */
.cta-section {
    background: linear-gradient(to bottom, var(--sky-blue), var(--primary-yellow));
    padding: 150px 5%;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--pink-accent);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
        h1, h2, h3, .logo { font-family: var(--font-heading); }

        /* --- CLOUD HEADER --- */
        header {
            position: fixed; top: 20px; left: 5%; width: 90%; 
            height: 90px; background: var(--primary-yellow);
            border-radius: 50px 50px 80px 80px;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 40px; z-index: 1000; box-shadow: var(--shadow);
            transition: var(--transition);
        }
        header:hover { transform: translateY(-5px); }

        .logo { font-size: 2.5rem; color: var(--pink-accent); display: flex; align-items: center; gap: 10px; cursor: pointer; }
        .logo i { color: var(--pink-accent); }

        .nav-links { display: flex; gap: 25px; }
        .nav-links a { 
            text-decoration: none; color: var(--soft-black); font-weight: 600;
            font-size: 1.1rem; transition: 0.3s; cursor: pointer;
        }
        .nav-links a:hover { color: var(--pink-accent); transform: scale(1.1); }

        .header-btns { display: flex; align-items: center; gap: 20px; }
        .btn-login { 
            background: var(--sky-blue); color: white; padding: 10px 25px;
            border-radius: 30px; border: none; font-family: var(--font-body);
            font-weight: 600; cursor: pointer; transition: 0.3s;
        }
        .btn-login:hover { background: var(--pink-accent); transform: translateY(-2px); }
        
        .cart-btn {
            background: var(--pink-accent); color: white; width: 45px; height: 45px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            cursor: pointer; position: relative;
        }
        .cart-count {
            position: absolute; top: -5px; right: -5px; background: white;
            color: var(--pink-accent); font-size: 0.7rem; width: 20px; height: 20px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-weight: bold; border: 2px solid var(--pink-accent);
        }

        /* --- HERO DOLLHOUSE --- */
        .hero {
            min-height: 100vh; padding-top: 150px;
            background: linear-gradient(to bottom, #e0f2ff, #ffffff);
            display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
        }
        .cloud-bg { position: absolute; opacity: 0.5; animation: float 6s ease-in-out infinite; }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

        .dollhouse-frame {
            width: 85%; max-width: 1200px; background: white;
            border: 15px solid var(--primary-yellow); border-radius: 40px;
            padding: 60px; display: flex; align-items: center;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1); position: relative;
            z-index: 2;
        }
        .hero-text { flex: 1; padding-right: 40px; }
        .hero-text h1 { font-size: 5rem; line-height: 1; color: var(--pink-accent); margin-bottom: 20px; }
        .hero-text p { font-size: 1.2rem; margin-bottom: 30px; color: #666; }
        
        .btn-hero {
            background: var(--pink-accent); color: white; border: none;
            padding: 15px 40px; border-radius: 40px; font-size: 1.2rem;
            font-family: var(--font-body); font-weight: 600; cursor: pointer;
            transition: var(--transition);
        }
        .btn-hero:hover { transform: scale(1.1) rotate(-3deg); background: var(--sky-blue); }

        .hero-img-wrap { flex: 1; position: relative; display: flex; justify-content: center; }
        .hero-blob {
            position: absolute; width: 400px; height: 400px; background: var(--primary-yellow);
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; z-index: -1;
            animation: blobShape 10s infinite linear;
        }
        @keyframes blobShape { 0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 50% { border-radius: 60% 40% 30% 70% / 50% 60% 50% 40%; } 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } }
        
        .doll-main { width: 400px; animation: dollFloat 4s ease-in-out infinite; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }
        @keyframes dollFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(5deg); } }

        /* --- TOY SHELF SECTION --- */
        .shelf-section { background: var(--sky-blue); padding: 100px 5%; position: relative; }
        .shelf-section::before {
            content: ''; position: absolute; top: -50px; left: 0; width: 100%; height: 100px;
            background: var(--sky-blue); border-radius: 100% 100% 0 0;
        }
        
        .section-title { text-align: center; font-size: 4rem; color: white; margin-bottom: 60px; text-shadow: 2px 2px var(--pink-accent); }

        .shelf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
        
        .toy-box {
            background: white; border-radius: 30px; overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1); transition: var(--transition);
            cursor: pointer; position: relative;
        }
        .toy-box:hover { transform: translateY(-15px) rotate(2deg); }
.toy-box img {
    width: 100%;
    height: 350px;              /* Slightly taller for better look */
    object-fit: cover;          /* 🔥 Makes image fill entire space */
    display: block;
}        .box-info { background: var(--pink-accent); padding: 20px; color: white; text-align: center; }
        .box-info h3 { font-size: 2rem; margin-bottom: 10px; }
        .box-info .price { font-weight: bold; font-size: 1.3rem; display: block; margin-bottom: 15px; }

        .btn-box-cart {
            background: var(--sky-blue); color: white; border: 2px solid white;
            padding: 8px 20px; border-radius: 20px; font-weight: bold; cursor: pointer;
            transition: 0.3s;
        }
        .btn-box-cart:hover { background: white; color: var(--sky-blue); }

        /* --- MAGICAL STORY --- */
        .story-section { padding: 120px 5%; background: var(--primary-yellow); position: relative; }
        .story-card {
            background: white; border-radius: 60px 20px 60px 20px; padding: 60px;
            max-width: 1000px; margin: 0 auto; display: flex; align-items: center;
            gap: 50px; box-shadow: 20px 20px 0 var(--pink-accent);
        }
        .story-card img { width: 400px; border-radius: 30px; }
        .story-text h2 { font-size: 3.5rem; color: var(--pink-accent); margin-bottom: 20px; }
        .story-text p { font-size: 1.1rem; line-height: 1.8; color: #555; }

        /* --- CAROUSEL --- */
        .carousel-section { background: var(--pink-accent); padding: 100px 0; overflow: hidden; text-align: center; }
        .carousel-container {
            display: flex; justify-content: center; align-items: center;
            gap: 40px; margin-top: 50px; animation: rotateCircle 30s linear infinite;
        }
        .carousel-item {
            width: 200px; height: 200px; background: white; border-radius: 50%;
            border: 8px solid var(--primary-yellow); display: flex; align-items: center;
            justify-content: center; transition: 0.5s; cursor: pointer;
        }
        .carousel-item:hover { transform: scale(1.3); animation-play-state: paused; }
.carousel-item {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;                 /* 🔥 Important for clipping */
    border: 8px solid var(--primary-yellow);
    transition: 0.5s;
    cursor: pointer;
}

.carousel-item img {
    width: 280%;
    height: 200%;
    object-fit: cover;                /* 🔥 Makes image fill circle */
    display: block;
}
        @keyframes rotateCircle { from { transform: translateX(50%); } to { transform: translateX(-50%); } }

        /* --- PAGES --- */
        .page { display: none; padding: 160px 5% 100px; min-height: 100vh; }
        .page.active { display: block; animation: pageIn 0.6s ease forwards; }
        @keyframes pageIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

        /* --- SHOP PAGE --- */
        .filter-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 60px; flex-wrap: wrap; }
        .candy-tab {
            padding: 12px 30px; background: white; border: 3px solid var(--sky-blue);
            border-radius: 40px; cursor: pointer; font-weight: 600; color: var(--sky-blue);
            transition: 0.3s;
        }
        .candy-tab.active { background: var(--sky-blue); color: white; transform: translateY(-5px); }

        /* --- ABOUT (BOOK) --- */
        .about-book {
            max-width: 1100px; margin: 0 auto; background: #fffdf5;
            display: flex; box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            border-radius: 10px; border-left: 15px solid #8b5a2b; overflow: hidden;
        }
        .book-page { flex: 1; padding: 60px; position: relative; }
        .book-page:first-child { border-right: 1px solid #ddd; }
        .book-page img { width: 100%; border-radius: 10px; margin-bottom: 30px; }

        /* --- CONTACT --- */
        .contact-card {
            max-width: 600px; margin: 0 auto; background: white; padding: 50px;
            border-radius: 40px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); text-align: center;
        }
        .contact-card input, .contact-card textarea {
            width: 100%; padding: 15px; margin-bottom: 20px; border-radius: 20px;
            border: 2px solid var(--pink-accent); outline: none; font-family: var(--font-body);
        }
        .contact-card input:focus { box-shadow: 0 0 15px rgba(218, 73, 141, 0.3); }

        /* --- MODALS & SIDEBARS --- */
        .overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(5px); z-index: 1500; display: none; }
        .overlay.active { display: block; }

        .modal {
            position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
            background: white; width: 900px; max-width: 95%; border-radius: 40px;
            z-index: 2000; display: none; padding: 50px; animation: popUp 0.4s ease;
        }
        .modal.active { display: flex; gap: 40px; }
        @keyframes popUp { from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; } to { transform: translate(-50%, -50%) scale(1); opacity: 1; } }

        .cart-sidebar {
            position: fixed; top: 0; right: -400px; width: 400px; height: 100vh;
            background: white; z-index: 2000; transition: var(--transition);
            padding: 40px; display: flex; flex-direction: column;
        }
        .cart-sidebar.open { right: 0; }
        .cart-item { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px dashed #eee; }
        .cart-item img { width: 60px; height: 60px; object-fit: contain; }

        /* --- FOOTER --- */
        footer {
            background: linear-gradient(to bottom, var(--pink-accent), var(--sky-blue));
            padding: 100px 5% 40px; color: white; position: relative; margin-top: 100px;
        }
        .rainbow-wave {
            position: absolute; top: -50px; left: 0; width: 100%; height: 60px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5,73.84-4.36,147.54,16.88,218.2,35.26,69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113,14.29,1200,52.47V0Z' fill='%23DA498D'/%3E%3C/svg%3E");
            background-size: cover;
        }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; }
        .footer-col h4 { font-size: 2rem; margin-bottom: 25px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: white; text-decoration: none; opacity: 0.8; transition: 0.3s; cursor: pointer; }
        .footer-col a:hover { opacity: 1; padding-left: 5px; }
        
        .social-circle {
            width: 40px; height: 40px; background: rgba(255,255,255,0.2);
            border-radius: 50%; display: inline-flex; align-items: center;
            justify-content: center; margin-right: 10px; transition: 0.3s;
        }
        .social-circle:hover { background: var(--primary-yellow); color: var(--pink-accent); transform: rotate(15deg); }

        /* --- AUTH --- */
        .auth-card {
            max-width: 450px; margin: 0 auto; background: white; padding: 50px;
            border-radius: 40px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); text-align: center;
            border: 8px solid var(--primary-yellow);
        }


        /* ========================= */
/* 📱 RESPONSIVE HEADER */
/* ========================= */

.hamburger {
    display: none;
    cursor: pointer;
}

.mobile-login {
    display: none;
}

/* Tablet & Mobile */
@media (max-width: 992px) {

    header {
        padding: 0 20px;
    }

    .nav-links {
        position: absolute;
        top: 110px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: white;
        border-radius: 30px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.4s ease;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translate(-50%, -20px); }
        to { opacity: 1; transform: translate(-50%, 0); }
    }

    .hamburger {
        display: block;
        font-size: 28px;
    }

    .desktop-login {
        display: none;
    }

    .mobile-login {
        display: block;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .dollhouse-frame {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .doll-main {
        width: 280px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    header {
        height: 75px;
        border-radius: 40px;
    }
}

    