.simple-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
}
.simple-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-out;
}
.simple-slide {
  flex: 0 0 80%;
  margin-right: 5px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.simple-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black-40);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: background 0.3s;
}
.simple-slider-arrow:hover { background: var(--black-60); }
.simple-slider-arrow.left { left: 10px; }
.simple-slider-arrow.right { right: 10px; }
.simple-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.simple-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.simple-slider-dot:hover { background: rgba(255,255,255,0.8); }
.simple-slider-dot.active { background: white; }
@media (max-width: 767px) {
  .simple-slider { height: 250px; }
  .simple-slide { flex: 0 0 90%; }
}
@media (max-width: 479px) {
  .simple-slider { height: 200px; }
  .simple-slide { flex: 0 0 95%; }
}
