.kkgs-btn {
  background: transparent !important;
  border: 0;
  padding: 6px;
  cursor: pointer;
  line-height: 0;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}
/* Hover/focus: hiçbir görsel değişim olmasın */
.kkgs-btn:hover,
.kkgs-btn:focus {
  background: transparent !important;
  outline: none;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

.kkgs-icon { display: inline-block; }

/* Overlay (siteyi hafif karart) */
.kkgs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 999997;
}
.kkgs-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
  /* X imleci overlay (sidebar DIŞI) alanda görünsün */
  cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48bGluZSB4MT0iNiIgeTE9IjYiIHgyPSIyMCIgeTI9IjIwIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjxsaW5lIHgxPSIyMCIgeTE9IjYiIHgyPSI2IiB5Mj0iMjAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PC9zdmc+'), auto;
}

/* Sidebar */
.kkgs-sidebar {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: var(--kkgs-width, 360px);
  max-width: 92vw;
  transform: translateX(100%);
  background: #ffffff; /* Açılınca arkaplan beyaz */
  color: #1F1914;
  box-shadow: -12px 0 24px rgba(0,0,0,.2);
  transition: transform .35s ease;
  z-index: 999998;
  cursor: auto;
}
.kkgs-sidebar.is-open { transform: translateX(0); }

/* Kapat butonu görünmesin */
.kkgs-close {
  position: absolute;
  top: 12px; right: 16px;
  background: transparent;
  border: 0;
  font-size: 28px;
  color: #1F1914;
  cursor: pointer;
  display: none !important;
}

.kkgs-inner {
  padding: 90px 20px 28px 20px; /* Üst padding 90px */
  overflow: auto;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: 16px;
  justify-items: center;   /* yatayda ortala */
  align-items: start;
  text-align: center;
}

/* Bloklar ve görseller ortalansın */
.kkgs-block { width: 100%; }
.kkgs-block--logo img { max-width: 180px; height: auto; display:block; margin: 0 auto; }
.kkgs-block--text1, .kkgs-block--text2, .kkgs-block--contact { text-align: center; }

/* Galeri grid */
.kkgs-block--gallery { width: 100%; }
.kkgs-gallery {
  display: grid;
  gap: 12px;
  align-items: start;
  justify-items: center;
}
.kkgs-gallery-item { width: 100%; }
.kkgs-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.kkgs-gallery-item figcaption {
  font-size: 12px;
  margin-top: 6px;
}

/* Küçük ekran uyumu */
@media (max-width: 480px) {
  .kkgs-inner { padding: 90px 16px 16px 16px; }
  .kkgs-block--logo img { max-width: 150px; }
  .kkgs-gallery { grid-template-columns: 1fr !important; }
}
