/* Coupon Styles */
.coupon-applied {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coupon-discount {
    color: #155724;
    font-weight: bold;
}

.remove-coupon-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.remove-coupon-btn:hover {
    background: #c82333;
}

.discount-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.discount-price {
    color: #28a745;
    font-weight: bold;
}

.action-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.action-discount .discount {
    font-weight: 600;
}

.action-discount .discount-price {
    color: #28a745;
    font-weight: bold;
}

.coupon-form {
    margin-top: 10px;
}

.coupon-remove-form {
    display: inline-block;
}

.alert {
    padding: 5px 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin: 0 5px;
    margin-top: 5px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.coupon-input-area {
    margin-top: 10px;
}

.coupon-input-area input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    width: 200px;
}

.coupon-input-area .apply-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-input-area .apply-btn:hover {
    background: #0056b3;
}

.coupon-click {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
}

.coupon-click:hover {
    color: #0056b3;
}
