/* ====== IOS Promo Slider ====== */
.iospromo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  background: #fff;
}

.iospromo-slides {
  position: relative;
  height: 360px;
}

.iospromo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .6s ease, transform .6s ease;
}

.iospromo-slide.active {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
}

.iospromo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.iospromo-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 16px;
  color: #111;
  font-weight: 600;
}

.iospromo-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.9);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: .3s;
}

.iospromo-btn:hover {
  background: #fff;
}

.iospromo-btn.prev { left: 14px; }
.iospromo-btn.next { right: 14px; }

.iospromo-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.iospromo-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.2);
  cursor: pointer;
  transition: .3s;
}

.iospromo-dots button.active {
  background: #111;
}

/* Responsive */
@media(max-width:768px) {
  .iospromo-slides { height: 240px; }
  .iospromo-caption { font-size: 14px; padding: 10px 14px; }
}