h3 {
   
    font-size: clamp(0.8rem, 3vw, 1rem);
    text-align: center;
    color: #000000;
}
.content-wrapper{
    min-height: 75vh;
}
.product {
    background-color: white;
    min-width: 140px;
    max-width: clamp(200px, 15vw, 300px);
    padding: clamp(0.5rem, 2vw, 1rem);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.125);
    border-radius: 0.5rem;
}

.product-image {
    max-width: clamp(200px, 15vw, 300px);
}

.product-image img {
    width: 100%;
    height: clamp(100px,15vw,200px);
    max-height: 250px;
    object-fit: fill;
}

.text-category {
    text-align: center;
    color: #979797;
    font-style: italic;
}

.text-price {
    text-align: center;
    font-size: clamp(0.8rem,2vw,1rem);
    font-weight: bold;
    font-family: sans-serif;
}

/*PRODUCTS*/
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(45%, 18rem), 1fr));
    gap: 1rem;
}
