/* ----------------------------------------- */

/* shop.css - hover effects and keyframes only */

/* Image hover */
.ht-product-image img {
    transition: transform 0.3s ease;
}

.ht-product:hover .ht-product-image img {
    transform: scale(1.05) translateY(-3px);
}

/* Button hover */
.ht-product-action a {
    transition: transform 0.3s ease;
}

.ht-product-action a:hover {
    transform: translateY(-3px);
}

/* Keyframes for fade-in via JS */
@keyframes htFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
