/* Altura dinámica del Slide */
@media (max-width: 768px) {
    .carousel-item { height: 50vh !important; }
    .carousel-caption h2 { font-size: 2rem; }
}

/* Tarjetas de Producto Modernas */
.product-card {
    border: none;
    border-radius: 15px;
    transition: all 0.4s ease;
    background: #fff;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-card img {
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Badge de Oferta */
.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4757;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 2;
}