  /* ============================================================
   ХОРИЗОНТАЛЕН THUMBS КАРУСЕЛ
   ============================================================ */
  #vertical-videos-slider {
    flex-direction: column;
  }

  .thumbs-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 10px;
  }

  .thumb-slide {
    aspect-ratio: 9 / 16;
    width: 300px;
    height: 534px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
  }



  .thumb-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #vertical-videos-slider .thumb-slide {
    border-radius: unset;
  }

  #vertical-videos-slider .video-image img {
    border-bottom-right-radius: unset;
    border-top-left-radius: var(--radius-lg);
  }

  #vertical-videos-slider .video-info {
    bottom: var(--spacing-xl);
  }

  #vertical-videos-slider .video-title {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* ============================================================
   REELS MODAL
   ============================================================ */
  .reels-modal {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .reels-modal.is-open {
    display: flex;
  }

  .reels-close {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .reels-close:hover {
    /* background: rgba(0, 0, 0, 0.75); */
  }

  .reels-close img {
    width: 32px;
    height: 32px;
    display: block;
    transform: rotate(180deg);
    object-fit: contain;
  }

  /* ============================================================
   STAGE - размерите се сетват от JS чрез CSS variables
   ============================================================ */
  .reels-stage {
    position: relative;
    height: var(--reels-h, 90vh);
    width: var(--reels-w, calc(90vh * 9 / 16));
    max-height: 100vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
  }

  @media (max-width: 768px) {
    .reels-stage {
      --reels-w: 100vw;
      --reels-h: 100vh;
      border-radius: 0;
    }
  }

  /* ============================================================
   ВЕРТИКАЛЕН SWIPER
   ============================================================ */
  .reels-swiper {
    width: 100%;
    height: 100%;
  }

  .reels-swiper .swiper-slide {
    width: 100% !important;
    height: 100%;
    background: #000;
    position: relative;
    overflow: hidden;

  }

  .reel-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
  }

  /* ============================================================
   ПЛЕЪР
   ============================================================ */
  .reels-player-host {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    display: none;
    background: #000;
  }

  .reels-player-host.is-visible {
    display: block;
  }

  .reels-player-host .video-js,
  .reels-player-host video,
  .reels-player-host .vjs-tech {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    inset: 0 !important;
    background: #000;
  }

  #reelsPlayer,
  .video-js,
  .video-js .vjs-tech,
  .vjs-poster {
    background-color: #000 !important;
  }

  /* ============================================================
   PLAY/PAUSE БУТОН
   ============================================================ */
  .reels-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .reels-play-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .reels-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }

  .reels-play-btn img {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  }

  /* ============================================================
   OVERLAY
   ============================================================ */
  .reel-overlay {
    position: absolute;
    bottom: 80px;
    left: 16px;
    right: 16px;
    color: #fff;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    z-index: 500;
  }

  .reel-overlay .username {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
  }

  .reel-overlay .caption {
    font-size: 13px;
    opacity: 0.9;
  }

  /* ============================================================
   LOADER
   ============================================================ */
  .reels-loader {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    z-index: 10;
  }

  .reels-loader.is-visible {
    opacity: 1;
  }

  /* ============================================================
   ПРОГРЕС
   ============================================================ */
  .reels-progress {
    /* position: absolute;
        bottom: 0;
        left: 0;
        right: 0; */
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 24px;
    pointer-events: none;
  }

  .reels-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--bg-light-blue);
    ;
    transition: width 0.1s linear;
  }


  .reels-nav-btn {
    position: absolute;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease, opacity 0.2s ease;
    z-index: 10000;
  }

  /* .reels-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
} */

  .reels-nav-btn img {
    /* width: 20px;
  height: 20px; */
    pointer-events: none;
    display: block;
  }

  .reels-nav-prev {
    left: calc(50% - 56px);
  }

  .reels-nav-prev img {
    transform: rotate(180deg);
  }

  .reels-nav-next {
    left: calc(50% + 12px);
  }

  .reels-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }

  @media (max-width: 980px) {
    .reels-nav-btn {
      display: none;
    }
  }


  .video-box .video-image {
    height: 534px;
  }

  .vvideo-ads {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .vvideo-ads .heading {
    color: var(--color-black);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-serif);
    text-align: center;

  }

  #vvideo-ad {
    display: flex;
    flex: 1;
    border: 0pt;
    display: flex;
    justify-content: center;
    align-items: center;
  }