/* =========================================================
   Karahan Mobilya — Premium Tasarım Sistemi v2.0
   Malgır Mobilya tarzı — Bej Palet
   Renkler: Bej #D9C6AE / Kırık Beyaz #FAF8F5 / İpek #F4F2EE
            Mat Siyah #1E1E1E / Antrasit #4A4A4A / Altın #B8925A
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bej:       #D9C6AE;
  --bej-2:     #C7B196;
  --bej-3:     #EDE0CF;
  --krem:      #FAF8F5;
  --ipek:      #F4F2EE;
  --siyah:     #1E1E1E;
  --antrasit:  #4A4A4A;
  --line:      rgba(30,30,30,.09);
  --altin:     #B8925A;
  --altin-2:   #9A7A47;
  --shadow-1:  0 4px 24px -8px rgba(30,30,30,.18);
  --shadow-2:  0 20px 60px -20px rgba(30,30,30,.25);
  --shadow-3:  0 40px 100px -30px rgba(30,30,30,.22);
  --radius:    14px;
  --radius-lg: 20px;
  --f-serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --f-sans:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --header-h:  112px;
  --transition: all .3s cubic-bezier(.25,.8,.25,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  background: var(--krem);
  color: var(--siyah);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--altin); }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: inherit; }

/* ===== LAYOUT ===== */
.container { width: min(1280px, 94%); margin: 0 auto; }
.container-wide { width: min(1400px, 96%); margin: 0 auto; }

/* ===== TİPOGRAFİ ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--f-serif);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--siyah);
  line-height: 1.15;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
.eyebrow {
  font-family: var(--f-sans);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--altin);
  font-weight: 500;
}
.muted { color: var(--antrasit); }
.divider { width: 50px; height: 1.5px; background: var(--altin); margin: 14px 0 20px; }

/* ===== BUTONLAR ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .04em;
  transition: var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-dark {
  background: var(--siyah);
  color: #fff;
  border-color: var(--siyah);
}
.btn-dark:hover {
  background: var(--antrasit);
  color: var(--bej);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.btn-ghost {
  background: transparent;
  border-color: var(--siyah);
  color: var(--siyah);
}
.btn-ghost:hover {
  background: var(--siyah);
  color: #fff;
}
.btn-bej {
  background: var(--bej);
  color: var(--siyah);
  border-color: var(--bej);
}
.btn-bej:hover {
  background: var(--bej-2);
  border-color: var(--bej-2);
  transform: translateY(-2px);
}
.btn-altin {
  background: var(--altin);
  color: #fff;
  border-color: var(--altin);
}
.btn-altin:hover {
  background: var(--altin-2);
  transform: translateY(-2px);
}
.btn-premium-send {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  justify-content: center;
  height: 50px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-radius: 11px;
  background: var(--siyah);
  color: #fff;
  border: 1.5px solid var(--siyah);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-premium-send svg {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-premium-send:hover {
  background: var(--altin);
  border-color: var(--altin);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 146, 90, 0.22);
}
.btn-premium-send:hover svg {
  transform: translate(3px, -3px);
}
.btn-ghost-white {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
.btn-sm { padding: 9px 18px; font-size: .8rem; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--altin), var(--bej));
  z-index: 200;
  transition: width .1s linear;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 380px; height: 380px;
  pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(184,146,90,.18), transparent 60%);
  transform: translate(-50%,-50%);
  transition: transform .1s ease-out;
  mix-blend-mode: multiply;
}
@media (hover:none) { .cursor-glow { display: none; } }

/* ===================================================
   HEADER — Malgır tarzı sticky header
=================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,.94);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
  height: var(--header-h);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px -4px rgba(30,30,30,.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .02em;
  flex-shrink: 0;
  text-decoration: none !important;
}
.brand:hover { color: var(--siyah) !important; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--siyah), var(--antrasit));
  color: var(--bej);
  display: grid; place-items: center;
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 600;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--siyah);
  line-height: 1.1;
}
.brand-sub {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--antrasit);
  font-family: var(--f-sans);
  font-weight: 400;
}

/* Ana Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.main-nav > .nav-item {
  position: relative;
}
.main-nav > .nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--siyah);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav > .nav-item > a:hover,
.main-nav > .nav-item.active > a {
  color: var(--altin);
  background: rgba(184,146,90,.08);
}
.main-nav > .nav-item > a .arrow {
  font-size: .65rem;
  transition: transform .3s ease;
  display: inline-block;
}
.main-nav > .nav-item:hover > a .arrow {
  transform: rotate(180deg);
}

/* Mega / Dropdown Menü — Aşağı Kayma */
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: var(--shadow-2);
  z-index: 50;
}
.main-nav > .nav-item:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .875rem;
  color: var(--siyah);
  transition: var(--transition);
}
.nav-drop-menu a:hover {
  background: var(--ipek);
  color: var(--altin);
  padding-left: 18px;
}
.nav-drop-menu a::before {
  content: '›';
  color: var(--altin);
  font-size: 1rem;
  opacity: 0;
  transition: opacity .2s ease;
}
.nav-drop-menu a:hover::before { opacity: 1; }

/* Header Sağ Aksiyonlar */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--antrasit);
  padding: 6px 10px;
}
.header-tel:hover { color: var(--altin); }
.header-tel svg { flex-shrink: 0; }

.header-social-link {
  color: #5D3E21;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: var(--transition);
  background: transparent;
}
.header-social-link:hover {
  background: transparent;
  color: var(--altin);
  transform: translateY(-2px);
}
.header-social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

@media (max-width: 640px) {
  .header-right-actions { display: none !important; }
}
.nav-toggle span {
  width: 18px; height: 1.5px;
  background: var(--siyah);
  display: block;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ===== MOBİL OVERLAY MENÜ ===== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-panel {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--siyah);
  z-index: 95;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.25,.8,.25,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav-header .brand-text { color: var(--bej); }
.mobile-nav-header .brand-mark { background: var(--altin); color: #fff; }
.mobile-nav-close {
  background: rgba(255,255,255,.08);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.15); }
.mobile-nav-body {
  padding: 16px;
  flex: 1;
}
.mobile-nav-body .m-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  color: rgba(255,255,255,.85);
  border-radius: 10px;
  font-size: .93rem;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-nav-body .m-nav-link:hover { background: rgba(255,255,255,.07); color: var(--bej); }
.mobile-nav-body .m-nav-link .arrow { font-size: .7rem; transition: transform .3s ease; }
.mobile-nav-body .m-sub-menu {
  display: none;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  margin: 4px 0 8px;
  overflow: hidden;
}
.mobile-nav-body .m-sub-menu.open { display: block; }
.mobile-nav-body .m-sub-menu a {
  display: block;
  padding: 11px 24px;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: var(--transition);
}
.mobile-nav-body .m-sub-menu a:hover { color: var(--bej); padding-left: 30px; }
.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-footer .btn { width: 100%; justify-content: center; }

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: #0C0A07;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.7) saturate(1.05);
  transform: scale(1.02);
  will-change: transform;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: 
    linear-gradient(90deg, rgba(12, 10, 7, 0.82) 0%, rgba(12, 10, 7, 0.45) 45%, rgba(12, 10, 7, 0.15) 100%),
    linear-gradient(to bottom, rgba(12, 10, 7, 0.15) 0%, rgba(12, 10, 7, 0) 50%, rgba(12, 10, 7, 0.75) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 140px 0 120px;
  max-width: 800px;
}
.hero .eyebrow { 
  color: var(--altin); 
  font-size: .78rem; 
  letter-spacing: .25em; 
  font-weight: 600; 
  margin-bottom: 14px; 
  display: inline-block; 
}
.hero h1 { 
  font-family: var(--f-sans);
  color: #fff; 
  max-width: 100%; 
  text-align: left;
  margin: 0 0 20px; 
  font-size: clamp(2.6rem, 5.2vw, 4.4rem); 
  line-height: 1.12; 
  font-weight: 800; 
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .hero h1 {
    white-space: normal;
  }
}
.hero p { 
  color: rgba(250,248,245,.82); 
  font-size: 1.1rem; 
  line-height: 1.68;
  max-width: 48ch; 
  margin-bottom: 38px; 
  font-weight: 300; 
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================================================
   SEKSİYONLAR
=================================================== */
.section { padding: 100px 0; }
.section-alt { background: var(--ipek); }
.section-dark { background: var(--siyah); color: #fff; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.section-head .title p {
  color: var(--antrasit);
  max-width: 52ch;
  margin-top: 10px;
  font-size: .95rem;
}
.section-head h2 { margin: 0; }

/* ===================================================
   KATEGORİ KARTLARI
=================================================== */
.kat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kat-grid.kat-grid-3 { grid-template-columns: repeat(3, 1fr); }

.kat-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ipek);
  box-shadow: var(--shadow-1);
  display: block;
}
.kat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.kat-card:hover img { transform: scale(1.1); }
.kat-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(30,30,30,.8));
}
.kat-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  color: #fff;
  z-index: 2;
  transform: translateY(4px);
  transition: transform .4s ease;
}
.kat-card:hover .kat-body { transform: translateY(0); }
.kat-body h3 { color: #fff; font-size: 1.3rem; margin: 0; }
.kat-body span {
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .8;
}
.kat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bej-3);
  margin-top: 8px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .35s ease;
}
.kat-card:hover .kat-arrow { opacity: 1; transform: translateX(0); }

/* ===================================================
   KATEGORİ İKONLU KARTLAR (Malgır Tarzı Bej)
=================================================== */
.kat-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.kat-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}
.kat-icon-box {
  width: 100%;
  aspect-ratio: 16/12.5;
  background: var(--bej);
  border-radius: 6px;
  display: grid;
  place-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-1);
}
.kat-icon-box svg, .kat-icon-img {
  width: 44%;
  height: 44%;
  color: #fff;
  transition: var(--transition);
}
.kat-icon-title {
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--siyah);
  font-family: var(--f-sans);
  letter-spacing: .02em;
  transition: color .25s ease;
}
.kat-icon-item:hover .kat-icon-box {
  background: var(--altin);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.kat-icon-item:hover .kat-icon-box svg {
  transform: scale(1.08);
}
.kat-icon-item:hover .kat-icon-title {
  color: var(--altin);
}

@media (max-width: 1200px) {
  .kat-icon-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .kat-icon-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .kat-icon-box svg, .kat-icon-img { width: 53%; height: 53%; }
}
@media (max-width: 480px) {
  .kat-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .kat-icon-title { font-size: .78rem; }
}

/* ===================================================
   ÜRÜN KARTLARI
=================================================== */
.urun-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.urun-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .45s ease, box-shadow .45s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.urun-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}
.urun-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ipek);
  position: relative;
}
.urun-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}
.urun-card:hover .urun-thumb img { transform: scale(1.07); }
.urun-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px; z-index: 2;
}
.badge {
  background: var(--altin);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.badge-bej { background: var(--siyah); color: #fff; }
.urun-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.urun-body .kat-label {
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--antrasit);
}
.urun-body h3 {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.fiyat {
  margin-top: auto;
  padding-top: 10px;
  font-weight: 600;
  color: var(--siyah);
  font-size: .95rem;
}
.fiyat .eski {
  text-decoration: line-through;
  color: var(--antrasit);
  font-size: .8rem;
  font-weight: 400;
}
.urun-actions {
  display: flex;
  gap: 8px;
  padding: 0 18px 18px;
}
.urun-actions .btn { flex: 1; padding: 10px 12px; font-size: .78rem; justify-content: center; }

/* ===================================================
   HAKKIMIZDA BÖLÜMÜ
=================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
}
.about-img-wrap.home-about-img img {
  aspect-ratio: 1/1;
  max-height: 460px;
}
.about-img-wrap:hover img {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.18);
}
.about-badge {
  position: absolute;
  bottom: 20px;
  right: -25px;
  background: #111111;
  color: #fff;
  padding: 24px 34px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  border: 1.5px solid var(--altin);
  min-width: 150px;
  z-index: 5;
}
.about-badge .n {
  font-family: var(--f-sans);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--bej-3);
  line-height: 0.95;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.about-badge .l {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* ===================================================
   İSTATİSTİKLER
=================================================== */
.stats {
  background: var(--siyah);
  color: #fff;
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { border-right: 1px solid rgba(255,255,255,.08); padding: 10px 0; }
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--f-serif);
  font-size: 3.2rem;
  color: var(--bej);
  line-height: 1;
  font-weight: 500;
}
.stat .n-plus::after { content: '+'; font-size: 2rem; vertical-align: top; margin-top: .3rem; display: inline-block; }
.stat .l {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .65;
  margin-top: 8px;
}

/* ===================================================
   REFERANS / MARKİ ŞERİDİ
=================================================== */
.ref-strip {
  background: var(--ipek);
  padding: 32px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.ref-track {
  display: flex;
  gap: 72px;
  animation: marquee 28s linear infinite;
  align-items: center;
  width: max-content;
}
.ref-track span {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--antrasit);
  white-space: nowrap;
  opacity: .6;
}
.ref-track .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--bej-2);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================================
   BLOG KARTLARI
=================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s ease, box-shadow .4s ease;
  display: block;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  color: var(--siyah);
}
.blog-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 20px 22px 26px; }
.blog-meta {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--antrasit);
  margin-bottom: 8px;
}
.blog-body h3 { font-size: 1.15rem; margin: 0 0 10px; }
.blog-body p { font-size: .9rem; color: var(--antrasit); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--altin);
  margin-top: 14px;
  letter-spacing: .04em;
}

/* ===================================================
   CTA BANNER
=================================================== */
.cta {
  background: linear-gradient(135deg, var(--bej-3) 0%, var(--bej) 50%, #E2CEB5 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8925A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 { max-width: 20ch; margin: 0 auto 14px; }
.cta p { max-width: 50ch; margin: 0 auto 28px; color: var(--antrasit); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===================================================
   FOOTER — 5 Sütun, Tam Detaylı
=================================================== */
.site-footer {
  background: #161616;
  color: #E8E4DC;
  padding: 0;
  margin-top: 0;
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}

/* Footer Sütun 1 — Marka */
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-mark { background: var(--altin); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-desc {
  font-size: .875rem;
  color: rgba(232,228,220,.6);
  line-height: 1.75;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  display: grid; place-items: center;
  color: rgba(232,228,220,.7);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-social a:hover {
  background: var(--altin);
  color: #fff;
  border-color: var(--altin);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

/* Footer Sütun Başlığı */
.footer-col h4 {
  color: #fff;
  font-family: var(--f-sans);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-list { display: flex; flex-direction: column; gap: 9px; }
.footer-list a {
  color: rgba(232,228,220,.6);
  font-size: .875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-list a::before {
  content: '›';
  color: var(--altin);
  opacity: 0;
  transition: opacity .2s ease;
}
.footer-list a:hover {
  color: var(--bej-3);
  padding-left: 6px;
}
.footer-list a:hover::before { opacity: 1; }

/* Footer İletişim Sütunu */
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(232,228,220,.6);
  font-size: .875rem;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.08);
}
.footer-contact-icon svg { width: 14px; height: 14px; color: var(--altin); }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--bej-3); }

/* Footer Alt Bar */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: .78rem;
  color: rgba(232,228,220,.4);
}
.footer-legal-links {
  display: flex;
  gap: 18px;
}
.footer-legal-links a {
  font-size: .78rem;
  color: rgba(232,228,220,.45);
  transition: color .2s ease;
}
.footer-legal-links a:hover { color: var(--bej-3); }

/* ===================================================
   SAYFA HERO (İç Sayfalar)
=================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--ipek), var(--bej-3));
  padding: 70px 0 55px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,90,.12), transparent 70%);
}
.page-hero h1 { margin: 0; }
.crumbs {
  font-size: .73rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--antrasit);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.crumbs a { color: var(--antrasit); }
.crumbs a:hover { color: var(--altin); }
.crumbs .sep { opacity: .4; }

/* ===================================================
   ÜRÜNLER FİLTRE FORMU
=================================================== */
.product-filter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  max-width: 400px;
}
.product-filter-form .input,
.product-filter-form select.input {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(184,146,90,.25);
  border-radius: 12px;
  font-size: .88rem;
  padding: 13px 18px;
  color: var(--siyah);
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.product-filter-form .input:focus,
.product-filter-form select.input:focus {
  border-color: var(--altin);
  box-shadow: 0 0 0 3px rgba(184,146,90,.1);
  outline: none;
}
.product-filter-form .btn-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  background: var(--siyah);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--f-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.product-filter-form .btn-filter:hover {
  background: var(--altin);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,146,90,.35);
}
.product-filter-form .btn-filter svg {
  flex-shrink: 0;
}

/* ===================================================
   FORM
=================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1/-1; }
.form-label {
  display: block;
  margin-bottom: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--antrasit);
}
.input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font: inherit;
  font-size: .9rem;
  color: var(--siyah);
  transition: border-color .3s ease, box-shadow .3s ease;
  appearance: none;
}
.input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--altin);
  box-shadow: 0 0 0 3px rgba(184,146,90,.12);
}
textarea { min-height: 140px; resize: vertical; }
.input.error { border-color: #c0392b; }
.alert {
  padding: 14px 18px;
  border-radius: 11px;
  margin-bottom: 16px;
  font-size: .9rem;
}
.alert-ok { background: #E8F5E3; color: #1a5e1a; border: 1px solid #b2d9a8; }
.alert-err { background: #FDE8E8; color: #7b1a1a; border: 1px solid #f0b2b2; }

/* Product Detail Responsive Headers Default */
.pd-mobile-header {
  display: none;
}
.pd-desktop-header {
  display: block;
}

/* ===================================================
   ÜRÜN DETAY
=================================================== */
.pd-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.pd-gallery { display: grid; gap: 14px; }
.pd-main {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ipek);
  border: 1px solid var(--line);
  position: relative;
}
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--siyah);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  opacity: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.pd-main:hover .pd-nav-arrow {
  opacity: 1;
}
.pd-nav-arrow:hover {
  background: var(--siyah);
  color: #fff;
}
.pd-prev-arrow { left: 16px; }
.pd-next-arrow { right: 16px; }

.pd-thumbs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 6px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.pd-thumbs::-webkit-scrollbar {
  height: 4px;
}
.pd-thumbs::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}
.pd-thumbs::-webkit-scrollbar-thumb {
  background: rgba(184, 146, 90, 0.2);
  border-radius: 4px;
}
.pd-thumbs::-webkit-scrollbar-thumb:hover {
  background: rgba(184, 146, 90, 0.4);
}
.pd-thumb-item {
  flex: 0 0 calc(25% - 8px);
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--line);
  transition: var(--transition);
  position: relative;
}
.pd-thumb-item.active {
  border-color: var(--altin);
}
.pd-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-info .eyebrow { margin-bottom: 6px; }
.pd-info h1 {
  font-family: var(--f-sans);
  font-size: 2.3rem;
  font-weight: 600;
  margin: 6px 0;
  letter-spacing: -0.02em;
}
.pd-fiyat {
  font-family: var(--f-serif);
  font-size: 2.1rem;
  color: var(--siyah);
  margin: 12px 0 20px;
  font-weight: 500;
}
.pd-specs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: .88rem;
}
.pd-specs .spec-label { color: var(--antrasit); font-weight: 500; display: block; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px; }
.pd-specs .spec-val { font-weight: 500; }
.pd-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.pd-desc { margin-top: 28px; }
.pd-desc p { color: var(--antrasit); font-size: .93rem; }

/* ===================================================
   KVKK / YASAL SAYFALAR
=================================================== */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h1 { font-family: var(--f-serif); font-size: 2.2rem; margin: 0 0 24px; color: var(--siyah); font-weight: 500; }
.legal-content h2 { font-size: 1.6rem; margin: 28px 0 12px; }
.legal-content h3 { font-size: 1.2rem; margin: 22px 0 8px; }
.legal-content p, .legal-content li {
  color: var(--antrasit);
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul { list-style: disc; padding-left: 24px; }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: .88rem;
}
.legal-content table th, .legal-content table td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
}
.legal-content table th { background: var(--ipek); font-weight: 600; }

/* ===================================================
   PROSE — ZENGİN METİN (Text Editör Çıktısı)
=================================================== */
.prose {
  color: var(--antrasit);
  font-size: .93rem;
  line-height: 1.85;
}
.prose p {
  margin: 0 0 14px;
  line-height: 1.85;
}
.prose h1 {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--siyah);
  margin: 0 0 20px;
  line-height: 1.2;
}
.prose h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--siyah);
  margin: 28px 0 14px;
  line-height: 1.25;
}
.prose h3 {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--siyah);
  margin: 22px 0 10px;
}
.prose h4, .prose h5, .prose h6 {
  font-family: var(--f-sans);
  font-weight: 600;
  color: var(--siyah);
  margin: 18px 0 8px;
}
.prose strong, .prose b {
  font-weight: 700;
  color: var(--siyah);
}
.prose em, .prose i {
  font-style: italic;
}
.prose u {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose s, .prose del {
  text-decoration: line-through;
  opacity: .65;
}
.prose a {
  color: var(--altin);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .18s;
}
.prose a:hover { opacity: .75; }
.prose ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 14px;
}
.prose ol {
  list-style: decimal;
  padding-left: 22px;
  margin: 0 0 14px;
}
.prose li {
  margin-bottom: 6px;
  line-height: 1.75;
}
.prose blockquote {
  border-left: 3px solid var(--altin);
  margin: 20px 0;
  padding: 12px 20px;
  background: rgba(184,146,90,.06);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--antrasit);
}
.prose blockquote p { margin: 0; }
.prose hr {
  border: none;
  border-top: 1.5px solid var(--line);
  margin: 24px 0;
}
.prose img {
  max-width: 100%;
  border-radius: 10px;
  margin: 12px 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: .88rem;
}
.prose table th,
.prose table td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
}
.prose table th {
  background: var(--ipek);
  font-weight: 600;
  color: var(--siyah);
}
/* Editörden gelen inline font-size & color korunur */
.prose span[style] { /* renk/boyut doğrudan geçer */ }
/* About bölümüne özel boşluk */
.about-prose { margin-top: 12px; }

/* ===================================================
   REVEAL ANİMASYON
=================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.on { opacity: 1; transform: none; }

/* ===================================================
   FLOAT BUTONLAR
=================================================== */
.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  width: 54px; height: 54px;
  border-radius: 12px;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transition: transform .3s ease;
}
.float-wa::before,
.float-wa::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: #25D366;
  z-index: -1;
  pointer-events: none;
}
.float-wa::before {
  animation: wa-pulse 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}
.float-wa::after {
  animation: wa-pulse 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite 0.7s;
}
.float-wa:hover { transform: scale(1.08) !important; color: #fff; }

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}
.back-top {
  position: fixed;
  right: 22px; bottom: 88px;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--siyah);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.back-top.on { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--altin); transform: translateY(-2px); }

/* ===================================================
   GALERI
=================================================== */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.galeri-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ipek);
}
.galeri-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.galeri-item:hover img { transform: scale(1.08); }

/* ===================================================
   SİTE HARİTASI
=================================================== */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap-col h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--siyah); }
.sitemap-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sitemap-col li a { color: var(--antrasit); font-size: .9rem; }
.sitemap-col li a:hover { color: var(--altin); }

/* ===================================================
   YÖNETİM PANELİ — TAMAMEN YENİ
=================================================== */
.admin-body {
  background: #F0EDE8;
  font-family: var(--f-sans);
  color: var(--siyah);
  min-height: 100vh;
}

/* Admin Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  width: 260px;
  background: linear-gradient(160deg, #1A1610 0%, #2A2015 100%);
  border-right: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  z-index: 50;
  transition: transform .3s ease;
  overflow-y: auto;
}
.admin-sidebar-header {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.admin-sidebar-header .brand-text { color: var(--bej-3); font-size: 1.1rem; }
.admin-sidebar-header .brand-mark { background: var(--altin); width: 34px; height: 34px; font-size: 1.1rem; border-radius: 8px; }
.admin-sidebar-sub {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
}
.admin-nav-section {
  padding: 10px 12px 4px;
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  font-weight: 600;
}
.admin-nav-body {
  padding: 12px;
  flex: 1;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: var(--transition);
  margin-bottom: 2px;
  text-decoration: none;
}
.admin-nav-link:hover {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.9);
}
.admin-nav-link.active {
  background: var(--altin);
  color: #fff;
}
.admin-nav-link.active:hover { color: #fff; }
.admin-nav-link .nav-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.admin-nav-link.active .nav-icon { background: rgba(255,255,255,.2); }
.admin-nav-link .badge-count {
  margin-left: auto;
  background: #e74c3c;
  color: #fff;
  font-size: .65rem;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 600;
}
.admin-sidebar-footer {
  padding: 14px 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.admin-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: rgba(255,100,100,.7);
  font-size: .875rem;
  transition: var(--transition);
}
.admin-logout:hover { background: rgba(255,100,100,.08); color: rgba(255,100,100,.9); }
.admin-logout .nav-icon { background: rgba(255,100,100,.08); }

/* Admin Ana İçerik */
.admin-content {
  margin-left: 260px;
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Admin Topbar */
.admin-topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 8px rgba(30,30,30,.06);
}
.admin-topbar-left { display: flex; align-items: center; gap: 14px; }
.admin-page-title { font-size: 1.05rem; font-weight: 600; }
.admin-breadcrumb { font-size: .78rem; color: var(--antrasit); display: flex; gap: 6px; align-items: center; }
.admin-topbar-right { display: flex; align-items: center; gap: 12px; }
.admin-user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--antrasit);
}
.admin-user-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--altin), var(--bej-2));
  display: grid; place-items: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
}
.admin-sidebar-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

/* Admin Main */
.admin-main {
  padding: 28px 30px;
  flex: 1;
}

/* Dashboard Kartları */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--altin);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bej-3), var(--bej));
  display: grid; place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.stat-card-label { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--antrasit); margin-bottom: 4px; }
.stat-card-value { font-family: var(--f-serif); font-size: 2.2rem; font-weight: 500; line-height: 1; }
.stat-card-sub { font-size: .75rem; color: var(--antrasit); margin-top: 6px; }

/* Admin Kartlar */
.admin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
}
.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.admin-card-title { font-weight: 600; font-size: 1rem; margin: 0; }

/* Admin Tablo */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  padding: 10px 12px;
  text-align: left;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--antrasit);
  border-bottom: 1.5px solid var(--line);
  background: var(--ipek);
  font-weight: 600;
}
.admin-table td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  font-size: .875rem;
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(184,146,90,.04); }
.pill { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 999px; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.pill-on { background: #DFF0D8; color: #2d6a1f; }
.pill-off { background: #F8D7D7; color: #8b1a1a; }
.pill-warn { background: #FFF3CD; color: #7d5a00; }
.pill-blue { background: #D1E8FF; color: #0d4f8b; }

/* Admin Form */
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.admin-form-grid .full { grid-column: 1/-1; }
.admin-form-group { margin-bottom: 16px; }
.admin-form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--antrasit);
  letter-spacing: .04em;
}
.admin-form-group .hint {
  font-size: .73rem;
  color: var(--antrasit);
  opacity: .7;
  margin-top: 5px;
}
.admin-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font: inherit;
  font-size: .875rem;
  color: var(--siyah);
  background: #fff;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.admin-input:focus {
  outline: none;
  border-color: var(--altin);
  box-shadow: 0 0 0 3px rgba(184,146,90,.1);
}
.admin-textarea { min-height: 120px; resize: vertical; }

/* Admin Butonlar */
.admin-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 8px; font: inherit; font-size: .85rem; font-weight: 500; border: 1.5px solid transparent; cursor: pointer; transition: var(--transition); }
.admin-btn-primary { background: var(--altin); color: #fff; border-color: var(--altin); }
.admin-btn-primary:hover { background: var(--altin-2); }
.admin-btn-secondary { background: var(--siyah); color: #fff; border-color: var(--siyah); }
.admin-btn-secondary:hover { background: var(--antrasit); }
.admin-btn-danger { background: #e74c3c; color: #fff; border-color: #e74c3c; }
.admin-btn-danger:hover { background: #c0392b; }
.admin-btn-outline { background: transparent; color: var(--siyah); border-color: var(--line); }
.admin-btn-outline:hover { border-color: var(--siyah); background: var(--ipek); }
.admin-btn-sm { padding: 6px 12px; font-size: .78rem; }

/* Admin Actions */
.admin-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-search-input {
  padding: 9px 14px 9px 36px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: .875rem;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") 10px center/16px no-repeat;
  width: min(260px, 100%);
  transition: border-color .25s ease;
}
.admin-search-input:focus { outline: none; border-color: var(--altin); }

/* Login */
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ipek), var(--bej-3));
  padding: 20px;
}
.login-card {
  width: min(440px, 100%);
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-3);
}
.login-brand { text-align: center; margin-bottom: 32px; }
.login-brand .brand-mark { width: 52px; height: 52px; font-size: 1.6rem; margin: 0 auto 12px; border-radius: 14px; }
.login-brand h2 { font-size: 1.5rem; margin: 0; }
.login-brand p { color: var(--antrasit); font-size: .85rem; margin-top: 6px; }

/* Image Preview */
.img-preview-box {
  border: 2px dashed var(--bej-2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  background: var(--ipek);
  cursor: pointer;
  transition: border-color .25s ease;
}
.img-preview-box:hover { border-color: var(--altin); }
.img-preview-box img { max-height: 140px; margin: 0 auto; border-radius: 8px; }
.img-preview-box .placeholder { font-size: .85rem; color: var(--antrasit); margin-top: 8px; }
.img-preview-box .ico { font-size: 2rem; margin-bottom: 8px; }

/* Dashboard Özet */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: span 3; }
  .stat-cards { grid-template-columns: repeat(3, 1fr); }
  .kat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-tel { display: none; }
  .kat-grid { grid-template-columns: repeat(2, 1fr); }
  .urun-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-badge { right: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: auto; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-mobile-header {
    display: block;
    margin-bottom: 32px;
    text-align: left;
  }
  .pd-mobile-header h1 {
    font-family: var(--f-sans) !important;
    font-size: 2.2rem !important;
    line-height: 1.25;
    color: var(--siyah);
    margin-top: 8px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .pd-mobile-header .eyebrow {
    font-family: var(--f-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--altin);
    font-weight: 600;
  }
  .pd-desktop-header {
    display: none;
  }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero-inner { padding: 100px 0 80px; }
  /* Admin responsive */
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .admin-sidebar-toggle { display: flex; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-form-grid { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal-links { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 10px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .kat-grid { grid-template-columns: 1fr 1fr; }
  .urun-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding: 80px 0 60px; }
  .page-hero { padding: 50px 0 40px; }
  .cta { padding: 70px 0; }
  .galeri-grid { grid-template-columns: 1fr 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .urun-grid { grid-template-columns: 1fr; }
  .kat-grid { grid-template-columns: 1fr; }
}

/* Harita Container */
.map-container iframe {
  width: 100% !important;
  height: 450px !important;
  border: 0 !important;
}
@media (max-width: 768px) {
  .map-container iframe {
    height: 300px !important;
  }
}

/* ===================================================
   İLETİŞİM SAYFASI - PREMIUM TASARIM EKLEMELERİ
=================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .contact-form-card {
    padding: 25px 20px;
  }
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--altin), var(--bej));
}

.contact-form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--siyah);
}

.contact-form-card .form-subtitle {
  font-size: .88rem;
  color: var(--antrasit);
  opacity: .8;
  margin-bottom: 28px;
}

/* Bilgi Blokları */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-block {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  align-items: flex-start;
}

.contact-info-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
  border-color: var(--bej-2);
}

.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184, 146, 90, 0.1);
  color: var(--altin);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-block:hover .contact-icon-wrapper {
  background: var(--altin);
  color: #fff;
}

.contact-info-content h4 {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--siyah);
  margin-bottom: 6px;
}

.contact-info-content p, .contact-info-content a {
  font-size: 0.9rem;
  color: var(--antrasit);
  line-height: 1.5;
}

.contact-info-content a:hover {
  color: var(--altin);
}

/* WhatsApp Eylemi */
.whatsapp-contact-card {
  background: linear-gradient(135deg, #1E1E1E 0%, #2D2D2D 100%);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-2);
  margin-top: 24px;
}

.whatsapp-contact-card h4 {
  color: #fff;
  font-family: var(--f-serif);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.whatsapp-contact-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.btn-whatsapp-premium {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-weight: 600;
}

.btn-whatsapp-premium:hover {
  background: #20ba5a;
  border-color: #20ba5a;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

@media (max-width: 640px) {
  .whatsapp-contact-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

/* SSS (FAQ) Accordion */
.faq-section {
  padding-top: 40px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.faq-details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  padding: 22px 28px;
  transition: var(--transition);
}

.faq-details[open] {
  border-color: var(--bej-2);
  box-shadow: var(--shadow-1);
}

.faq-summary {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--siyah);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-family: var(--f-sans);
  font-size: 1.4rem;
  color: var(--altin);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-details[open] .faq-summary::after {
  transform: rotate(45deg);
}

.faq-content {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--antrasit);
  line-height: 1.65;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

/* ===================================================
   HOMEPAGE DYNAMIC CATEGORY SLIDERS
=================================================== */
.slider-section {
  background: var(--krem);
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.slider-header h2 {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0;
  color: var(--siyah);
}

.slider-arrows {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--siyah);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--siyah);
  color: #fff;
  border-color: var(--siyah);
}

.slider-arrow.disabled {
  opacity: 0.25;
  pointer-events: none;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  cursor: grab;
}

.slider-viewport:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slider-card {
  flex-shrink: 0;
  width: calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.slider-card:hover {
  transform: none;
  box-shadow: none;
}

.slider-card .urun-thumb {
  aspect-ratio: 1.5; /* Horizontal layout like in user's image */
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--ipek);
  width: 100%;
}

.slider-card .urun-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-card:hover .urun-thumb img {
  transform: scale(1.05);
}

.slider-card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.slider-badge {
  padding: 6px 10px;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  min-width: 48px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.slider-badge-yeni {
  background: var(--altin); /* Marka altın tonu */
}

.slider-badge-indirim {
  background: var(--antrasit); /* Antrasit koyu gri */
}

.slider-card-body {
  padding: 16px 8px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slider-card-body h3 {
  font-family: var(--f-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--siyah);
  margin: 0;
  letter-spacing: -0.01em;
}

.slider-card-body .fiyat-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.slider-card-body .fiyat-guncel {
  font-weight: 700;
  color: var(--siyah);
}

.slider-card-body .fiyat-eski {
  text-decoration: line-through;
  color: var(--antrasit);
  opacity: 0.45;
  font-weight: 400;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.12);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: #007bc4; /* Premium blue active dot from user's image */
}

@media (max-width: 980px) {
  .slider-card {
    width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .slider-card {
    width: 100%;
  }
}

/* ===================================================
   PRODUCT CARD HOVER BUTTON EFFECT
=================================================== */
.urun-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(2.5px);
  z-index: 4;
}

.hover-btn {
  background: #ffffff;
  color: var(--siyah);
  font-family: var(--f-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  letter-spacing: 0.02em;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.urun-thumb:hover .urun-hover-overlay {
  opacity: 1;
}

.urun-thumb:hover .hover-btn {
  transform: translateY(0);
}

.hover-btn:hover {
  background: var(--siyah);
  color: #ffffff;
  border-color: var(--siyah);
}

/* ===================================================
   PRODUCT DETAIL GALLERY MARQUEE & SPECS SECTION
=================================================== */
.specs-section {
  background: var(--krem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.specs-item {
  padding: 20px 24px;
  background: var(--ipek);
  border-radius: var(--radius);
  border-left: 4px solid var(--altin);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specs-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.specs-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--antrasit);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.specs-value {
  font-size: 1.1rem;
  color: var(--siyah);
  font-weight: 500;
}

/* Infinite Sliding Gallery Marquee */
.marquee-gallery-section {
  padding: 80px 0;
  background: var(--ipek);
  overflow: hidden;
  width: 100%;
}

.marquee-gallery-title {
  text-align: center;
  font-family: var(--f-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 40px;
  color: var(--siyah);
}

.marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marqueeSlide 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 460px;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.marquee-item:hover img {
  transform: scale(1.05);
}

@keyframes marqueeSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-item {
    width: 320px;
    height: 240px;
  }
  .marquee-track {
    gap: 16px;
  }
}

/* ===================================================
   LIGHTBOX MODAL & IMAGE ZOOM HOVER EFFECTS
=================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 99999;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--altin);
  transform: rotate(90deg);
}

/* Zoom Hover Effects */
.pd-main {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
}

.pd-main img {
  transition: transform 0.8s ease;
}

.pd-main:hover img {
  transform: scale(1.03);
}

.main-hover-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  color: #fff;
  z-index: 5;
}

.pd-main:hover .main-hover-zoom {
  opacity: 1;
}

.marquee-item {
  position: relative;
  cursor: zoom-in;
}

.marquee-hover-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  color: #fff;
  z-index: 5;
}

.marquee-item:hover .marquee-hover-zoom {
  opacity: 1;
}

/* Lightbox Navigation Arrows */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 6rem;
  font-weight: 200;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  z-index: 100000;
  padding: 20px;
  line-height: 1;
  font-family: var(--f-sans);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-arrow:hover {
  color: var(--altin);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .lightbox-arrow {
    font-size: 4rem;
    padding: 10px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}

/* Gallery Thumbnails Interactivity & Magnifier */
.pd-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.pd-thumb-item {
  position: relative;
  width: 140px;
  height: 105px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--ipek);
  transition: all 0.3s ease;
}

.pd-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-hover-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  opacity: 0;
  color: #fff;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.pd-thumb-item:hover .thumb-hover-zoom {
  opacity: 1;
}

.pd-thumb-item.active {
  border: 2px solid var(--altin);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}
.pd-main img {
  transition: opacity 0.25s ease;
}

/* ===== MOBİL GÖRÜNÜM ÖZEL İYİLEŞTİRMELERİ ===== */
@media (max-width: 768px) {
  /* Genel Bölüm Boşlukları */
  .section {
    padding: 50px 0 !important;
  }
  
  /* Page Hero Alanı */
  .page-hero {
    padding: 60px 0 40px !important;
    text-align: center;
  }
  .page-hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.25;
  }
  .crumbs {
    justify-content: center;
    margin-bottom: 12px;
  }

  /* Slider & Hero Başlıkları */
  .hero-inner h1 {
    font-size: 2.2rem !important;
    line-height: 1.2;
  }
  .hero-inner p {
    font-size: 0.95rem !important;
    margin-bottom: 24px !important;
  }

  /* Hakkımızda Split Alanı */
  .about-split {
    display: flex;
    flex-direction: column;
    gap: 30px !important;
  }
  .about-split img {
    order: -1;
    border-radius: 16px !important;
    max-height: 300px;
    width: 100%;
    object-fit: cover;
  }
  .about-split h2 {
    font-size: 2rem !important;
    line-height: 1.3;
  }
  
  /* Ürün Kartı Görünümleri */
  .urun-card h3 {
    font-family: var(--f-sans) !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
  }
  .fiyat {
    font-size: 1rem !important;
  }
  
  /* Ürün Detay Sayfası Mobil Düzeni */
  .product-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 30px !important;
  }
  .pd-info h1 {
    font-family: var(--f-sans) !important;
    font-size: 2rem !important;
    line-height: 1.25;
  }
  .pd-fiyat-guncel {
    font-size: 1.9rem !important;
  }
  
  /* CTA & Footer Mobil Görünümü */
  .cta-section h2 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }
  .footer-grid {
    gap: 32px !important;
  }
  
  /* Formlar Mobil Düzen */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

}


/* ===================================================
   GOOGLE YORUMLAR WİDGET — Marquee / Sonsuz Kayan Bant
=================================================== */

/* ---- Bölüm Sarmalayıcı ---- */
.google-reviews-section {
  overflow: hidden;
  background: var(--ipek);
  padding-top: 80px;
}

/* ---- Başlık Satırı ---- */
.gr-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ---- Google Genel Puan Badge ---- */
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 22px;
  box-shadow: var(--shadow-1);
  flex-shrink: 0;
}
.grb-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  background: var(--ipek);
  border-radius: 50%;
  flex-shrink: 0;
}
.grb-info { display: flex; flex-direction: column; gap: 4px; }
.grb-score {
  font-family: var(--f-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--siyah);
  line-height: 1;
}
.grb-stars { display: flex; align-items: center; gap: 2px; }
.grb-count { font-size: .72rem; color: var(--antrasit); letter-spacing: .02em; margin-top: 1px; }

/* ---- Marquee Wrap (tam ekran genişliği) ---- */
.gr-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Sol/Sağ saydam geçiş (fade) */
.gr-fade-left,
.gr-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.gr-fade-left  { left: 0;  background: linear-gradient(to right, var(--ipek) 0%, transparent 100%); }
.gr-fade-right { right: 0; background: linear-gradient(to left,  var(--ipek) 0%, transparent 100%); }

/* ---- Marquee Konteyneri ---- */
.gr-marquee {
  display: flex;
  width: max-content;
  animation: gr-scroll 60s linear infinite;
}
.gr-marquee:hover { animation-play-state: paused; }

/* Her iki track (orijinal + kopya) yan yana */
.gr-marquee-track {
  display: flex;
  gap: 20px;
  padding: 16px 10px 24px;
}

/* ---- Keyframe: soldan sağa kayan ---- */
@keyframes gr-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Tek Yorum Kartı ---- */
.gr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.gr-card::before {
  content: '\201C';
  position: absolute;
  top: 6px; right: 18px;
  font-family: var(--f-serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--bej-3);
  pointer-events: none;
  opacity: .7;
}
.gr-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

/* ---- Kart Üst Satır ---- */
.gr-card-top {
  display: flex;
  align-items: center;
  gap: 11px;
}
.gr-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bej), var(--altin));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}
.gr-meta { flex: 1; min-width: 0; }
.gr-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--siyah);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-date {
  font-size: .7rem;
  color: var(--antrasit);
  margin-top: 2px;
}
.gr-google-icon { flex-shrink: 0; opacity: .9; }

/* ---- Yıldızlar ---- */
.gr-stars { display: flex; gap: 2px; align-items: center; }

/* ---- Yorum Metni ---- */
.gr-text {
  font-size: .855rem;
  color: var(--antrasit);
  line-height: 1.72;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Mobil uyarlama ---- */
@media (max-width: 768px) {
  .gr-card { width: 280px; padding: 20px; }
  .gr-text { -webkit-line-clamp: 3; }
  .google-rating-badge { padding: 12px 16px; }
  .grb-score { font-size: 1.7rem; }
  .gr-marquee { animation-duration: 45s; }
  .gr-fade-left, .gr-fade-right { width: 60px; }
}
@media (max-width: 480px) {
  .gr-card { width: 240px; }
  .gr-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .google-rating-badge { width: 100%; }
}

