body {
    background-color: #f6f6f6;
}

.form-range::-webkit-slider-thumb {
    background: #dc3545;
}
.form-range::-webkit-slider-runnable-track {
    background-color: #dc3545;
}

.product-card {
    transition: box-shadow 0.2s;
    background-color: #fff;
    border: none !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card .img-container {
    position: relative;
    overflow: hidden;
    height: 380px;
}

.product-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-card .wishlist-heart {
    position: absolute;
    top: 15px;
    end: 15px;
    z-index: 10;
    cursor: pointer;
}

.product-card .sale-badge {
    position: absolute;
    top: 15px;
    start: 15px;
    z-index: 10;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 6px 10px;
}

.product-card .card-body {
    padding: 1.25rem 1rem !important;
}

@media screen and (max-width: 440px) {
    .category-name {
        font-size: 18px;
    }

    #filter {
        font-size: 12px;
    }

    .filter-btn {
        font-size: 12px;
    }
}
