/**
 * Style pour Minimum Order Promo - Version Arabe
 */

/* Conteneur du message */
.min-order-under-button {
    margin-top: 20px;
    margin-bottom: 15px;
    clear: both;
    width: 100%;
    direction: rtl;
    text-align: right;
}

/* Message d'incitation (montant non atteint) */
.min-order-info-under {
    background: #ffebee;
    border: 2px solid #f44336;
    color: #b71c1c;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.min-order-info-under strong {
    color: #d32f2f;
    font-size: 18px;
    font-weight: 700;
    margin: 0 2px;
}

/* Message de succès (montant atteint) */
.min-order-success-under {
    background: #e8f5e8;
    border: 2px solid #4CAF50;
    color: #1e4620;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Bouton désactivé */
.checkout-button.min-order-disabled,
.checkout-button.min-order-disabled:disabled {
    opacity: 0.5 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    background-color: #cccccc !important;
    border-color: #999999 !important;
}

/* Animation légère */
@keyframes gentlePulse {
    0% { opacity: 1; }
    50% { opacity: 0.9; }
    100% { opacity: 1; }
}

.min-order-info-under {
    animation: gentlePulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .min-order-info-under,
    .min-order-success-under {
        padding: 12px 15px;
        font-size: 14px;
    }
}