/* Babacanlar Toptan — ana stil dosyası */

:root {
  --brand:        #124559;
  --brand-dark:   #0B2F3D;
  --brand-soft:   #E8F0F3;
  --accent:       #D98324;
  --accent-dark:  #B66A16;
  --accent-soft:  #FDF1E3;
  --ink:          #16211F;
  --ink-2:        #47575C;
  --ink-3:        #7B8A8E;
  --line:         #E2E6E5;
  --bg:           #FBFAF8;
  --card:         #FFFFFF;
  --ok:           #2E7D5B;
  --radius:       14px;
  --radius-sm:    9px;
  --shadow:       0 1px 2px rgba(18,69,89,.05), 0 8px 24px rgba(18,69,89,.07);
  --shadow-lg:    0 12px 40px rgba(18,69,89,.16);
  --wrap:         1200px;
  --font:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Sepet çekmecesi ekran dışındayken yatay kaydırma oluşturmasın.
   clip kullanıyoruz: hidden, sticky header'ı bozar. */
html, body { overflow-x: clip; }
@supports not (overflow: clip) { html { overflow-x: hidden; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.22; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ---------- Üst şerit ---------- */
.topbar {
  background: var(--brand-dark);
  color: #CFE0E6;
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 38px; flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar-items { display: flex; gap: 20px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 24px; min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(140deg, var(--brand) 0%, #1C6A84 100%);
  color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem; letter-spacing: -.04em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.12; }
.logo-text b { font-size: 1.08rem; letter-spacing: -.025em; }
.logo-text span { font-size: .68rem; color: var(--ink-3); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 14px; border-radius: 8px; font-size: .93rem; font-weight: 600;
  color: var(--ink-2); transition: background .15s, color .15s;
}
.nav a:hover { background: var(--brand-soft); color: var(--brand); }
.nav a.active { color: var(--brand); background: var(--brand-soft); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; border: 0; cursor: pointer;
  padding: 10px 16px; border-radius: 9px; font: inherit; font-weight: 650; font-size: .9rem;
}
.cart-btn:hover { background: var(--brand-dark); }
.cart-count {
  min-width: 21px; height: 21px; padding: 0 6px; border-radius: 11px;
  background: var(--accent); color: #fff; font-size: .74rem; font-weight: 800;
  display: grid; place-items: center;
}
.menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; cursor: pointer; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 10px; border: 1px solid transparent;
  font: inherit; font-weight: 650; font-size: .95rem; cursor: pointer;
  transition: transform .12s, background .15s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-dark { background: var(--brand); color: #fff; }
.btn-dark:hover { background: var(--brand-dark); }
.btn-ghost { background: #fff; color: var(--brand); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); background: var(--brand-soft); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1DA851; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 15px; font-size: .86rem; border-radius: 8px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(217,131,36,.16), transparent 62%),
    linear-gradient(155deg, var(--brand-dark) 0%, var(--brand) 55%, #17607A 100%);
  color: #fff; padding: 74px 0 84px; position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #F5B860; }
.hero p.lead { font-size: 1.1rem; color: #C6DBE3; max-width: 52ch; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #F5B860; padding: 6px 14px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; max-width: 520px; }
.hero-stat {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm); padding: 16px 14px;
}
.hero-stat b { display: block; font-size: 1.6rem; letter-spacing: -.03em; }
.hero-stat span { font-size: .78rem; color: #A9C6D1; }

.hero-card {
  background: #fff; color: var(--ink); border-radius: 18px; padding: 26px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.hero-card .muted { font-size: .86rem; color: var(--ink-3); margin-bottom: 18px; }
.mini-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 11px; }
.mini-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.mini-list .tick {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center; font-size: .7rem; font-weight: 800; margin-top: 2px;
}

/* ---------- Bölüm başlığı ---------- */
.section { padding: 68px 0; }
.section-alt { background: #fff; border-block: 1px solid var(--line); }
.section-head { margin-bottom: 34px; max-width: 62ch; }
.section-head .kicker {
  color: var(--accent-dark); font-size: .78rem; font-weight: 750;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; display: block;
}
.section-head p { color: var(--ink-2); margin: 0; }

/* ---------- Kategori kartları ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.cat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: block; transition: border-color .15s, transform .15s, box-shadow .15s;
}
.cat-card:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow); }
.cat-icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--brand-soft);
  display: grid; place-items: center; margin-bottom: 14px; font-size: 1.25rem;
}
.cat-card b { display: block; font-size: 1rem; margin-bottom: 3px; }
.cat-card span { font-size: .85rem; color: var(--ink-3); }

/* ---------- Ürün kartları ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 18px; }
.product-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.product-card:hover { border-color: #C6D2D6; box-shadow: var(--shadow); transform: translateY(-2px); }
.p-media {
  aspect-ratio: 1/1; background: linear-gradient(145deg, #F2F5F6, #E7EDEF);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.p-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 10px; background: #fff;
}
.p-media .p-initial {
  font-size: 2.6rem; font-weight: 800; color: #B8C7CC; letter-spacing: -.04em; user-select: none;
}
.p-brand {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,.94); color: var(--brand);
  font-size: .67rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}
.p-body { padding: 15px 16px 16px; display: flex; flex-direction: column; flex: 1; gap: 4px; }
.p-cat { font-size: .71rem; color: var(--ink-3); font-weight: 650; letter-spacing: .05em; text-transform: uppercase; }
.p-name { font-size: .95rem; font-weight: 640; line-height: 1.38; margin: 0 0 2px; min-height: 2.6em; }
.p-code { font-size: .74rem; color: var(--ink-3); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.p-price-row { margin-top: 12px; display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.p-price { font-size: 1.32rem; font-weight: 780; letter-spacing: -.025em; color: var(--brand); }
.p-price small { font-size: .7rem; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.p-retail { font-size: .82rem; color: var(--ink-3); text-decoration: line-through; }
.p-tag {
  display: inline-block; margin-top: 7px; font-size: .72rem; font-weight: 700;
  background: var(--accent-soft); color: var(--accent-dark);
  padding: 3px 9px; border-radius: 6px;
}
.p-meta { font-size: .78rem; color: var(--ink-3); margin-top: 8px; }
.p-actions { margin-top: 14px; display: flex; gap: 8px; }
.p-actions .btn { flex: 1; }

/* ---------- Filtre çubuğu ---------- */
.filters {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; margin-bottom: 26px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: 12px; align-items: end;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .76rem; font-weight: 700; color: var(--ink-2); letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select {
  font: inherit; font-size: .92rem; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink);
  min-width: 0;
}
.field input:focus, .field select:focus { outline: 2px solid var(--brand); outline-offset: -1px; border-color: var(--brand); }
.result-count { font-size: .88rem; color: var(--ink-2); margin-bottom: 16px; }
.result-count b { color: var(--ink); }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  border: 1px solid var(--line); background: #fff; color: var(--ink-2);
  padding: 8px 15px; border-radius: 999px; font: inherit; font-size: .87rem; font-weight: 620;
  cursor: pointer; transition: all .14s;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- Sepet çekmecesi ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(11,47,61,.42); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(430px, 100%);
  background: #fff; z-index: 100; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .26s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 20px 22px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-head h3 { margin: 0; font-size: 1.1rem; }
.drawer-close { background: none; border: 0; font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--ink-3); padding: 0 4px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 18px 22px; background: #FCFCFB; }

.cart-line { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line:last-child { border-bottom: 0; }
.cart-thumb {
  width: 54px; height: 54px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(145deg,#F2F5F6,#E7EDEF); display: grid; place-items: center;
  font-weight: 800; color: #B8C7CC;
}
.cart-info { flex: 1; min-width: 0; }
.cart-info b { display: block; font-size: .87rem; font-weight: 640; line-height: 1.35; }
.cart-info small { color: var(--ink-3); font-size: .76rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-top: 8px; }
.qty button { width: 28px; height: 28px; border: 0; background: #F6F7F7; cursor: pointer; font-size: 1rem; color: var(--ink-2); }
.qty button:hover { background: var(--brand-soft); color: var(--brand); }
.qty input { width: 46px; text-align: center; border: 0; font: inherit; font-size: .85rem; font-weight: 650; padding: 4px 0; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-right { text-align: right; display: flex; flex-direction: column; justify-content: space-between; }
.cart-right b { font-size: .92rem; white-space: nowrap; }
.cart-remove { background: none; border: 0; color: var(--ink-3); font-size: .78rem; cursor: pointer; padding: 0; text-decoration: underline; }
.cart-remove:hover { color: #C0392B; }

.cart-empty { text-align: center; padding: 56px 20px; color: var(--ink-3); }
.cart-empty .big { font-size: 2.4rem; margin-bottom: 10px; }

.totals { display: grid; gap: 7px; margin-bottom: 14px; font-size: .9rem; }
.totals .row { display: flex; justify-content: space-between; color: var(--ink-2); }
.totals .row.grand { font-size: 1.12rem; font-weight: 780; color: var(--ink); padding-top: 9px; border-top: 1px solid var(--line); }
.note-box {
  background: var(--accent-soft); border: 1px solid #F0DCC0; color: #7A4A0F;
  border-radius: var(--radius-sm); padding: 11px 13px; font-size: .79rem; line-height: 1.5; margin-bottom: 14px;
}

/* ---------- Değer önerisi ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-size: 1.2rem;
}
.value-item b { display: block; margin-bottom: 3px; font-size: 1rem; }
.value-item p { margin: 0; font-size: .89rem; color: var(--ink-2); }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff; border-radius: 18px; padding: 44px; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #C6DBE3; max-width: 56ch; margin: 0 auto 26px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Tablo ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.data th, table.data td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
table.data th { background: #F7F9F9; font-size: .77rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); font-weight: 750; }
table.data tr:last-child td { border-bottom: 0; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-row { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--brand-soft); display: grid; place-items: center; flex-shrink: 0; }
.contact-row b { display: block; font-size: .8rem; color: var(--ink-3); font-weight: 650; text-transform: uppercase; letter-spacing: .05em; }
.contact-row span { font-size: .98rem; font-weight: 600; }
form .field { margin-bottom: 14px; }
form textarea {
  font: inherit; font-size: .92rem; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: 9px; resize: vertical; min-height: 110px; color: var(--ink);
}
form textarea:focus { outline: 2px solid var(--brand); outline-offset: -1px; border-color: var(--brand); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-dark); color: #A9C6D1; padding: 52px 0 26px; margin-top: 10px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .9rem; }
.site-footer p { font-size: .9rem; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-logo .logo-mark { background: rgba(255,255,255,.12); }
.footer-logo b { color: #fff; font-size: 1.08rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem;
}

/* ---------- WhatsApp yüzen buton ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 26px rgba(37,211,102,.42);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.07); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 90px);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 10px;
  font-size: .9rem; font-weight: 600; z-index: 120; opacity: 0;
  transition: transform .25s, opacity .25s; pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Duyarlı ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .filters { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 10px; gap: 2px;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; order: 3; }
  .site-header .wrap { gap: 12px; position: relative; }
  .header-actions { margin-left: auto; }
  .cart-btn span.lbl { display: none; }
  .hero { padding: 48px 0 56px; }
  .hero-stats { grid-template-columns: 1fr; max-width: none; }
  .section { padding: 48px 0; }
  .filters { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .p-name { font-size: .88rem; min-height: 2.4em; }
  .cta-band { padding: 32px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-items { gap: 14px; }
}

/* ---------- Çok satan / puan / SEO bölümleri ---------- */
.p-best {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  background: var(--accent); color: #fff; font-size: .7rem; font-weight: 750;
  padding: 4px 9px; border-radius: 6px; letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.p-rating { display: block; margin-top: 6px; font-size: .76rem; color: var(--accent-dark); letter-spacing: .02em; }
.p-rating b { color: var(--ink); font-weight: 700; }
.p-rating small { color: var(--ink-3); }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 9px; }

.seo-text { max-width: 820px; color: var(--ink-2); font-size: .97rem; line-height: 1.7; }
.seo-text h2 { font-size: 1.35rem; margin: 26px 0 8px; color: var(--ink); letter-spacing: -.02em; }
.seo-text h3 { font-size: 1.05rem; margin: 20px 0 6px; color: var(--ink); }
.seo-text p { margin: 0 0 12px; }
.seo-text a { color: var(--brand); font-weight: 600; }

.faq { max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); margin-bottom: 10px; padding: 0 18px; }
.faq summary { cursor: pointer; font-weight: 650; padding: 15px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ink-3); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 15px; color: var(--ink-2); line-height: 1.6; font-size: .95rem; }

.landing-hero { padding: 48px 0 30px; }
.landing-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); letter-spacing: -.03em; margin: 8px 0 12px; }
.landing-hero .lead { color: var(--ink-2); max-width: 760px; font-size: 1.05rem; line-height: 1.65; margin: 0 0 18px; }
.crumbs { font-size: .8rem; color: var(--ink-3); }
.crumbs a { color: var(--ink-3); }
.landing-hero .kicker { display:inline-block; margin-top:10px; }

/* ==== SADE GÖRÜNÜM (bu bloğu silerseniz eski tasarım geri gelir) ==== */
:root { --bg:#FFFFFF; --radius:8px; --radius-sm:6px; --shadow:none; --shadow-lg:0 12px 32px rgba(0,0,0,.12); --brand-soft:#F3F5F6; }
.topbar { display:none; }
.site-header { box-shadow:none; border-bottom:1px solid var(--line); }
.logo-mark { border-radius:6px; }
.logo-text span { display:none; }
.nav a.active, .nav a:hover { background:none; color:var(--brand); text-decoration:underline; text-underline-offset:5px; }
.cart-btn { border-radius:6px; }
.btn { border-radius:6px; box-shadow:none; }

.hero { background:#fff; color:var(--ink); padding:52px 0 36px; border-bottom:1px solid var(--line); }
.hero::before, .hero::after { display:none; }
.hero-grid { grid-template-columns:1fr; gap:0; }
.hero h1 { color:var(--ink); font-size:clamp(1.7rem,3vw,2.3rem); max-width:26ch; margin-bottom:12px; }
.hero h1 em { color:var(--accent-dark); }
.hero p.lead { color:var(--ink-2); font-size:1rem; margin-bottom:22px; }
.eyebrow { display:none; }
.hero-stats, .hero-card { display:none; }

.section { padding:44px 0; }
.section-alt { background:#fff; border:0; }
.section-head { margin-bottom:22px; }
.section-head .kicker { display:none; }
.section-head h2 { font-size:1.45rem; }
.section-head p { font-size:.95rem; }

.cat-grid { display:flex; flex-wrap:wrap; gap:8px; }
.cat-card { display:inline-flex; align-items:baseline; gap:6px; padding:9px 14px; border:1px solid var(--line); border-radius:999px; background:#fff; }
.cat-card:hover { transform:none; box-shadow:none; border-color:var(--brand); }
.cat-icon { display:none; }
.cat-card b { font-size:.9rem; margin:0; }
.cat-card span { font-size:.8rem; }

.product-grid { gap:14px; }
.product-card { border-radius:8px; }
.product-card:hover { transform:none; box-shadow:none; border-color:var(--brand); }
.p-brand, .p-cat, .p-code, .p-tag { display:none; }
.p-best { left:8px; top:8px; bottom:auto; background:var(--ink); font-size:.66rem; padding:3px 7px; border-radius:4px; box-shadow:none; }
.p-body { padding:12px 14px 14px; gap:2px; }
.p-name { font-size:.92rem; min-height:0; font-weight:600; }
.p-rating { font-size:.72rem; margin-top:2px; }
.p-price-row { margin-top:8px; }
.p-price { font-size:1.15rem; }
.p-meta { margin-top:4px; }
.p-actions { margin-top:10px; gap:6px; }
.p-actions .btn-primary { background:var(--brand); }
.p-actions .btn-primary:hover { background:var(--brand-dark); }
.p-actions .btn-ghost { flex:0 0 auto; border:0; background:none; text-decoration:underline; text-underline-offset:3px; padding-inline:6px; }

.filters { box-shadow:none; }
.chip { border-radius:999px; }
.value-grid, .cta-band { display:none; }
.seo-text { font-size:.93rem; }
.seo-text h2 { font-size:1.2rem; }
.faq details { border-radius:6px; }
.site-footer { border-top:1px solid var(--line); }
.wa-float { box-shadow:0 4px 16px rgba(0,0,0,.18); }
