.home-products {
    padding: 2em 1em;
}

.home-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5em;
}

.product-item {
    border: 1px solid #ddd;
    padding: 1em;
    text-align: center;
}

.product-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 0.5em;
}

.product-item .price {
    font-weight: bold;
    color: #0073aa;
}
