/* Основной шрифт */
body {
  font-family: "Inter", sans-serif;
}

/* ─── ДЕКОР ИЗ СТАРОГО ДИЗАЙНА ─── */
#bann::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
#bann::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: 120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* Стили для Swiper (Слайдер) */
.swiper {
  width: 100%;
  padding-bottom: 50px !important;
}

.swiper-slide {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Цвет стрелок слайдера */
.swiper-button-next,
.swiper-button-prev {
  color: #f5c800 !important;
}
.swiper-pagination-bullet-active {
  background: #f5c800 !important;
}

/* Анимация попапа */
.popup-anim {
  animation: popIn 0.25s ease;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Анимация при скролле */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
