
.filter-section {
    max-height: 80vh; 
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
}
.filter-section h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.filter-section::-webkit-scrollbar {
    width: 10px;
}

.filter-section::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 5px;
}

.filter-section::-webkit-scrollbar-thumb:hover {
    background: #888; 
}

.carousel-item .row{
    flex-wrap: nowrap;
}

.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    background-color: var(--white_color);
}
.product-card img {
    height: 200px;
    object-fit: cover;
}
.product-card .card-body {
    padding: 10px;
}
.product-card .price {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.old-price {
    text-decoration: line-through;
    color: #888;
}