/**
 * WooCommerce Blocks Checkout Field Ordering
 * 
 * Reorders address fields to:
 * District, City, Postal code, Phone
 * 
 * @package AidantzLKPostalShipping
 * @version 1.0.0
 */

/* Target the address form container in WooCommerce Blocks */
.wc-block-components-address-form {
    display: flex;
    flex-wrap: wrap;
}

/* District field (State/Province) - First in order after address */
.wc-block-components-address-form__state {
    order: 6 !important;
}

/* City field - Second in order */
.wc-block-components-address-form__city {
    order: 7 !important;
}

/* Postal code field - Third in order */
.wc-block-components-address-form__postcode {
    order: 8 !important;
}

/* Phone field - Fourth in order */
.wc-block-components-address-form__phone {
    order: 9 !important;
}

/* Ensure postal code readonly styling is visible */
.wc-block-components-address-form__postcode input[readonly] {
    background-color: #f0f0f0 !important;
    cursor: not-allowed;
}

/* Guest checkout message styling */
.wc-block-checkout__contact-fields .wc-block-components-checkout-step__description {
    text-align: center !important;
    margin: 15px 0 !important;
    padding: 10px 0 !important;
}
