
    /* Breadcrumbs css starts */
#shopBanner .shopBnr{
    background-image: url(../image/shopBanner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;

}
    /* Breadcrumbs css ends */

    /* main contenet starts */
  .filter-sidebar {
    background-color: #f4ffeec2;
            color: var(--text-dark);
            padding: 20px 15px;
            border-radius: 8px;
        }
        
       /* Category Sidebar Items */
.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.08);
  color: #1f1616;
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
}

.category-item:hover,
.category-item.active-cat {
  background: #22c55e;
  color: #fff;
}

.cat-count {
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 11px;
  min-width: 28px;
  text-align: center;
}
        
        .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) ==================== */
       /* ─── Product Card ─────────────────────────── */
.hotProduct-card {
    border: 0.5px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hotProduct-card:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

/* ─── Image Area ────────────────────────────── */
.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f4fdf6;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-img-wrap img {
    max-height: 130px;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hotProduct-card:hover .product-img-wrap img {
    transform: scale(1.05);
}
.hot-deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7c948);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}


/* ─── Overlay ───────────────────────────────── */
.img-overlay {
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 10px 10px 0 0;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
}

.hotProduct-card:hover .img-overlay {
    opacity: 1;
}

.overlay-icons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(-6px);
    transition: transform 0.25s ease 0.1s;
}

.hotProduct-card:hover .overlay-icons {
    transform: translateY(0);
}

.overlay-icons button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #555;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
}

.overlay-icons button:hover {
    color: #22c55e;
    background: #f0fdf4;
}

/* ─── Sale Badge ────────────────────────────── */
.sale-badge {
    position: absolute;
    top: 37px;
    left: 10px;
    background: #22c55e;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    z-index: 3;
    letter-spacing: 0.3px;
}

/* ─── Card Body ─────────────────────────────── */
.card-body-custom {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stars {
    color: #facc15;
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.stars .empty { color: #e5e7eb; }

/* ─── Price Row ─────────────────────────────── */
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 4px;
    flex-wrap: wrap;   /* ← এটাই মূল fix */
}

.price-block {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;      /* ← overflow আটকায় */
}

.price-main {
    font-size: 1.05rem;
    font-weight: 700;
    color: #16a34a;
}

.price-old {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
}

/* ─── Cart Button ───────────────────────────── */
.cart-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.cart-btn:hover {
    background: #15803d;
    transform: scale(1.08);
}

/* ─── Qty Selector ──────────────────────────── */
.cart-action-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;    /* ← কখনো চাপা খাবে না */
}
.qty-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 30px;
    padding: 3px 6px;
    flex-wrap: nowrap;  /* ← qty-er ভেতরে wrap হবে না */
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.qty-btn:hover { background: #15803d; }

.qty-input {
    width: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    color: #15803d;
    padding: 0;
    -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.add-to-cart-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #15803d;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ─── Top Bar ───────────────────────────────── */
.top-bar {
    background-color: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 20px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

/* ─── Responsive ────────────────────────────── */
@media (max-width: 576px) {
    .product-img-wrap { height: 140px; }
    .product-img-wrap img { max-height: 110px; }
    .product-name { font-size: 0.82rem; }
    .price-main { font-size: 0.95rem; }
    .cart-btn { width: 32px; height: 32px; font-size: 15px; }
    .card-body-custom { padding: 10px 11px 12px; }
}
        
         /* 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 */

    /* ── Pagination ── */
.pagination-shop .page-link {
  border: 1.5px solid #e2e8f0;
  color: #2d6a4f;
  border-radius: 8px !important;
  margin: 0 3px;
  min-width: 38px;
  text-align: center;
  font-weight: 500;
  transition: all .2s;
}
.pagination-shop .page-item.active .page-link {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: #fff;
}
.pagination-shop .page-link:hover {
  background: #e9f5ee;
  border-color: #2d6a4f;
  color: #2d6a4f;
}
.pagination-shop .page-item.disabled .page-link {
  color: #c0c0c0;
  border-color: #e2e8f0;
}

  