/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A child theme for GeneratePress.
Version: 1.0.0
Template: generatepress
*/

/* Custom Product Card Styles */

.card-buttons {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(10px);
}

.product-card {
    border: 2px solid transparent;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-card:hover {
    border-color: #F3F2EC;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover .card-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-card .text-yellow-400 {
    color: #facc15;
}

.product-card .bg-pink-600 {
    background-color: #db2777;
}

.product-card .text-green-600 {
    color: #16a34a;
}