/* Styles pour Orange Money Gateway */
.wc-orange-money-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin: 10px 0;
}

.wc-orange-money-form .form-row {
    margin-bottom: 15px;
}

.wc-orange-money-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.wc-orange-money-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
}

.wc-orange-money-form small {
    color: #666;
    font-size: 12px;
}

.payment_method_orange_money_cameroun img {
    max-height: 30px;
    width: auto;
}

.orange-money-loading {
    text-align: center;
    padding: 20px;
}

.orange-money-error {
    color: #e74c3c;
    font-weight: bold;
}

.orange-money-success {
    color: #27ae60;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-orange-money-form {
        padding: 15px;
    }
    
    .wc-orange-money-form input[type="tel"] {
        font-size: 16px; /* Évite le zoom sur iOS */
    }
}

/* Animation de chargement */
.orange-money-loading::after {
    content: "...";
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow:
            .25em 0 0 rgba(0,0,0,0),
            .5em 0 0 rgba(0,0,0,0);
    }
    40% {
        color: black;
        text-shadow:
            .25em 0 0 rgba(0,0,0,0),
            .5em 0 0 rgba(0,0,0,0);
    }
    60% {
        text-shadow:
            .25em 0 0 black,
            .5em 0 0 rgba(0,0,0,0);
    }
    80%, 100% {
        text-shadow:
            .25em 0 0 black,
            .5em 0 0 black;
    }
}