/* WooCommerce Additional Fields Styles */

/* Hide extra validation fields completely */
.wc-extra-fields {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Make sure fields are not visible */
.wc-extra-fields input,
.wc-extra-fields label {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Additional hiding techniques */
.wc-extra-fields {
    display: none !important;
    visibility: hidden !important;
}

/* Ensure fields don't affect layout */
form.checkout .wc-extra-fields {
    position: absolute !important;
    top: 0 !important;
    left: -9999px !important;
}