:root {
  /* Ana renkler */
  --color-bg: #050506;
  --color-bg-overlay: rgba(0, 0, 0, 0.58);
  --color-wood-fallback: #1c130d;

  --color-primary: #e3b34c;
  --color-primary-soft: #f1d287;
  --color-text: #f4eee2;
  --color-text-muted: #b9b1a3;

  --color-border-soft: rgba(243, 217, 163, 0.22);

  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.85);

  --container-max: 1120px;
}
/* SCROLLBAR – Premium Modese Style */

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #f1d287 rgba(0, 0, 0, 0.55);
  scroll-behavior: smooth;
}

/* WebKit (Chrome, Edge, Opera) */
::-webkit-scrollbar {
  width: 8px;
  background: rgba(0, 0, 0, 0.55);
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #e3b34c, #f3d58a);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f3d58a, #e3b34c);
}


/* GENEL */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: var(--color-wood-fallback);
  background-image: url("bg-wood.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* Siyah overlay */

.page-overlay {
  position: fixed;
  inset: 0;

  z-index: 0;
}

.page-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* HEADER */

.site-header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  background: rgba(8, 8, 8, 0.4);
  backdrop-filter: blur(5px);
  transition: all 0.18s ease-out;
}

.nav-link i {
  font-size: 16px;
}

.nav-link:hover {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(8, 8, 8, 0.7);
}

.nav-link-accent {
  border-color: rgba(227, 179, 76, 0.5);
  color: var(--color-primary-soft);
}

/* HERO */

.hero {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px 20px 80px;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-inner {
  max-width: 720px;
  padding: 28px 26px 30px;
  border-radius: var(--radius-xl);
 background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
  margin: 0 0 10px;
}

.hero-title {
  margin: 0 0 14px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.15;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-subtitle {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.btn i {
  font-size: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, #e3b34c, #f3d58a);
  color: #15120a;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-text);
  background: rgba(10, 10, 10, 0.7);
}

.btn-ghost:hover {
  background: rgba(18, 18, 18, 0.9);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-item i {
  font-size: 16px;
  color: var(--color-primary-soft);
}

.hero-signature {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--color-text-muted);
}

.hero-sign-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-sign-role {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
}

.hero-scroll i {
  font-size: 20px;
  animation: scroll-bounce 1.4s infinite ease-in-out;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* GENEL SECTION STİLLERİ */

.section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.section-inner {
  background: rgba(6, 6, 6, 0.9);
  border-radius: var(--radius-xl);
  padding: 26px 24px 30px;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
}

.section-header {
  margin-bottom: 22px;
}

.section-header-center {
  text-align: center;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
  margin: 0 0 6px;
}

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 24px;
  margin: 0;
}

.section-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 10px 0 0;
}

/* USTA BÖLÜMÜ */

.section-usta .section-inner {
  background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
}

/* Başlık bloğu ortada */
.section-usta .section-header {
  text-align: center;
  margin-bottom: 18px;
}

/* Metin bloğu – tek kolon, ortalanmış */
.usta-layout {
  display: flex;
  justify-content: center;
}

.usta-text {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.usta-text p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Badge’ler ortalı ve tek satıra zorlamıyor */
.usta-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.usta-badge {
  display: flex;              /* BUNU EKLİYORUZ */
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--color-text-muted);
}

.usta-badge i {
  font-size: 16px;
  color: var(--color-primary-soft);
}





/* KATALOG GRID */

.section-koleksiyon .section-inner {
  background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
}

.koleksiyon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.koleksiyon-card {
  background: radial-gradient(
      circle at top left,
      rgba(227, 179, 76, 0.05),
      transparent 55%
    ),
    rgba(10, 10, 10, 0.96);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.koleksiyon-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.koleksiyon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-out;
}

.koleksiyon-card:hover .koleksiyon-image img {
  transform: scale(1.03);
}

.koleksiyon-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(227, 179, 76, 0.4);
  color: var(--color-primary-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.koleksiyon-body {
  padding: 12px 12px 14px;
}

.koleksiyon-title {
  margin: 0 0 6px;
  font-size: 15px;
}

.koleksiyon-text {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.koleksiyon-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.koleksiyon-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.koleksiyon-meta i {
  font-size: 14px;
  color: var(--color-primary-soft);
}

.koleksiyon-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.9);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.koleksiyon-note i {
  font-size: 16px;
  margin-top: 1px;
  color: var(--color-primary-soft);
}
.koleksiyon-cta {
  margin-top: 20px;
  margin-bottom: 6px;
  text-align: center;
}

.koleksiyon-cta .btn {
  padding-inline: 26px;
}

.koleksiyon-cta-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* PROCESS */

.section-process .section-inner {
  background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.process-step {
  background: rgba(10, 10, 10, 0.96);
  border-radius: var(--radius-lg);
  padding: 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--color-text-muted);
}

.process-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: rgba(227, 179, 76, 0.08);
  border: 1px solid rgba(227, 179, 76, 0.5);
}

.process-icon i {
  font-size: 18px;
  color: var(--color-primary-soft);
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--color-text);
}



/* RANDEVU BÖLÜMÜ – Zarif Versiyon */

.section-randevu .section-inner {
  background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
  padding: 34px 26px 32px;
}

.section-randevu-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.randevu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: flex-start;
}

.randevu-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.randevu-info {
  margin-top: 4px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.randevu-info p {
  margin: 0 0 0px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: var(--color-text-muted);
}
.randevu-links {
  margin: 0 0 6px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: var(--color-text-muted);
  transition: all 0.2s ease-in-out;
}
.randevu-info a:hover {

  color: var(--color-text);
}

.randevu-info i {
  font-size: 16px;
  color: var(--color-primary-soft);
  margin-top: 1px;
}

.randevu-note {
  margin-top: 4px;
  font-size: 12px;
}

/* Map kısmı – sade, cam gibi */

.randevu-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(227, 179, 76, 0.22);
}

/* Mobile */

@media (max-width: 768px) {
  .hero {
  padding: 6px 20px 80px;
}
  .section-randevu .section-inner {
    padding: 24px 18px 26px;
  }

  .randevu-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .randevu-map iframe {
    height: 220px;
  }
}


/* FOOTER */

.site-footer {
  padding: 22px 20px 26px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-tagline {
  font-size: 11px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-meta a{
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
.footer-meta a:hover{
  color: var(--color-primary);

}
/* RESPONSIVE */

@media (max-width: 992px) {
  .koleksiyon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0px 20px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 70px;
  }

  .hero-inner {
    padding: 22px 18px 24px;
  }

  .hero-title {
    font-size: 30px;
  }

  .section {
    padding: 32px 16px 46px;
  }

  .section-inner {
    padding: 20px 18px 22px;
  }

  .usta-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .usta-photo {
    justify-content: flex-start;
  }

  .koleksiyon-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .randevu-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* KATALOG SAYFASI */
/* KATALOG YÖNLENDİRME SAYFASI */

.section-katalog-hero .section-inner {
  background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
}

.section-katalog-categories .section-inner {
  background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
}

/* Grid */

/* Basit premium kategori kartları */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(
      circle at top left,
      rgba(227, 179, 76, 0.08),
      transparent 55%
    ),
    rgba(6, 6, 6, 0.94);
  box-shadow: 0 16px 38px rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease-out, box-shadow .18s ease-out, border-color .18s ease-out;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 179, 76, 0.45);
  box-shadow: 0 20px 48px rgba(0,0,0,0.9);
}

/* Görsel */
.category-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.82);
  transition: filter .25s ease-in-out;
}

.category-card:hover .category-image {
  filter: brightness(.96);
}

.category-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 179, 76, 0.08);
  border: 1px solid rgba(227, 179, 76, 0.55);
  margin-bottom: 4px;
}

.category-icon i {
  font-size: 18px;
  color: var(--color-primary-soft);
}

/* Başlık */
.category-title {
  margin: 12px auto 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.category-desc {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.category-link {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-primary-soft);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-link i {
  font-size: 16px;
}

/* Responsive */

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* DETAY KATALOG SAYFALARI */

.section-katalog-hero .section-inner {
  background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
}

.section-katalog-grid .section-inner {
  background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
}


/* Grid & Kartlar */

/* DETAY KATALOG – TEK SÜTUN GENİŞ KARTLAR */

.katalog-grid {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.katalog-card {
  background: linear-gradient(
      135deg,
      rgba(227, 179, 76, 0.08),
      rgba(6, 6, 6, 0.92)
    );
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out,
    border-color 0.2s ease-out;
}

.katalog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 179, 76, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.95);
}

.katalog-body {
  padding: 2px 2px 0;
}

.katalog-title {
  margin: 0 0 6px;
  font-size: 16px;
}

.katalog-desc {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.katalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.katalog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.katalog-meta i {
  font-size: 14px;
  color: var(--color-primary-soft);
}

/* Galeri */

.katalog-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.katalog-thumb {
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  isolation: isolate;
}

.katalog-thumb img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.25s ease-out, filter 0.25s ease-out;
  filter: brightness(0.9);
}

.katalog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.katalog-thumb:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.katalog-thumb:hover::after {
  opacity: 1;
}

/* Mobile: galeri 2 sütun */

@media (max-width: 768px) {
  .katalog-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .katalog-thumb img {
    height: 180px;
  }
}
/* LIGHTBOX – Fotoğraf büyütme */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease-out;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  max-width: 1080px;
  width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.95);
  transform: scale(0.96);
  transition: transform 0.22s ease-out;
}

.lightbox.is-open .lightbox-inner {
  transform: scale(1);
}

.lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  cursor: pointer;
}

.lightbox-close i {
  font-size: 18px;
}

/* Basit Fade-In */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
