/**
 * Weller Hire - Hide Product Tab Headings & Fix Spacing Gaps (SEO Friendly)
 * Version: 1.2.0
 */

/* 1. Ghost the main H2 Tab Titles for Google Indexing bots */
.woocommerce-tabs .woocommerce-Tabs-panel > h2:first-of-type,
.woocommerce-tabs .panel h2:first-of-type,
.woocommerce-tabs #tab-product-enquiry h2:first-of-type {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

/* 2. FIX: Prevent elements directly below the ghosted heading from doubling up margins */
.woocommerce-tabs .woocommerce-Tabs-panel > h2:first-of-type + *,
.woocommerce-tabs .panel h2:first-of-type + *,
.woocommerce-tabs #tab-product-enquiry h2:first-of-type + * {
    margin-block-start: 0 !important;
    margin-top: 0 !important;
}

/* 3. VIDEO TAB OVERRIDE: Calm the 30px video margin when loaded inside a tab shell */
.woocommerce-tabs .weller-video-wrapper {
    margin-top: 0px !important;
    margin-bottom: 20px !important;
}

/* 4. PRODUCT ENQUIRY TAB OVERRIDE: Hide the rogue break and flatten the form's top margin */
.woocommerce-tabs #tab-product-enquiry > br {
    display: none !important;
}

.woocommerce-tabs #tab-product-enquiry .wpcf7,
.woocommerce-tabs #tab-product-enquiry .wpcf7-form {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.woocommerce-tabs #tab-product-enquiry .weller-enquiry-container {
    margin-top: 0px !important;
}