/* --- PDP product-list scroll dots --- */
  /* נקודות גלילה */
  .mws-scroll-dots{display:flex;justify-content:center;gap:8px;margin:10px 0}
  .mws-scroll-dot{all:unset;display:inline-block;width:10px;height:10px;border-radius:50%;background:rgba(0,0,0,.25);cursor:pointer}
  .mws-scroll-dot.is-active{background:rgba(0,0,0,.85);transform:scale(1.1)}
  @media(min-width:769px){.mws-scroll-dots{display:none}}

  /* הופך את ה-UL של המוצרים ל-scroller אופקי בעמוד מוצר (מובייל) */
  @media (max-width: 768px){
    body.single-product .woocommerce ul.products.mws-make-scroll{
      display:flex !important;             /* מכריח Flex גם אם הטֵמה קובעת Grid */
      gap:12px;
      overflow-x:auto;
      scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling: touch;
      padding:0 12px;
    }
    body.single-product .woocommerce ul.products.mws-make-scroll > li.product{
      flex:0 0 78%;
      margin:0 !important;
      scroll-snap-align:center;
    }
  }

/* --- Homepage video testimonials dots --- */
    .mws-video-dots{display:flex;justify-content:center;gap:8px;margin:10px 0}
    .mws-video-dot{all:unset;display:inline-block;width:10px;height:10px;border-radius:50%;background:rgba(0,0,0,.25);cursor:pointer}
    .mws-video-dot.is-active{background:rgba(0,0,0,.85);transform:scale(1.05)}

/* --- PDP video carousel dots --- */
    .mws-pdp-video-dots{
      display:flex;
      justify-content:center;
      gap:8px;
      margin:10px 0 0;
      width:100%;
      text-align:center;
      position:static !important;
      float:none !important;
      flex:0 0 100%; /* אם ההורה flex - שורות מלאות */
      order:999;     /* אם יש order - שים בסוף */
    }
    .mws-pdp-video-dot{
      all:unset;
      display:inline-block;
      width:10px;height:10px;
      border-radius:50%;
      background:rgba(0,0,0,.25);
      cursor:pointer
    }
    .mws-pdp-video-dot.is-active{background:rgba(0,0,0,.85)}

/* --- Homepage scroll dots + PDP Slick dots --- */
  /* נקודות – דף הבית */
  .mws-scroll-dots{display:flex;justify-content:center;gap:8px;margin:8px 0 12px}
  .mws-scroll-dot{all:unset;display:inline-block;width:10px;height:10px;border-radius:50%;background:rgba(0,0,0,.25);cursor:pointer}
  .mws-scroll-dot.is-active{background:rgba(0,0,0,.85);transform:scale(1.1)}
  @media(min-width:769px){.mws-scroll-dots{display:none}}

  /* נקודות – עמוד מוצר (Slick) */
  .mws-pdp-dots{display:flex;justify-content:center;gap:8px;margin:8px 0 12px}
  .mws-pdp-dot{all:unset;display:inline-block;width:10px;height:10px;border-radius:50%;background:rgba(0,0,0,.25);cursor:pointer}
  .mws-pdp-dot.is-active{background:rgba(0,0,0,.85);transform:scale(1.1)}
  @media(min-width:769px){.mws-pdp-dots{display:none}} /* אם רוצים גם בדסקטופ – להסיר שורה זו */
