/* Quick Checkout Styling */
.quick-checkout-form {
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.order-details-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.order-details-section h3 {
    color: #2c5530;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.order-summary-table {
    border-collapse: collapse;
    width: 100%;
}

.order-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.order-row.header {
    font-weight: bold;
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 2px solid #e0e0e0;
}

.order-row.subtotal,
.order-row.total {
    font-weight: bold;
    background-color: #f8f9fa;
}

.order-row.total {
    border-top: 2px solid #e0e0e0;
    border-bottom: none;
    font-size: 18px;
}

.product-column {
    flex: 1;
    text-align: left;
}

.total-column {
    flex: 0 0 120px;
    text-align: right;
    font-weight: 500;
}

.product-name {
    font-weight: 500;
    margin-bottom: 8px;
}

.addon-info,
.ribbon-info,
.upsell-info {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.addon-icon,
.ribbon-icon,
.upsell-icon {
    margin-right: 5px;
}

.ribbon-line {
    margin-left: 20px;
    font-size: 13px;
}

.shipping-method {
    font-weight: 500;
}

.info-icon {
    margin-left: 5px;
    color: #007cba;
}

.vat-info {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin-top: 5px;
}

.payment-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.payment-method,
.delivery-date {
    margin: 8px 0;
    font-size: 16px;
    color: #333;
}

.payment-method {
    font-weight: 500;
}

/* Customer Information Section */
.quick-checkout-form h3 {
    color: #2c5530;
    font-size: 20px;
    margin: 30px 0 15px 0;
}

.quick-checkout-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.quick-checkout-form input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.quick-checkout-form input[type="text"]:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.1);
}

.quick-checkout-form button[type="submit"] {
    background-color: #2c5530;
    color: white;
    padding: 0 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.quick-checkout-form button[type="submit"]:hover {
    background-color: #1e3a21;
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .total-column {
        flex: none;
        text-align: left;
        margin-top: 5px;
        font-weight: bold;
    }
    
    .order-row.header .total-column {
        text-align: right;
    }
}
