 
        body {
            font-family: 'Hind Siliguri', sans-serif;
            overflow-x: hidden;
        }
        
        .navigation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2000;
            background: #080808;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .main-wrapper {
            margin-top: 60px;
        }
        
        /* Navigation adjustments */
        .navigation .header-navbar {
            padding: 5px 0;
            height: 80px;
            line-height: 1;
        }
        
        .navigation .header-brand img {
            height: 40px !important;
            width: auto;
        }
        
        .mobile-header {
            padding: 5px 10px !important;
        }
        
        /* Cart styles */
        .cart-count {
            width: 15px;
            height: 15px;
            font-size: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            border-radius: 50%;
            background-color: red;
            position: absolute;
            top: 0;
            right: 0;
        }
        
        .cart-box {
            position: relative;
        }
        
        /* Cart side panel */
        .cart-modal {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background: #fff;
            box-shadow: -2px 0 10px rgba(0,0,0,.2);
            transition: all .3s ease;
            z-index: 2000;
            display: flex;
            flex-direction: column;
            z-index: 3000;
        }
        
        .cart-modal.show {
            right: 0;
        }
        
        /* Mobile cart panel - FIXED: Dynamic height */
        @media (max-width: 768px) {
            .cart-modal {
                top: auto;
                bottom: -100%;
                right: 0;
                width: 100%;
                height: auto; /* Changed from fixed 60% to auto */
                max-height: 80%; /* Limit max height */
                border-top-left-radius: 15px;
                border-top-right-radius: 15px;
                box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
                z-index: 6000;
            }
            
            .cart-modal.show {
                bottom: 0;
                right: 0;
            }
            
            .cart-body {
                max-height: calc(100vh - 150px); /* Allow scrolling for many items */
                overflow-y: auto;
            }
        }
        
        .cart-body {
            flex: 1;
            overflow-y: auto;
        }
        
        .cart-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            margin-right: 10px;
        }
        
        .cart-item h6 {
            flex: 1;
            font-size: 14px;
            margin: 0;
        }
        
        .qty-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: #f8f9fa;
            border-radius: 4px;
        }
        
        /* Floating cart */
        .floating-cart {
            position: fixed;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background: #56b159;
            color: #fff;
            display: none;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            border-radius: 12px;
            font-weight: 700;
            z-index: 3000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .floating-cart .left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .floating-cart .bubble {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(0,0,0,.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        /* Product grid */
        .product-list-grid {
            padding: 0;
            margin: 0;
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        @media (min-width: 768px) {
            .product-list-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .product-list-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .pro-image {
            position: relative;
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .pro-image:hover {
            transform: translateY(-5px);
        }
        
        .pro-image img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            /* padding: 10px; */
        }
        
       .title_product {
  font-family: 'Hind Siliguri', sans-serif;
  display: block;
  
  padding: 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  text-align: left;
}
        
       .button-group-product {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 0;
  border: 1px solid #ddd;
}

.button-group-product a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  flex: 1;
  border-right: 1px solid #ddd;
  text-decoration: none;
}

.button-group-product a:last-child {
  border-right: none;
}

.button-group-product a:first-child {
  background: #f8f9fa;
  color: #333;
}

.button-group-product a:last-child {
  background-color: #e9ecef;
  color: #333;
}
        
        /* Slider adjustments - FIXED: Increased mobile slider height */
        .carousel-inner img {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
        }
        
        /* Mobile slider height fix */
        @media (max-width: 768px) {
            .carousel-inner img {
                height: 250px; /* Increased mobile slider height */
                max-height: 250px;
            }
            
            .desktop-slide {
                height: 250px; /* Ensure container matches image height */
            }
        }
        
        /* Category dropdown */
        .category-dropdown {
            position: relative;
        }
        
        .category-dropdown:hover .main-menu {
            display: block;
        }
        
        .main-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-radius: 4px;
            padding: 10px 0;
            min-width: 200px;
            z-index: 1000;
        }
        
        .main-menu li {
            list-style: none;
        }
        
        .main-menu a {
            display: block;
            padding: 8px 20px;
            color: #333;
            text-decoration: none;
            transition: background 0.2s;
        }
        
        .main-menu a:hover {
            background: #f8f9fa;
        }
        
        /* Search bar */
        .eco-search {
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid #ddd;
        }
        
        .btn-search {
            border: none;
            background: transparent;
            padding: 0 15px;
        }
        
        .product-search-input {
            border: none;
            outline: none;
            padding: 10px 0;
        }
        
        /* Footer */
        .axil-footer-area {
            background-color: #ededef !important;
        }
        
        .axil-footer-widget ul li {
            margin-bottom: 8px;
        }
        
        .axil-footer-widget a {
            color: #333;
            text-decoration: none;
        }
        
        .axil-footer-widget a:hover {
            color: #007bff;
        }
        
        .copyright-area {
            background: #080808;
            color: #ffffff;
            padding: 15px 0;
        }
        
        /* Load more button */
        #loadMoreBtn {
            background: #080808;
            border: none;
            padding: 10px 30px;
            border-radius: 30px;
            color: white;
            font-weight: 500;
        }
        
        .hidden {
            display: none;
        }
        
        /* Mobile menu offcanvas */
        .offcanvas-start {
            width: 280px !important;
        }
        
        /* Responsive text */
        @media (max-width: 576px) {
            .popular_product span {
                font-size: 18px;
            }
            
            .title_product {
                font-size: 13px;
            }
            
            .pro-image img {
                height: 160px;
            }
        }

        .btn-search-icon {
  background-color: transparent;
  border: none;
  padding: 0;
}




    