/* Dante Music Shop - Order Form Styles */

.dante-order-form {
    max-width: 600px;
    margin: 20px 0;
    padding: 25px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.dante-order-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    border-bottom: 2px solid #8b8e92;
    padding-bottom: 10px;
}

.pricing-tiers {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #fff;
    border-left: 4px solid #8b8e92;
    border-radius: 4px;
}

.pricing-tiers h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #8b8e92;
    font-size: 16px;
}

.pricing-tiers ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.pricing-tiers li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

.pricing-tiers li strong {
    color: #333;
}

.min-quantity-notice {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
    font-size: 14px;
    font-weight: bold;
}

.order-input,
.buyer-info {
    margin-bottom: 20px;
}

.order-input label,
.buyer-info label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.dante-order-form .quantity-input,
.dante-order-form .buyer-name-input {
    width: 100% !important;
    padding: 14px !important;
    font-size: 16px !important;
    border: 2px solid #ddd !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s !important;
    background-color: #fff !important;
    color: #333 !important;
}

.dante-order-form .quantity-input:focus,
.dante-order-form .buyer-name-input:focus {
    outline: none !important;
    border-color: #8b8e92 !important;
}

.dante-order-form .buyer-name-input::placeholder {
    color: #999 !important;
    font-style: italic !important;
}

.dante-order-form .quantity-input {
    max-width: 150px;
}

.price-summary {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #e8f4f8;
    border-radius: 4px;
}

.price-summary p {
    margin: 8px 0;
    font-size: 16px;
    color: #333;
}

.price-summary .total-price {
    font-size: 20px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #8b8e92;
}

.unit-price,
.total-amount {
    color: #0066cc;
    font-size: 18px;
}

.total-amount {
    font-size: 24px;
}

.order-button-container {
    text-align: center;
    margin-top: 20px;
}

.paypal-button-container {
    margin-top: 20px;
    min-height: 50px;
}

.paypal-button {
    background-color: #ffc439;
    background: linear-gradient(to bottom, #ffc439 0%, #f7a600 100%);
    border: 1px solid #e89700;
    border-radius: 5px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    color: #111;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.paypal-button:hover {
    background: linear-gradient(to bottom, #ffd766 0%, #f7b733 100%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.paypal-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 600px) {
    .dante-order-form {
        padding: 15px;
    }
    
    .dante-order-form h3 {
        font-size: 20px;
    }
    
    .pricing-tiers li {
        font-size: 13px;
    }
    
    .paypal-button {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
    }
}
