/* Checkout Fields Styling for Flatsome Theme */

.woo-po-checkout-fields {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.woo-po-checkout-fields h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 600;
    color: #23282d;
}

.woo-po-checkout-fields .form-row {
    margin-bottom: 15px;
}

.woo-po-checkout-fields label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #23282d;
}

.woo-po-checkout-fields input[type="date"],
.woo-po-checkout-fields input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.woo-po-checkout-fields input[type="date"]:focus,
.woo-po-checkout-fields input[type="text"]:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.woo-po-checkout-fields .woocommerce-error {
    margin-top: 10px;
}

/* Order Details Styling */
.woo-po-order-info {
    margin-top: 30px;
}

.woo-po-order-info h2 {
    margin-bottom: 15px;
}

.woo-po-order-info table {
    margin-bottom: 0;
}

/* Flatsome Theme Compatibility */
.flatsome-checkout .woo-po-checkout-fields {
    background: transparent;
    border: none;
    padding: 0;
}

.flatsome-checkout .woo-po-checkout-fields h3 {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Unit Type in Price Display */
.woo-po-unit-type {
    font-size: 0.9em;
    color: #666;
    font-weight: normal;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .woo-po-checkout-fields {
        padding: 15px;
    }
}

