/* === WRAPPER SLIDER === */
.holan-portfolio-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* === SLIDE TRACK === */
  .slider-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
  }
  
  /* === SLIDE ITEM === */
  .slide-item {
    min-width: 100%;
    height: 400px; 
    overflow: hidden;
    position: relative;
  }
  
  .slide-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
  }
  
  .magnifier-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    opacity: 1;
    pointer-events: none; /* biar klik tetep ke <a> */
}

.slide-link:hover .magnifier-icon {
    opacity: 1;
    transform: scale(1);
}

.magnifier-icon svg {
    width: 36px;
    height: 36px;
}
  
  /* === KONTROL BAWAH GAMBAR === */
  .holan-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 15px;
  }
  
  /* === TOMBOL PANAH === */
  .slider-btn {
    background-color: #C7AE90;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* === DOTS PAGINATION (OVAL) === */
  .slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  
  .slider-dots .dot {
    width: 20px;          /* lebar */
    height: 4px;          /* pendek */
    background-color: #171717;
    border-radius: 2px;   /* oval lembut */
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-dots .dot.active {
    opacity: 1;
    background-color: #171717;
    width: 24px;          /* sedikit lebih panjang saat aktif */
  }

  /* === Lightbox Custom === */
.holan-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.holan-lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.lightbox-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s ease;
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-nav button:hover {
  opacity: 0.7;
}

  
  /* === RESPONSIVE === */
  @media (max-width: 600px) {
    .slide-item {
      height: 200px; /* lebih kecil di mobile */
    }
  
    .slider-btn {
      width: 32px;
      height: 32px;
      font-size: 16px;
    }
  
    .slider-dots .dot {
      width: 12px;
      height: 3px;
    }
  
    .slider-dots .dot.active {
      width: 18px;
    }
  }
  