
/* === Animación global de aparición === */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Tarjeta de producto === */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 10px;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.10);
    animation: fadeInUp 0.8s ease both;
}

/* Hover con efecto elegante */
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Borde verde animado */
.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: #28a745;
    transition: width 0.35s ease;
}

.product-card:hover::after {
    width: 100%;
}

/* === Imagen del producto === */
.product-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform .4s ease, filter .3s ease;
}

/* Efecto zoom suave al pasar */
.product-card:hover .product-img {
    transform:
    
}