@charset "UTF-8";
/* CSS Document */

.slider-container {
  position: relative;
  max-width: 1600px;
  width: 100%;
  /* 1600px x 512px aspect ratio maintenance */
  aspect-ratio: 1600 / 512;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px; /* Optional rounded corners */
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active, .dot:hover {
  background: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .slider-btn {
    padding: 8px 12px;
    font-size: 16px;
	  font-weight: bold;
  }
  
.price{

    font-size:20px;

    color:#213e37;

    font-weight:bold;

}	
  .dot {
    width: 8px;
    height: 8px;
  }
}