.reels-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
}
.reels-carousel::-webkit-scrollbar { display: none; }

.reel-item {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease;
  -webkit-clip-path: circle(50% at 50% 50%);
clip-path: circle(50% at 50% 50%);
}
.reel-item:hover { transform: none; } /* büyütme kaldırıldı */

.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
}



/* Popup */
.reel-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.reel-popup.active { display: flex; }

.reel-popup-inner video {
  width: 90%;
  max-width: 480px;
  border-radius: 10px;
  outline: none;
}

/* --- Tema override düzeltmesi (v1.6.0) --- */
.reel-item,
.reel-item video {
  border-radius: 50% !important;
  overflow: hidden !important;
}

.reels-carousel .reel-item video {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}
