body{
    background:linear-gradient(135deg, #ffffff, #f3ede6);
    font-family:Georgia;
}

/* ===== BOTON VOLVER ===== */
.btnVolver{
    display:inline-block;
    background:#e8d6bd;
    color:#5a2e1f;
    padding:10px 18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.btnVolver:hover{
    background:#d4af7f;
    color:white;
    transform:translateY(-2px);
}

/* ===== 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;
}

/* ===== CARRUSEL ===== */
.carousel-item img{
    height:350px;
    width:100%;
    object-fit:contain;
    background:#f9f6f2; /* 🔥 limpio, no oscuro */
    border-radius:20px;
    padding:10px;
    transition:0.3s;
}

/* ===== INFO ===== */
.infoProducto h2{
    color:#5a2e1f;
    font-weight:bold;
}

.calificacion{
    margin:10px 0;
    color:#d4af7f;
}

.descripcion{
    color:#555;
    line-height:1.7;
}

/* ===== BOTON PRINCIPAL ===== */
.btnComprar{
    background:linear-gradient(135deg, #d4af7f, #e8d6bd);
    color:#5a2e1f;
    border:none;
    padding:12px 20px;
    border-radius:12px;
    font-weight:bold;
    transition:0.3s;
    box-shadow:0 6px 15px rgba(212,175,127,0.3);
}

.btnComprar:hover{
    background:#5a2e1f;
    color:white;
    transform:translateY(-2px);
}

/* ===== COLORES ===== */
.circulos{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.color{
    width:32px;
    height:32px;
    border-radius:50%;
    border:2px solid #eee;
    cursor:pointer;
    transition:0.3s;
}

/* HOVER FINO */
.color:hover{
    transform:scale(1.2);
    border:2px solid #d4af7f;
    box-shadow:0 0 10px rgba(212,175,127,0.4);
}

/* PALETA */
.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; }

/* TEXTO COLORES */
.colores p{
    color:#5a2e1f;
    font-weight:bold;
    margin-bottom:8px;
}

/* ===== BOTONES GENERALES ===== */
button{
    cursor:pointer;
}

/* 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;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px){

    .carousel-item img{
        height:250px;
    }

    .productoInfo{
        padding:15px;
    }

    .infoProducto{
        margin-top:20px;
    }

}