/*
Theme Name: Woodmart Child
Theme URI: https://cuppie.co.ke/
Description: Child theme for Woodmart
Author: Edwin Karuga
Template: woodmart
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../woodmart/style.css");

.woocommerce-checkout select#billing_country,
.woocommerce-checkout select#shipping_country {
    display: none !important;
}

.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #shipping_country_field {
    display: none !important;
}
/* 1. Grid container */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
}

/* 2. Field wrapper full width */
.woocommerce-checkout #billing_first_name_field {
    width: 100% !important;
}

/* 3. Span wrapper - DO NOT use display:block here */
.woocommerce-checkout #billing_first_name_field .woocommerce-input-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 4. The actual input */
.woocommerce-checkout #billing_first_name_field input#billing_first_name {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}