:root {
  --navy: #1a1f3a;
  --navy-dark: #0d1126;
  --navy-soft: #2d3556;
  --plum: #4b1c4b;
  --plum-soft: #5c2c5c;
  --sage: #6b8e6f;
  --cream: #ffffff;          /* krem yok artık - tertemiz beyaz */
  --soft: #f6f6f7;           /* açık nötr gri (premium hissi) */
  --soft-2: #ececef;
  --paper: #ffffff;
  --ink: #14172a;
  --ink-soft: #4b5063;
  --muted: #8a8fa3;
  --line: #ecedf1;
  --line-strong: #d8dae2;
  --sale: #b34a3a;
  --accent: #b8956a;
  --shadow-sm: 0 1px 2px rgba(20, 23, 42, 0.05);
  --shadow: 0 2px 4px rgba(20, 23, 42, 0.04), 0 12px 28px rgba(20, 23, 42, 0.06);
  --shadow-lg: 0 24px 60px rgba(20, 23, 42, 0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --maxw: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- top promo bar (kayan duyuru) ---------- */
.promo-bar {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  color: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  height: 38px;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 45s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee .ann {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 0 28px;
  flex-shrink: 0;
}
.marquee .dot {
  color: var(--accent);
  font-size: 10px;
  opacity: 0.85;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}
.header-actions a {
  font-size: 13px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-actions a:hover { color: var(--navy); }
.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  min-width: 230px;
}
.search-wrap input {
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 13px;
  flex: 1;
  background: transparent;
}
.logo {
  text-align: center;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 78px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.logo:hover img { opacity: 0.85; }
.logo .sub { display: none; }

/* ---------- nav ---------- */
.site-nav {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.site-nav .nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 36px;
  align-items: stretch;
}
.site-nav a {
  font-size: 13.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 0;
  display: inline-block;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  font-weight: 700;
  transition: color .15s, border-color .15s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* ---------- hero ---------- */
/* ---- legacy .hero (eski sayfalar için) ---- */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  padding: 110px 24px 130px;
  text-align: center;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 22px;
  letter-spacing: -0.018em;
}
.hero h1 em { font-style: italic; color: var(--plum); font-weight: 400; }
.hero p { max-width: 680px; margin: 0 auto 38px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.65; }

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  height: clamp(360px, 46vh, 480px);
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 80px 110px;      /* alt padding daha geniş — dot/buton ayrımı */
  position: relative;
  color: #fff;
  min-height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,23,42,0.55) 0%, rgba(20,23,42,0.25) 60%, transparent 100%);
  z-index: 1;
}
.slide-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.slide-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
}
.slide-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.slide-content h1 em {
  font-style: italic;
  color: #e7d7b8;
  font-weight: 400;
}
.slide-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 auto 22px;
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.slide-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.slide-cta .btn {
  padding: 13px 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.slide-cta .btn-ghost-light {
  padding: 12px 26px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
}
.slider-arrow {
  width: 42px;
  height: 42px;
  font-size: 22px;
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-dots { bottom: 22px; }
.slider-dots button { width: 28px; height: 3px; }
.slider-dots button.active { width: 42px; }
.slide-cta { margin-bottom: 14px; }
.btn-ghost-light {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }

/* Background gradients — gerçek görsel yerine markaya uygun renk geçişleri */
.slide-1 { background:
  linear-gradient(135deg, #1a1f3a 0%, #2d3556 50%, #4b1c4b 100%); }
.slide-2 { background:
  linear-gradient(135deg, #2d4f3b 0%, #3a6849 60%, #6b8e6f 100%); }
.slide-3 { background:
  linear-gradient(135deg, #4b1c4b 0%, #6b2c5c 50%, #8b3d6c 100%); }
.slide-4 { background:
  linear-gradient(135deg, #8a6f4a 0%, #b8956a 60%, #d4b889 100%); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.slider-arrow:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.05); }
.slider-arrow.prev { left: 32px; }
.slider-arrow.next { right: 32px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider-dots button {
  width: 38px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.32);
  border: 0;
  cursor: pointer;
  transition: background .2s, width .25s;
  padding: 0;
}
.slider-dots button:hover { background: rgba(255,255,255,0.6); }
.slider-dots button.active { background: #fff; width: 54px; }

@media (max-width: 720px) {
  .slider-arrow { width: 40px; height: 40px; font-size: 22px; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .slide-content { text-align: center; }
  .slide-cta { justify-content: center; }
}
.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 16px 38px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 0;
  border-radius: var(--radius-pill);
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
/* Çerçeveli buton — tek başına da (.btn olmadan) kullanılır, bu yüzden tam stil */
.btn-outline {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 16px 38px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--navy);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: inherit;
  line-height: 1.1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

/* ---------- shared section ---------- */
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.section-head p {
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 600px;
}

/* ---------- product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px 22px;
}
.product-card {
  background: var(--paper);
  border: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}
.product-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.product-card:hover .product-img {
  transform: scale(1.03);
}
.product-img-wrap {
  position: relative;
  background: var(--cream);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .4s ease;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}
.product-badge.out {
  background: #b0b6c2;
  border-radius: var(--radius-sm);
}
.product-meta {
  padding: 16px 4px 4px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.product-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 6px;
  min-height: 16px;
  line-height: 1;
}
.product-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  min-height: 40px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
}
.product-price small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
.product-actions {
  margin-top: auto;
  padding-top: 14px;
}
.btn-add {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  padding: 14px 18px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}
.btn-add::before {
  content: "+";
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  font-weight: 700;
  opacity: 0.9;
}
.btn-add:hover {
  background: var(--navy-dark, #0a1d31);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 42, 68, 0.18);
}
.btn-add[disabled] {
  background: var(--line);
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-add[disabled]::before { display: none; }
.btn-add[disabled]:hover {
  background: var(--line);
  transform: none;
  box-shadow: none;
}

/* ---------- category tiles ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  transition: transform .25s ease;
  border-radius: var(--radius);
}
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,42,68,0.05) 0%, rgba(15,42,68,0.7) 90%);
  z-index: 1;
}
.cat-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile .cat-body {
  position: relative; z-index: 2;
}
.cat-tile h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 6px;
}
.cat-tile .count {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- callout band ---------- */
.callout {
  background: var(--navy);
  color: #fff;
  padding: 90px 24px;
  text-align: center;
}
.callout h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 500;
  margin: 0 0 14px;
}
.callout p {
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: 16px;
}
.callout .btn {
  background: #fff;
  color: var(--navy);
}
.callout .btn:hover { background: var(--cream); }

/* ---------- trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 24px;
  background: var(--cream);
}
.trust-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-icon {
  width: 34px; height: 34px;
  color: var(--navy);
}
.trust-item strong {
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.trust-item span {
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- brand strip ---------- */
.brand-strip {
  padding: 56px 24px;
}
.brand-strip-inner {
  max-width: var(--maxw); margin: 0 auto;
}
.brand-row {
  display: flex; flex-wrap: wrap; gap: 28px 38px; justify-content: center; align-items: center;
}
.brand-pill {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: var(--navy-soft);
  letter-spacing: 0.02em;
  padding: 6px 18px;
  border-bottom: 1px solid transparent;
  font-weight: 500;
  transition: color .2s, border-color .2s;
}
.brand-pill:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  padding: 70px 24px 32px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}
footer h4 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 600;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; font-size: 13px; }
footer a:hover { color: #fff; }
.footer-brand .footer-logo {
  display: block;
  margin-bottom: 18px;
}
.footer-brand .footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 0 18px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.socials a:hover { background: rgba(255,255,255,0.08); }
.socials svg { width: 14px; height: 14px; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ---------- products page ---------- */
.shop-layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px 100px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px;
}
/* Mobil "Filtreler" aç/kapa düğmesi — masaüstünde gizli */
.shop-filter-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
}
.shop-filter-toggle span { display: inline-flex; align-items: center; gap: 8px; }
.shop-filter-toggle .ft-chevron { transition: transform .25s; }
/* Sidebar dropdown groups */
.side-group {
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.side-group:last-child { border-bottom: 0; }
.side-group > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 2px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.side-group > summary::-webkit-details-marker { display: none; }
.side-group > summary svg {
  transition: transform .25s ease;
  color: var(--muted);
}
.side-group[open] > summary svg { transform: rotate(180deg); color: var(--navy); }
.side-group > summary:hover { color: var(--accent); }
.side-search-wrap { margin: 0 0 8px; }
.side-search-wrap input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  background: var(--soft);
  outline: 0;
  transition: border-color .15s, background .15s;
}
.side-search-wrap input:focus { border-color: var(--navy); background: #fff; }
.shop-side ul {
  list-style: none; padding: 0;
  margin: 0 0 18px;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.shop-side ul::-webkit-scrollbar { width: 4px; }
.shop-side ul::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.shop-side li button {
  background: none; border: 0;
  padding: 8px 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
  width: 100%;
  border-radius: 6px;
  transition: background .12s, color .12s;
}
.shop-side li button:hover {
  background: var(--soft);
  color: var(--navy);
}
.shop-side li button.active {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}
.side-price {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.side-price input {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  background: var(--soft);
  outline: 0;
  -moz-appearance: textfield;
}
.side-price input::-webkit-outer-spin-button, .side-price input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.side-price input:focus { border-color: var(--navy); background: #fff; }
.side-price span { color: var(--muted); font-size: 14px; }
.side-btn {
  grid-column: 1 / -1;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  margin-top: 4px;
}
.side-btn:hover { background: var(--navy-dark); }
.side-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-soft);
  cursor: pointer; padding: 4px 2px 16px;
}
.side-check input { accent-color: var(--navy); width: 16px; height: 16px; }
.shop-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-head h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--navy);
  line-height: 1.05;
}
.shop-head .count {
  font-size: 13px;
  color: var(--muted);
}
.shop-sort {
  border: 1px solid var(--line);
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  background: #fff;
  border-radius: var(--radius-sm);
}

/* ---------- product detail ---------- */
.product-detail {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 50px 24px 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.pd-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
}
.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-thumbs button {
  background: var(--cream);
  border: 1px solid transparent;
  padding: 6px;
  width: 80px; height: 80px;
}
.pd-thumbs button.active { border-color: var(--navy); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pd-main {
  background: var(--cream);
  aspect-ratio: 1/1;
  padding: 30px;
  display: flex; align-items: center; justify-content: center;
}
.pd-main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pd-info .brand-line {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.pd-info h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 18px;
  line-height: 1.15;
}
.pd-price {
  font-size: 28px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.pd-stock {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}
.pd-stock.in { color: #2f7a3a; }
.pd-stock.out { color: var(--sale); }
.pd-desc {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 14.5px;
  margin: 22px 0 28px;
}
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.pd-qty {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  height: 50px;
}
.pd-qty button {
  background: transparent;
  border: 0;
  width: 44px;
  height: 100%;
  font-size: 18px;
  color: var(--navy);
  cursor: pointer;
  transition: background .15s;
}
.pd-qty button:hover { background: var(--cream); }
.pd-qty input {
  width: 50px;
  height: 100%;
  border: 0;
  text-align: center;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  outline: 0;
  -moz-appearance: textfield;
}
.pd-qty input::-webkit-outer-spin-button,
.pd-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.btn-added {
  background: #2f7a3a !important;
  color: #fff !important;
  border-color: #2f7a3a !important;
  pointer-events: none;
}
.pd-extras {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ---------- empty/skeleton ---------- */
.empty {
  text-align: center;
  padding: 80px 16px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- static / content pages ---------- */
.static-hero {
  background: linear-gradient(180deg, #f3efe7 0%, #ebe5d8 100%);
  padding: 70px 24px 70px;
  text-align: center;
}
.static-hero-inner { max-width: 760px; margin: 0 auto; }
.static-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.static-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.1;
}
.static-hero p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 auto;
  max-width: 600px;
}
.static-page { padding: 60px 24px 90px; background: #fff; }
.static-inner { max-width: 820px; margin: 0 auto; }
.static-section { margin-bottom: 40px; }
.static-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.static-section p, .static-section li { color: var(--ink-soft); line-height: 1.75; font-size: 14.5px; }
.static-section ul, .static-section ol { padding-left: 22px; }
.static-section li { margin-bottom: 6px; }
.static-section a { color: var(--navy); text-decoration: underline; }

/* contact */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.contact-card {
  background: var(--cream);
  padding: 30px 26px;
  text-align: center;
  border-radius: var(--radius);
}
.contact-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 500;
}
.contact-card p { font-size: 15px; color: var(--ink); margin: 0 0 4px; }
.contact-card span { font-size: 12px; color: var(--muted); }
.contact-card a { color: var(--navy); }

.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: 0;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--navy); }
.contact-form button { align-self: flex-start; }

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 500;
  color: var(--navy);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--sage);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.blog-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d8d2c4 0%, #b8c5b8 100%);
  border-radius: var(--radius);
}
.blog-meta { padding: 22px; }
.blog-meta .eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--sage);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.blog-meta h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.25;
}
.blog-meta p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 14px; }
.blog-meta .more { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); font-weight: 600; }

/* brand grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.brand-card {
  background: var(--cream);
  padding: 26px 24px;
  border-left: 3px solid transparent;
  transition: border-color .2s, transform .2s;
  border-radius: var(--radius);
}
.brand-card:hover { border-left-color: var(--sage); transform: translateX(2px); }
.brand-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 500;
  color: var(--navy);
}
.brand-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* auth grid (account) */
.auth-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.auth-card {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: var(--radius);
}
.auth-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 22px;
  font-weight: 500;
}

/* cart */
.cart-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}
.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row .ci-img { width: 96px; height: 96px; background: var(--cream); padding: 8px;
  border-radius: var(--radius-sm);
}
.cart-row .ci-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-row .ci-info .ci-brand { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cart-row .ci-info h4 { margin: 0 0 6px; font-size: 14.5px; color: var(--navy); font-weight: 500; }
.cart-row .ci-info a { font-size: 12px; color: var(--sale); }
.cart-row .ci-qty { display: flex; align-items: center; border: 1px solid var(--line); }
.cart-row .ci-qty button {
  background: #fff; border: 0; padding: 6px 12px; font-size: 14px; color: var(--navy); cursor: pointer;
}
.cart-row .ci-qty input {
  width: 36px; text-align: center; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); padding: 6px; font: inherit;
}
.cart-row .ci-price { font-weight: 600; color: var(--navy); font-size: 15px; min-width: 90px; text-align: right; }

.cart-summary {
  background: var(--cream);
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: 90px;
  border-radius: var(--radius);
}
.cart-summary h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 16px;
}
.cart-summary .line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.cart-summary .line.total {
  border-top: 2px solid var(--navy);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 18px;
  color: var(--navy);
}
.cart-summary .line strong { color: var(--navy); }
.cart-summary .hint { font-size: 12px; color: var(--sage); margin: 6px 0 14px; min-height: 16px; }
.cart-summary .btn { display: block; width: 100%; }

/* responsive content */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .static-hero h1 { font-size: 36px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 70px 1fr; gap: 12px; }
  .cart-row .ci-img { width: 70px; height: 70px; }
  .cart-row .ci-qty, .cart-row .ci-price { grid-column: 2; justify-self: start; margin-top: 6px; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  /* Header: 2 satır — logo + ikonlar üstte, arama altta tam genişlik */
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 8px;
    padding: 14px 16px;
  }
  .header-inner > .header-actions:first-child {
    order: 3;
    flex: 1 1 100%;
    justify-content: stretch;
  }
  .logo { order: 1; justify-self: start; margin-right: auto; }
  .header-inner > .header-actions:last-child { order: 2; gap: 14px; }
  .search-wrap {
    display: flex !important;
    width: 100%;
    min-width: 0;
    padding: 9px 14px;
  }
  .header-actions a span, .header-actions a { font-size: 12px; }
  .header-actions a.label-hide { display: none; }

  /* Nav: yatay kaydırma + fade kenar göstergesi */
  .site-nav .nav-inner {
    gap: 0;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }
  .site-nav .nav-inner::-webkit-scrollbar { display: none; }
  .site-nav a { white-space: nowrap; font-size: 12px; padding: 14px 14px; flex-shrink: 0; }

  .hero { padding: 70px 20px 80px; }
  .hero h1 { font-size: 42px; }
  .section { padding: 60px 18px; }
  .section-head h2 { font-size: 30px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  /* Mobil: filtreler tek panelde aç/kapa (varsayılan kapalı) */
  .shop-filter-toggle { display: flex; }
  .shop-side { border: 1px solid var(--line); border-radius: 12px; padding: 6px 16px; }
  .shop-side .side-group { display: none; }
  .shop-side.filters-open .side-group { display: block; }
  .shop-side.filters-open .shop-filter-toggle .ft-chevron { transform: rotate(180deg); }
  .shop-side ul { max-height: 230px; }
  /* Mobil: başlık + arama/sıralama dikey, tam genişlik (taşmayı önler) */
  .shop-head { flex-direction: column; align-items: stretch; }
  .shop-head > div:last-child { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .shop-head [data-search], .shop-head .shop-sort { min-width: 0 !important; width: 100%; box-sizing: border-box; }
  .shop-head h1 { font-size: 32px; }
  .product-detail { grid-template-columns: 1fr; gap: 30px; }
  .pd-gallery { grid-template-columns: 1fr; }
  .pd-thumbs { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .product-name { font-size: 13px; min-height: 36px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .header-actions a .actlabel { display: none; }
  .header-inner > .header-actions:last-child a { padding: 0 2px; }
  .logo img { height: 42px; }
  .search-wrap input { font-size: 13px; }
  .slide-content h1 { font-size: 28px; }
  .slide-content p { font-size: 13.5px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
}
