/* Custom styles beyond Tailwind */

/* Product card hover effect */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Wishlist button animation */
.wishlist-btn {
    transition: transform 0.2s ease;
}

.wishlist-btn:hover {
    transform: scale(1.2);
}

.wishlist-btn.active {
    color: #ef4444; /* Tailwind red-500 */
}

/* Loading spinner animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Product image container */
.product-image-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}