.product-image-link {
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.product-image-link:hover {
  opacity: 0.8;
}

.product-image-link img {
  transition: transform 0.3s ease;
}

.product-image-link:hover img {
  transform: scale(1.05);
}

/* Lightbox özelleştirmeleri */
.lightbox img {
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.lb-data .lb-details {
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 4px;
}

.lb-caption {
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .lightbox {
    width: 90% !important;
  }
  
  .lb-container {
    padding: 0 !important;
  }
}
