     :root {
            --bg-main: #FFDBFD;
            --accent-peach: #FFA47F;
            --accent-dark: #d68e80;
            --text-black: #000000;
            --white: #FFFFFF;
            --font-main: 'Kumbh Sans', sans-serif;
            --radius-xl: 50px;
            --radius-lg: 30px;
            --radius-md: 20px;
            --shadow: 0 20px 40px rgba(0,0,0,0.05);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        
        body { 
            font-family: var(--font-main); 
            background-color: #FFEDC7; 
            color: var(--text-black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- HEADER (Floating Rounded Rectangle) --- */
        .header-wrapper {
            position: fixed; top: 20px; left: 0; width: 100%; z-index: 1000;
            pointer-events: none;
        }
        header {
            background: #FFFFFF;
            backdrop-filter: blur(15px);
            max-width: 1400px; margin: 0 auto;
            height: 90px;  /* Rectangular but rounded corners */
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 40px; box-shadow: var(--shadow);
            pointer-events: auto; border: 1px solid rgba(255,255,255,0.4);
            transition: var(--transition);
        }
        header.scrolled { height: 75px; top: 10px; }

        .logo { font-weight: 800; font-size: 1.6rem; display: flex; align-items: center; gap: 10px; cursor: pointer; }
        
        .nav-links { display: flex; gap: 35px; align-items: center; }
        .nav-links a { 
            text-decoration: none; color: var(--text-black); font-weight: 500;
            position: relative; padding: 5px 0; cursor: pointer; transition: 0.3s;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; 
            height: 2px; background: var(--text-black); transition: 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        .header-actions { display: flex; align-items: center; gap: 20px; }
        .btn-auth { 
            background: var(--text-black); color: white; padding: 12px 28px;
            border-radius: 15px; border: none; font-weight: 600; cursor: pointer; transition: 0.3s;
        }
        .btn-auth:hover { background: var(--accent-dark); transform: translateY(-2px); }

        .cart-trigger { position: relative; cursor: pointer; padding: 10px; border-radius: 12px; transition: 0.3s; }
        .cart-trigger:hover { background: rgba(255,255,255,0.5); }
        .cart-badge {
            position: absolute; top: 2px; right: 2px; background: var(--accent-peach);
            color: white; width: 20px; height: 20px; border-radius: 50%;
            font-size: 11px; display: flex; align-items: center; justify-content: center; font-weight: 700;
        }

        /* --- PAGES --- */
        .page { display: none; padding-top: 140px; min-height: 100vh; animation: pageFade 0.6s ease; }
        .page.active { display: block; }
        @keyframes pageFade { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

        /* --- HERO SECTION --- */
        .hero-outer { padding: 0 5% 100px; }
        .hero-container {
            display: flex; overflow: hidden;
            box-shadow: var(--shadow); height: 750px; background: var(--white);
        }
.hero-left {
    flex: 1;              /* ✅ equal width */
    background: var(--accent-peach);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: slideLeft 1s ease;
}        .hero-left::after {
            content: '🐾'; position: absolute; font-size: 300px; opacity: 0.05;
            bottom: -50px; right: -50px; transform: rotate(-15deg);
        }
        .hero-left h1 { font-size: 4.8rem; font-weight: 900; line-height: 1.05; margin-bottom: 35px; color: var(--text-black); }
        .hero-left p { font-size: 1.3rem; margin-bottom: 45px; max-width: 550px; color: rgba(0,0,0,0.8); }
        
.hero-right {
    flex: 1;              /* ✅ equal width */
    background: var(--white);
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}
.hero-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}        
        .blob-decor {
            position: absolute; width: 200px; height: 200px; background: var(--bg-main);
            border-radius: 50%; z-index: -1; filter: blur(40px); opacity: 0.6;
        }

        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }
        @keyframes slideLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }

        .btn-pill {
            background: var(--white); color: var(--text-black); border: none;
            padding: 20px 45px; border-radius: 20px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: 0.3s;
            width: fit-content; box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .btn-pill:hover { background: var(--text-black); color: white; transform: translateY(-3px); }

        /* --- SECTION 2: OVERLAPPING CARDS --- */
        .overlap-section { padding: 120px 8%; position: relative; }
        .overlap-wrapper { display: flex; flex-direction: column; align-items: center; gap: 0; }
        
        .overlap-card {
            background: var(--white); padding: 50px 60px; border-radius: 30px;
            max-width: 800px; box-shadow: var(--shadow); transition: var(--transition);
            margin-bottom: -50px; /* The Overlap */
            display: flex; gap: 40px; align-items: center; border: 1px solid rgba(0,0,0,0.03);
        }
        .overlap-card:nth-child(even) { transform: translateX(60px); }
        .overlap-card:nth-child(odd) { transform: translateX(-60px); }
        .overlap-card:hover { transform: translateY(-15px) translateX(0) scale(1.03); z-index: 10; }
        
        .card-icon { 
            background: var(--bg-main); min-width: 100px; height: 100px; 
            border-radius: 25px; display: flex; align-items: center; justify-content: center;
            color: var(--accent-peach);
        }

        /* --- SECTION 3: SERVICES --- */
        .services-section {
            background: var(--accent-peach); padding: 150px 8%;
            position: relative; margin: 150px 0;
        }
        .curved-top { position: absolute; top: -100px; left: 0; width: 100%; height: 105px; background: var(--accent-peach); border-radius: 100% 100% 0 0; }
        .curved-bottom { position: absolute; bottom: -100px; left: 0; width: 100%; height: 105px; background: var(--accent-peach); border-radius: 0 0 100% 100%; }

        .service-split { display: flex; align-items: center; gap: 100px; }
        .service-img { flex: 1; position: relative; }
        .service-img img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 20px solid rgba(255,255,255,0.2); }
        .service-content { flex: 1; }
        .service-content h2 { font-size: 3.8rem; margin-bottom: 30px; font-weight: 800; line-height: 1.1; }
        .service-content p { font-size: 1.25rem; margin-bottom: 40px; opacity: 0.9; }

        /* --- SECTION 4: HORIZONTAL SHOP --- */
        .shop-row-container { padding: 100px 0; }
        .shop-row {
            display: flex; gap: 35px; overflow-x: auto; padding: 40px 5%;
            scroll-snap-type: x mandatory; scrollbar-width: none;
        }
        .shop-row::-webkit-scrollbar { display: none; }
        
        .product-card {
            min-width: 380px; background: var(--white); border-radius: 35px;
            padding: 40px; scroll-snap-align: center; transition: var(--transition);
            box-shadow: var(--shadow); text-align: center; cursor: pointer; position: relative;
        }
        .product-card:hover { transform: translateY(-20px) scale(1.02); }
        .product-card img { width: 100%; height: 280px; object-fit: contain; margin-bottom: 25px; }
        .product-card h4 { font-size: 1.6rem; margin-bottom: 12px; font-weight: 800; }
        .product-card .price { font-weight: 800; font-size: 1.4rem; color: var(--accent-peach); display: block; margin-bottom: 25px; }

        /* --- SECTION 5: SPEECH BUBBLES --- */
        .testimonial-section { padding: 100px 5%; }
        .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 50px; }
        .speech-bubble {
            background: var(--white); padding: 50px; border-radius: 40px;
            position: relative; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.02);
        }
        .speech-bubble::after {
            content: ''; position: absolute; bottom: -30px; left: 60px;
            border-left: 30px solid var(--white); border-bottom: 30px solid transparent;
        }
        .user-info { display: flex; align-items: center; gap: 20px; margin-top: 50px; padding-left: 10px; }
        .user-info img { width: 65px; height: 65px; border-radius: 50%; object-fit: cover; border: 4px solid var(--white); box-shadow: var(--shadow); }

        /* --- CART SIDEBAR --- */
        .cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); z-index: 2000; display: none; }
        .cart-sidebar {
            position: fixed; top: 0; right: -500px; width: 450px; height: 100%;
            background: var(--white); z-index: 2001; transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
            padding: 50px 40px; display: flex; flex-direction: column;
        }
        .cart-sidebar.open { right: 0; }
        .cart-items { flex: 1; overflow-y: auto; margin: 30px 0; }
        .cart-item { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #eee; }
        .cart-item img { width: 80px; height: 80px; object-fit: contain; }
        .cart-item-info { flex: 1; }
        .cart-item-qty { display: flex; align-items: center; gap: 15px; margin-top: 8px; }

        /* --- QUICK VIEW MODAL --- */
        .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); z-index: 3000; display: none; }
        .modal {
            position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
            background: var(--white); width: 1100px; max-width: 95%; height: 700px; border-radius: 40px;
            z-index: 3001; display: none; overflow: hidden; opacity: 0; transition: var(--transition);
        }
        .modal.active { display: flex; transform: translate(-50%, -50%) scale(1); opacity: 1; }
        .modal-left { flex: 1; background: #f9f9f9; display: flex; align-items: center; justify-content: center; padding: 40px; }
        .modal-right { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; }

        /* --- CONTACT & AUTH --- */
        .form-card { background: var(--white); border-radius: 40px; padding: 70px; box-shadow: var(--shadow); max-width: 1000px; margin: 0 auto; display: flex; gap: 60px; }
        .input-group { margin-bottom: 20px; }
        .input-group input, .input-group textarea {
            width: 100%; padding: 20px; border-radius: 15px; border: 2px solid #f2f2f2; font-family: var(--font-main); font-size: 1rem; transition: 0.3s;
        }
        .input-group input:focus { border-color: var(--accent-peach); outline: none; }

        /* --- FOOTER --- */
        footer {
            background: #c18400; padding: 120px 8% 60px; border-radius: 60px 60px 0 0;
            margin-top: 150px;
        }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 80px; }
        .footer-col h5 { font-size: 1.5rem; margin-bottom: 35px; font-weight: 800; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 15px; }
        .footer-col a { text-decoration: none; color: var(--text-black); opacity: 0.6; transition: 0.3s; font-weight: 500; }
        .footer-col a:hover { opacity: 1; color: var(--accent-peach); padding-left: 10px; }
        
        .social-circle {
            width: 50px; height: 50px; border: 2px solid rgba(0,0,0,0.1); 
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            transition: 0.3s; cursor: pointer; color: var(--text-black);
        }
        .social-circle:hover { background: var(--text-black); color: white; border-color: var(--text-black); transform: rotate(15deg); }

        /* --- RESPONSIVE --- */
        @media (max-width: 1100px) {
            .hero-container { height: auto; flex-direction: column; }
            .hero-left, .hero-right { flex: none; width: 100%; }
            .overlap-card { flex-direction: column; text-align: center; transform: none !important; margin-bottom: 30px; }
            .service-split { flex-direction: column; text-align: center; }
            .modal.active { flex-direction: column; height: auto; padding: 20px; }
            .modal-left { padding: 20px; }
            .modal-right { padding: 30px; }
            .form-card { flex-direction: column; }
        }
        
/* ===== MOBILE MENU BUTTON ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 25px;
        padding: 30px 0;
        display: none;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .header-actions {
        gap: 15px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hide normal nav on mobile */
    .nav-links {
        text-align: center;
    }
}
.footer-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.footer-modal.active {
    display: flex;
}

.footer-modal-box {
    background: white;
    width: 90%;
    max-width: 600px;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    animation: fadeScale 0.3s ease;
    position: relative;
}

.footer-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
}

#footerContent {
    margin-top: 20px;
    line-height: 1.7;
    opacity: 0.8;
}

@keyframes fadeScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
