/* ============================================
   Section Produits Vedettes - Styles Améliorés
   ============================================ */

/* Animation de pulsation pour le badge premium */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.5);
        transform: scale(1.05);
    }
}

.section_title span[style*="background: linear-gradient"] {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Animation des points décoratifs */
@keyframes bounce-dots {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.section_title > div:last-child span {
    animation: bounce-dots 1.5s ease-in-out infinite;
}

.section_title > div:last-child span:nth-child(1) {
    animation-delay: 0s;
}

.section_title > div:last-child span:nth-child(2) {
    animation-delay: 0.2s;
}

.section_title > div:last-child span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Effet de rotation subtile sur les éléments décoratifs de fond */
@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product_section > div[style*="position: absolute"] {
    animation: rotate-slow 30s linear infinite;
}

/* Style amélioré pour les onglets */
.product_tab_button .nav-tabs {
    position: relative;
    padding-bottom: 20px;
}

.product_tab_button .nav-tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

/* Effet de brillance sur le titre - DÉSACTIVÉ */
@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.section_title h2 {
    background-size: 200% auto;
    /* animation: shine 3s linear infinite; */ /* Animation désactivée */
}

/* Hover effect pour les cartes de produits */
.product_section .row > div {
    transition: all 0.3s ease;
}

.product_section .row > div:hover {
    transform: translateY(-5px);
}

/* Effet de dégradé animé sur le soulignement du titre - DÉSACTIVÉ */
@keyframes gradient-shift {
    0%, 100% {
        background: linear-gradient(90deg, #667eea, #764ba2);
    }
    50% {
        background: linear-gradient(90deg, #764ba2, #f093fb);
    }
}

.section_title h2 > span {
    /* animation: gradient-shift 3s ease-in-out infinite; */ /* Animation désactivée */
}

/* Responsive - Ajustements pour mobile */
@media (max-width: 768px) {
    .section_title h2 {
        font-size: 32px !important;
    }
    
    .section_title p {
        font-size: 16px !important;
    }
    
    .product_tab_button .nav-tabs {
        flex-wrap: wrap;
    }
    
    .product_tab_button .nav-link {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
    
    /* Assurer la largeur correcte sur mobile */
    .product_section .row > div {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .product_section .row > div > .wow {
        width: 100% !important;
    }
}

@media (min-width: 576px) {
    .product_section .col-sm-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (min-width: 768px) {
    .product_section .col-md-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    
    .product_section .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (min-width: 992px) {
    .product_section .col-lg-2 {
        flex: 0 0 16.666667% !important;
        max-width: 16.666667% !important;
    }
    
    .product_section .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    
    .product_section .col-lg-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    
    .product_section .col-lg-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Effet de particules flottantes */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(3px);
    }
}

/* Animation de fondu pour les produits au scroll */
.product_section .row > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.product_section .row > div > .wow {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.product_section .row > div > .wow.animated {
    opacity: 1;
    transform: translateY(0);
}

/* S'assurer que les colonnes Bootstrap gardent leur largeur */
.product_section .row {
    margin-left: -15px;
    margin-right: -15px;
}

.product_section .row > div {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

/* ============================================
   OPTIMISATION DES ONGLETS - PAS D'ESPACE VIDE
   ============================================ */

/* Le conteneur des onglets s'adapte exactement au contenu actif */
.product_section .tab-content {
    position: relative;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden;
}

/* TOUS les onglets sont cachés par défaut - AUCUN espace occupé */
.product_section .tab-pane {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}

/* Seul l'onglet actif est visible et prend de l'espace */
.product_section .tab-pane.active.show {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    margin: initial !important;
    padding: initial !important;
    pointer-events: auto !important;
    animation: fadeInTabSmooth 0.3s ease-in-out;
}

/* Animation douce pour l'apparition de l'onglet actif */
@keyframes fadeInTabSmooth {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Assure que pendant la transition, aucun espace vide n'apparaît */
.product_section .tab-content .row {
    min-height: 0 !important;
}

/* Évite les espaces blancs pendant le changement d'onglet */
.product_section .tab-content::after {
    content: '';
    display: table;
    clear: both;
}

/* Style ULTRA-COMPACT pour le message "Aucun produit" dans les onglets */
.product_section .tab-pane .no_products {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product_section .tab-pane .no_products .row {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product_section .tab-pane .no_products .col-12 {
    padding: 0 !important;
    margin: 0 !important;
}

/* Si un onglet contient seulement le message "no products", SUPPRIMER l'espace */
.product_section .tab-pane:has(.no_products) {
    padding: 0 !important;
    margin: 0 !important;
}

/* Le conteneur de l'onglet vide ne prend presque pas d'espace */
.product_section .tab-pane.active.show:has(.no_products) {
    padding: 5px 0 !important;
    margin: 0 !important;
}

/* Forcer le conteneur tab-content à s'adapter aux onglets vides */
.product_section .tab-content:has(.tab-pane.active.show .no_products) {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
}

/* Supprimer tous les espaces inutiles de la structure */
.product_section .tab-pane:has(.no_products) * {
    max-height: auto !important;
}

/* Le message "no products" lui-même avec minimum d'espace */
.product_section .no_products > div {
    margin: 0 !important;
}

/* Animation pour le message "no products" */
.product_section .no_products {
    animation: fadeInCompact 0.3s ease-in-out;
}

@keyframes fadeInCompact {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style pour le conteneur de pagination */
.pagination_wrapper {
    position: relative;
}

.pagination_wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

/* Amélioration du message "Aucun produit" */
.no_products {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 60px 30px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.no_products h3 {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 15px;
}

.no_products p {
    color: #666;
    font-size: 16px;
}

/* Effet de survol sur les boutons d'onglet avec transition fluide */
.nav-tabs .nav-link {
    position: relative;
    overflow: hidden;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-tabs .nav-link:hover::before {
    left: 100%;
}

/* Animation de battement pour le badge premium */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40%, 50% {
        transform: scale(1.05);
    }
}

.section_title > div:first-child span {
    animation: heartbeat 2s ease-in-out infinite;
}

/* Effet de lueur douce au survol des cartes */
.product_section .row > div:hover .product_card {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

/* Accessibilité - Focus visible pour les onglets */
.nav-tabs .nav-link:focus {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 3px;
}

/* Animation de chargement progressive */
.product_section {
    animation: fadeInSection 0.8s ease-out;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

