.iosBtnSliderWrap { text-align:center; }
.iosBtnSlider {
  display:flex; flex-wrap:wrap; gap:12px;
  justify-content:center; margin-bottom:16px;
}
.iosBtnSlide {
  background:#f5f5f5; border:none; border-radius:18px;
  padding:12px 20px; font-size:14px; font-weight:600;
  cursor:pointer; transition:.3s; text-decoration:none; color:#333;
}
.iosBtnSlide.active {
  background:#007aff; color:#fff;
  transform:scale(1.1);
  box-shadow:0 0 15px rgba(0,122,255,.4);
}

.iosBtnDots { display:flex; justify-content:center; gap:8px; }
.iosDot {
  width:10px; height:10px; border-radius:50%;
  background:#ccc; animation:pulse 1.2s infinite;
}
.iosDot.active {
  background:#28a745;
  box-shadow:0 0 10px rgba(40,167,69,.6);
}
@keyframes pulse {
  0%{transform:scale(1);opacity:1;}
  50%{transform:scale(1.4);opacity:.6;}
  100%{transform:scale(1);opacity:1;}
}