 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', Arial, sans-serif;
        }

      

        body {
            background-color: #fff;
            color: #000;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }


:root {
    --bg-light: #ffffff;
    --accent-grey: #f9f9f9;
    --text-main: #1a1a1a;
    --text-muted: #888888;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.03);
    --card-hover-shadow: 0 20px 40px rgba(0,0,0,0.08);
    
     --royal-blue: #F3862F;
    --lime-vibrant: #000000;
    --bg-dark: #0A0A0B;
    --glass-white: rgba(255, 255, 255, 0.05);

        --text-dark: #1a1a1a;
    --text-light: #707070;
    --accent-bg: #f9f9f9;

}


                /* --- Integrated with your Scroll Snap --- */
html {
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}
        
/* --- IMPACT PREMIUM ICON-BASED NAVBAR (CLEANED) --- */


/* 1. Main Navbar Container */
nav.white-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* 2. Logo Section (Side by Side) */
.logo a {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    text-decoration: none;
}

.logo img {
    display: block;
    object-fit: contain;
}

/* Dots Image */
.logo img:first-child {
    height: 40px; 
}

/* Main Text Logo */
.logo img:last-child {
    height: 140px; 
}

/* 3. Desktop Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* 4. Right Side Icons (Auth & Cart) */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-container, .login-icon-link {
    position: relative;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.cart-container:hover, .login-icon-link:hover {
    transform: scale(1.1);
}

/* 5. Cart Badge */
.cart-badge {
    position: absolute;
    top: -7px;
    right: -9px;
    background: #000;
    color: #fff;
    font-size: 9px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    font-weight: bold;
}

/* 6. User Avatar */
.profile-trigger img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #f0f0f0;
    object-fit: cover;
}

/* 7. Hamburger Button (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* --- 8. MOBILE RESPONSIVE --- */

@media (max-width: 768px) {
    nav.white-nav {
        height: 70px;
        padding: 0 15px;
        display: grid; 
        grid-template-columns: 1fr auto 1fr; 
        align-items: center;
    }

    .mobile-menu-btn {
        display: block; 
        order: 1;
    }

    .logo {
        order: 2;
        margin: 0 auto;
    }

    /* Mobile Logo Heights */
    .logo img:first-child { height: 30px; }
    .logo img:last-child { height: 100px; }

    .auth-section {
        order: 3;
        display: flex;
        justify-content: flex-end;
    }

    .nav-icons { gap: 15px; }
    .nav-links { display: none; }
    
    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
}


/* end navabr*/



        
        .bg-img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.7);
            transition: transform 1.5s ease-out;
        }

        .snap-section:hover .bg-img { transform: scale(1.05); }

        .hero-text-box { max-width: 800px; z-index: 2; color: #fff; }
        .hero-text-box span { font-size: 12px; letter-spacing: 5px; text-transform: uppercase; display: block; margin-bottom: 20px; opacity: 0.8; }
        .hero-text-box h1 { font-size: clamp(50px, 10vw, 110px); font-weight: 700; line-height: 0.9; letter-spacing: -4px; margin-bottom: 40px; }

        .btn-glass {
            display: inline-block;
            border: 1px solid rgba(255,255,255,0.5);
            color: #fff;
            padding: 16px 40px;
            text-decoration: none;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            backdrop-filter: blur(5px);
            transition: 0.4s;
        }

        .btn-glass:hover { background: #fff; color: #000; }

        /* --- PRODUCT CARDS SECTION --- */
    

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero-text-box h1 { font-size: 50px; }
            .product-grid { grid-template-columns: 1fr; }
        }



        /* Hero sections ke liye hi snap apply karo */
.snap-section {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

/* Product grid ke liye better spacing */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 5% 100px;
}















/* css ajax */
/* Modern Toast Container */
.modern-toast {
    
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px); /* Blur effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modern-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 32px;
    height: 32px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.toast-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 14px;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.animating svg {
    animation: heartPop 0.3s ease-out;
}


/* cart css */
/* Cart Toast Style */
.cart-toast {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Is baar left side rakhte hain ya right hi rehne dein consistency ke liye */
    background: #1e272e; /* Dark elegant theme */
    color: white;
    padding: 14px 28px;
    border-radius: 50px; /* Capsule shape */
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateX(-150%); /* Left se slide ho kar aayega */
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-toast.active {
    transform: translateX(0);
}

.cart-toast-icon {
    background: #2ecc71; /* Green success color */
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Cart Count Badge Animation */
@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); color: #2ecc71; }
    100% { transform: scale(1); }
}

.cart-bounce {
    animation: cartBounce 0.5s ease-in-out;
}









