/* =========================
   BOUTIQUE SECTION - AWARD WINNING
   ========================= */

/* HEADER BOUTIQUE - FOND OPAQUE POUR SCROLL */
#top-nav {
    background: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#top-nav .menu-cloison {
    display: none !important;
    /* On cache l'image cloison sur la boutique */
}

.boutique-section {
    position: relative;
    padding: 120px 60px 160px;
    /* Réduit de 180px à 120px pour compenser le bandeau vertical */
    margin-top: 0;
    background: transparent !important;
    z-index: 50 !important;
    /* AU-DESSUS DU BROUILLARD (z-index: 2) */
    min-height: 100vh;
}

.boutique-section .section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 51;
}

.boutique-section .subtitle {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    color: var(--jade);
    margin-bottom: 24px;
    opacity: 0.82;
}

.boutique-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: var(--ivory);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-bottom: 32px;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.85;
}

/* FILTRES */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 51;
}

.filter-item {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.filter-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--jade);
    transition: width 0.3s ease;
}

.filter-item:hover,
.filter-item.active {
    opacity: 1;
    color: var(--ivory);
}

.filter-item.active::after {
    width: 80%;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 51;
}

.product-card {
    position: relative;
    aspect-ratio: 2 / 3;
    height: auto !important;
    /* CORRECTION RESPONSIVE */
    text-decoration: none;

    /* GLASSMORPHISM IDENTIQUE AUX CARTES UNIVERS */
    background: rgba(242, 239, 233, 0.02);
    backdrop-filter: blur(14px) saturate(125%);
    -webkit-backdrop-filter: blur(14px) saturate(125%);
    border-radius: 3px;
    border: 1px solid rgba(74, 93, 82, 0.14);

    box-shadow:
        0 14px 52px rgba(0, 0, 0, 0.52),
        0 3px 10px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(242, 239, 233, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.18);

    overflow: hidden;
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, box-shadow, border-color;
}

.product-card:hover {
    border-color: rgba(74, 93, 82, 0.4);
    box-shadow:
        0 22px 68px rgba(0, 0, 0, 0.68),
        0 5px 18px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(242, 239, 233, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    transform: translateY(-14px);
}

.product-image {
    position: absolute;
    inset: 0;
    /* Plus de bordure blanche interne pour un look plus immersif */
    background-size: cover;
    background-position: top center;
    background-color: #040303;
    transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(1.05) contrast(1.05) saturate(1);
    /* Plus de lumière et de couleurs par défaut */
    border-radius: 0;
    z-index: 1;
}

.product-card:hover .product-image {
    filter: brightness(1.12) contrast(1.1) saturate(1.1);
    transform: scale(1.05);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    background: linear-gradient(to top,
            rgba(4, 3, 3, 0.98) 0%,
            rgba(4, 3, 3, 0.88) 45%,
            transparent 100%);
    z-index: 3;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--ivory);
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    transition: color 0.4s ease;
}

.product-card:hover .product-name {
    color: var(--gold-subtle);
}

.product-status {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--gold-subtle);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.8;
    padding: 4px 0;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px;
    }
}

@media (max-width: 768px) {
    .boutique-section {
        padding: 140px 28px 120px;
    }

    .boutique-section h1 {
        font-size: 44px;
    }

    .filter-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}