.smh-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.smh-product {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}

.smh-product img {
    max-width: 100%;
    height: auto;
}

.smh-product .price {
    display: block;
    margin: 10px 0;
    font-weight: bold;
}
