h2 {
    font-weight: 700;
    color: var(--azul-fondo);
}

nav{
    width: 60rem;
}

.rowCardsShop{
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-around;
    gap: 20px; 
}

.banner_shop_categorie{
    border-radius:20px;
    min-height: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}


.floating_cart_icon{
    display: none;
    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 50;
    background-color: #ffffff;
    color: #1C74BA;
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 10px 15px 0px #00000059;
    border: 2px solid #1C74BA;
}



@media screen and (max-width: 850px) {
    .floating_cart_icon{
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .banner_shop_categorie{
        min-height: 30px !important;
    }
}