/* ==========================================================================
   TABS - Système d'onglets unifié
   ========================================================================== */

/* Animation d'apparition */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

.rpi-tabs .tab-btn.active {
    color: #c51e3a;
    border-bottom-color: #c51e3a;
    background-color: #fff5f5;
}

/* Onglets pour produits */
.product-tabs .tab-navigation {
    background-color: white;
    border-bottom: 2px solid #e0e0e0;
    padding: 20px;
}

.product-tabs .tab-btn-primary {
    order: -1;
    flex: 1 1 100%;
}
