/** Shopify CDN: Minification failed

Line 28:20 Unexpected "*"

**/
/* בסיס */
html[dir="rtl"], html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] body { text-align: right; }

/* ניווט וכפתורים נפוצים */
html[dir="rtl"] .site-nav,
html[dir="rtl"] .site-header__icons,
html[dir="rtl"] .breadcrumbs,
html[dir="rtl"] .footer { direction: rtl; }

html[dir="rtl"] .product-form__buttons,
html[dir="rtl"] .btn-group,
html[dir="rtl"] .pagination { flex-direction: row-reverse; }

/* יישור טקסט בקלטים */
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select { text-align: right; }

/* מרווחים צדדיים נפוצים */
html[dir="rtl"] .ml-auto { margin-left: 0 !important; margin-right: auto !important; }
html[dir="rtl"] .mr-auto { margin-right: 0 !important; margin-left: auto !important; }
html[dir="rtl"] .pl-*, html[dir="rtl"] .pr-* { /* אם אין יוטיליטיז, השתמש בלוגיים */ }
html[dir="rtl"] .section--pad { padding-inline-start: 0; padding-inline-end: 0; }

/* חיצים/אייקונים שמצביעים לצד שמאל – להפוך */
html[dir="rtl"] .icon-arrow,
html[dir="rtl"] .chevron-left { transform: scaleX(-1); }

/* גלריות/קרוסלות – לרוב עדיף להשאיר LTR כדי לא לשבור סווייפ */
html[dir="rtl"] .slick-slider,
html[dir="rtl"] .swiper,
html[dir="rtl"] .flickity-enabled { direction: ltr; }

/* ==== RTL: החלפת עמודות בדף מוצר (Motion) ==== */
@media (min-width: 990px) {
  /* ההורה שמחזיק את הגלריה + המידע */
  html[dir="rtl"] .product__content .grid,
  html[dir="rtl"] .product__grid,
  html[dir="rtl"] .product__wrapper,
  html[dir="rtl"] .product__main {
    display: flex;
    flex-direction: row-reverse !important; /* מוודא שהמידע יהיה בצד ימין והגלריה בשמאל */
  }

  /* אם האלמנטים מקבלים order – נוודא גם פה */
  html[dir="rtl"] .product__media-wrapper,
  html[dir="rtl"] .product__gallery { order: 2; }
  html[dir="rtl"] .product__info-wrapper,
  html[dir="rtl"] .product__details,
  html[dir="rtl"] .product-single__meta { order: 1; }

  /* יישורי טקסט חשובים */
  html[dir="rtl"] .product__title,
  html[dir="rtl"] .product__meta,
  html[dir="rtl"] .product-form { text-align: right; }
}

/* תפריט ראשי – לוודא סדר מימין לשמאל */
html[dir="rtl"] .site-nav,
html[dir="rtl"] .site-header__icons { direction: rtl; }
html[dir="rtl"] .site-nav__wrapper,
html[dir="rtl"] .site-nav__list { display: flex; flex-direction: row-reverse; }


