
        body {
            font-family: 'Poppins', sans-serif;
            
            background-color: #fff;
            color: #000;
        }

        a {
            color: purple;
            text-decoration: none;
        }

        a:hover {
            color: darkmagenta;
        }

        .btn-pink {
            background-color: rgb(233, 106, 174);
            color: white;
            border-radius: 30px;
            padding: 8px 20px;
            border: none;
            transition: background-color 0.3s ease;
        }

        .btn-pink:hover {
            background-color: deeppink;
        }

        .text-purple {
            color: purple;
        }

        footer {
            background-color: purple;
            padding: 40px 0;
            text-align: center;
            color: #f4eeee;
            font-size: 14px;
            border-top: 1px solid #eee;
        }

        footer a {
            color: purple;
            font-weight: 500;
        }

        footer a:hover {
            color: deeppink;
        }
        .bi1 {
            color: rgb(244, 241, 239)
        }
   
    /* Mega Dropdown Styling */
    .categories {
        position: relative;
    }

    .mega-menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100vw;
        background-color: #fff;
        border-top: 1px solid #eee;
        border-radius: 0 0 10px 10px;
        z-index: 9999;
    }

    .categories:hover .mega-menu {
        display: block;
    }

    .mega-menu a {
        display: block;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        margin: 4px 0;
        transition: color 0.2s ease;
    }

    .mega-menu a:hover {
        color: deeppink;
    }

    /* Header Styles */
    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 40px;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        background: white;
        z-index: 999;
    }
    
    @media (max-width: 991px) {
        .nav-item.dropdown.position-static .dropdown-menu {
            position: static !important;
            width: 100% !important;
            display: none;
        }

        .nav-item.dropdown.position-static.show .dropdown-menu {
            display: block;
        }
    }
    

    @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-10px); }
        to   { opacity: 1; transform: translateY(0); }
    }


    .logo {
        font-size: 28px;
        font-weight: bold;
        color: #d63384;
        text-transform: uppercase;
    }
    #searchResults {
    max-height: 400px;
    overflow-y: auto;
    transition: all 0.3s ease;
    }

    #searchResults::-webkit-scrollbar {
        width: 6px;
    }
    #searchResults::-webkit-scrollbar-thumb {
        background-color: #d63384;
        border-radius: 10px;
    }

    .hover-effect {
        transition: all 0.2s ease-in-out;
        background-color: #fff;
    }
    .hover-effect:hover {
        transform: scale(1.05);
        background-color: #fdf2f8;
        border-color: #d63384 !important;
    }
    .text-pink {
        color: #d63384;
    }

    /* Search bar */
    .search-bar {
        position: relative;
        width: 60%;
       
        }
       
    

    .search-bar button {
        position: absolute;
        right: 10px;
        top: 10px;
        border: none;
        background-color:deeppink;
        color: white;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        transition: background-color 0.3s ease;
    }

    .search-bar button:hover {
        background-color: #b42a6c;
        width: 45px;
        height: 45px;
        top: 0;
        right: 0px;
        border-bottom-left-radius: 0%;
        border-top-left-radius: 0%;
    }
        .search-bar input {      
        touch-action: manipulation;
    }
        .hover-bg-light:hover {
        background-color:lightpink;
        cursor: pointer;
    }

        /* Categories dropdown */
        .categories {
            position: relative;
            font-weight: 500;
            cursor: pointer;
        }

        .categories:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            background: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            padding: 15px;
            border-radius: 8px;
            top: 40px;
            z-index: 1000;
            min-width: 220px;
        }

        .dropdown-menu h6 {
            font-size: 14px;
            margin-bottom: 10px;
            color: purple;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
        }

        .dropdown-menu a {
            display: block;
            color: #000;
            text-decoration: none;
            padding: 5px 0;
        }

        .dropdown-menu a:hover {
            color: darkmagenta;
        }

    /* Cart */
        .cart-page .card-body {
            height: auto !important;
            overflow: visible !important;
        }
        .cart {
            position: relative;
            font-size: 20px;
            cursor: pointer;
            padding-right: 10px;
            
        }
        .cart:hover {
            color: white;
            background-color: deeppink;
        }

        .cart-count {
            position: absolute;
            top: -6px;
            right: -8px;
            background: #e91e63;
            color: #fff;
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 50%;
        }


        /* Hero Section */
        .hero {
            background: linear-gradient(90deg, #f8f0ff, #fff);
            padding: 80px 40px;
            text-align: center;
        }

        .hero h1 {
            color: purple;
            font-size: 48px;
            font-weight: 700;
        }

        .hero p {
            color: #555;
            font-size: 18px;
            margin-top: 10px;
        }

        .hero .btn-pink {
            margin-top: 25px;
            font-size: 18px;
            padding: 10px 30px;
        }    
        .top-header {
            background-color: purple;
            color: white;
            font-weight: 500;        
        }
        /* product page */
        .text-purple { color: #6f42c1; }
        .text-pink { color: #d63384; }
        .btn-pink { background-color: #d63384; border: none; }
        .btn-pink:hover { background-color: #b42a6c; }

        .subcat-link:hover {
            background-color: #d63384 !important;
            color: #fff !important;
        }
        .hover-shadow:hover {
        transform: scale(1.03);
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }       
        .category-card {
            text-align: center;
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;       
            
        }
        .category-card:hover {
            transform: translateY(-5px);
            background-color: #d097b2;
        }
        .subcategory-card:hover {
            background-color: #d63384 !important;
        }
      
        .product-card .card-body {
            height: 200px;
            overflow: hidden;
            text-align: center;
        }

        .card:hover {
            background-color: #d097b2; /* light pink background on hover */
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);            
        }

        /* 🔍 Image zoom effect */
        .card img {
            transition: transform 0.4s ease;
        }

        .card:hover img {
            transform: scale(1.08);
        }

        /* ✨ Button hover */
        .btn-pink {
            background-color: #d63384;
            color: #fff;
            transition: all 0.3s ease;
        }

        .btn-pink:hover {
            background-color: #b52a6a;
            transform: scale(1.05);
        }
        .carousel-indicators [data-bs-target] {
            width: 28px;
            height: 8px;
            border-radius: 10px;
            background-color: #bbb;
        }

        .carousel-indicators .active {
            background-color: #d097b2;
        }
                /* Remove arrows from number input (Chrome, Edge, Safari) */
        input[type=number]::-webkit-outer-spin-button,
        input[type=number]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }       
      
        .quantity-box {
            gap: 5px;
        }

        .qty-btn {
            width: 28px;
            height: 28px;
            background: #f1f1f1;
            border: 1px solid #ccc;
            cursor: pointer;
            font-size: 18px;
            border-radius: 4px;
            padding: 0;
        }

        .qty-input {
            width: 55px;
            text-align: center;
        }


        .circle-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            margin: 0 auto;
        }
        .circle-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .category-link {
            text-decoration: none;
        }
        .category-link h6 {
            font-size: 0.95rem;
            font-weight: 500;
            margin-top: 10px;
        }
        .btn:hover {
        background-color: lightgray !important;
        transform: scale(1.05);
        transition: 0.2s ease-in-out;
        }
        .btn-pink:hover {
            background-color: #b42a6c !important;
            transform: scale(1.05);
            transition: 0.2s ease-in-out;
            color: #fff;
        }
        .thumb-image {
            width: 75px;
            height: 75px;
            object-fit: cover;
            cursor: pointer;
            border-radius: 10px;
            border: 2px solid #000;
            transition: all 0.3s ease;
        }
        .thumb-image:hover {
            transform: scale(1.05);
            border-color: #d63384;
        }
        .main-product-image {
            max-height: 450px;
            object-fit: cover;
            border-radius: 15px;
        }
        .zoom-container {
            position: relative;
            overflow: hidden;
            display: inline-block;
            border-radius: 12px;
            cursor: zoom-in;
        }
        .zoom-container img {
            transition: transform 0.6s ease;
            transform-origin: center center; /* ensures zoom happens from center */
        }
        .zoom-container:hover img {
            transform: scale(2.5); /* zooms IN (enlarges image) */
        }
        .zoom-container {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .btn-outline-pink {
            border: 1px solid #d63384;
            background-color: #d63384;
            color: #fff;
            transition: 0.3s;
        }
        .btn-outline-pink:hover {
            background-color: #d63384;
            color: #fff;
            transition: 0.3s;
        }
        .btn-outline-pink {
            border: 1px solid #d63384;
            color: #d63384;
            transition: 0.3s;
        }
        .btn-outline-pink:hover {
            background-color: #d63384;
            color: #fff;
        }
        footer{
            border-start-end-radius: 20px;
                }
            /* 🔧 Fix Bootstrap modal disable issue */
        .modal {
        z-index: 9999 !important;
        }

        .modal-backdrop {
            z-index: 9998 !important;
            background-color: rgba(0,0,0,0.6) !important;
        }

        body.modal-open {
            overflow: auto !important;
            padding-right: 0 !important;
        }

        .modal-dialog {
        pointer-events: auto !important;
        }
        a.fw-bold:hover {
            text-decoration: underline;
        }
        #cartModal .modal-content {
            animation: slideInUp 0.5s ease;
        }
        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .cart-item {
            border-bottom: 1px solid #eee;
            padding: 12px 0;
        }
        .cart-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 10px;
        }
        .cart-item .item-name {
        font-weight: 600;
        }
        .quantity-btn {
            border: none;
            background: #d63384;
            color: white;
            padding: 4px 10px;
            border-radius: 50%;
        }
        .quantity-btn:hover {
            background: #b02a6d;
        }
        .total-price {
            font-size: 18px;
            font-weight: 700;
        }
        #emptyCartDropdown {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 8px;
        z-index: 1050;
        animation: fadeIn 0.3s ease-in-out;
        background: #fff;
        }

        @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
        }
        #totalq{
            position: absolute;
            left: 400px;            
        }
         #totala{
            position: absolute;
            left: 590px; 
                     
        }
        .qty-input{
            width: 70px;
            height: 35px;
            border: 2px solid #000;
        }
                .blink-text {
                    background-color: pink;
                    animation: blink 5.2s infinite;
                    font-weight: bold;
                    color: #d9534f; /* Bootstrap warning red */
                }
                @keyframes blink {
                    0%, 50%, 100% { opacity: 1; }
                    25%, 75% { opacity: 0; }
                }
    #paymentmathod{
        background-color: #d63384;
        color: white;
    }
    /* =========================================================
   MOBILE SEARCH – FINAL FIX (DO NOT DUPLICATE)
   ========================================================= */

@media (max-width: 991px) {

    /* Ensure header stays above page */
    header.navbar {
        position: sticky;
        top: 0;
        z-index: 1040;
    }

    /* Prevent hidden collapse from blocking clicks */
    .navbar-collapse:not(.show) {
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    .navbar-collapse.show {
        pointer-events: auto !important;
    }

    /* Mobile search input must always be clickable */
    #mobileSearchInput {
        position: relative;
        z-index: 1060;
        pointer-events: auto !important;
        touch-action: manipulation;
    }

    /* Search suggestions dropdown */
    #mobileSearchResults {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1070;
        background: #fff;
        width: 100%;
        max-height: 300px;
        overflow-y: auto;
        border-radius: 12px;
    }

    /* Search wrapper safety */
    .search-bar,
    .mobile-search-full,
    .position-relative {
        z-index: 1055;
    }
}

    
             
        
