/* Style 1 - Modern Clean */
.style-1 .quantity-discount-order-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.style-1 .original-price-display {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.style-1 .quantity-option {
    margin-bottom: 15px;
}

.style-1 .quantity-option label {
    display: block;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.style-1 .quantity-option input[type="radio"]:checked + label {
    background: #e7f4ff;
    border-color: #007bff;
}

.style-1 .discount-badge {
    background: #28a745;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}

.style-1 .submit-order {
    background: #007bff;
    color: white;
    padding: 15px;
    border-radius: 5px;
    border: none;
    width: 100%;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.style-1 .submit-order:hover {
    background: #0056b3;
}