.ropa-container {
    width: 100%;
    margin: auto;
    padding-left: 230px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-ropa_principal {
    width: 100%;
    max-width: 1200px;
    padding: 1rem 3rem;
}
.main-ropa_principal h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--clr-negro);
}
.cards-ropa_container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto;
    gap: 1rem;
}
.cards-ropa_container a {
    text-decoration: none;
    color: var(--clr-negro);
}
.ropa-info_container {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 1px 10px 1px #ccc;
}
.ropa-info_container:hover {
    transition: 300ms;
    box-shadow: 0px 0px 5px 0 #ff00d47d;
}
.ropa-img {
    width: 100%;
    height: 360px;
}
.ropa-img img{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.ropa-info {
    height: calc(100% - 400px);
    padding: .5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ropa-precio {
    color: rgb(0, 178, 0);
    font-weight: 500;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}
.ropa-info p span {
    margin-left: 5px;
    color: var(--clr-negro);
    font-size: .8rem;
}
.ropa-oferta {
    font-size: .8rem;
}
.ropa-oferta span {
    font-weight: 700;
    text-transform: uppercase;
}
.fa-cart-shopping{
    margin: auto;
    font-size: 1.2rem;
    text-decoration: none;
    color: #de00b9;
    transition: color 300ms;
}
.fa-cart-shopping:hover {
    color: #bf009f;
    cursor: pointer;
}
.carrito-container{
    position: fixed;
    right: 0;
    width: 500px;
    height: 450px;
    background-color: var(--clr-blanco);
    border-radius: 5px;
    box-shadow: 0 0 1000px rgb(0, 0, 0);
    overflow-y: auto;
}
.visible-carrito {
    top: 100px;
}
.carrito {
    padding: 10px;
    box-sizing: border-box;
}
.carrito-total {
    text-align: center;
    margin-top: 10px;
}
.boton-comprar {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #ff69b4; /* Rosa */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.producto-en-carrito {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.producto-en-carrito .carrito-previa {
    margin-right: 10px;
    width: 30px;
}
.producto-en-carrito .carrito-previa img {
    width: 100%;
}
.producto-en-carrito p {
    margin: 0;
}
.producto-en-carrito p strong {
    text-transform: uppercase;
    font-weight: bold;
}

.producto-en-carrito p .precio {
    color: green;
}

.producto-en-carrito p .cantidad {
    color: #888;
    font-size: 0.8em;
}
.carrito-contenido button.restar-cantidad,
.carrito-contenido button.eliminar-producto {
    padding: 5px 10px;
    background-color: #ff69b4;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-left: 5px;
    border-radius: 5px;
}
.mensaje {
    display: none; 
    position: fixed;
    top: 98%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    background-color: #de00b9;
    color: var(--clr-blanco);
    font-size: .7rem;
  }
@media only screen and (max-width:1250px) {
    .carrito-nav{
        position: absolute;
        right: 15%;
        top: 42px;
    }
}

@media only screen and (max-width:1234px) {
    .ropa-img {
        height: 300px;
    }
}
@media only screen and (max-width:1000px) {
    .cards-ropa_container {
        grid-template-columns: repeat(2,1fr);
    }
    .main-ropa_principal {
        padding: 1rem 1rem;
    }
}
@media only screen and (max-width:850px) {
    .ropa-container {
        padding-left: 0;
    }
    .ropa-img {
        height: 330px;
    }
    .carrito-nav {
        right: 25%;
    }
} 
@media only screen and (max-width:510px) {
    .cards-ropa_container{
        display: flex;
        flex-direction: column;
    }
    .ropa-img {
        height: 480px;
    }
    .carrito-container {
        width: 100%;
    }
} 
body.darkReal .ropa-info_container {
    box-shadow: none;
    background-color: #3a3a3a;
    color: var(--clr-blanco);
}
body.darkReal .ropa-info_container:hover {
    box-shadow: 0px 0px 3px 1px #ff00d4;;
}
body.darkReal .ropa-oferta span {
    color: var(--clr-blanco);
}
body.darkReal .ropa-precio span {
    color: #a7a7a7;
}
body.darkReal .main-ropa_principal h1 {
    color: var(--clr-blanco);
}
body.darkReal .carrito-container {
    background-color: var(--clr-dark);
}