.wallet-container {
    margin-top: 80px;
    margin-left: 160px;
    margin-bottom: 70px;
}

.instructions-title {
    text-align: left;
    margin-bottom: 30px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

/* Ligne verticale */
.timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--text-color);
}

/* Item ligne */
.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

/* Point rond */
.timeline-dot {
    position: absolute;
    left: -32px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--bg-color);
    border: 3px solid var(--titre-color);
    border-radius: 50%;
}

/* Contenu texte */
.timeline-content h4 {
    margin: 0;
    font-size: 16px;
}

.timeline-content p {
    margin: 5px 0 0;
    color: var(--text-color);
    font-size: 14px;
}

/* Responsive mobile */
@media(max-width:600px) {

    .instructions {
        padding: 15px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -26px;
    }
}

.tabs-row {
    display: flex;
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    width: 100%;
    overflow-x: auto;
}

.tab-option {
    margin: 0 10px;
    font-size: var(--taille-text-pc);
    font-weight: var(--text-gras);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid transparent;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-option.active {
    color: var(--effet-color);
}

/* Contenu compact */
.tab-content-section {
    display: none;
    padding: 20px 0;
}

.tab-content-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tab-content-wrapper {
    padding: 11px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-color);
}


@media(max-width: 768px) {
    .wallet-container {
        margin-left: 0px !important;
    }
        .tab-option {
            font-size: var(--taille-text-mo);
        }



}
.paiment-po {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
}

.paiement-image {
    max-width: 100%;
    width: 320px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;

    /* effet pro */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effet */
.paiement-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* Responsive mobile */
@media (max-width: 600px) {
    .paiement-image {
        width: 90%;
    }
}