.nav-products {
    color: red;
    font-weight: bold;
    font-size: 1.4rem;
    text-decoration: underline;
}


/* MAIN SECTION */

.featured-products-h1, .all-products-h1 {
    text-align: center;
}


.all-products-new-container {
    
    background-color: white;
    padding: 1rem;
    margin: 1rem;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0.5rem;
    -webkit-box-shadow: 2px 4px 11px -7px rgba(0,0,0,0.9); 
    box-shadow: 2px 4px 11px -7px rgba(0,0,0,0.9);
}

.new-products-img {
    max-width: 100%;
    width:100%;
    margin: 0 auto;
    border-radius: 0.5rem;
}

.featured-products-info-container {
    display: flex;
    justify-content: center;
    
    width: 100%;
}

.featured-products-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #3333331f;
    border-radius: 1rem 0 1rem 0;
    margin: 1rem;
    width: 20rem;
}

.featured-products-box h4 {
    margin-bottom: 1rem;
}

li {
    font-size: small;
    margin-left: 1.25rem;
}



.all-products-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-block: 1rem;
    justify-content: space-around;
}

.all-products-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 2px 4px 11px -7px rgba(0,0,0,0.9); 
    box-shadow: 2px 4px 11px -7px rgba(0,0,0,0.9);
    width:20rem;
    margin-block: 1rem;
}

.all-products-img {
    width: 15rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
} 

.all-products-img:hover {
    transform: scale(1.02);
}


@media screen and (max-width: 681px) {
    .featured-products-box ul {
        display: none;
    }

}