/* === MODAL APERCU PRODUITS – VERSION CLAIRE ET LUXE === */

.apercu-content {
    background: #fdfdfb;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
}

/* 🎯 HERO INTRO */
.apercu-hero {
    background-image: url('/assets/images/produits/bg-apercu.png');
    background-size: cover;
    background-position: center;
    height: 240px;
    position: relative;
    filter: brightness(0.85);
}

.apercu-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    text-align: center;
    color: white;
    backdrop-filter: blur(4px);
    font-family: var(--font-title);
}

.apercu-hero-overlay h1 {
    font-size: 28px;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.apercu-hero-overlay p {
    margin-top: 12px;
    font-size: 16px;
    font-style: italic;
    color: #f5e179;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

/* 🏷️ TITRE DYNAMIQUE */
.apercu-title,
#modalApercuTitre {
    text-align: center;
    font-family: var(--font-title);
    font-size: 26px;
    position: relative;
    margin-bottom: 20px;
    color: #f5e179;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.apercu-title::after,
#modalApercuTitre::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    margin: 10px auto 0;
    background: linear-gradient(to right, #d1aa72, #f5e179);
    border-radius: 2px;
    animation: underlineExpand 3.5s ease-in-out infinite alternate;
}

@keyframes underlineExpand {
    0% { width: 50px; opacity: 0.6; }
    100% { width: 90px; opacity: 1; }
}

/* 📝 INTRO */
.apercu-intro {
    text-align: center;
    padding: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.apercu-intro p {
    font-size: 16px;
    color: #cccccc;
    font-style: italic;
    line-height: 1.7;
}

/* TITRE DYNAMIQUE */
.apercu-title,
#modalApercuTitre {
    font-size: 28px;
    color: #ca9b50;
    letter-spacing: 1.5px;
    font-family: var(--font-title);
    text-shadow: none;
    margin-bottom: 20px;
}

.apercu-title::after,
#modalApercuTitre::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    margin: 10px auto 0;
    background: linear-gradient(to right, #d1aa72, #f5e179);
    border-radius: 2px;
    animation: underlineExpand 3.5s ease-in-out infinite alternate;
}

@keyframes underlineExpand {
    0% { width: 50px; opacity: 0.6; }
    100% { width: 90px; opacity: 1; }
}

/* INTRO TEXTE */
.apercu-intro p {
    font-size: 17px;
    color: #444;
    font-style: italic;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* CARTES PRODUITS */
.produit-luxe {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.produit-luxe.hoverable:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.produit-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* BADGE */
.produit-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(to right, #ca9b50, #f5e179);
    color: #111;
    font-size: 12px;
    padding: 6px 14px;
    border: 1px solid #c2b280;
    border-radius: 20px;
    font-weight: 600;
    font-family: var(--font-body);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    z-index: 0;
}

.produit-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 75%;
    height: 100%;
    background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.1) 100%
    );
    transform: skewX(-25deg);
    animation: shine-badge 2.5s infinite;
    pointer-events: none;
    z-index: 1;
}
.produit-badge span {
    position: relative;
    z-index: 2;
}

@keyframes shine-badge {
    0% { left: -75%; }
    100% { left: 100%; }
}

.produit-luxe .card-body {
    padding: 16px;
    text-align: center;
    background-color: #fff;
}

.produit-luxe .card-body h5 {
    color: #ca9b50;
    font-size: 17px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.produit-luxe .card-body p {
    font-size: 14px;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}


/* CTA BLOC MEMBRE */
.bloc-membre {
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.bloc-membre .membre-icon {
    font-size: 48px;
    color: #f5e179;
    margin-bottom: 16px;
}

.bloc-membre h3 {
    font-size: 24px;
    color: #f5e179;
}

.bloc-membre p {
    font-size: 16px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 20px;
}

.bloc-membre .btn-outline-primary {
    border-color: #f5e179;
    color: #f5e179;
    font-weight: bold;
    padding: 12px 28px;
    transition: all 0.3s ease-in-out;
}

.bloc-membre .btn-outline-primary:hover {
    background-color: #f5e179;
    color: #000;
}

