body{
    background:linear-gradient(135deg,#ffffff,#f5efe6);
    font-family:"Times New Roman", serif;
}

/* CONTENEDOR */
.productoInfo{
    background:linear-gradient(145deg,#ffffff,#fffaf5);
    border-radius:25px;
    padding:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    border:1px solid #e8d6bd;
}

/* BOTON VOLVER (ELEGANTE) */
.btnVolver{
    display:inline-block;
    background:transparent;
    color:#5d4037;
    padding:10px 18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    border:1px solid #d4af7f;
    transition:0.3s;
}

.btnVolver:hover{
    background:#d4af7f;
    color:white;
    box-shadow:0 5px 15px rgba(212,175,127,0.4);
}

/* IMAGENES */
.carousel-item img{
    height:350px;
    object-fit:contain;
    background:#f5efe6;
    border-radius:20px;
    padding:10px;
    box-shadow:0 0 25px rgba(212,175,127,0.25);
}

/* TEXTO */
.infoProducto h2{
    color:#3e2723;
    font-weight:bold;
}

.calificacion{
    margin:10px 0;
    color:#c9a46b;
}

.descripcion{
    color:#444;
    line-height:1.7;
}
.btnWpp{
    background:linear-gradient(135deg,#25D366,#1ebe5d);
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:14px;
    font-weight:bold;
    letter-spacing:0.5px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(37,211,102,0.3);
    position:relative;
    overflow:hidden;
}

/* ICONO */
.btnWpp i{
    font-size:18px;
}

/* EFECTO BRILLO ✨ */
.btnWpp::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);
    transition:0.5s;
}

.btnWpp:hover::after{
    left:100%;
}
/* 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;
    }
}
/* HOVER */
.btnWpp:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* LISTA */
.usos ul{
    padding-left:18px;
    color:#555;
}

/* PERSONALIZADO */
.personalizado{
    background:#fffaf5;
    padding:12px;
    border-radius:12px;
    border-left:4px solid #d4af7f;
    font-style:italic;
}

/* BOTON COMPRAR (BONITO DE VERDAD 😮‍🔥) */
.btnComprar{
    background:linear-gradient(135deg,#f5efe6,#e8d6bd);
    color:#3e2723;
    border:none;
    padding:12px 22px;
    border-radius:14px;
    font-weight:bold;
    letter-spacing:0.5px;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

/* EFECTO BRILLO ✨ */
.btnComprar::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.6),transparent);
    transition:0.5s;
}

.btnComprar:hover::after{
    left:100%;
}

/* HOVER */
.btnComprar:hover{
    background:#3e2723;
    color:white;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* ===== FLECHAS PREMIUM ✨ ===== */
.carousel-control-prev,
.carousel-control-next{
    width:10%;
    opacity:1;
}

/* CIRCULO SUAVE */
.carousel-control-prev::before,
.carousel-control-next::before{
    content:"";
    position:absolute;
    width:55px;
    height:55px;
    background:rgba(255,255,255,0.7);
    border-radius:50%;
    border:1px solid #d4af7f;
    backdrop-filter:blur(6px);
    transition:0.3s;
}

/* ICONOS */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter:invert(20%);
    width:22px;
    height:22px;
    z-index:1;
}

/* HOVER */
.carousel-control-prev:hover::before,
.carousel-control-next:hover::before{
    background:#d4af7f;
    transform:scale(1.1);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon{
    filter:invert(100%);
}

/* RESPONSIVE */
@media (max-width:768px){
    .carousel-item img{
        height:250px;
    }
}