/* ==================== PRICE LIST SLIDER ==================== */
.pricelist-section {
  padding: 3rem 0;
  background: var(--color2);
}

.pricelist-section h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--color5);
  margin-bottom: 0.5rem;
}

.pricelist-section .subtitle {
  text-align: center;
  color: var(--color4);
  margin-bottom: 2rem;
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  text-align: center;
  margin-bottom: 2rem;
}

.dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 8px;
  background: var(--color3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot:hover {
  background: var(--color4);
  transform: scale(1.2);
}

.dot.active {
  background: var(--color5);
  width: 40px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    height: 400px;
  }
  
  .slider-btn {
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
  }
  
  .dot.active {
    width: 30px;
  }
}
