
    /* Breadcrumbs css starts */
#shopBanner .shopBnr{
    background-image: url(../image/Header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 400px;
    border-radius: 10px ;
    margin-bottom: 20px;
    margin-top: 30px;
}
    /* Breadcrumbs css ends */

    /* main contenet starts */
  .filter-sidebar {
    background-color: #f4ffeec2;
            color: var(--text-dark);
            padding: 20px 15px;
            border-radius: 8px;
        }
        
        .filter-sidebar .category-item {
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-sidebar .category-item:hover,
        .filter-sidebar .category-item.active {
            background-color: rgba(34, 197, 94, 0.25);
            color: var(--primary-green);
        }
        
        .filter-sidebar .badge {
            background-color: #22c55e;
        }
        
       
        /* ==================== PRODUCT CARD (তোমার দেওয়া exact structure + CSS) ==================== */
        .hotProduct-card {
            border: 1.5px solid #e9ecef;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            transition: border-color 0.3s ease;
            position: relative;
            cursor: pointer;
            height: 100%;
        }
        
        .hotProduct-card:hover {
            border-color: #22c55e;
        }
        
        .product-img-wrap {
            position: relative;
            overflow: hidden;
            background: #f9fafb;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-img-wrap img {
            max-height: 140px;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .hotProduct-card:hover .product-img-wrap img {
            transform: scale(1.04);
        }
        
        /* Overlay */
        .img-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            background: rgba(0,0,0,0.10);
            transition: width 0.35s cubic-bezier(0.4,0,0.2,1), height 0.35s cubic-bezier(0.4,0,0.2,1);
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            overflow: hidden;
            z-index: 2;
        }
        
        .hotProduct-card:hover .img-overlay {
            width: 100%;
            height: 100%;
        }
        
        .overlay-icons {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 10px 10px 0 0;
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity 0.25s ease 0.15s, transform 0.25s ease 0.15s;
        }
        
        .hotProduct-card:hover .overlay-icons {
            opacity: 1;
            transform: translateY(0);
        }
        
        .overlay-icons button {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #444;
            box-shadow: 0 1px 4px rgba(0,0,0,0.10);
            transition: color 0.2s, background 0.2s;
            cursor: pointer;
        }
        
        .overlay-icons button:hover {
            color: #22c55e;
            background: #f0fdf4;
        }
        
        .card-body-custom {
            padding: 16px;
        }
        
        .product-name {
            font-size: 1.05rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .stars {
            color: #facc15;
            margin-bottom: 10px;
        }
        
        .stars .empty {
            color: #e5e7eb;
        }
        
        .price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .price-main {
            font-size: 1.2rem;
            font-weight: 700;
            color: #16a34a;
        }
        
        .cart-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #22c55e;
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .cart-btn:hover {
            background: #15803d;
            transform: scale(1.1);
        }
        
        /* Top Bar */
        .top-bar {
            background-color: white;
            border-bottom: 1px solid #eee;
            padding: 15px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .filter-btn {
            display: none;
        }
        
         /* Popular Tags Style - Exact like your image */
.tag-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 30px;
    border: 1px solid #444;
    background: transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tag-btn.active {
    background-color: #22c55e;
    color: white;
    border-color: #22c55e;
    font-weight: 500;
}


.tag-btn.active:hover {
    color: fff;
}
        @media (max-width: 992px) {
            .filter-btn {
                display: block;
            }
            .filter-sidebar {
                position: fixed;
                left: -100%;
                top: 0;
                max-width: 80%;
                z-index: 1050;
                transition: left 0.3s ease;
                height: 100vh;
                overflow-y: auto;
                background-color: white;
            }
            .filter-sidebar.show {
                left: 0;
            }
        }
        
        /* Hidden class for filtering */
        .product-col.hidden {
            display: none !important;
        }
    /* main content ends */

  