/* Filter Buttons */
.btn-filter {
    border: 1px solid #198754;
    color: #198754;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background-color: #198754;
    color: white;
    box-shadow: 0 4px 6px rgba(25, 135, 84, 0.2);
}

/* 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) !important;
}