body{
    background:linear-gradient(135deg, #ffffff, #f3ede6);
}

/* CONTENEDOR */
.productoInfo{
    background:linear-gradient(145deg, #ffffff, #f8f6f2);
    border-radius:25px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border:1px solid #e8d6bd;
}

/* BOTON VOLVER */
.btnVolver{
    text-decoration:none;
    color:#6b5e55;
    font-weight:bold;
    background:#f3ede6;
    padding:8px 15px;
    border-radius:10px;
}

/* IMAGENES */
.carousel-item img{
    height:350px;
    object-fit:contain;
    background:#f9f6f2;
    border-radius:20px;
}

/* TEXTO */
.infoProducto h2{
    color:#5a2e1f;
    font-weight:bold;
}

.descripcion{
    color:#555;
    line-height:1.6;
}

/* BOTON */
.btnComprar{
    background:linear-gradient(135deg, #d4af7f, #e8d6bd);
    color:#5a2e1f;
    border:none;
    padding:12px 20px;
    border-radius:12px;
    font-weight:bold;
    transition:0.3s;
}

.btnComprar:hover{
    background:#5a2e1f;
    color:white;
}

/* COLORES */
.circulos{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.color{
    width:30px;
    height:30px;
    border-radius:50%;
    border:2px solid #eee;
    cursor:pointer;
    transition:0.3s;
}
/* HACER LOS BOTONES MÁS GRANDES 🔥 */
.carousel-control-prev,
.carousel-control-next{
    width:15%; /* antes era muy pequeño */
    opacity:1;
}

/* ICONOS MÁS GRANDES */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(0,0,0,0.5);
    border-radius:50%;
    width:45px;
    height:45px;
    background-size:60%;
}

/* MEJOR TOQUE EN CELULAR 📱 */
@media (max-width:768px){
    .carousel-control-prev,
    .carousel-control-next{
        width:25%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:55px;
        height:55px;
    }
}
.color:hover{
    transform:scale(1.2);
    border:2px solid #d4af7f;
}

/* PALETA */
.beige{ background:#e6d3b3; }
.rosado{ background:#ff8fab; }
.lila{ background:#cdb4db; }
.azul-claro{ background:#a0c4ff; }
.gris{ background:#adb5bd; }
.blanco{ background:#ffffff; }

/* RESPONSIVE */
@media (max-width:768px){
    .carousel-item img{
        height:250px;
    }
}

/* COLORES */
.beige{ background:#e6d3b3; }

.rosado{ background:#ff8fab; }

.rosado-claro{ background:#ffc2d1; }

.azul{ background:#3a86ff; }

.azul-claro{ background:#a0c4ff; }

.morado{ background:#8338ec; }

.lila{ background:#cdb4db; }

.gris{ background:#adb5bd; }

.blanco{ background:#ffffff; }

.verde{ background:#95d5b2; }

.colores p{
    color:#5a2e1f;
    font-weight:bold;
}