/**
 * ========================================
 * PROFIL OLFACTIF V2.0 - STYLE TOM FORD
 * Design luxe sophistiqué pour Salnea
 * ========================================
 * 
 * Architecture:
 * - Niveau 1: Famille principale (encadré élégant centré)
 * - Niveau 2: Accords dominants (cards luxe)
 * - Niveau 3: Notes clés (dots médians)
 * 
 * Basé sur l'option Tom Ford - Sophistication maximale
 * Mis à jour le 24/11/2025
 */

/* ========================================
   STRUCTURE GÉNÉRALE - TOM FORD LUXURY
   ======================================== */

.profil-olfactif-v2-section {
    padding: 60px 0;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    border-radius: 8px;
}

/* ========================================
   NIVEAU 1 : HEADER LUXUEUX CENTRÉ
   ======================================== */

.olfactive-header-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #000;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.olfactive-header-v2 .description-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Ligne décorative sous le titre */
.olfactive-header-v2 .description-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #999;
    margin: 12px auto 0;
}

/* Badge famille - Encadré élégant */
.famille-badge-main-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: white;
    color: #000;
    border: 2px solid #000;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.famille-badge-main-v2:hover {
    background: #000;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.famille-badge-main-v2 svg {
    display: none;
}

.famille-badge-main-v2 span {
    color: inherit;
}

/* ========================================
   NIVEAU 2 : ACCORDS EN CARDS ÉLÉGANTES
   ======================================== */

.accords-section-v2 {
    margin-bottom: 45px;
}

.section-subtitle-v2 {
    display: none;
}

/* Cards pour les accords */
.accords-grid-v2 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.accord-badge-v2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 28px;
    background: white !important;
    color: #000;
    border: 1.5px solid #d0d0d0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    min-height: 80px;
    min-width: 140px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.accord-badge-v2::before {
    display: none;
}

.accord-badge-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    border-color: #000;
    color: #000;
}

/* ========================================
   NIVEAU 3 : NOTES AVEC DOTS MÉDIANS
   ======================================== */

.notes-section-v2 {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.notes-section-v2 .section-subtitle-v2 {
    display: none;
}

.notes-list-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.note-badge-v2 {
    display: inline;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    font-family: Georgia, serif;
}

.note-badge-v2::after {
    content: ' · ';
    color: #ccc;
    margin: 0 6px;
    font-weight: 400;
}

.note-badge-v2:last-child::after {
    display: none;
}

.note-badge-v2:hover {
    color: #000;
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
}

/* ========================================
   RESPONSIVE MOBILE
   ======================================== */

@media (max-width: 768px) {
    .profil-olfactif-v2-section {
        padding: 40px 20px;
    }
    
    .olfactive-header-v2 {
        margin-bottom: 35px;
        padding-bottom: 20px;
    }
    
    .olfactive-header-v2 .description-title {
        font-size: 13px;
        letter-spacing: 3px;
    }
    
    .famille-badge-main-v2 {
        padding: 12px 28px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .accords-grid-v2 {
        gap: 12px;
    }
    
    .accord-badge-v2 {
        padding: 18px 20px;
        font-size: 12px;
        min-height: 70px;
        min-width: 120px;
    }
    
    .note-badge-v2 {
        font-size: 12px;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .profil-olfactif-v2-section {
        padding: 30px 15px;
    }
    
    .accords-grid-v2 {
        flex-direction: column;
        align-items: center;
    }
    
    .accord-badge-v2 {
        width: 100%;
        max-width: 200px;
    }
}

/* ========================================
   ANIMATIONS ÉLÉGANTES
   ======================================== */

.accord-badge-v2 {
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) backwards;
}

.accord-badge-v2:nth-child(1) { animation-delay: 0.1s; }
.accord-badge-v2:nth-child(2) { animation-delay: 0.2s; }
.accord-badge-v2:nth-child(3) { animation-delay: 0.3s; }

.note-badge-v2 {
    animation: fadeIn 0.8s ease backwards;
}

.note-badge-v2:nth-child(1) { animation-delay: 0.4s; }
.note-badge-v2:nth-child(2) { animation-delay: 0.45s; }
.note-badge-v2:nth-child(3) { animation-delay: 0.5s; }
.note-badge-v2:nth-child(4) { animation-delay: 0.55s; }
.note-badge-v2:nth-child(5) { animation-delay: 0.6s; }
.note-badge-v2:nth-child(6) { animation-delay: 0.65s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   ÉTATS SPÉCIAUX
   ======================================== */

/* État "aucun accord" ou "aucune note" */
.profil-olfactif-v2-section .empty-state {
    text-align: center;
    padding: 30px;
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .profil-olfactif-v2-section {
        page-break-inside: avoid;
        background: white !important;
    }
    
    .famille-badge-main-v2,
    .accord-badge-v2,
    .note-badge-v2 {
        box-shadow: none !important;
        transform: none !important;
    }
}
