.galery {

  background: var(--background-color);
}

.galery_title h1 {
  display: flex;
  justify-content: center;
  padding-bottom: 1em;

}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin: 0 auto;
}

.comparison-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #ddd;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

/* Gornja slika (Pre) */
.before {
  z-index: 2;
  width: 50%;
  border-right: 2px solid white;
}

/* Nevidljivi kontroler */
.slider-input {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.label {
  position: absolute;
  top: 15px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 20px;
  font-size: 11px;
  z-index: 5;
  font-weight: bold;
  letter-spacing: 1px;
}

.label-before {
  left: 15px;
}

.label-after {
  right: 15px;
}

/* Responzivnost za mobilne */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}