/**
 * Products Page Styles
 * Specific styles for the products listing page
 */

/* Product Card */
.product-card {
    /* Add custom product card styles here if needed */
}

/* Product Image */
.product-image {
    transition: transform 0.3s ease-in-out;
}

.product-image:hover {
    transform: scale(1.05);
}

/* Buy Button Animation */
.buy-button {
    transition: all 0.2s ease-in-out;
}

.buy-button:active {
    transform: scale(0.95);
}
