
        :root {
            --gold: #c5a059;
            --dark: #111111;
            --bg: #fdfaf5;
            --white: #ffffff;
            --border: #e0e0e0;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { background-color: var(--bg); color: var(--dark); overflow-x: hidden; scroll-behavior: smooth; }

        /* --- Header & Search Overlay --- */
        header {
            position: fixed; top: 0; width: 100%; padding: 20px 6%;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000; transition: 0.5s; background: transparent;
        }
        header.scrolled { background: white; padding: 12px 6%; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
        header.scrolled .logo, header.scrolled i { color: var(--dark) !important; }
        .logo img{ height: 100px; margin-top: -30px; margin-bottom: -30px;}
        /* .logo { font-size: 28px; color: white; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; } */
        .header-icons { display: flex; gap: 20px; color: white; align-items: center; }
        .header-icons i { font-size: 20px; cursor: pointer; position: relative; transition: 0.3s; }

        .cart-badge {
            position: absolute; top: -10px; right: -12px;
            background: var(--gold); color: white; font-size: 10px;
            width: 18px; height: 18px; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; font-weight: bold;
        }

        #searchOverlay {
            position: fixed; inset: 0; background: rgba(255,255,255,0.98);
            z-index: 2000; display: none; flex-direction: column; align-items: center; justify-content: center;
        }
        #searchOverlay input {
            width: 80%; border: none; border-bottom: 2px solid var(--gold);
            font-size: 25px; outline: none; padding: 10px; text-align: center; background: transparent;
        }

/* --- Hero Slider --- */
.hero { 
    position: relative; 
    width: 100%; 
    height: auto; 
    overflow: hidden; 
    background: #000;
    cursor: grab;
}
.hero:active {
    cursor: grabbing;
}
.slides { 
    display: flex; 
    width: 200%; 
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide { 
    width: 50%; 
    height: 100%;
}
.slide img { 
    width: 100%; 
    height: auto; 
    display: block; 
    object-fit: contain; 
}


/* Mobile par size adjust karne ke liye */
@media (max-width: 768px) {
    .hero-cta {
        bottom: 47%;
        padding: 12px 25px;
        font-size: 11px;
    }
}
.dots-container { 
    position: absolute; 
    bottom: 15px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 10px; 
    z-index: 10; 
}

/* --- Slider Arrows Styling --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.322); /* Glass effect */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.541);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.4s ease;
    opacity: 0.6; /* Shuru mein halka */
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* Mobile par arrows thore chote aur side se qareeb */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
        opacity: 0.8; /* Mobile par hamesha nazar ayain */
    }
    .slider-arrow.prev { left: 15px; }
    .slider-arrow.next { right: 15px; }
}
        /* --- Categories --- */
        .categories { padding: 60px 5% 20px; text-align: center; }
        .cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 30px; }
        .cat-item { background: white; padding: 25px 10px; border-radius: 12px; transition: 0.3s; cursor: pointer; border: 1px solid var(--border); }
        .cat-item i { font-size: 30px; color: var(--gold); margin-bottom: 10px; display: block; }
        .cat-item span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

        /* Special item */
        /* --- Desktop Styles (Default) --- */
    .special-section { padding: 60px 5%; background: #fff; }
    .special-header { text-align: center; margin-bottom: 30px; }
    .special-tag { color: #b28d42; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }
    .special-title { font-family: 'Playfair Display', serif; font-size: 32px; margin-top: 5px; }

    .special-container {
        display: grid;
        grid-template-columns: 1.5fr 1fr; /* Desktop par side-by-side layout */
        gap: 20px;
    }

    .special-main-card {
        position: relative;
        height: 450px;
        border-radius: 20px;
        overflow: hidden;
        background: #000;
    }

    .special-main-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.5s; }
    
    .special-info {
        position: absolute; bottom: 0; left: 0; width: 100%;
        padding: 25px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: #fff;
    }

    .price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
    .s-price { font-weight: 700; color: #c5a059; font-size: 20px; }
    .order-btn-sm { background: #c5a059; border: none; padding: 8px 15px; color: #fff; border-radius: 20px; font-weight: 600; cursor: pointer; }

    .special-side-grid {
        display: flex;
        flex-direction: column; /* Desktop par upar niche */
        gap: 20px;
    }

    .side-item {
        position: relative;
        flex: 1;
        border-radius: 20px;
        overflow: hidden;
        height: 215px;
    }

    .side-item img { width: 100%; height: 100%; object-fit: cover; }
    
    .side-overlay-mini {
        position: absolute; inset: 0;
        background: rgba(0,0,0,0.3);
        display: flex; flex-direction: column;
        justify-content: flex-end; padding: 15px;
        color: #fff;
    }

    .badge { position: absolute; top: 15px; left: 15px; background: #c5a059; color: #fff; padding: 4px 12px; border-radius: 15px; font-size: 11px; font-weight: 600; z-index: 2; }

    .special-link-wrapper {
        text-decoration: none;
        color: inherit;
        display: block; /* Pura card clickable banane ke liye */
        width: 100%;
    }
    .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
    /* --- MOBILE VIEW RESPONSIVE (Targeting 768px and below) --- */
    @media (max-width: 768px) {
        .special-container {
            grid-template-columns: 1fr; /* Stack: Bari pic upar, side items niche */
        }

        .special-main-card {
            height: 350px; /* Mobile par height thori kam taake screen cover na ho */
        }

        .special-side-grid {
            flex-direction: row; /* Choti pics ko side-by-side kar diya */
            height: 180px; /* Choti pics ki height fixed kar di */
        }

        .side-item {
            height: 100%; /* Parent container ki height le lein ge */
        }

        .side-overlay-mini h4 {
            font-size: 14px; /* Mobile par font chota */
        }
        
        .side-overlay-mini span {
            font-size: 12px;
        }
    }

        /* --- Best Sellers (Wazeh Cards Section) --- */
.best-sellers { 
    padding: 60px 5%; 
    background: var(--bg); 
}

.section-tag { 
    color: var(--gold); 
    font-size: 13px; 
    font-weight: 600; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    text-align: center; 
    display: block; 
}

.section-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 32px; 
    text-align: center; 
    margin-bottom: 40px; 
    margin-top: 10px; 
}

/* Grid settings - Default (Mobile) pe 2 columns */
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 Cards per row */
    gap: 15px; 
}

/* --- DESKTOP VIEW (Bari screen ke liye tabdeeli) --- */
@media (min-width: 768px) {
    .product-grid { 
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 Cards per row */
        gap: 25px; /* Bari screen pe thora zyada gap acha lagta hai */
    }
    
     .p-img {
        height: auto; /* aspect-ratio khud height control karega */
    }
}

.p-card { 
    background: var(--white); 
    border-radius: 15px; 
    overflow: hidden; 
    position: relative; 
    transition: 0.3s;
    border: 1px solid var(--border); 
    display: flex;
    flex-direction: column;
    height: 100%; /* Taake saare cards barabar hon */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.p-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.p-img { 
    width: 100%; 
    aspect-ratio: 1 / 1; /* Is se box hamesha square rahega */
    object-fit: cover;   /* Agar image square hogi toh ye 1% bhi cut nahi karega */
    display: block;
    transition: 0.5s;
}

.p-info { 
    padding: 15px; 
    text-align: left; 
    flex-grow: 1; 
}

.p-info h4 { 
    font-size: 14px; 
    font-weight: 600; 
    color: #333; 
    margin-bottom: 5px; 
}

.p-price { 
    color: var(--gold); 
    font-weight: 700; 
    font-size: 16px; 
}

.add-btn { 
    position: absolute; 
    bottom: 12px; 
    right: 12px; 
    background: var(--dark); 
    color: white; 
    width: 35px; 
    height: 35px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: 0.3s; 
    font-size: 14px;
}

.add-btn:hover { 
    background: var(--gold); 
}

/* Link ki styling taake layout na tute */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* --- Footer (Professional) --- */
/* --- 5. Footer Professional Design --- */
footer {
    background: var(--dark);
    color: #bbb;
    padding: 80px 6% 30px;
    border-top: 3px solid var(--gold); /* Top par aik gold line luxury look ke liye */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Laptop par brand column thora bara */
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    font-size: 22px;
    letter-spacing: 1px;
}

.footer-logo-text {
    font-size: 28px !important; /* Brand name thora dominant */
    color: var(--gold) !important;
}

.footer-col p {
    line-height: 1.8;
    font-size: 14px;
    color: #999;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 8px; /* Hover par halka sa move hoga */
}

/* Social Icons Styling */
.socials {
    display: flex;
    gap: 15px;
}

.socials i {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid #333;
}

.socials i:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-5px);
}

/* MintQode Section */
.mintqode-section {
    text-align: center;
    padding: 40px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mintqode-section p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.mintqode-section strong {
    color: var(--gold);
    letter-spacing: 0.5px;
}

.mq-icons {
    display: flex;
    gap: 20px;
}

.mq-icons a {
    color: #555;
    font-size: 20px;
    transition: 0.3s;
}

.mq-icons a:hover {
    color: white;
    transform: scale(1.2);
}

/* Bottom Border Line & Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 11px;
    letter-spacing: 2px;
    color: #555;
    text-transform: uppercase;
}
/* Footer ke social links se blue line aur color hatane ke liye */
.socials a {
    text-decoration: none !important; 
    color: inherit !important;        
    display: inline-block;            
}

/* Icons ka rang agar abhi bhi masla kare toh ye add karo */
.socials a i {
    color: white; /* Ya jo bhi aap ka theme color hai */
    transition: 0.3s;
}

.socials a i:hover {
    color: var(--gold); /* Hover karne par gold ho jaye ga */
}
/* --- MOBILE & TABLET RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobile par sab aik ke niche aik */
        gap: 40px;
        text-align: center; /* Center alignment for mobile */
    }

    .socials {
        justify-content: center; /* Icons center mein */
    }

    .footer-logo-text {
        font-size: 24px !important;
    }
    
    footer {
        padding: 60px 8% 30px;
    }
}

/* ---CSS for Cart Bag Drawer Styles --- */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px); z-index: 3000;
    opacity: 0; visibility: hidden; transition: 0.4s;
    z-index: 2000;

}

.cart-drawer {
    position: fixed; top: 0; right: 0; width: 400px; height: 100%;
    background: white; z-index: 3001; transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 2001;
}

/* Cart Open States */
.cart-open .cart-drawer { transform: translateX(0); }
.cart-open .cart-overlay { opacity: 1; visibility: visible; }

.cart-header { padding: 25px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--dark); }
.close-cart { font-size: 24px; cursor: pointer; color: #999; transition: 0.3s; }
.close-cart:hover { color: var(--gold); transform: rotate(90deg); }

.cart-items-container { flex-grow: 1; overflow-y: auto; padding: 20px; }

/* Single Item Style */
.cart-item { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f9f9f9; align-items: center; }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; }
.item-info { flex-grow: 1; }
.item-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 5px; color: #333; }
.item-info p { font-size: 13px; color: var(--gold); font-weight: 700; }
.remove-item { font-size: 12px; color: #ff4d4d; cursor: pointer; margin-top: 5px; display: inline-block; }

.cart-footer { padding: 30px; background: #fafafa; border-top: 1px solid #eee; }
.subtotal { display: flex; justify-content: space-between; margin-bottom: 20px; font-weight: 700; font-size: 18px; color: var(--dark); }

.checkout-btn {
    width: 100%; padding: 18px; background: var(--dark); color: white;
    border: none; border-radius: 40px; font-weight: 600; cursor: pointer;
    transition: 0.4s; text-transform: uppercase; letter-spacing: 1px;
}
.checkout-btn:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3); }

/* Responsive Mobile */
@media (max-width: 480px) {
    .cart-drawer { width: 80%; }
}

/* --- Css For toggele Menu  --- */
.menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px); /* Premium Glass Effect */
    z-index: 3000;
    opacity: 0; visibility: hidden;
    transition: 0.4s ease;
}

.menu-drawer {
    position: fixed; bottom: 0; left: 0;
    width: 100%;
    height: 60vh; /* Screen ka 60% hissa cover karega */
    background: white;
    border-radius: 40px 40px 0 0; /* Upar se gol corners */
    z-index: 3001;
    transform: translateY(100%); /* Shuru mein niche chupa hua */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Smooth bouncy entrance */
    display: flex; flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

/* Open State (JavaScript se trigger hoga) */
.menu-active .menu-drawer { transform: translateY(0); }
.menu-active .menu-overlay { opacity: 1; visibility: visible; }

/* Mobile Handle Bar */
.drawer-handle {
    width: 50px; height: 5px;
    background: #e0e0e0; border-radius: 10px;
    margin: 15px auto 0;
}

/* Drawer Header */
.drawer-header {
    padding: 25px 30px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.close-drawer {
    font-size: 26px; cursor: pointer; color: #ccc;
    transition: 0.3s;
}
.close-drawer:hover { color: var(--gold); transform: rotate(90deg); }

/* Menu Body */
.drawer-body { flex-grow: 1; padding: 20px 30px; overflow-y: auto; }

.drawer-links { list-style: none; }
.drawer-links li { border-bottom: 1px solid #fafafa; }
.drawer-links li a {
    display: flex; align-items: center; gap: 20px;
    padding: 18px 0; color: #333; text-decoration: none;
    font-size: 17px; font-weight: 500; transition: 0.3s;
}
.drawer-links li a i { width: 25px; color: var(--gold); font-size: 18px; text-align: center; }
.drawer-links li a:hover { color: var(--gold); padding-left: 10px; }

/* Drawer Footer */
.drawer-footer {
    padding: 30px; background: #fdfaf5; text-align: center;
    border-radius: 30px 30px 0 0; margin-top: 20px;
}
.drawer-socials { display: flex; justify-content: center; gap: 25px; font-size: 22px; margin-bottom: 15px; }
.drawer-socials i:hover { color: var(--gold); cursor: pointer; }
.drawer-footer p { font-size: 12px; color: #000000; letter-spacing: 1px; text-transform: uppercase; }

/* --- Floating Buttons CSS --- */

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* PEHLE YE 5000 THA, AB ISAY 900 KAR DEIN */
    z-index: 900; 
}

/* WhatsApp Styling */
.whatsapp-float {
    width: 55px;
    height: 55px;
    background-color: #25d366; /* Original WhatsApp Green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Scroll Top Button Styling */
#scrollTopBtn {
    width: 45px;
    height: 45px;
    background-color: var(--dark); /* Bakery Theme Color */
    color: white;
    border: 2px solid var(--gold); /* Gold border for royalty */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.4s;
    opacity: 0; /* Shuru mein invisible */
    visibility: hidden;
    pointer-events: none;
}

#scrollTopBtn:hover {
    background-color: var(--gold);
    color: var(--dark);
    transform: translateY(-5px);
}

/* Jab button active ho (Scroll karne par) */
#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .whatsapp-float { width: 50px; height: 50px; font-size: 26px; }
    #scrollTopBtn { width: 40px; height: 40px; font-size: 16px; }
}

/* --- PREMIUM ANIMATIONS & TRANSITIONS --- */

/* 1. Global Reveal State (Shuru mein gayab) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* 2. Active State (Scroll karne par show hona) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Hover Effects for Cards */
.p-card, .cat-item, .special-main-card, .side-item {
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.5s ease !important;
}

.p-card:hover, .cat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* Image Zoom on Hover */
.p-img-box img, .special-main-card img, .side-item img {
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1) !important;
}

.p-card:hover .p-img, 
.special-main-card:hover img, 
.side-item:hover img {
    transform: scale(1.1);
}

/* Header Elements Transition */
#navbar, #navbar i, .logo img {
    transition: all 0.4s ease-in-out;
}

/* Button Pulse Effect */
.add-btn {
    transition: all 0.3s ease;
}
.add-btn:hover {
    transform: scale(1.2) rotate(90deg);
    background: var(--gold) !important;
}

/* --- Animation Engine --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Smooth Hover for all Cards --- */
.p-card, .cat-item, .special-main-card, .side-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.p-card:hover, .cat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Image zoom effect on hover */
.p-card:hover .p-img {
    transform: scale(1.1);
}

/* Slider ki image ko zoom karne wali animation */
@keyframes kenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); } /* 15% zoom in */
    100% { transform: scale(1); }
}

/* Sirf us slide par zoom chale jo active ho */
.slide.active-zoom img {
    animation: kenBurns 10s linear infinite; /* 10 second ka slow zoom */
}

/* Slider container mein overflow hidden hona zaroori hai taake photo bahar na nikle */
.slide {
    overflow: hidden;
}