/* ------------------------------------------------------------------
   RTL / bidi fine-tuning for the child theme.

   The important bug class here is mixed Hebrew + Latin/alphanumeric
   strings in product titles (e.g. "מוצר דוגמה 01 Demo Item A-100").
   `unicode-bidi: plaintext` makes each title lay out by its own first
   strong character instead of inheriting the paragraph direction, which
   is what prevents the model number from jumping to the wrong side.
   ------------------------------------------------------------------ */

.woocommerce-loop-product__title,
.product_title,
.wp-block-post-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  unicode-bidi: plaintext;
}

/* Prices and SKUs are LTR tokens; isolate them inside RTL flow. */
.woocommerce .price,
.woocommerce .sku,
.woocommerce-Price-amount {
  unicode-bidi: isolate;
}

/* Use logical properties for any child-theme spacing overrides so they
   flip automatically. Example placeholder — extend as needed. */
.pl-note {
  margin-inline-start: 0;
  padding-inline: 1rem;
  border-inline-start: 3px solid var(--theme-palette-color-1);
}
