h1{
    font-size: clamp(1.5rem, 3vw, 2rem);
}
h3 {
   
    font-size: clamp(0.8rem, 3vw, 1rem);
    text-align: center;
    color: #000000;
}
.search-content{
    min-height: 81vh;
}
.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;
}
/*SEARCH*/
.content-search {
    border-radius: 0.5rem;
    background-color: #cfcfcf;
    padding: 0.5rem;
}

.search-input {
    background-position-y: center;
    background-size: 30px;
    background-position-x: 98%;
    background-repeat: no-repeat;
    background-image: url(../images/icons8-search-50.png);
    border-color: #e4e4e4;
    padding: 0.7rem;

    padding: 0.7rem;
}

.search-input::placeholder {
    color: rgb(211, 211, 211);
}



/*PRODUCTS*/
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(45%, 18rem), 1fr));
    gap: 1rem;
}
