.products {
    background: #f4efe7;
    padding: 80px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.products-grid a {
    text-decoration: none;
}

.product-card {
    background: #fcfaf7;;
    padding: 20px;
    border: 1px solid #d8c4a3;
    border-radius: 8px;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 30px rgba(0,0,0,.12);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
    border: 1px solid #b08d57;
}

.product-card h3 {
    margin-bottom: 12px;
    color: #6b4423;
}

@media (max-width: 768px) {

    .products-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

}
