/* ===================================================
   TI Wishlist tweaks
=================================================== */

/* Hide selected options/variation meta, show only product name */
.tinvwl-table-manage-list td.product-name dl.variation{
  display: none !important;
}

/* Wishlist: remove plugin title so the page title is the only title */
.tinv-wishlist.woocommerce .tinv-header{
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Safety: if any spacing still remains at the top of the wishlist block */
.tinv-wishlist.woocommerce{
  margin-top: 0 !important;
}
.tinv-wishlist.woocommerce > *:first-child{
  margin-top: 0 !important;
}

/* Wishlist table: remove the header row entirely (and its spacing) */
.tinvwl-table-manage-list thead {
  display: none !important;
}


/* Wishlist empty state: hide plugin's "Return to shop" block so we don't get two buttons */
.tinv-wishlist .return-to-shop {
  display: none !important;
}

/* Wishlist empty message: make it look like a page H2 */
.tinv-wishlist.woocommerce p.cart-empty.woocommerce-info{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 18px 0 10px !important;

  font-family: var(--global-heading-font-family, inherit);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--global-palette4, #111) !important;
}

