@charset "utf-8";
/* ==========================================================================
   İpek Sünger — site.css
   Tek dosya, framework yok. Bootstrap 3 + jQuery yerine geçer.
   Tema: yalnızca AÇIK (beyaz zemin). Karanlık mod bilinçli olarak yoktur.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Token */
:root {
  /* Marka */
  --brand:      #f5b60a;   /* dolgu / vurgu */
  --brand-600:  #dda200;   /* hover dolgusu */
  --brand-ink:  #8a6200;   /* BEYAZ ÜZERİNE yazı (kontrast için koyu ton) */
  --brand-soft: #fff8e6;   /* çok açık sarı zemin */

  /* Metin */
  --ink:        #171a21;   /* başlıklar */
  --text:       #303743;   /* gövde metni */
  --muted:      #667085;   /* ikincil metin */

  /* Zemin ve çizgi */
  --bg:         #ffffff;
  --bg-soft:    #f7f8fa;
  --bg-warm:    #fffcf2;
  --card:       #ffffff;
  --line:       #e3e7ed;
  --line-soft:  #eef1f5;

  --accent:     #0a6ea8;   /* bağlantı mavisi */
  --ring:       #b98b12;   /* odak halkası */

  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 1px 2px rgba(23, 26, 33, .05), 0 8px 24px -12px rgba(23, 26, 33, .16);
  --shadow-lg:  0 2px 4px rgba(23, 26, 33, .06), 0 24px 48px -20px rgba(23, 26, 33, .22);

  --wrap:       1200px;
  --gutter:     20px;

  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial,
          "Noto Sans", sans-serif;

  color-scheme: light only;
}

/* ---------------------------------------------------------------- 2. Base */
*, *::before, *::after { box-sizing: border-box; }

/* display:flex/grid tanimlari [hidden] varsayilanini eziyor — bastir */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: block; }   /* varsayılan inline; yükseklik sınırlarını bozuyor */

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.22;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(1.85rem, 1.35rem + 2.1vw, 2.85rem); }
h2 { font-size: clamp(1.4rem, 1.15rem + 1.1vw, 1.95rem); }
h3 { font-size: 1.16rem; }
h4 { font-size: 1rem; }

p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:where(a, button, input, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: 5px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: var(--ink);
  padding: .75rem 1.25rem; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* -------------------------------------------------------------- 3. Header */
.topbar {
  background: var(--bg-soft);
  color: var(--muted);
  font-size: .875rem;
  border-bottom: 1px solid var(--line);
}
.topbar__in { display: flex; flex-wrap: wrap; gap: .35rem 1.5rem; align-items: center; padding-block: .5rem; }
.topbar a { color: var(--text); font-weight: 600; }
.topbar a:hover { color: var(--brand-ink); text-decoration: none; }
.topbar__tag { margin-left: auto; color: var(--muted); }
@media (max-width: 720px) { .topbar__tag { display: none; } }

.masthead {
  position: sticky; top: 0; z-index: 60;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.masthead__in { display: flex; align-items: center; gap: 1rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { width: 200px; height: 47px; }
@media (max-width: 420px) { .brand img { width: 160px; height: 37px; } }

.nav { margin-left: auto; display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__list > li > a {
  display: block; padding: .6rem .85rem; border-radius: var(--radius-sm);
  color: var(--text); font-weight: 600; font-size: .96rem; white-space: nowrap;
}
.nav__list > li > a:hover { background: var(--bg-soft); color: var(--ink); text-decoration: none; }
.nav__list > li > a[aria-current="page"] { color: var(--ink); box-shadow: inset 0 -3px 0 var(--brand); }

.nav__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-left: .6rem; padding: .62rem 1.05rem;
  background: var(--brand); color: var(--ink); font-weight: 750; font-size: .96rem;
  border-radius: 999px; white-space: nowrap;
}
.nav__cta:hover { background: var(--brand-600); text-decoration: none; }

.burger {
  display: none; margin-left: auto;
  width: 46px; height: 46px; padding: 0;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 11px; cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 2px; margin: 4px auto;
  background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px);
    display: block;
    background: var(--bg); border-left: 1px solid var(--line);
    padding: 5.5rem 1.25rem 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav[data-open="true"] { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav__list > li > a { padding: .85rem .9rem; font-size: 1.05rem; }
  .nav__cta { margin: 1rem 0 0; justify-content: center; padding: .85rem 1rem; }
  .nav-scrim {
    position: fixed; inset: 0; z-index: 55;
    background: rgba(23, 26, 33, .38); backdrop-filter: blur(2px);
  }
  body.nav-open { overflow: hidden; }
}

/* ---------------------------------------------------------------- 4. Hero */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 78%);
  border-bottom: 1px solid var(--line);
}
/* yumusak sari isima — dekoratif */
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -28%; right: -10%; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 182, 10, .20) 0%, rgba(245, 182, 10, 0) 68%);
}
.hero__in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.02fr; gap: 3.5rem; align-items: center;
  padding-block: clamp(2.75rem, 1rem + 5vw, 4.5rem);
}
@media (max-width: 940px) { .hero__in { grid-template-columns: 1fr; gap: 2.5rem; } }

.hero__kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1.15rem; padding: .38rem .9rem .38rem .7rem;
  background: #fff; color: var(--brand-ink);
  border: 1px solid #f0dca6; border-radius: 999px;
  font-size: .795rem; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 1px 2px rgba(23, 26, 33, .04);
}
.hero__kicker-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 3px rgba(245, 182, 10, .28);
}

.hero h1 {
  color: var(--ink); margin-bottom: .75rem;
  font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem);
  line-height: 1.1; letter-spacing: -.028em;
}
/* marka sarisi kalem vurgusu */
.hero h1 em {
  font-style: normal; position: relative; display: inline-block; z-index: 0;
}
.hero h1 em::after {
  content: ""; position: absolute; z-index: -1;
  left: -.08em; right: -.08em; bottom: .06em; height: .34em;
  background: var(--brand); border-radius: 3px;
}

.hero__lede { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.9rem; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Hero altı: ikonlu bilgi şeridi (tam genişlik) */
.hero__strip {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .68);
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none; margin: 0; padding: 0;
}
.stats__item {
  display: flex; align-items: center; gap: .9rem;
  margin: 0; padding: 1.25rem 1.6rem;
  border-left: 1px solid var(--line);
}
.stats__item:first-child { border-left: 0; padding-left: 0; }
.stats__item:last-child { padding-right: 0; }

.stats__icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--brand-soft); color: var(--brand-ink);
  border: 1px solid #f2e2b8; border-radius: 13px;
}
.stats__icon svg { width: 21px; height: 21px; }

.stats__text { min-width: 0; }
.stats__text b {
  display: block; color: var(--ink); font-size: 1.3rem;
  line-height: 1.12; letter-spacing: -.025em;
}
.stats__text > span { color: var(--muted); font-size: .845rem; }

@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item { padding: 1.05rem 1.2rem; }
  .stats__item:nth-child(2n+1) { border-left: 0; padding-left: 0; }
  .stats__item:nth-child(2n)   { padding-right: 0; }
  .stats__item:nth-child(n+3)  { border-top: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .stats__item { border-left: 0; padding: .95rem 0; }
  .stats__item + .stats__item { border-top: 1px solid var(--line); }
  .stats__icon { width: 40px; height: 40px; border-radius: 11px; }
  .stats__text b { font-size: 1.15rem; }
}

/* -------- Hero görsel sütunu -------- */
.hero__media { position: relative; }

.hero__frame { position: relative; }
.hero__badge {
  position: absolute; left: 14px; bottom: 14px; z-index: 3;
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 1rem .7rem .8rem;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.hero__badge-icon { font-size: 1.05rem; line-height: 1; }
.hero__badge-text b { display: block; color: var(--ink); font-size: .87rem; line-height: 1.25; }
.hero__badge-text span { color: var(--muted); font-size: .78rem; }
@media (max-width: 520px) {
  .hero__badge { position: static; margin-top: .8rem; border-radius: var(--radius-sm); }
}

/* -------------------------------------------------------------- 5. Slider */
.slider {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: var(--bg-soft);
}
.slider__track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__slide { flex: 0 0 100%; scroll-snap-align: center; }
.slider__slide img { width: 100%; aspect-ratio: 854 / 349; object-fit: cover; }

.slider__btn {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 2;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .94); color: var(--ink);
  border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer; font-size: 19px; line-height: 1;
  opacity: 0; transition: opacity .18s, background .18s;
  box-shadow: var(--shadow);
}
.slider:hover .slider__btn,
.slider:focus-within .slider__btn { opacity: 1; }
@media (hover: none) { .slider__btn { opacity: 1; } }
.slider__btn:hover { background: var(--brand); border-color: var(--brand); }
.slider__btn--prev { left: 12px; }
.slider__btn--next { right: 12px; }

/* İlerleme çizgisi biçiminde göstergeler */
.slider__dots {
  position: absolute; left: 14px; right: 14px; top: 14px; z-index: 2;
  display: flex; gap: 5px;
}
.slider__dots button {
  flex: 1; height: 3px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255, 255, 255, .55); cursor: pointer;
  box-shadow: 0 1px 2px rgba(23, 26, 33, .25);
  transition: background .2s;
}
.slider__dots button[aria-current="true"] { background: var(--brand); }

/* Küçük önizleme şeridi */
.slider__thumbs { display: flex; gap: .5rem; margin-top: .6rem; }
.slider__thumbs button {
  flex: 1; padding: 0; cursor: pointer; overflow: hidden;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 9px; line-height: 0;
  transition: border-color .18s, opacity .18s;
  opacity: .62;
}
.slider__thumbs button:hover { opacity: 1; }
.slider__thumbs button[aria-current="true"] { opacity: 1; border-color: var(--brand); }
.slider__thumbs img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
@media (max-width: 520px) { .slider__thumbs { display: none; } }

/* ------------------------------------------------------------ 6. Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.35rem; border: 1px solid transparent; border-radius: 999px;
  font: inherit; font-weight: 700; font-size: .98rem; cursor: pointer;
  transition: background .16s, color .16s, border-color .16s;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--brand); color: var(--ink); }
.btn--primary:hover { background: var(--brand-600); }
.btn--ghost { background: var(--bg); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); background: var(--brand-soft); }
.btn--outline { background: var(--bg); color: var(--text); border-color: var(--line); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand-ink); background: var(--brand-soft); }
.btn--sm { padding: .5rem 1rem; font-size: .88rem; }
.btn--lg { padding: .92rem 1.7rem; font-size: 1.02rem; }

/* --------------------------------------------------------------- 7. Bölüm */
.section { padding-block: clamp(2.75rem, 1.5rem + 4vw, 4.5rem); }
.section--soft { background: var(--bg-soft); border-block: 1px solid var(--line-soft); }

.section__head { max-width: 62ch; margin-bottom: 2rem; }
.section__head--row {
  max-width: none; display: flex; flex-wrap: wrap; gap: 1.25rem 2rem;
  align-items: end; justify-content: space-between;
}
.section__head--row > div { max-width: 62ch; }
.section__head--row > .btn { flex-shrink: 0; }
.section__head p { color: var(--muted); margin-bottom: 0; }
.eyebrow {
  display: block; margin-bottom: .5rem;
  color: var(--brand-ink); font-size: .8rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase;
}

/* ---------------------------------------------------------------- 8. Grid */
.grid { display: grid; gap: 1.25rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

/* ------------------------------------------------------- 8b. Bento ızgara */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 252px;
  gap: 1rem;
}
.bento__item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.bento__item:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-3px); }

/* büyük vitrin: 2 sütun x 2 satır */
.bento__item--feature { grid-column: span 2; grid-row: span 2; }
/* geniş: 2 sütun x 1 satır, yatay yerleşim */
.bento__item--wide { grid-column: span 2; }

.bento__link {
  display: flex; flex-direction: column; height: 100%;
  color: inherit; text-decoration: none;
}
.bento__link:hover { text-decoration: none; }

.bento__media {
  position: relative; display: block; overflow: hidden;
  background: #fff; border-bottom: 1px solid var(--line-soft);
  flex: 0 0 auto; height: 108px; padding: .8rem;
}
.bento__media picture { width: 100%; height: 100%; }
.bento__media img {
  width: 100%; height: 100%; object-fit: contain;
  mix-blend-mode: multiply; transition: transform .3s ease;
}
.bento__item:hover .bento__media img { transform: scale(1.045); }

.bento__tag {
  position: absolute; top: .7rem; left: .7rem;
  padding: .22rem .6rem; border-radius: 999px;
  background: var(--brand); color: var(--ink);
  font-size: .7rem; font-weight: 800; letter-spacing: .02em;
}

.bento__body {
  display: flex; flex-direction: column; flex: 1;
  padding: .95rem 1.05rem 1.05rem; min-width: 0;
}
.bento__count {
  color: var(--brand-ink); font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .3rem;
}
.bento__title {
  display: block; color: var(--ink); font-weight: 750; font-size: 1.02rem;
  line-height: 1.25; letter-spacing: -.015em; margin-bottom: .3rem;
}
.bento__desc {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  overflow: hidden; color: var(--muted); font-size: .875rem; line-height: 1.45;
}
.bento__item--feature .bento__desc,
.bento__item--wide .bento__desc { -webkit-line-clamp: 3; }
.bento__cta {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: auto;
  padding-top: .7rem; color: var(--brand-ink); font-weight: 700; font-size: .86rem;
}
.bento__cta span { transition: transform .18s; }
.bento__item:hover .bento__cta span { transform: translateX(3px); }

/* büyük vitrinde görsel daha baskın, başlık daha büyük */
.bento__item--feature .bento__media { height: auto; flex: 1 1 auto; padding: 1.5rem; }
.bento__item--feature .bento__body { flex: 0 0 auto; padding: 1.15rem 1.35rem 1.35rem; }
.bento__item--feature .bento__title { font-size: 1.45rem; }
.bento__item--feature .bento__desc { font-size: .94rem; }

/* geniş kutular: görsel solda, metin sağda */
.bento__item--wide .bento__link { flex-direction: row; }
.bento__item--wide .bento__media {
  height: auto; width: 156px; flex: 0 0 156px;
  border-bottom: 0; border-right: 1px solid var(--line-soft);
}
.bento__item--wide .bento__body { justify-content: center; }

/* anahtar kelime etiketleri */
.chips { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: .65rem 0 0; padding: 0; }
.chips li {
  margin: 0; padding: .22rem .6rem;
  background: var(--brand-soft); color: var(--brand-ink);
  border: 1px solid #f2e2b8; border-radius: 999px;
  font-size: .745rem; font-weight: 650; white-space: nowrap;
}

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 252px; }
  .bento__item--feature { grid-column: span 2; grid-row: span 2; }
  .bento__item--wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento__item--feature, .bento__item--wide { grid-column: span 1; grid-row: auto; }
  .bento__item--feature .bento__media { height: 190px; flex: 0 0 190px; }
  .bento__item--feature .bento__title { font-size: 1.25rem; }
  .bento__item--wide .bento__link { flex-direction: row; }
  .bento__item--wide .bento__media { width: 122px; flex: 0 0 122px; }
  .bento__media { height: 150px; }
}

/* --------------------------------------------------- 8c. Numaralı özellik */
.feature {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.35rem 1.5rem;
}
.feature__num {
  display: block; margin-bottom: .6rem;
  color: var(--brand); font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em;
  line-height: 1;
}
.feature h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.feature p { color: var(--muted); font-size: .93rem; margin-bottom: 0; }

/* ---------------------------------------------------------------- 9. Kart */
.card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .16s, box-shadow .16s, transform .16s;
}
.card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }

.card__media {
  height: 190px; padding: 1rem; overflow: hidden;
  background: #fff; border-bottom: 1px solid var(--line-soft);
}
.card__media picture { width: 100%; height: 100%; }
/* width+height %100 + object-fit: contain -> kutuya sığar, oran korunur, ortalanır */
.card__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.card__body { display: flex; flex-direction: column; flex: 1; padding: 1.1rem 1.15rem 1.25rem; }
.card__body h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.card__body h3 a { color: inherit; }
.card__body h3 a:hover { color: var(--brand-ink); text-decoration: none; }
.card__body p { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }
.card__body .btn { margin-top: auto; align-self: flex-start; }

.card__meta { list-style: none; margin: 0 0 1rem; padding: 0; font-size: .87rem; color: var(--muted); }
.card__meta li { display: flex; gap: .5rem; margin-bottom: .25rem; }
.card__meta b { color: var(--text); font-weight: 650; }

.card--product .card__body { padding-bottom: 1.1rem; }
.card--product .card__body p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------- 10. Breadcrumb */
.crumbs { padding-block: .9rem; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 0; padding: 0; font-size: .87rem; }
.crumbs li { margin: 0; color: var(--muted); }
.crumbs li + li::before { content: "›"; margin-right: .45rem; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ------------------------------------------------------ 11. Sayfa başlığı */
.pagehead { padding-block: clamp(2rem, 1rem + 3vw, 3.25rem) 0; }
.pagehead__lede { font-size: 1.08rem; color: var(--muted); max-width: 68ch; }
.pagehead__body { margin-top: 2rem; padding-bottom: clamp(2rem, 1rem + 3vw, 3.25rem); }

/* -------------------------------------------------------------- 12. Prose */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.6rem; }
.prose > :first-child { margin-top: 0; }
.prose ul li::marker { color: var(--brand-600); }

/* -------------------------------------------------------------- 13. Tablo */
.table-wrap {
  overflow-x: auto; margin-bottom: 1.5rem; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius);
}
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
caption { text-align: left; padding: .9rem 1rem; font-weight: 700; color: var(--muted); font-size: .87rem; }
th, td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
thead th { background: var(--bg-soft); font-weight: 700; color: var(--ink); white-space: nowrap; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody th { font-weight: 650; white-space: nowrap; width: 1%; }

/* ------------------------------------------------------- 14. Bilgi kutusu */
.note {
  border-left: 4px solid var(--brand); background: var(--brand-soft);
  padding: 1.1rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.5rem;
}
.note p:last-child { margin-bottom: 0; }
.note strong { color: var(--ink); }

/* --------------------------------------------------------------- 15. SSS */
.faq { max-width: 78ch; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); margin-bottom: .75rem;
}
.faq details[open] { border-color: var(--brand); }
.faq summary {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 1rem 1.15rem; cursor: pointer; font-weight: 650; color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-ink); }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--brand-ink); line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq__answer { padding: 0 1.15rem 1.1rem; color: var(--muted); }
.faq__answer p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------- 16. İletişim */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 1.75rem; } }

.map-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: .85rem; padding: .9rem 0; border-bottom: 1px solid var(--line-soft); margin: 0; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .lbl { color: var(--muted); font-size: .85rem; display: block; }
.contact-list .val { font-weight: 650; color: var(--ink); }

/* --------------------------------------------------------------- 17. CTA */
.cta {
  background: var(--brand); color: var(--ink);
  border-radius: var(--radius); padding: clamp(1.75rem, 1rem + 3vw, 3rem);
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2rem; align-items: center;
}
@media (max-width: 760px) { .cta { grid-template-columns: 1fr; } }
.cta h2 { color: var(--ink); margin-bottom: .4rem; }
.cta p { color: rgba(23, 26, 33, .8); margin-bottom: 0; max-width: 52ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.cta .btn--dark { background: var(--ink); color: #fff; }
.cta .btn--dark:hover { background: #000; }
.cta .btn--line { background: rgba(255, 255, 255, .6); color: var(--ink); border-color: rgba(23, 26, 33, .28); }
.cta .btn--line:hover { background: #fff; border-color: var(--ink); }

/* ------------------------------------------------------------ 18. Footer */
.footer {
  background: var(--bg-soft);
  border-top: 3px solid var(--brand);
  color: var(--muted);
  padding-block: 3rem 0;
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer h2, .footer h3 {
  color: var(--ink); font-size: .82rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer img { width: 190px; height: 44px; margin-bottom: 1rem; }
.footer p { font-size: .93rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .55rem; font-size: .93rem; }
.footer a { color: var(--text); }
.footer a:hover { color: var(--brand-ink); text-decoration: none; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.25rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .85rem; color: var(--muted);
}

/* -------------------------------------------------- 19. Mobil çağrı çubuğu */
.callbar { display: none; }
@media (max-width: 640px) {
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--bg); border-top: 1px solid var(--line);
    box-shadow: 0 -4px 16px -8px rgba(23, 26, 33, .25);
    padding: .5rem; gap: .5rem;
    padding-bottom: calc(.5rem + env(safe-area-inset-bottom));
  }
  .callbar .btn { width: 100%; padding: .7rem .5rem; font-size: .92rem; }
  body { padding-bottom: 72px; }
}

/* --------------------------------------------------- 20. Form / input */
.input {
  width: 100%; font: inherit; color: var(--text);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; padding: .68rem .9rem;
  transition: border-color .16s, box-shadow .16s;
  appearance: none;
}
.input::placeholder { color: #97a1b0; }
.input:hover { border-color: #cfd6e0; }
.input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(245, 182, 10, .22); outline: none; }

select.input {
  cursor: pointer; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 18px;
}

/* ------------------------------------------- 21. Arama + süzgeç (finder) */
.finder { margin-bottom: 1.75rem; }

.finder__search { position: relative; max-width: 520px; }
.finder__icon {
  position: absolute; left: .85rem; top: 50%; translate: 0 -50%;
  width: 19px; height: 19px; color: var(--muted); pointer-events: none;
}
.finder__search .input { padding-left: 2.6rem; padding-right: 2.6rem; }
.finder__clear {
  position: absolute; right: .5rem; top: 50%; translate: 0 -50%;
  width: 28px; height: 28px; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--muted);
  border: 1px solid var(--line); border-radius: 50%;
  font-size: 17px; line-height: 1; cursor: pointer;
}
.finder__clear:hover { color: var(--ink); border-color: #cfd6e0; }

.filters { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.filter {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .85rem; cursor: pointer;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: 999px;
  font: inherit; font-size: .875rem; font-weight: 600;
  transition: background .15s, border-color .15s, color .15s;
}
.filter span {
  padding: 0 .38rem; border-radius: 999px;
  background: var(--bg-soft); color: var(--muted);
  font-size: .74rem; font-weight: 700;
}
.filter:hover { border-color: #cfd6e0; }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter[aria-pressed="true"] span { background: rgba(255, 255, 255, .18); color: #fff; }

.finder__count { margin: .9rem 0 0; color: var(--muted); font-size: .87rem; }
.finder__empty {
  margin: 0; padding: 2rem 1.25rem; text-align: center;
  color: var(--muted); background: var(--bg); border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* ------------------------------------------------- 22. Ürün listesi */
.plist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 950px) { .plist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plist { grid-template-columns: 1fr; } }

.pitem {
  display: flex; gap: 0; overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .16s, box-shadow .16s;
}
.pitem:hover { border-color: var(--brand); box-shadow: var(--shadow); }

.pitem__media {
  flex: 0 0 108px; height: auto; padding: .7rem;
  background: #fff; border-right: 1px solid var(--line-soft);
}
.pitem__media picture { width: 100%; height: 100%; }
.pitem__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.pitem__body { flex: 1; min-width: 0; padding: .85rem 1rem .9rem; }
.pitem__cat {
  display: inline-block; margin-bottom: .25rem;
  color: var(--brand-ink); font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.pitem__cat:hover { text-decoration: underline; }
.pitem__title { font-size: .98rem; margin: 0 0 .4rem; line-height: 1.3; }
.pitem__desc {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  overflow: hidden; margin: .5rem 0 0;
  color: var(--muted); font-size: .845rem; line-height: 1.45;
}

/* --------------------------------------------------- 23. Seçim aracı */
.tool {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem, 1rem + 1.5vw, 2.25rem);
  max-width: 760px;
}
.tool__head { margin-bottom: 1.4rem; }
.tool__head h2 { margin-bottom: .4rem; }
.tool__head p { color: var(--muted); margin-bottom: 0; }
.tool__control { max-width: 440px; }
.tool__control label { display: block; margin-bottom: .4rem; font-weight: 650; font-size: .9rem; }

.tool__result {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem 1rem;
  margin-top: 1.25rem; padding: 1.15rem 1.35rem;
  background: var(--brand-soft); border: 1px solid #f2e2b8;
  border-radius: var(--radius-sm);
}
.tool__value {
  color: var(--ink); font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em;
  flex-basis: 100%;
}
.tool__text { margin: 0; color: #6b5a2a; font-size: .93rem; }
.tool__note { margin: 1.25rem 0 0; color: var(--muted); font-size: .845rem; }

/* ------------------------------------------ 24. İlgili kategori kartları */
.relgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
@media (max-width: 850px) { .relgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .relgrid { grid-template-columns: 1fr; } }

.relcard {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .95rem 1.15rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--text);
  transition: border-color .16s, background .16s;
}
.relcard:hover { border-color: var(--brand); background: var(--brand-soft); text-decoration: none; }
.relcard__title { font-weight: 650; font-size: .95rem; }
.relcard__meta { color: var(--muted); font-size: .82rem; white-space: nowrap; }
.relcard::after { content: "→"; color: var(--brand-ink); }

/* ------------------------------------------------ 25. İçindekiler (TOC) */
.toc { max-width: 720px; }
.toc h2 { font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.toc ol { margin: 0; padding-left: 1.35rem; columns: 2; column-gap: 2.5rem; }
@media (max-width: 700px) { .toc ol { columns: 1; } }
.toc li { margin-bottom: .55rem; break-inside: avoid; }
.toc li::marker { color: var(--brand-600); font-weight: 700; }
.toc a { color: var(--text); }
.toc a:hover { color: var(--brand-ink); }

/* --------------------------------------------------- 26. Adım listesi */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.6rem;
  margin: 0; padding-bottom: 2.75rem;
  scroll-margin-top: 100px;
}
.step + .step { padding-top: 2.75rem; border-top: 1px solid var(--line-soft); }
@media (max-width: 620px) { .step { grid-template-columns: 1fr; gap: .9rem; } }

.step__num {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--brand-soft); border: 1px solid #f2e2b8;
  color: var(--brand-ink); font-size: 1.35rem; font-weight: 800;
}
.step__body { min-width: 0; max-width: 68ch; }
.step__body h2 { margin-top: .35rem; font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); }
.step__body > :last-child { margin-bottom: 0; }

.step__links { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.steplink {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .95rem;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: .87rem; font-weight: 650;
}
.steplink:hover { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-ink); text-decoration: none; }

/* ------------------------------------------------- 27. Rehber tanıtımı */
.promo {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem 1.75rem;
  align-items: center; padding: 1.6rem 1.9rem;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  transition: border-color .16s, box-shadow .16s;
}
.promo:hover { box-shadow: var(--shadow); text-decoration: none; }
.promo:hover .promo__title { color: var(--brand-ink); }
@media (max-width: 800px) { .promo { grid-template-columns: 1fr; gap: .85rem; } }

.promo__tag {
  align-self: start; padding: .28rem .7rem; border-radius: 999px;
  background: var(--brand); color: var(--ink);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
}
.promo__title { display: block; margin-bottom: .3rem; color: var(--ink); font-size: 1.18rem; font-weight: 750; letter-spacing: -.015em; }
.promo__text { display: block; color: var(--muted); font-size: .92rem; max-width: 62ch; }
.promo__cta { color: var(--brand-ink); font-weight: 700; font-size: .92rem; white-space: nowrap; }

/* --------------------------------------------------- 28. Yukarı çık */
.totop {
  position: fixed; right: 20px; bottom: 20px; z-index: 45;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--line); border-radius: 50%;
  box-shadow: var(--shadow); cursor: pointer;
  opacity: 0; visibility: hidden; translate: 0 8px;
  transition: opacity .2s, translate .2s, visibility .2s, border-color .16s;
}
.totop[data-show="true"] { opacity: 1; visibility: visible; translate: 0 0; }
.totop:hover { border-color: var(--brand); background: var(--brand-soft); }
.totop svg { width: 20px; height: 20px; }
@media (max-width: 640px) { .totop { bottom: 84px; right: 14px; } }
