.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 */
}
.bloque-carrito{
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 120px; */
    padding: 0px 20px;
    gap:12px;
}
.mini-foto{
    /* display: inline-flex; */
    display: flex;
   /* width: 30%; */
   width: auto;
    height: 100%;
    justify-content: left;
    align-items: center;
    overflow: hidden;
}
.segunda-columna{
    display: flex;
    width: 100%;
}
.mini-imagen-producto{
    width: 40%;
    margin-right: 10px;
}
.mini-info-producto{
    display: grid;
    grid-template-columns: 7fr 3fr;
    justify-content: left;
    text-align: left !important;
    width: 100%;
}
.mini-nombre-producto{
    font-weight: 650;
    letter-spacing: -0.5px;
    font-size: 14px;
    text-rendering: optimizeLegibility;
    line-height: 1.4rem;
    text-transform: uppercase;
    text-align: left;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.mini-price-product{
    margin-top: 6px;
    font-size: 12px;
    text-rendering: optimizeLegibility;
    text-align: left;
    text-transform: uppercase;
}
.remove-button{
    cursor: pointer;
    display: inline-block;
    position: relative; /* Agregar posición relativa */
}
.remove-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; /* La barra ocupa el 100% del ancho del botón */
    height: 1px;
    background-color: black;
    transform: translateY(-1px); /* Posiciona la barra fuera de vista */
    opacity: 0;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.remove-button:hover::after {
    transform: translateY(0.5px); /* Barra se desliza hacia su posición */
    opacity: 1;
}
.subtotal-bloque{
    /* border-top: 1px solid #000; */
    padding: 17px 20px 29px;
    box-sizing: border-box;
}
.boton-continuar-comprando{
    border-radius: 0;
    padding: 13px 0px;
    text-align: center;
    display: flex;
    background: none;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #d7d7d7;
    color: #bcbcbc;
    font-weight: 400;
    margin: 9px 0px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}
.boton-pago{
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    background-color: rgba(0, 0, 0, 0);
    text-transform: uppercase;
    background-color: #000;
    border: 2px solid #000;
    color: #fff;
    border-radius: 0;
    padding: 13px 0px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    text-align: center;
    width: auto;
    cursor: pointer;
    text-decoration: none !important;
    letter-spacing: .05em;
    transition: background-color .2s ease;
    width: 100%;
    margin-top: 15px;
}
@media(max-width:1080px){
    .boton-pago{
        font-size: 16px;
    }
}
.cart-spaces{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.fila-top-cart{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    justify-content: space-between;
    padding: 31px 20px 0;  box-sizing: border-box;
}
.cart-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    z-index: 100;
    width: 400px;
    height: 100%;
    box-sizing: border-box;
    top: 0;
    right: 0;
    background-color: white;
    border-left: 2px solid #000;
    z-index: 101;
    transform: translateX(450px);
    transition: transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cart-content-on{
    transform: translateX(0px);
}



.bloque-carrito-grid{
    display: grid;
    grid-template-columns: minmax(0, 27fr) minmax(0, 46fr) minmax(0, 27fr);
    margin: 0px 20px;
    height: auto;
    min-height: 107px;
    background-color: white;
    gap: 6px;
}
.img-cart-low{
    max-width: 100%;
    max-height: 200px;
}
@media (max-width:1080px){
    .cart-content{
        display: flex;
        position: fixed;
        z-index: 100;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background-color: white;
        border-left: none;
        z-index: 101;
        transform: translateX(100%);
        transition: transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-sizing: border-box;
    }
    .cart-content-on{
        transform: translateX(0px);
    }
    .mini-foto{
        display: inline-flex;
        width: 30%;
        justify-content: left;
    }
    .mini-imagen-producto{
        width:auto;
        min-width: 30%;
        height: auto;
        max-height: 100%;
    }
    .segunda-columna{
        display: flex;
        width: 100%;
    }
}
.sobre-carrito{
    display:inline-flex;
    position:absolute;
    width:auto;
    height:auto;
    transform: translateX(1px);
    background-color:white;
    font-size:10px;
}
.nodeslizar{
    overflow-y: hidden !important;
}