.story-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  justify-content: center; align-items: center;
  z-index: 9999;
}
.story-wrapper {
  position: relative;
  max-width: 380px; width: 100%;
  aspect-ratio: 9 / 16;

}
.story-video {
  width: 100%; height: 100%; object-fit: cover;  border-radius: 16px; overflow: hidden;
}
.progress-bar {
  position: absolute; top: 8px; left: 8px; right: 8px;
  height: 4px; background: rgba(255,255,255,.3);
  border-radius: 2px; overflow: hidden;
}
.progress {
  height: 100%; width: 0%; background: white; transition: width linear;
}
.close-story, .nav {
  position: absolute;
  border: none;
  background: rgba(0,0,0,.4);
  color: white;
  cursor: pointer;
  font-size: 28px;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.close-story { top: 10px; right: 10px; }
.nav.prev { left: -60px; top: 50%; transform: translateY(-50%); }
.nav.next { right: -60px; top: 50%; transform: translateY(-50%); }
.whatsapp-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0,0,0, 0.35);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 100px;
  transition: background-color .2s ease;
  width: 260px;
  text-align: center;
}
.whatsapp-btn:hover {
  background-color: #AE1547;
	color:#fff;
}

@media (max-width: 600px) {
  .nav.prev { left: 10px; }
  .nav.next { right: 10px; }
}