/* The slider container */
.luxthemespro-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden; 
}

/* The slider wrapper: use flex to line up slides horizontally */
.luxthemespro-slider-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

/* Each slide (horizontally placed) */
.luxthemespro-slide {
  /* The JS sets the width inline, so we don't force 100% here if not needed */
  flex: 0 0 auto;
  box-sizing: border-box;
  text-align: center;
  overflow-wrap: break-word;  
  word-break: break-all;      
}

/* Navigation buttons */
.luxthemespro-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  opacity: 0.6;
}
.luxthemespro-button:hover {
  opacity: 1;
}
.luxthemespro-button-prev {
  left: 10px;
}
.luxthemespro-button-next {
  right: 10px;
}

/* Pagination dots container */
.luxthemespro-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

/* Pagination dot */
.luxthemespro-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}
.luxthemespro-pagination-dot.active {
  background: #333;
}
.luxthemespro-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.luxthemespro-lightbox-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  background: #fff;
  padding: 20px;
}

.luxthemespro-lightbox-content {
  position: relative;
}

.luxthemespro-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.luxthemespro-lightbox-prev,
.luxthemespro-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 36px;
  color: #333;
  cursor: pointer;
  padding: 10px;
}

.luxthemespro-lightbox-prev {
  left: 10px;
}

.luxthemespro-lightbox-next {
  right: 10px;
}
