.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.modal img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}

.modal-kapat {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #f0f0f0;
}

header {
    background-color: #222;
    padding: 2rem;
    text-align: center;
    border-bottom: 4px solid #00bfff;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #00bfff;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Galeri Grid */
.galeri-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.galeri {
    display: flex;
    gap: 1rem;
    position: relative;
}

.galeri::-webkit-scrollbar {
    height: 8px; /* göstermek için yükseklik */
}

.galeri::-webkit-scrollbar-thumb {
    background: #00bfff;  /* mavi kaydırma barı */
    border-radius: 4px;
}

.galeri::-webkit-scrollbar-track {
    background: #222; /* ray arka plan rengi */
}

.galeri img {
    flex-shrink: 0;
    width: 200px; /* ya da istediğin sabit genişlik */
    height: 150px; /* oranlı belirlemek için */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}
.galeri img:hover {
    transform: scale(1.03);
}

/* Ürün bilgisi */
.bilgi h2 {
    color: #00bfff;
    margin-top: 1rem;
}
.bilgi p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 1rem;
    border-top: 2px solid #00bfff;
    margin-top: 2rem;
    font-size: 0.9rem;
}