.carro {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 62%;
    background-color: var(--color-pri-70);
    color: #fff;
    height: 100%;
    width: 500px;
    padding: 1em 3em;
    border-radius: 0 0 20px 20px;
    transform: translate(0, -100%);
    transition: transform 1s;
    z-index: 10000;
}

.carro #mini-carrito{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*.carro-h3-CerrarCarrito {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.carro-nav {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: .8em;*/
/*    width: 100%;*/
/*}*/

/*.carro-cerrar {*/
/*    background-color: var(--color-bg);*/
/*    color: var(--color-pri-2);*/
/*    border: 2px solid var(--color-pri-2);*/
/*    font-size: 1.2em;*/
/*    border: none;*/
/*    border-radius: 50%;*/
/*    width: 35px;*/
/*    height: 35px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    cursor: pointer;*/
/*    transition: background-color .4s ease, transform .4s ease;*/
/*}*/

/*.carro-cerrar:hover {*/
/*    background-color: var(--color-pri-2);*/
/*    transform: scale(1.1);*/
/*    color: #fff;*/
/*}*/

/*.carro a {*/
/*    text-align: center;*/
/*    background-color: var(--color-pri);*/
/*    text-decoration: none;*/
/*    border: none;*/
/*    border-radius: 20px;*/
/*    padding: 1em;*/
/*    font-size: 1.1em;*/
/*    font-weight: 700;*/
/*    color: #fff;*/
/*    cursor: pointer;*/
/*    transition: scale .4s, background-color .4s, color .3s;*/
/*    box-shadow: 0 8px 13px -9px #000;*/
/*    border: 1px solid var(--color-pri);*/
/*    width: 100%;*/
/*}*/

/*.carro a:hover {*/
/*    scale: 1.02;*/
/*    background-color: #fff;*/
/*    color: var(--color-pri);*/
/*}*/

/*.carro-lista-productos {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 1em;*/
/*}*/

/*.carro-producto {*/
/*    position: relative;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: flex-start;*/
/*    gap: 1em;*/
    /* border: solid 1px var(--color-pri); */
/*    padding: 1em 2em;*/
/*    border-radius: 20px;*/
/*    box-shadow: 0 8px 13px -9px #00000081;*/
/*}*/

/*.producto-imagen {*/
/*    height: 80px;*/
/*    width: 80px;*/
/*    object-fit: contain;*/
/*}*/

/*.carro-productos-total {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    gap: .8em;*/
/*    padding: 1em 0;*/
/*    font-size: 1.1em;*/
/*}*/

/*.carro-producto-textos {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 1em;*/
/*    margin-right: 2em;*/
/*}*/

/*.borrarDelCarro,*/
/*.borrarDelPage {*/
/*    position: absolute;*/
/*    right: 5%;*/
/*    border-radius: 50%;*/
/*    border: none;*/
/*    background-color: var(--color-pri);*/
/*    color: white;*/
/*    cursor: pointer;*/
/*    transition: background-color .4s ease, scale .4s ease;*/
/*}*/

/*.borrarDelCarro {*/
/*    width: 25px;*/
/*    height: 25px;*/
/*}*/

/*.borrarDelCarro:hover,*/
/*.borrarDelPage:hover {*/
/*    background-color: var(--color-pri-2);*/
/*    scale: 1.15;*/
/*}*/

/* Animación para desaparecer con scale */
/*.scale-out {*/
/*    transform: scale(0);*/
/*    opacity: 0;*/
/*    transition: transform 0.3s ease, opacity 0.3s ease;*/
/*}*/

/*.productos-total {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    width: 100%;*/
/*}*/

@media (max-width: 1440px) {
    .carro-lista-productos {
        gap: .6em
    }

    .carro-producto {
        padding: 1em .5em;
    }

    .carro-producto-textos {
        gap: .5em;
        font-size: .9em;
    }

    .producto-imagen {
        height: 60px;
        width: 70px;
    }

    .carro-productos-total {
        font-size: .8em;
    }

    .carro a {
        font-size: 1em;
    }
}

@media (max-width: 1300px) {
    .carro {
        left: 45%;
    }
}

@media (max-width: 768px) {
    .carro {
        left: initial;
        height: auto;
        width: 100%;
        min-height: 90vh;
        align-items: center;
    }

    .carro-cerrar {
        position: static;
        top: -2px;
        left: 90%;
        font-size: 1.5em;
    }

    .carro-nav {
        width: 80%;
        justify-content: space-between;
        display: flex;
    }

    .carro-productos {
        width: 100%;
        align-items: stretch;
    }

    .carro-productos-producto {
        justify-content: space-around;
    }

    .productos-total {
        width: 80%;
    }
}

@media (max-width: 425px) {
    .carro {
        left: initial;
        height: 90vh;
        width: 100%;
        min-height: 90vh;
        align-items: center;
        padding: 1em 0em;
    }

    .carro-cerrar {
        top: -2px;
        left: 90%;
        font-size: 1.5em;
    }

    .carro-nav {
        width: 80%;
    }

    .carro-lista-productos {
        gap: .5em;
    }

    .carro-productos {
        width: 100%;
        align-items: stretch;
    }

    .carro-producto {
        padding: .5em .5em;
    }

    .carro-producto-textos {
        font-size: .8em;
    }

    .producto-imagen {
        height: 50px;
        width: 50px;
    }

    .carro-productos-producto {
        font-size: .7em;
        position: relative;
    }

    .borrarDelCarro {
        position: absolute;
        right: 5%;
        bottom: 35%;
        font-size: .8em;
        width: 20px;
        height: 20px;
    }
}