.slider-dots {
  display: none;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d9d9d9;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: #f9685a;
  transform: scale(1.1);
}
