/* Style pour le message Orange Money sur la page de confirmation */
.woocommerce-notice--orange-money {
    background-color: #fff9e6;
    border-left: 4px solid #ff6600;
    padding: 20px;
    margin: 20px 0;
    font-size: 16px;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.woocommerce-notice--orange-money:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff6600" opacity="0.1"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>') no-repeat center center;
    background-size: contain;
    opacity: 0.2;
}

.woocommerce-notice--orange-money strong {
    display: block;
    color: #ff6600;
    margin-bottom: 5px;
    font-size: 18px;
}

/* Animation pour attirer l'attention */
@keyframes pulse-border {
    0% {
        border-color: #ff6600;
    }
    50% {
        border-color: #ffb366;
    }
    100% {
        border-color: #ff6600;
    }
}

.woocommerce-notice--orange-money {
    animation: pulse-border 2s infinite;
}

/* Adaptation pour mobile */
@media (max-width: 768px) {
    .woocommerce-notice--orange-money {
        padding: 15px;
        font-size: 14px;
        margin: 15px 0;
    }
    
    .woocommerce-notice--orange-money strong {
        font-size: 16px;
    }
}
/* Styles pour le paiement Orange Money en frontend */
#om_phone_number_field {
    background-color: #fff9e6;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ffeeba;
    margin: 10px 0 20px;
    transition: all 0.3s ease;
}

#om_phone_number_field:focus-within {
    border-color: #ff6600;
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

#om_phone_number_field label {
    color: #333;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

#om_phone_number_field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#om_phone_number_field input:focus {
    border-color: #ff6600;
    outline: none;
}

/* Style pour le bouton de paiement */
#payment .payment_methods li.payment_method_om_orange_money_gateway .payment_box {
    background-color: #fff9e6;
}

#payment .payment_methods li.payment_method_om_orange_money_gateway > label {
    display: flex;
    align-items: center;
}

#payment .payment_methods li.payment_method_om_orange_money_gateway > label img {
    margin-left: 10px;
    max-height: 30px;
    vertical-align: middle;
}
