/**
 * Styles pour les onglets du compte client
 */

/* Container principal des onglets */
.my-account-tabs-container {
    width: 100%;
    margin: 0 auto;
}

/* Navigation des onglets */
.account-tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}

/* Boutons d'onglets */
.account-tab-btn {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.account-tab-btn:hover {
    color: #151449;
    background-color: #f5f5f5;
}

.account-tab-btn.active {
    color: #151449;
    border-bottom-color: #151449;
    font-weight: 600;
}

/* Conteneur des panneaux */
.account-tabs-content {
    position: relative;
    min-height: 300px;
}

/* Panneaux d'onglets */
.account-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.account-tab-panel.active {
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .account-tabs-navigation {
        gap: 5px;
    }

    .account-tab-btn {
        padding: 12px 15px;
        font-size: 14px;
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .account-tab-btn {
        flex: 1 1 100%;
        min-width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .account-tab-btn.active {
        background-color: #f5f5f5;
    }

    .account-tabs-navigation {
        flex-direction: column;
        border-bottom: none;
    }
}

/* Assurer que les contenus des onglets sont bien affichés */
.account-tab-panel h2,
.account-tab-panel h3 {
    margin-top: 0;
}

/* Style pour les messages d'information */
.account-tab-panel .woocommerce-message,
.account-tab-panel .woocommerce-info,
.account-tab-panel .woocommerce-error {
    margin-bottom: 20px;
}

/* Loader pour le chargement AJAX */
.tab-loading {
    text-align: center;
    padding: 40px 20px;
}

.tab-loading p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.tab-loading p:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #151449;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}