/* =========================================
   1. CONFIGURATION GÉNÉRALE & VARIABLES
   ========================================= */
:root {
    --bg-dark: #050608;
    --bg-panel: rgba(31, 40, 51, 0.6);
    --neon-blue: #66fcf1;
    --neon-orange: #f7931a;
    --text-main: #c5c6c7;
    --text-muted: #8892b0;
    --white: #ffffff;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --font-main: 'Roboto', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }

body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
button { font-family: var(--font-display); }

/* --- SCROLLBAR CUSTOM --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0b0c10; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-blue); }

/* =========================================
   2. ANIMATIONS & PRELOADER
   ========================================= */

/* --- PRELOADER --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #050608; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}
.spinner {
    width: 60px; height: 60px; border: 4px solid rgba(102, 252, 241, 0.2);
    border-radius: 50%; border-top-color: var(--neon-blue);
    animation: spin 1s ease-in-out infinite; margin: 0 auto 20px;
}
.loading-text {
    font-family: var(--font-display); color: var(--neon-blue); letter-spacing: 2px;
    font-size: 1.2rem; animation: pulse 1.5s infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }
.preloader-hidden { opacity: 0; visibility: hidden; }

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   3. HEADER & NAV
   ========================================= */
.crypto-ticker {
    background: #000; color: var(--white); font-size: 0.8rem; padding: 8px 0;
    overflow: hidden; white-space: nowrap; border-bottom: 1px solid #222; font-family: var(--font-display);
}
.ticker-content { display: inline-block; animation: scroll 40s linear infinite; }
.ticker-item { margin: 0 20px; text-transform: uppercase; letter-spacing: 1px; }
.ticker-up { color: #00ff88; }
.ticker-down { color: #ff4444; }
@keyframes scroll { from { transform: translateX(0%); } to { transform: translateX(-50%); } }

header {
    background: rgba(5, 6, 8, 0.95); backdrop-filter: blur(12px);
    padding: 15px 5%; position: sticky; top: 0; width: 100%; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center; border-bottom: var(--glass-border);
}
.logo { font-size: 2rem; font-weight: 700; color: var(--white); letter-spacing: 2px; font-family: var(--font-display); cursor: pointer; }
.logo span { color: var(--neon-orange); }

nav ul { display: flex; gap: 30px; }
nav li { font-weight: 500; cursor: pointer; position: relative; font-size: 1.1rem; font-family: var(--font-display); }
nav li:hover { color: var(--neon-blue); text-shadow: 0 0 10px rgba(102, 252, 241, 0.4); }

.cart-icon { position: relative; }
.cart-badge {
    position: absolute; top: -8px; right: -12px; background: var(--neon-orange); color: white; 
    font-size: 0.7rem; padding: 2px 6px; border-radius: 10px; font-weight: bold;
}

/* PAGES SYSTEM */
.page { display: none; padding: 40px 5%; min-height: 80vh; animation: fadeIn 0.5s ease-out; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


/* =========================================
   4. HOME & SECTIONS
   ========================================= */

/* HERO SECTION */
.hero-section {
    position: relative; overflow: hidden;
    text-align: center; padding: 100px 20px 120px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        linear-gradient(rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.9)),
        linear-gradient(90deg, rgba(102, 252, 241, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(102, 252, 241, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(20deg);
    animation: gridMove 20s linear infinite;
    z-index: 1;
}
@keyframes gridMove { from { background-position: 0 0; } to { background-position: 0 120px; } }

.badge-pro {
    display: inline-block; padding: 5px 15px; border-radius: 20px; background: rgba(102, 252, 241, 0.1); 
    color: var(--neon-blue); font-size: 0.8rem; font-weight: bold; text-transform: uppercase; margin-bottom: 20px; border: 1px solid rgba(102, 252, 241, 0.3); position: relative; z-index: 2;
}
.hero-title { 
    font-size: 4.5rem; line-height: 1; color: var(--white); margin-bottom: 25px; font-family: var(--font-display); text-transform: uppercase;
    background: -webkit-linear-gradient(#fff, #8892b0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; z-index: 2;
}
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 50px; position: relative; z-index: 2; }

/* BOUTONS */
.btn { padding: 0 40px; height: 50px; border: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); font-size: 1rem; position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center;}
.btn-primary { background: var(--neon-blue); color: #0b0c10; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 25px rgba(102, 252, 241, 0.4); }
.btn-outline { background: transparent; border: 1px solid var(--text-muted); color: var(--white); margin-left: 20px;}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* BRANDS */
.brands-section {
    margin-top: -50px; padding: 30px 5%; background: #080a0d; border-top: var(--glass-border); border-bottom: var(--glass-border);
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; position: relative; z-index: 3;
}
.brand-item { font-size: 1.2rem; font-weight: bold; color: #444; transition: 0.4s; display: flex; align-items: center; gap: 10px; cursor: default; }
.brand-item:hover { color: var(--white); text-shadow: 0 0 15px rgba(255,255,255,0.3); }

/* ABOUT */
.about-section { margin: 80px 0; display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.about-content { flex: 1; min-width: 300px; }
.about-visual { 
    flex: 1; min-width: 300px; height: 300px; 
    background: linear-gradient(135deg, rgba(31, 40, 51, 0.8), rgba(5, 6, 8, 0.9));
    border: var(--glass-border); border-radius: 20px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.section-title-large { font-size: 2.5rem; color: white; font-family: var(--font-display); margin-bottom: 20px; line-height: 1.1; text-transform: uppercase;}
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-item { display: flex; align-items: center; color: white; font-weight: 500; }
.feature-item i { color: var(--neon-orange); margin-right: 15px; background: rgba(247, 147, 26, 0.1); padding: 10px; border-radius: 5px; }
.text-about { color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; }

/* TEAM */
.team-grid { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; margin-top: 50px; }
.team-card {
    background: var(--bg-panel); border: var(--glass-border); border-radius: 20px;
    width: 400px; padding: 40px; text-align: center; position: relative; overflow: hidden;
    transition: 0.4s;
}
.team-card:hover { transform: translateY(-10px); }
.team-photo {
    width: 150px; height: 150px; margin: 0 auto 25px; border-radius: 50%;
    background: #111; border: 2px solid #333; display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: #555; position: relative; z-index: 2; padding: 0; overflow: hidden;
}
.real-photo { width: 100%; height: 100%; object-fit: cover; }
.role-badge { display: inline-block; padding: 5px 15px; border-radius: 15px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.card-benjamin:hover { border-color: var(--neon-blue); box-shadow: 0 10px 40px rgba(102, 252, 241, 0.15); }
.card-benjamin .role-badge { background: rgba(102, 252, 241, 0.1); color: var(--neon-blue); border: 1px solid rgba(102, 252, 241, 0.3); }
.card-benjamin .team-photo { border-color: var(--neon-blue); color: var(--neon-blue); box-shadow: 0 0 20px rgba(102, 252, 241, 0.2); }
.card-edward:hover { border-color: var(--neon-orange); box-shadow: 0 10px 40px rgba(247, 147, 26, 0.15); }
.card-edward .role-badge { background: rgba(247, 147, 26, 0.1); color: var(--neon-orange); border: 1px solid rgba(247, 147, 26, 0.3); }
.card-edward .team-photo { border-color: var(--neon-orange); color: var(--neon-orange); box-shadow: 0 0 20px rgba(247, 147, 26, 0.2); }
.team-name { font-size: 2rem; color: white; margin-bottom: 10px; font-family: var(--font-display); }
.team-bio { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; margin-bottom: 30px; min-height: 80px;}
.skill-icons { display: flex; justify-content: center; gap: 20px; font-size: 1.5rem; color: #555; }
.card-benjamin .skill-icons i:hover { color: var(--neon-blue); transform: scale(1.2); transition: 0.3s; }
.card-edward .skill-icons i:hover { color: var(--neon-orange); transform: scale(1.2); transition: 0.3s; }


/* =========================================
   5. CATALOGUE & PRODUITS (CORRECTION IMAGES)
   ========================================= */

.shop-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.filter-btn { background: transparent; color: white; border: 1px solid #333; padding: 8px 20px; cursor: pointer; margin-left: 5px; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px;}

.product-card {
    background: var(--bg-panel); border: var(--glass-border); border-radius: 12px; overflow: hidden;
    transition: 0.4s; position: relative; cursor: pointer;
}
.product-card:hover { transform: translateY(-10px); border-color: var(--neon-blue); box-shadow: 0 15px 40px rgba(0,0,0,0.5); }

/* --- CADRE IMAGE CATALOGUE OPTIMISÉ --- */
.card-img { 
    height: 250px; 
    width: 100%; 
    background: #ffffff; /* Fond blanc pour les JPG produits */
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
/* Style alternatif si c'est une icône (via JS) */
.card-img i { font-size: 4rem; color: #333; }

.product-card:hover .card-img img { transform: scale(1.05); }
.product-card:hover .card-img i { color: var(--neon-blue); }

.card-body { padding: 25px; }
.card-stock { font-size: 0.75rem; color: #00ff88; font-weight: bold; display: block; margin-bottom: 10px; }
.card-title { color: var(--white); font-size: 1.3rem; margin-bottom: 5px; font-family: var(--font-display); }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.price { font-size: 1.4rem; color: var(--neon-blue); font-weight: 700; }
.btn-add-mini { 
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--text-muted); background: transparent; color: var(--white); 
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.btn-add-mini:hover { background: var(--neon-orange); border-color: var(--neon-orange); transform: rotate(90deg); color: #fff; }


/* =========================================
   6. PAGE DÉTAIL PRODUIT (CORRECTIF MAJEUR)
   ========================================= */

.product-detail-layout { display: flex; gap: 50px; flex-wrap: wrap; }

/* Cadre Image Produit Détail */
.detail-image-box {
    flex: 1; 
    min-width: 350px; 
    height: auto; 
    min-height: 350px; /* Taille minimale correcte */
    background: var(--bg-panel); /* Le JS le passera en blanc si c'est une image */
    border: var(--glass-border); 
    border-radius: 20px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    overflow: hidden;
    padding: 20px; /* Padding pour ne pas toucher les bords */
}
/* Style par défaut pour les icônes */
.detail-image-box i { font-size: 10rem; color: var(--white); z-index: 2; text-shadow: 0 0 50px rgba(102, 252, 241, 0.5); }
.glow-effect { position: absolute; width: 250px; height: 250px; background: var(--neon-blue); border-radius: 50%; filter: blur(120px); opacity: 0.25; z-index: 1; }

/* Colonne Infos */
.detail-info-box { flex: 1; min-width: 350px; }
.detail-title { font-size: 3rem; color: white; margin-bottom: 10px; line-height: 1; font-family: var(--font-display); text-transform: uppercase;}
.detail-price { font-size: 2.5rem; color: var(--neon-blue); font-weight: bold; margin-bottom: 25px; font-family: var(--font-display); }
.specs-table ul li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #ccc; }

/* --- BARRE D'ACTION (BOUTON) CORRIGÉE --- */
.detail-actions { 
    display: flex; 
    gap: 20px; 
    margin-top: 30px; 
    height: 55px; /* HAUTEUR FIXE POUR ÉVITER L'ÉCRASEMENT */
    align-items: stretch;
}

.qty-selector { display: flex; border: 1px solid #333; border-radius: 5px; overflow: hidden; height: 100%; }
.qty-selector button { width: 50px; background: #111; border: none; color: white; font-size: 1.2rem; cursor: pointer; transition: 0.2s; height: 100%; display: flex; align-items: center; justify-content: center;}
.qty-selector button:hover { background: #222; }
.qty-selector input { width: 60px; background: black; border: none; color: white; text-align: center; font-weight: bold; font-size: 1.1rem; height: 100%; }

/* Bouton Ajouter au panier large */
#add-btn {
    flex: 1; /* Prend toute la place restante */
    height: 100%; /* Force la hauteur */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; margin-bottom: 30px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }


/* =========================================
   7. CART & FAQ & FOOTER ADD-ONS
   ========================================= */

.cart-summary { background: var(--bg-panel); padding: 40px; border-radius: 10px; border: var(--glass-border); text-align: right; }

/* FAQ */
.faq-section { margin-top: 50px; }
.faq-item { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question {
    padding: 20px; background: rgba(255,255,255,0.05); cursor: pointer; color: white; font-weight: bold;
    display: flex; justify-content: space-between; align-items: center; border-radius: 5px; transition: 0.3s;
}
.faq-question:hover { background: rgba(102, 252, 241, 0.1); color: var(--neon-blue); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: 0.4s ease-out; padding: 0 20px; color: var(--text-muted); line-height: 1.6;
}
.faq-answer.active { max-height: 200px; padding: 20px; }

/* FOOTER */
footer { background: #020203; padding: 80px 5% 30px; margin-top: 100px; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; font-family: var(--font-display); text-transform: uppercase;}
.footer-col ul li { margin-bottom: 12px; color: var(--text-muted); cursor: pointer; transition: 0.2s; }
.footer-col ul li:hover { color: var(--neon-orange); padding-left: 5px; }

/* TOAST */
#toast {
    visibility: hidden; min-width: 300px; background-color: var(--neon-orange); color: #fff; text-align: center; border-radius: 4px; padding: 16px; 
    position: fixed; z-index: 2000; left: 50%; bottom: 30px; transform: translateX(-50%); font-weight: bold;
}
#toast.show { visibility: visible; animation: fadein 0.5s, fadeout 0.5s 2.5s; }
@keyframes fadein { from {bottom: 0; opacity: 0;} to {bottom: 30px; opacity: 1;} }
@keyframes fadeout { from {bottom: 30px; opacity: 1;} to {bottom: 0; opacity: 0;} }

/* WHATSAPP */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white;
    padding: 12px 25px 12px 15px; border-radius: 50px; font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000;
    display: flex; align-items: center; gap: 10px; text-decoration: none;
    transition: 0.3s; animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.05); background-color: #20ba5a; }
.whatsapp-text { font-size: 1rem; font-weight: bold; font-family: var(--font-main); }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
@media (max-width: 768px) { .whatsapp-text { display: none; } .whatsapp-float { padding: 15px; border-radius: 50%; } }

/* =========================================
   8. PAGE LÉGALE (MENTIONS & RGPD)
   ========================================= */

.legal-container {
    max-width: 900px; margin: 40px auto 80px; padding: 0 20px; position: relative; z-index: 2; animation: fadeIn 0.8s ease-out;
}
.legal-main-title {
    font-family: var(--font-display); font-size: 2.5rem; color: var(--white);
    margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--neon-blue); display: inline-block; text-transform: uppercase; letter-spacing: 1px;
}
.legal-intro {
    font-size: 1.1rem; margin-bottom: 40px; color: var(--text-muted); font-style: italic; border-left: 2px solid var(--neon-orange); padding-left: 15px;
}
.legal-block {
    margin-bottom: 30px; background: var(--bg-panel); border: var(--glass-border); padding: 25px; border-radius: 12px; transition: 0.3s;
}
.legal-block:hover { border-color: var(--neon-blue); transform: translateX(5px); }
.legal-block h2 { color: var(--neon-blue); font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 15px; text-transform: uppercase; }
.legal-block p { line-height: 1.6; margin-bottom: 10px; color: #ccc; }
.legal-block ul { list-style: none; margin-left: 10px; margin-bottom: 15px; }
.legal-block li { margin-bottom: 8px; color: var(--text-muted); position: relative; padding-left: 20px; }
.legal-block li::before { content: '>'; position: absolute; left: 0; color: var(--neon-orange); font-weight: bold; }
.legal-block a { color: var(--neon-orange); text-decoration: none; font-weight: bold; border-bottom: 1px dotted var(--neon-orange); }
.legal-block a:hover { color: var(--white); border-bottom-style: solid; }
.legal-separator { border: 0; height: 1px; background: linear-gradient(to right, transparent, var(--neon-orange), transparent); margin: 60px 0; opacity: 0.5; }
.legal-section { margin-bottom: 60px; }
/* --- GALERIE PHOTOS --- */
.thumbnails-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center; /* Centre les miniatures */
    flex-wrap: wrap;
}

.thumb-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #fff; /* Fond blanc comme la grande image */
    padding: 5px;
    cursor: pointer;
    object-fit: contain;
    transition: 0.3s;
    opacity: 0.6; /* Un peu transparent quand pas sélectionné */
}

.thumb-img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.thumb-img.active-thumb {
    opacity: 1;
    border: 2px solid var(--neon-blue); /* Bordure Néon pour l'image active */
    box-shadow: 0 0 10px rgba(102, 252, 241, 0.3);
}
/* --- FORMULAIRE DE COMMANDE --- */
.order-form-hidden {
    display: none; /* Caché par défaut */
    background: var(--bg-panel);
    border: 1px solid var(--neon-blue);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    animation: fadeIn 0.5s ease-out;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #0b0c10;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
    font-family: var(--font-main);
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--neon-blue);
    outline: none;
    box-shadow: 0 0 10px rgba(102, 252, 241, 0.2);
}
/* --- FORMULAIRE PRO --- */
.order-form-hidden {
    display: none;
    background: linear-gradient(145deg, #1f2833, #0b0c10);
    border: 1px solid var(--neon-blue);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeIn 0.5s ease-out;
}

.form-row { display: flex; gap: 20px; }
.form-group.half { flex: 1; }

.form-group label {
    display: block; color: var(--text-muted); margin-bottom: 8px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px; background: rgba(0,0,0,0.3);
    border: 1px solid #333; color: white; border-radius: 5px;
    font-family: var(--font-main); transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--neon-blue); outline: none; background: rgba(0,0,0,0.5);
}

.action-buttons {
    display: flex; flex-direction: column; gap: 15px; margin-top: 30px;
}

/* Bouton WhatsApp Spécifique */
.btn-whatsapp {
    background: #25D366; color: white; border: none; padding: 12px;
    font-weight: bold; border-radius: 5px; cursor: pointer; text-transform: uppercase;
    transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-whatsapp:hover { background: #1ebe57; box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }

@media (max-width: 600px) {
    .form-row { flex-direction: column; gap: 0; }
}
/* --- STYLE MODAL CHOIX MAIL --- */
.mail-choice-hidden {
    display: none;
}

#mail-choice-modal {
    background: #000;
    padding: 25px;
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    margin-top: 20px;
}

.btn-mail-choice {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    background: #2c353f; /* Fond sombre */
    color: white;
    transition: 0.3s;
}

.btn-mail-choice:hover {
    background: var(--neon-orange);
}

.btn-mail-choice i {
    margin-right: 8px;
}
/* --- BOUTON COPIER EMAIL --- */
.btn-copy-email {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 25px;
    background: rgba(247, 147, 26, 0.15); /* Orange très discret */
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange);
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-copy-email:hover {
    background: var(--neon-orange);
    color: var(--bg-dark);
}