/* ===========================
   PRODUCTS PAGE STYLES
   =========================== */

.products-hero-bg {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(26,26,26,0.85) 100%),
                      url('../img/Epicerie%20Tropicale%20-Sept-iles%20-%20Hero%201.jpg');
    background-size: cover;
    background-position: center;
}

/* Filter pill état actif */
.filter-pill.is-active {
    background-color: #1A1A1A;
    color: #fff;
    border-color: #1A1A1A;
}
.filter-pill.is-active .filter-count {
    color: #FFD700;
}

/* Cartes produits cachées par filtre */
.product-card.is-hidden {
    display: none;
}

/* Animation in pour les cartes filtrées */
.product-card.is-filtered-in {
    animation: filterFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes filterFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}
