/* Optimized Creative Enhancements - Reduced for Performance */

/* Product card hover shadow */
.product-card:hover {
    box-shadow: 0 12px 28px rgba(46, 204, 113, 0.3);
}

/* Search bar focus */
.search-bar:focus-within {
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
    transition: box-shadow 0.3s;
}

/* Badge pulse - simplified */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.product-badge {
    animation: pulse 3s infinite;
}

/* Smooth transitions */
a,
button,
.card {
    transition: all 0.3s ease;
}