[data-product-inv="0"] {
    pointer-events: none;
    opacity: 0.5;
}

.t-store__card__sold-out-msg {
    display: none!important;
}

#video-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 160px !important;
    height: 200px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    z-index: 1000;
    transform: none !important;
    transition: none !important;
  }
  #video-widget img,
  #video-widget iframe {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  /* Затемняем превью */
  #video-preview {
    filter: brightness(80%);
    cursor: pointer;
  }
  /* Сам iframe под видео сначала скрыт */
  #video-iframe {
    display: none;
    border: none;
  }
  /* Кнопка закрытия */
  #video-close-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    border-radius: 10%;
    cursor: pointer;
    z-index: 1002;
  }
  /* Кнопка «Дивитись відео» */
  #video-play-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1002;
  }
  @media (min-width: 768px) {
    #video-widget {
      width: 240px !important;
      height: 300px !important;
    }
  }