/* Styles pour les coupons */
.coupon-form {
    margin-bottom: 1.5rem;
}

.coupon-input-group {
    display: flex;
    margin-bottom: 0.5rem;
}

.coupon-input-group input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    min-height: 46px;
}

.btn-apply-coupon {
    background-color: #1E3A8A;
    color: white;
    border: none;
    padding: 0 1.5rem;
    font-weight: 600;
    cursor: pointer;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: all 0.2s ease;
}

.btn-apply-coupon:hover {
    background-color: #152a62;
}

#coupon_message {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

#coupon_message.success {
    color: #28a745;
}

#coupon_message.error {
    color: #dc3545;
}

.detail-row.coupon-discount {
    color: #28a745;
    font-weight: 500;
}

.coupon-discount span:first-child {
    display: flex;
    align-items: center;
}

.coupon-discount span:first-child::before {
    content: "\f02b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
}

.coupon-badge {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 8px;
    font-weight: 600;
}

.remove-coupon {
    color: #dc3545;
    font-size: 0.8em;
    cursor: pointer;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
}

.remove-coupon:hover {
    text-decoration: underline;
}
