/*
    Custom overrides
*/
.product-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product-widget {
    width: 30%; /* Desktop default */
    border: 1px solid #ccc;
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.product-widget:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.product-widget a {
    text-decoration: none;
    color: black;
    display: block;
}

.product-image {
    width: 100%;
    max-height: 270px;
    object-fit: contain;
}

.product-info {
    padding: 15px;
}

.product-title {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.product-description {
    font-size: 14px;
    color: #666;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .product-widget {
        width: 100%; /* Full width on smaller screens */
        margin: 10px 0; /* Adjust vertical spacing */
    }
}

/* Tablet responsiveness */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .product-widget {
        width: 48%; /* Two products per row on medium screens */
    }
}
