/* Vie Life - Instagram tarzı hikaye şeridi */
.vlf-stories { width: 100%; background: #fff; padding: 12px 0; }
.vlf-stories-track {
  display: flex; gap: 16px; overflow-x: auto; padding: 0;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
/* .container yoksa (tema değişirse) yine de header hizasına yakın dursun */
.vlf-stories > .container { padding-left: 15px; padding-right: 15px; }
.vlf-stories-track::-webkit-scrollbar { display: none; }
.vlf-story { flex: 0 0 auto; text-align: center; text-decoration: none; width: 76px; }
.vlf-story-ring {
  display: block; width: 70px; height: 70px; margin: 0 auto; padding: 3px;
  border-radius: 50%;
  background: linear-gradient(45deg, #FF5722, #FF8A50, #FFC107);
}
.vlf-story-img {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.vlf-story-title {
  display: block; margin-top: 6px; font-size: 12px; color: #333;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vlf-story { background: none; border: 0; padding: 0; cursor: pointer; }
.vlf-story-ring { position: relative; }
.vlf-story-play {
  position: absolute; right: 2px; bottom: 2px; width: 18px; height: 18px;
  background: rgba(0,0,0,.6); color: #fff; border-radius: 50%;
  font-size: 9px; line-height: 18px; text-align: center;
}

/* Modal (Instagram tarzı) */
.vlf-modal { display: none; position: fixed; inset: 0; z-index: 99999; }
.vlf-modal.open { display: flex; align-items: center; justify-content: center; }
.vlf-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.92); }
.vlf-stage {
  position: relative; width: 420px; max-width: 96vw; height: 90vh; max-height: 820px;
  background: #000; border-radius: 12px; overflow: hidden; z-index: 2;
}
.vlf-media { position: absolute; inset: 0; }
.vlf-media img, .vlf-media video { width: 100%; height: 100%; object-fit: cover; background: #000; }
.vlf-bars { position: absolute; top: 10px; left: 10px; right: 10px; display: flex; gap: 4px; z-index: 5; }
.vlf-bar { flex: 1; height: 3px; background: rgba(255,255,255,.3); border-radius: 2px; overflow: hidden; }
.vlf-bar > i { display: block; height: 100%; width: 0; background: #fff; }
.vlf-close {
  position: absolute; top: 18px; right: 12px; z-index: 6; background: none; border: 0;
  color: #fff; font-size: 30px; line-height: 1; cursor: pointer;
}
.vlf-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent); color: #fff;
}
.vlf-cap-title { font-size: 16px; font-weight: 700; }
.vlf-cap-desc { font-size: 13px; margin-top: 4px; line-height: 1.4; opacity: .95; }
.vlf-actions { display: flex; gap: 18px; margin-top: 12px; }
.vlf-act { background: none; border: 0; color: #fff; font-size: 14px; cursor: pointer; }
.vlf-like.liked .vlf-heart { color: #E2342E; }
.vlf-nav {
  z-index: 3; background: rgba(255,255,255,.15); color: #fff; border: 0;
  width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; margin: 0 14px;
}
.vlf-nav:hover { background: rgba(255,255,255,.3); }
@media (max-width: 600px) { .vlf-nav { position: absolute; top: 50%; } .vlf-prev { left: 6px; } .vlf-next { right: 6px; } .vlf-nav { margin: 0; } }
.vlf-comments {
  position: absolute; right: 0; top: 0; bottom: 0; width: 360px; max-width: 92vw; z-index: 7;
  background: #fff; transform: translateX(100%); transition: transform .25s; display: flex; flex-direction: column;
}
.vlf-comments.open { transform: translateX(0); }
.vlf-comments-head { display: flex; justify-content: space-between; align-items: center; padding: 14px; font-weight: 600; border-bottom: 1px solid #eee; }
.vlf-comments-head button { background: none; border: 0; font-size: 22px; cursor: pointer; }
.vlf-comments-list { flex: 1; overflow-y: auto; padding: 14px; }
.vlf-cmt { margin-bottom: 14px; }
.vlf-cmt b { font-size: 13px; } .vlf-cmt small { color: #999; margin-left: 6px; }
.vlf-cmt p { margin: 2px 0 4px; font-size: 13px; color: #444; }
.vlf-cmt-act { display: flex; gap: 14px; }
.vlf-cmt-act button { background: none; border: 0; padding: 0; cursor: pointer; font-size: 12px; color: #888; }
.vlf-cmt-like.liked { color: #E2342E; }
.vlf-replies { margin: 8px 0 0 16px; padding-left: 10px; border-left: 2px solid #eee; }
.vlf-reply { margin-bottom: 10px; }
.vlf-comments-input { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #eee; }
.vlf-comments-input input { flex: 1; border: 1px solid #ddd; border-radius: 20px; padding: 8px 14px; }
.vlf-comments-input button { background: #FF5722; color: #fff; border: 0; border-radius: 20px; padding: 8px 16px; cursor: pointer; }
