/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
 .best-sellers-block {
    padding: 20px;
    background-color: #f8f8f8; 
    border: 1px solid #ddd; 
    border-radius: 10px; 
}

.best-sellers-block .block-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.best-sellers-block .products {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.best-sellers-block .product-miniature {
    flex: 1 1 calc(33.333% - 15px); 
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.best-sellers-block .product-miniature:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.best-sellers-block .thumbnail-container img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.best-sellers-block .product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
    color: #555;
    text-align: center;
}

.best-sellers-block .product-price {
    font-size: 1rem;
    font-weight: bold;
    color: #e74c3c;
    text-align: center;
}