
.popup-overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


.popup {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  animation: fadeInUp 0.4s ease;
  position: relative;
}

.popup-content {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}


.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;


}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.carusel {
  scroll-snap-type: x mandatory;
  overflow: auto;
  max-width: 673px;
}

.carusel-item {
  scroll-snap-align: center;
}

@media (max-width: 768px) {
  .carusel {

  max-width: 487px;
}
}

@media (max-width: 1024px) {
  .carusel {

  max-width: 525px;
}
}