.bestseller-products .product-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bestseller-products .product-item {
    width: 23%;
    box-sizing: border-box;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.2s;
}

.bestseller-products .product-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-item-name {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-box {
    margin-bottom: 10px;
}

.action.tocart {
    background-color: #1979c3;
    color: #fff;
    padding: 8px 12px;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}
.custom-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.custom-grid-4 .product-item {
    list-style: none;
}
.bestseller-filter-form {
    margin-bottom: 20px;
}

.bestseller-filter-form .filters {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bestseller-products .product-item {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
}
