/* Product Gallery Slider Styles */

.project_container-image {
  position: relative;
}

.product-gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-gallery-slider .gallery-slide {
  outline: none;
}

.product-gallery-slider .gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slick Navigation Arrows */
.product-gallery-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
}

.product-gallery-slider .slick-arrow::before {
  font-family: 'FontAwesome';
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  display: block;
}

.product-gallery-slider .slick-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.product-gallery-slider .slick-prev {
  left: 10px;
}

.product-gallery-slider .slick-prev::before {
  content: '\f053'; /* FontAwesome left arrow */
}

.product-gallery-slider .slick-next {
  right: 10px;
}

.product-gallery-slider .slick-next::before {
  content: '\f054'; /* FontAwesome right arrow */
}

/* Slick Dots */
.product-gallery-slider .slick-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-gallery-slider .slick-dots li {
  margin: 0;
  padding: 0;
}

.product-gallery-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 0;
  transition: all 0.3s ease;
}

.product-gallery-slider .slick-dots li.slick-active button {
  background: #fff;
}

.product-gallery-slider .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-gallery-slider .slick-arrow {
    width: 35px;
    height: 35px;
  }

  .product-gallery-slider .slick-arrow::before {
    font-size: 16px;
    line-height: 35px;
  }

  .product-gallery-slider .slick-prev {
    left: 5px;
  }

  .product-gallery-slider .slick-next {
    right: 5px;
  }

  .product-gallery-slider .slick-dots {
    bottom: 10px;
  }

  .product-gallery-slider .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .product-gallery-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }

  .product-gallery-slider .slick-arrow::before {
    font-size: 14px;
    line-height: 30px;
  }

  .product-gallery-slider .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
