.oscurece, .oscurece-cart {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0s 0.5s; /* Usando cubic-bezier */
}

.oscurece-on {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0s 0s;
}
    
.menu-content{
    display: flex;
    flex-direction: column;
    gap: 90px;
    position: fixed;
    z-index: 100;
    width: 400px;
    height: 100%;
    box-sizing: border-box;
    padding: 31px 20px 0;
    top: 0;
    left: 0;
    background-color: white;
    border-right: 2px solid #000;
    z-index: 101;
    transform: translateX(-450px);
    transition: transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.menu-options{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.menu-content-on, .cart-content-on{
    transform: translateX(0px);
}
@media(max-width:1080px){
    .menu-content{
        display: flex;
        position: fixed;
        z-index: 100;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background-color: white;
        border-right: none;
        z-index: 101;
        transform: translateX(-100%);
        transition: transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .menu-content-on{
        transform: translateX(0%);
    }
}
.fila-menu{
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: space-between;
}
.fila-top{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    justify-content: space-between;
}
.menu-content p, .menu-content a{
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    color:var(--color-acento);
    letter-spacing: -0.026em;
}
.menu-content a::after {
    content: "\2190"; /* Flecha apuntando hacia la palabra */
    opacity: 0;
    margin-left: 5px; /* Ajusta el espacio entre la palabra y la flecha */
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    transform: translateX(5px); /* Posiciona la flecha más lejos al inicio */
}

.menu-content a:hover::after {
    opacity: 1;
    transform: translateX(0); /* Mueve la flecha hacia el texto */
}
.subtotal-bloque{
    transform: translateY(100%);
    transition: transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1)
}
.subtotal-bloque-on{
    transform: translateY(0%);
}