/* =====================================================
   Hi Beirut Marrakech — Page Notre Carte
   ===================================================== */

/* ---------- Filtres catégorie ---------- */
.filter-btn {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #3D3D3D;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 22px;
    border-radius: 9999px;
    cursor: pointer;
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    color: #B8960C;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #D4AF37, #B8960C);
    border-color: #B8960C;
    color: #1A1A1A;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

/* ---------- Cartes produits ---------- */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .price-tag {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.25rem;
    color: #B8960C;
}

/* ---------- Filtres sticky ---------- */
.filters-sticky {
    position: sticky;
    top: 96px;
    z-index: 30;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* ---------- Animation fade-in produits ---------- */
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.product-card.animate-in {
    animation: fadeInScale 0.4s ease-out forwards;
}
