.elementor-kit-36908{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-75c8f4f:#83B835;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-36908 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Klasyczny układ zakładek Woo */
#tab-title-shipping,
#tab-shipping,
li.shipping_tab { display: none !important; }

/* WooCommerce Blocks – komponent zakładek */
.wc-block-product-tabs .wc-block-product-tabs__item button[aria-controls*="shipping"],
.wc-block-product-tabs .wc-block-product-tabs__item:has(button:where(:is(:not([aria-controls])))) { display: none !important; }

/* Na wszelki wypadek — ukryj zakładkę, gdy tytuł zawiera tekst */
.wc-tabs li a[href*="shipping"],
.wc-tabs li a[href*="wysyl"],
.wc-tabs li a[href*="dostaw"] { display: none !important; }

3) Ostateczność (mini-JS w stopce)

Gdy motyw generuje własne znaczniki i CSS nie łapie — dodaj skrypt w Wygląd → Dostosuj → Dodatkowy kod (lub wtyczka „Header & Footer Code Manager” → Footer):

<script>
document.addEventListener('DOMContentLoaded', function(){
  const killers = ['shipping','delivery','wysył','dostaw'];
  // Klasyczne zakładki
  document.querySelectorAll('.woocommerce-tabs li, .wc-tabs li').forEach(li=>{
    const t = (li.innerText||'').toLowerCase();
    if (killers.some(k=>t.includes(k))) li.remove();
  });
  // Woo Blocks
  document.querySelectorAll('.wc-block-product-tabs .wc-block-product-tabs__item').forEach(item=>{
    const t = (item.innerText||'').toLowerCase();
    if (killers.some(k=>t.includes(k))) item.remove();
  });
});
</script>/* End custom CSS */