.kakani-filters {
  text-align: center;
  margin-bottom: 20px;
}

.kakani-filters button {
  padding: 8px 16px;
  margin: 5px;
  border: none;
  background: #1f7a3f;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.kakani-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap: 20px;
}

.kakani-gallery .item {
  position: relative;
  cursor: pointer;
}

.kakani-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Watermark */
.kakani-gallery .item::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 30px;
  background: url('watermark.png') no-repeat center/contain;
  opacity: 0.7;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}
