      /* -------- Overlay כהה עם חור סביב האלמנט -------- */
      .a11y-overlay {
        position: fixed;
        inset: 0;
        z-index: 9000;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }

      /* -------- Popover -------- */
      .a11y-popover {
        position: absolute;
        z-index: 9002;
        background: #fff;
        border-radius: 12px;
        border: 2px solid black;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        padding: 16px 20px;
        max-width: 360px;
        font-family: "Poppins", sans-serif;
        color: #222;
        outline: none;
      }

      /* כותרת */
      .a11y-popover-title {
        font-size: 18px;
        font-weight: 600;
        color: #e67e22;
        margin-bottom: 8px;
      }

      /* טקסט */
      .a11y-popover-text {
        font-size: 14px;
        line-height: 1.5;
      }

      /* כפתורים בבועה */
      .a11y-popover-actions {
        margin-top: 12px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
      }
      .a11y-popover-actions button {
        background: #e67e22;
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 6px 12px;
        cursor: pointer;
        font-size: 14px;
      }

      /* === פוקוס רק בבועה === */
      .a11y-popover :focus,
      .a11y-popover button:focus,
      .a11y-popover [tabindex]:focus {
        outline: 2px solid black !important;
        outline-offset: 2px;
        border-radius: 6px;
      }

      /* === באלמנט המואר (האזור שמודגש) === */
      .a11y-highlight {
        /* outline: 2px solid #c2c2c2 !important; אפור עדין */
        outline-offset: 2px;
        border-radius: 8px;
        transition: none !important;
        box-shadow: none !important;
      }

      /* === בשאר האתר אין פוקוס בכלל === */
      /* :focus {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
      } */

      /* דיאלוג סיום */
      .tw-overlay {
        z-index: 10000 !important;
      }
      .tw-overlay .tw-dialog {
        z-index: 10001 !important;
      }

      /* תיקון לקרוסלה שתישאר גלויה */
      .owl-carousel {
        display: block !important;
      }
      .owl-carousel .owl-stage-outer {
        overflow: visible !important;
      }