@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

/* ekid-design-kit — tema "r" (Karlı Gün). Dart üreteciyle oluşturuldu; elle düzenleme. */

:root {
  color-scheme: light;
  --paper: #f7fafc;
  --paper-2: #e2edf6;
  --card: #ffffff;
  --ink: #414e66;
  --ink-soft: #8a94ab;
  --red: #cc6b6b;
  --mustard: #e0a95c;
  --pine: #5f8d77;
  --sky: #8fb7dd;
  --blush: #e3a8b0;
  --sage: #d4e2ec;
  --tang: #b07a52;
  --bd: 1.5px solid rgba(65, 78, 102, .5);
  --line: rgba(65, 78, 102, .22);
  --hard: 0 7px 16px rgba(65, 78, 102, .18);
  --hard-sm: 0 4px 10px rgba(65, 78, 102, .16);
  --radius: 18px;
  --radius-sm: 9px;
  --splash: #cc6b6b;
  --splash-ink: #ffffff;
  --font-head: 'Baloo 2', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

/* ═══════════ YAPI (ortak) — reset & temel ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(1140px, calc(100% - 48px)); margin-inline: auto; }
/* Nav boşluk kuralı (varyanttan bağımsız): kenar boşluğu --nav-gutter
   (toplam; yan-başına yarısı → web 24px / mobil 16px) + öğe arası --nav-gap
   (web 16px / mobil 12px). Mobil değerleri aşağıda 700px media'sı ezer.
   :root'ta durur ki EkidHead'in :root `--nav-w` style'ındaki
   var(--nav-gutter) da aynı yerde çözülsün. */
:root { --nav-gutter: 48px; --nav-gap: 16px; }
/* Nav'ın wrap'i daha geniş nefes alır. Dart kaynağı:
   `EkidHead.themeSetup(navWidth:)` (1280 varsayılan; null/<=0 → px sınırı
   kalkar = tam genişlik). Consumer CSS'le de TÜM ifadeyi ezebilir: ör.
   `:root { --nav-w: 100% }` → kenardan-kenara. Nav varyantından bağımsız —
   mascot da bar da bu wrap'i kullanır. */
.nav .wrap { width: var(--nav-w, min(1280px, calc(100% - var(--nav-gutter)))); }
.wrap-narrow { width: min(760px, calc(100% - 48px)); }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
.section-sub { max-width: 640px; color: var(--ink-soft); margin: 14px 0 40px; font-size: 1.06rem; }

/* ═══════════ Bölümler / kapsayıcı ═══════════ */
section[id], .cta-band { scroll-margin-top: 118px; }
.section { padding: 90px 0; }
.section-tint { background: var(--paper-2); }

/* ═══════════ Nav bar düzeni (paint temada) ═══════════ */
.nav { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 2px solid var(--ink); }
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: var(--nav-gap); padding: 13px 0; }
/* Nav sekme sırası: KONUM mekanik (base) — deri/gap/dekor temada.
   Tema `.nav-links{gap;padding-top}` ile paydeder; farklı hizalama (ör. rafa
   oturan kitaplar) `align-items` override'ıyla. */
.nav-links { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); display: flex; align-items: flex-start; }

/* Burger + drawer mekaniği */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-burger span { width: 24px; height: 3px; border-radius: 3px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-drawer[hidden] { display: none; }
.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.nav-drawer a {
  text-decoration: none;
  font-weight: 800;
  color: var(--ink);
  padding: 10px 4px;
  border-bottom: 2px dashed var(--line);
}
.nav-drawer .btn { margin-top: 14px; border-bottom: 2px solid var(--ink); }

/* ═══════════ data-nav="bar": maskotsuz tek-katman nav (Faz 0) ═══════════
   <html data-nav="bar"> → maskot yok; sekmeler barın İÇİNDE, sağa hizalı
   (Flutter: Row[Logo, Expanded(Align.centerRight: NavLinks), CTA, Burger]).
   Attribute yoksa görünüm/davranış birebir eski (maskotlu, asılı sekmeler). */
html[data-nav="bar"] .mascot { display: none; }
html[data-nav="bar"] .nav-links {
  position: static;
  transform: none;
  flex: 1 1 auto; /* GERÇEK Expanded: ortadaki boş bandın sahibi .nav-links */
  justify-content: flex-end; /* Align.centerRight: linkler bandın sağında */
  align-items: center;
  padding-top: 0; /* temaların asılı-sekme nefesi barda gereksiz */
}

/* Nav grubu (dropdown): düğme .nav-links'in DOĞRUDAN çocuğu bir <a> — tema
   sekme derisini (nth-child rengi dahil) bedavaya giyer. Panel ise descendant
   bleed olmasın diye .nav-links DIŞINDA kardeş durur (.menu derisi, admin'le
   ortak); konumunu NavController verir (offsetParent = .nav, sticky). */
.nav-group-btn { cursor: pointer; }
.nav-caret { display: inline-block; margin-left: 5px; font-size: .72em; transform: translateY(-1px); }
.menu.nav-menu { right: auto; } /* .menu{right:0} sonra geldiğinden çift-sınıfla ez; yoksa left+right panel gerer */
/* Bar modunda scrollspy vurgusu — mütevazı; tema isterse kendi derisiyle ezer */
html[data-nav="bar"] .nav-links a.is-active { text-decoration: underline; text-underline-offset: 4px; }
/* Drawer'da grup düzleşir; adı küçük bölüm başlığı olur. */
.nav-drawer .drawer-group-label {
  margin-top: 10px;
  font: 800 .78rem/1.2 var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ═══════════ Maskot mekaniği: konum + keyframe (gövde paint temada) ═══════════ */
.mascot {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 56px;
  height: 54px;
  cursor: pointer;
  z-index: 3;
  transform: translateX(-50%);
  /* --walk süresini JS her yürüyüşte mesafeye göre ayarlar */
  transition: left var(--walk, .8s) cubic-bezier(.45, .05, .55, .95);
}
.mascot.walk { animation: mashop .3s ease-in-out infinite; }
@keyframes mashop {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50%      { transform: translateX(-50%) translateY(-6px) rotate(2deg); }
}
.mascot.press { animation: maspress .75s ease; }
@keyframes maspress {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1, 1); }
  35%, 60% { transform: translateX(-50%) translateY(8px) scale(1.06, .9); }
}
.mascot.party { animation: masparty .9s ease; }
@keyframes masparty {
  0%   { transform: translateX(-50%) translateY(0) rotate(0deg); }
  30%  { transform: translateX(-50%) translateY(-13px) rotate(-11deg); }
  55%  { transform: translateX(-50%) translateY(0) rotate(7deg); }
  75%  { transform: translateX(-50%) translateY(-6px) rotate(-4deg); }
  100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
}
@keyframes masbreathe {
  0%, 100% { transform: translateX(-50%) scale(1, 1); }
  50%      { transform: translateX(-50%) scale(1.02, .97); }
}
@keyframes masblink {
  0%, 92%, 100% { transform: scaleY(1); }
  94%, 97%      { transform: scaleY(.12); }
}
@keyframes maswave {
  0%, 100% { transform: rotate(-105deg); }
  50%      { transform: rotate(-155deg); }
}
@keyframes heartup {
  0%   { transform: translateY(0) scale(.5) rotate(-8deg); opacity: 0; }
  25%  { opacity: 1; }
  100% { transform: translateY(-24px) scale(1.15) rotate(10deg); opacity: 0; }
}


/* ═══════════ Merkezîleşen mekanik (port artefaktı → base) ═══════════ */
/* — Maskot iskelet/animasyon tetikleyici — */
.mas-eye-l { left: 10px; }
.mas-eye-r { right: 10px; }
.mas-cheek-l { left: 4px; }
.mas-cheek-r { right: 4px; }
.mascot:hover .mas-arm, .mascot.party .mas-arm { animation: maswave .889s ease infinite; }
.mas-hearts b:nth-child(1) { margin-left: -18px; }
.mas-hearts b:nth-child(2) { margin-left: -3px; animation-delay: .28s !important; }
.mas-hearts b:nth-child(3) { margin-left: 12px; animation-delay: .55s !important; }
.mascot:hover .mas-hearts b, .mascot.party .mas-hearts b { animation: heartup 1.1s ease-out infinite; }
/* — Deck kart durumları (deck.js sözleşmesi) — */
.deck:not(.deck-ready) .fcard-cta .fcard-scene { grid-row: 1 / 3; height: 150px; margin: 0; }
.deck:not(.deck-ready) .fcard-cta h3 { align-self: end; }
.deck:not(.deck-ready) .fcard-cta p { align-self: start; }
.deck:not(.deck-ready) .fcard-cta .btn { grid-column: 3; grid-row: 1 / 3; margin: 0; }
/* — Showcase demo animasyon koreografisi — */
.m-ticker span { display: inline-block; animation: ticker 18s linear infinite; }
.sc-duyuru .sc-ring.r2 { animation-delay: .3s; }
.sc-duyuru .l1 { --w: 92%; }
.sc-duyuru .l2 { --w: 68%; animation-delay: .3s; }
.sc-duyuru .l3 { --w: 80%; animation-delay: .6s; margin-bottom: 0; }
.sc-galeri .p1 { --r: -10deg; --x: -60px; }
.sc-galeri .p2 { --r: 3deg;   --x: -4px;  animation-delay: .45s; }
.sc-galeri .p3 { --r: 11deg;  --x: 52px;  animation-delay: .9s; }
.sc-galeri .sc-heart {
  position: absolute; right: 20px; top: 16px;
  font-size: 1.25rem;
  animation: pop 4.2s ease infinite;
}
.sc-takvim svg {
  position: absolute; left: 50%; top: 50%;
  width: 138px; height: 114px;
  transform: translate(-50%, -47%);
  overflow: visible;
}
.sc-takvim .flag {
  position: absolute; right: 18px; bottom: 12px;
  font-size: 1.4rem;
  animation: pop 3.6s ease infinite;
}
.sc-panel .t2, .sc-panel .t2::after { animation-delay: .4s; }
.sc-panel .ms-l.s { width: 70%; }
.sc-ekran .dev i:nth-child(3) { width: 68%; }


/* ═══════════ Ortak bileşen layout (blog/demo/nav — 33/33 aynı → base) ═══════════ */
.btn-block { width: 100%; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-cta { padding: 10px 20px; font-size: .9rem; }
.m-hero-txt { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.m-line-md { width: 65%; }
.m-line-sm { width: 45%; }
.m-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 0 16px;
}
.m-card-gallery {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-content: center;
  gap: 6px;
}
.split-copy .btn { margin-top: 20px; }
.feed-item > div { flex: 1; min-width: 0; }
.feed-item small { color: var(--ink-soft); font-size: .8rem; display: block; }
.serp-bar i { font-style: normal; }
.serp-hit span { font-size: .82rem; color: var(--ink-soft); }
.serp-line-sm { height: 8px; width: 88%; }
.price-big s {
  font-size: 1.6rem;
  color: var(--ink-soft);
  opacity: .55;
  margin-right: 10px;
  vertical-align: middle;
}
.price-head p { color: var(--ink-soft); font-weight: 700; margin-top: 6px; }
.faq summary::-webkit-details-marker { display: none; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.page-head h1 { margin: 12px 0 8px; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.post-body h3 { font-size: 1.2rem; }
.post h1 { margin: 14px 0 0; }
.post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 14px 0 24px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .9rem;
}
.post-cover-lg img { width: 100%; height: 340px; object-fit: cover; display: block; }
.post-content { font-size: 1.03rem; }
.post-content ul { margin: 0 0 18px; padding-left: 26px; }

/* ═══════════ Hero düzeni ═══════════ */
.hero-in {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
/* nowrap ticker içeriği grid hücresini şişirmesin */
.hero-in > *, .split > * { min-width: 0; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

/* Hero varyantı (wcard.is-bold ile aynı desen): .hero.is-bold = TAM RENKLİ
   hero. Bu fallback güvenlik-ağıdır: zemin --splash'ın kendisi, mürekkep
   --splash-ink; yüksek specificity temanın normal hero dokusunu da ezer.
   Asıl görünüm tema paint'inin .hero.is-bold bloğudur — tema, dünyasına uygun
   BAŞKA bir tam rengi zemin seçebilir (ör. hardal afiş); o zaman mürekkebi de
   kendi verir. Badge/CTA: temaların kendi-zeminli badge'i olduğu gibi çalışır;
   kontrast gereken CTA'da .btn-light / .btn-outline-light kullanılabilir. */
.hero.is-bold { background: var(--splash); color: var(--splash-ink); }
.hero.is-bold .hero-sub, .hero.is-bold .fineprint { color: inherit; opacity: .88; }
/* Başlık vurgu kelimesi (em) temalarda çoğunlukla --red — splash zeminde
   kaybolabilir; fallback tek renge çeker, tema .is-bold bloğu geri boyayabilir. */
.hero.is-bold h1 em { color: inherit; }

/* Nav "saydamlaşma şeridi" (.nav::after, tüm temalarda paper→saydam degrade)
   ile is-bold hero etkileşimi:
   1) BAR modunda sekme sarkmadığı için şerit işlevsizdir; renkli (is-bold)
      hero'da krem sis olarak ifşa oluyordu → kapat (specificity temanın
      (0,1,1) kuralını yener, sıra önemsiz).
   2) MASKOT modunda şerit asılı sekmelerin fonu — bold hero SAYFANIN İLK
      section'ıysa paper yerine bold zemin rengine boyanır ki header bold
      dünyaya eriyerek insin. Renk: tema .is-bold bloğunda set edilen
      --bold-fade (yoksa --splash; bold zemini splash olan temalar set etmez). */
html[data-nav="bar"] .nav::after { content: none; }
html:has(.hero.is-bold:first-of-type) .nav::after {
  background: linear-gradient(var(--bold-fade, var(--splash)), transparent);
}

/* ═══════════ Ortak hareket ═══════════ */
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-14px) rotate(8deg); }
}
@keyframes pop {
  0%, 55%  { transform: scale(0); opacity: 0; }
  63%      { transform: scale(1.3); opacity: 1; }
  70%, 92% { transform: scale(1); opacity: 1; }
  100%     { transform: scale(1); opacity: 0; }
}

/* Kayan şerit rayı (pastil paint temada) */
.strip-track { display: flex; gap: 14px; width: max-content; animation: ticker 26s linear infinite; }

/* ═══════════ Deste (deck) mekaniği + kart durumları — deck.js sözleşmesi ═══════════ */
.deck { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.deck-stack { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.deck-ui { display: none; align-items: center; gap: 18px; }
.deck-dots { display: flex; gap: 8px; }
.deck-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: var(--hard-sm);
  font: 800 1.15rem/1 var(--font-body);
  color: var(--ink);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease;
}
.deck-btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.deck-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.deck-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--card);
  padding: 0;
  cursor: pointer;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.sc { position: absolute; inset: 0; }

/* ═══════════ Split / adım / fiyat / SSS düzeni ═══════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-rev .split-copy { order: 2; }
.split-rev .split-art { order: 1; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ticks li { padding-left: 34px; position: relative; font-weight: 600; color: var(--ink); }
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 40px;
}
/* 4 adımlı consumer (7 çocuk: step,ok,step,ok,step,ok,step) — ek sütun çifti.
   3 adımlı görünüm DEĞİŞMEZ (additive; :has desteklenmeyen eski tarayıcıda
   4. adım alt satıra düşer, kırılmaz). */
.steps:has(> :nth-child(7)) { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
/* Çoklu fiyat kartı desteği: tek kart ortalanmış kalır (gap tek çocukta
   etkisiz), 2+ kart yan yana dizilir, dara sığmazsa alt alta sarar. */
.price-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 26px;
  margin-top: 40px;
}
.faq { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
/* Akordeon açılış animasyonu: ::details-content yüksekliği 0→auto akar
   (interpolate-size sayesinde auto'ya animasyon). Desteklemeyen tarayıcıda
   (eski Safari/Firefox) sessizce anında açılır — kırılmaz. */
html { interpolate-size: allow-keywords; }
.faq details::details-content {
  block-size: 0;
  overflow: clip;
  transition: block-size .38s ease, content-visibility .38s allow-discrete;
}
.faq details[open]::details-content { block-size: auto; }

/* ═══════════ Form temelleri (mekanik — paint temanın forms()'unda) ═══════════
   Sözleşme: .field > .label(.required) + .input/.textarea/.select + .field-hint;
   hata = .field.is-error (renk paint'te: --red guaranti accent, structure'a giremez). */
.field { display: flex; flex-direction: column; gap: 7px; }
.label { font: 800 .92rem/1.3 var(--font-body); color: var(--ink); }
.required { color: var(--ink-soft); }
.input, .textarea, .select {
  width: 100%;
  font: 600 1rem/1.4 var(--font-body);
  color: var(--ink);
  background-color: var(--card);
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .14s ease, box-shadow .14s ease, transform .14s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-soft); opacity: .75; }
.textarea { min-height: 120px; resize: vertical; }
/* Native select; ok = var(--ink)'li çift gradient chevron (sarmalayıcı gerekmez) */
.select {
  appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 24px) calc(50% - 2px), calc(100% - 18px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.input:disabled, .textarea:disabled, .select:disabled { opacity: .55; cursor: not-allowed; }
/* Erişilebilirlik fallback'i — tema focus jestini forms()'ta zenginleştirir */
.input:focus-visible, .textarea:focus-visible, .select:focus-visible {
  border-color: var(--ink);
  box-shadow: var(--hard-sm);
}
.field-hint { font: 600 .82rem/1.4 var(--font-body); color: var(--ink-soft); }

/* Onay kutusu / radyo / switch — sınıf saran <label>'da, native input içinde.
   İşaret/nokta/topuz = input'un ::before'u; renk paint temada. */
.check, .radio, .switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.check input, .radio input, .switch input {
  appearance: none;
  margin: 0;
  flex: none;
  cursor: pointer;
  background: var(--card);
  border: 2px solid var(--line);
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.check input {
  width: 24px; height: 24px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
}
.check input::before {
  content: "";
  width: 13px; height: 13px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 81% 0%, 43% 65%);
  background: var(--ink);
  transform: scale(0);
  transition: transform .15s ease;
}
.radio input {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.radio input::before {
  content: "";
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--ink);
  transform: scale(0);
  transition: transform .15s ease;
}
.check input:checked, .radio input:checked { border-color: var(--ink); }
.check input:checked::before, .radio input:checked::before { transform: scale(1); }
.switch input {
  width: 48px; height: 27px;
  border-radius: 999px;
  position: relative;
}
.switch input::before {
  content: "";
  position: absolute;
  left: 3px; top: 50%;
  translate: 0 -50%;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--ink-soft);
  transition: left .18s ease, background .18s ease;
}
.switch input:checked { background: var(--ink); border-color: var(--ink); }
.switch input:checked::before { left: 24px; background: var(--paper); }
.check input:disabled, .radio input:disabled, .switch input:disabled { opacity: .55; cursor: not-allowed; }
.check:has(input:disabled), .radio:has(input:disabled), .switch:has(input:disabled) { cursor: not-allowed; color: var(--ink-soft); }
.check input:focus-visible, .radio input:focus-visible, .switch input:focus-visible {
  border-color: var(--ink);
  box-shadow: var(--hard-sm);
}

/* — Girdi grubu (ön/son ek) — */
.input-group { display: flex; align-items: stretch; }
.input-group > span {
  display: inline-flex; align-items: center;
  padding: 0 14px;
  font: 700 .95rem/1 var(--font-body);
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.input-group > span:first-child { border-top-right-radius: 0; border-bottom-right-radius: 0; border-right: 0; }
.input-group > span:last-child { border-top-left-radius: 0; border-bottom-left-radius: 0; border-left: 0; }
.input-group .input { flex: 1; min-width: 0; }
.input-group .input:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.input-group .input:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; }

/* — Kaydırıcı (range) — */
.range { appearance: none; width: 100%; height: 26px; background: transparent; cursor: pointer; }
.range::-webkit-slider-runnable-track { height: 10px; border-radius: 999px; background: var(--paper-2); border: 2px solid var(--line); }
.range::-webkit-slider-thumb { appearance: none; width: 22px; height: 22px; margin-top: -8px; border-radius: 50%; background: var(--card); border: 2px solid var(--ink); }
.range::-moz-range-track { height: 10px; border-radius: 999px; background: var(--paper-2); border: 2px solid var(--line); }
.range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--card); border: 2px solid var(--ink); }
.range:focus-visible { outline: none; }
.range:focus-visible::-webkit-slider-thumb { box-shadow: var(--hard-sm); }
.range:focus-visible::-moz-range-thumb { box-shadow: var(--hard-sm); }

/* — Sayı girdisi (stepper; ± davranışı runEkidBehavior) — */
.stepper { display: inline-flex; align-items: stretch; gap: 8px; }
.stepper .input { width: 76px; text-align: center; appearance: textfield; }
.stepper .input::-webkit-outer-spin-button, .stepper .input::-webkit-inner-spin-button { appearance: none; margin: 0; }
.stepper button {
  width: 44px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--ink);
  font: 800 1.2rem/1 var(--font-body);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.stepper button:focus-visible { border-color: var(--ink); box-shadow: var(--hard-sm); outline: none; }

/* — Tarih & saat: native input (renkler :root color-scheme'den) — */
.datepicker::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .8; }

/* — Arama (büyüteç saf CSS; öneri listesi = native <datalist>) — */
.search { position: relative; }
/* appearance:none → type=search'ün native "chrome"u sol büyüteci ÖRTMESİN;
   ikon pseudo'ları z-index ile input zeminin ÜSTÜNDE kalır. */
.search .input { appearance: none; padding-left: 46px; padding-right: 16px; }
.search::before, .search::after { z-index: 2; }
/* Native arama-temizle × gizle (datalist okuyla çakışıp sıkışıyordu) */
.search .input::-webkit-search-cancel-button,
.search .input::-webkit-search-decoration { appearance: none; display: none; }
/* Datalist açılış oku: tek başına, hizalı, yumuşak */
.search .input::-webkit-calendar-picker-indicator { margin-right: 2px; opacity: .5; cursor: pointer; }
.search::before {
  content: "";
  position: absolute;
  left: 16px; top: 50%;
  width: 12px; height: 12px;
  margin-top: -9px;
  border: 2.5px solid var(--ink-soft);
  border-radius: 50%;
  pointer-events: none;
}
.search::after {
  content: "";
  position: absolute;
  left: 27px; top: 50%;
  width: 7px; height: 2.5px;
  margin-top: 3px;
  transform: rotate(45deg);
  background: var(--ink-soft);
  border-radius: 2px;
  pointer-events: none;
}

/* — Etiket girdisi (chips; ekleme/silme runEkidBehavior) — */
.tags-input {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 9px 12px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: text;
  transition: border-color .14s ease, box-shadow .14s ease, transform .14s ease;
}
.tags-input input { border: 0; outline: 0; background: none; flex: 1; min-width: 120px; font: 600 1rem/1.4 var(--font-body); color: var(--ink); padding: 4px; }
.tags-input input::placeholder { color: var(--ink-soft); opacity: .75; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px 4px 12px;
  font: 700 .85rem/1.3 var(--font-body);
  color: var(--ink);
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: 999px;
}
.tag button { border: 0; background: none; color: var(--ink-soft); font: 800 1rem/1 var(--font-body); cursor: pointer; padding: 0 2px; }
.tag button:hover { color: var(--ink); }
.tags-input:focus-within { border-color: var(--ink); box-shadow: var(--hard-sm); }

/* — Yıldız derecelendirme (saf CSS: DOM 5→1 sıralı + row-reverse) — */
.rating { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.rating input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.rating label {
  width: 30px; height: 30px;
  cursor: pointer;
  background: var(--line);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transition: background .12s ease, transform .12s ease;
}
.rating label:hover { transform: scale(1.12); }
.rating input:checked ~ label, .rating label:hover, .rating label:hover ~ label { background: var(--ink); }
.rating input:focus-visible + label { outline: 2px solid var(--ink); outline-offset: 3px; }

/* — Renk seçici (native swatch) — */
.colorpicker {
  appearance: none;
  width: 52px; height: 38px;
  padding: 4px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.colorpicker::-webkit-color-swatch-wrapper { padding: 0; }
.colorpicker::-webkit-color-swatch { border: none; border-radius: calc(var(--radius-sm) - 3px); }
.colorpicker::-moz-color-swatch { border: none; border-radius: calc(var(--radius-sm) - 3px); }
.colorpicker:focus-visible { border-color: var(--ink); box-shadow: var(--hard-sm); outline: none; }

/* — Dosya yükleme (dropzone; sürükle + ad yazma runEkidBehavior) — */
.upload {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 30px 22px;
  text-align: center;
  background: var(--card);
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.upload input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.upload b { font: 800 1rem/1.3 var(--font-body); color: var(--ink); }
.upload > span { font-weight: 600; color: var(--ink-soft); font-size: .92rem; }
.upload .upload-note { font-size: .8rem; }
.upload.is-drag, .upload:hover { border-color: var(--ink); }
.upload:has(input:focus-visible) { border-color: var(--ink); box-shadow: var(--hard-sm); }

/* — Kod / OTP (odak akışı runEkidBehavior) — */
.otp { display: flex; gap: 10px; }
.otp .input { width: 52px; padding: 12px 0; text-align: center; font: 800 1.3rem/1.2 var(--font-head); }

/* — Çok adımlı form (wizard; gezinme runEkidBehavior) — */
.wizard-steps { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; counter-reset: wiz; }
.wizard-steps li {
  counter-increment: wiz;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  font: 700 .88rem/1.2 var(--font-body);
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: 999px;
}
.wizard-steps li::before {
  content: counter(wiz);
  display: grid; place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--line);
  font: 800 .72rem/1 var(--font-body);
  color: var(--ink);
}
.wizard-steps li.is-active { color: var(--ink); border-color: var(--ink); background: var(--card); }
.wizard-steps li.is-done::before { content: "✓"; }
.wizard-panel { display: none; }
.wizard-panel.is-active { display: flex; flex-direction: column; gap: 18px; }
.wizard-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.wizard-nav button { cursor: pointer; }
.wizard-nav button:disabled { opacity: .45; cursor: not-allowed; }

/* ═══════════ Geri bildirim & Overlay (mekanik — paint temanın feedback()'inde) ═══════════
   Sözleşme: specs/feedback-spec.md. Modal = native <dialog> (odak tuzağı+ESC+inert
   bedava); açma/kapama + toast kuyruğu FeedbackController'da. */
dialog.modal {
  margin: auto;
  width: min(560px, calc(100% - 40px));
  max-height: min(82vh, 640px);
  overflow: auto;
  border: 0;
  padding: 26px 26px 24px;
  background: var(--card);
  color: var(--ink);
  position: relative;
}
dialog.modal::backdrop { background: rgba(0, 0, 0, .45); }
/* Açılış/kapanış geçişi — @starting-style destekleyen tarayıcıda yumuşak,
   desteklemeyende anında (kırılmaz). */
dialog.modal {
  transition: opacity .22s ease, transform .22s ease, overlay .22s ease allow-discrete, display .22s ease allow-discrete;
}
dialog.modal[open] { opacity: 1; transform: translateY(0) scale(1); }
@starting-style {
  dialog.modal[open] { opacity: 0; transform: translateY(14px) scale(.97); }
}
dialog.modal:not([open]) { opacity: 0; transform: translateY(14px) scale(.97); }
.modal-close {
  position: absolute;
  right: 14px; top: 14px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  color: var(--ink);
  font: 800 1.1rem/1 var(--font-body);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.modal-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.modal h3 { margin-bottom: 8px; padding-right: 34px; }
.modal p { color: var(--ink-soft); }
/* Onay varyantı: dar + ortalı + rozet */
.modal.confirm { width: min(400px, calc(100% - 40px)); text-align: center; }
.modal.confirm h3 { padding-right: 0; }
.modal.confirm .modal-actions { justify-content: center; }
.confirm-ico {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--paper-2);
}

/* — Toast: host + yığılma + giriş (deri/renkler temada) — */
.toast-host {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(380px, calc(100vw - 40px));
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px 13px 18px;
  background: var(--card);
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
  pointer-events: auto;
  animation: toast-in .28s cubic-bezier(.2, .8, .3, 1.1);
}
.toast.is-out { opacity: 0; transform: translateY(8px); transition: opacity .22s ease, transform .22s ease; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.toast-msg { flex: 1; min-width: 0; }
.toast-close, .alert-close {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: none;
  color: var(--ink-soft);
  font: 800 1rem/1 var(--font-body);
  cursor: pointer;
}
.toast-close:hover, .alert-close:hover { color: var(--ink); }

/* — Alert: satır düzeni (tür renkleri temada) — */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}
.alert > div { flex: 1; min-width: 0; }
.alert-ico { flex: none; width: 22px; height: 22px; margin-top: 1px; display: grid; place-items: center; }
/* Tür glifi — renkten bağımsız ayırt edilebilirlik (renk körü erişilebilirliği).
   Renk/zemin temada; glif seti evrensel. */
.alert-ico::before { content: "i"; font: 800 .78rem/1 var(--font-body); }
.alert.is-ok .alert-ico::before { content: "✓"; }
.alert.is-warn .alert-ico::before { content: "!"; }
.alert.is-error .alert-ico::before { content: "×"; font-size: .95rem; }

/* — Spinner + yüklenen düğme — */
.spinner {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--ink);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--ink);
  animation: spin .7s linear infinite;
}
/* Dolgulu (koyu/renkli zeminli) birincil butonda beyaz halka */
.btn-primary.is-loading::after { border-color: rgba(255, 255, 255, .4); border-top-color: #fff; }

/* — Boş durum — */
.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 48px 24px;
}
.empty p { color: var(--ink-soft); max-width: 380px; }
.empty .btn { margin-top: 12px; }
.empty-art { display: block; width: 88px; height: 88px; margin-bottom: 10px; position: relative; }

/* Çerçevesiz dünya fotoğrafı (media-spec §wphoto) — çerçeve/mat YOK;
   fotoğrafın KENDİSİ temanın kesimini (radius/clip/eğim) ve üzerine
   süslemesini (dikiş, bant, damla…) alır. Tema media()'da boyar;
   fallback = yumuşak köşeli düz fotoğraf. */
.wphoto { position: relative; display: block; margin: 18px 0; }
.wphoto img { width: 100%; display: block; object-fit: cover; border-radius: var(--radius); }

/* Dünya kartı — nesne-kart varyantı (specs/wcard-spec.md). `.card`/`.post-card`
   AİLESİNDEN AYRI token seti; tema worldCard() ile kartı kendi dünyasının
   nesnesine çevirir (lolipop tabela, mandallı pano, vagon...). ROLLOUT
   (type:yeni): paint'siz temalarda bu sade dik kart görünür. */
.wcard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 18px; }
.wcard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.wcard-media { margin: -22px -22px 6px; }
.wcard-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0; }
.wcard-ico { width: 58px; height: 58px; display: grid; place-items: center; font-size: 1.7rem; border-radius: 50%; background: var(--paper-2); }
.wcard-ico img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.wcard h3 { margin: 4px 0 0; }
.wcard-tag { align-self: flex-start; font: 700 .72rem/1.3 var(--font-body); padding: 4px 12px; border-radius: 999px; background: var(--paper-2); color: var(--ink-soft); }
.wcard p { margin: 0; color: var(--ink-soft); }
.wcard-more { margin-top: auto; font-weight: 800; text-decoration: none; color: var(--ink); }

/* Dünya kartı varyantları (specs/wcard-spec.md):
   .is-soft = pastel zemin + beyaz dikiş çerçevesi (temanın --wc döngüsünden
   türetilir; tema süsleri üstünde kalır). .is-bold = TAM RENKLİ program
   kartı (zemin --wc'nin kendisi, mürekkep kontrast --wc-ink — temanın
   paint'i döngü başına doğru mürekkebi verir; bu fallback açık-beyaz varsayar).
   .wcard-date = takvim yaprağı (etkinlik kartı — :has ile yatay düzene
   geçer). .wcard-meta = saat/yer satırı. .wcard-list = tek kolon etkinlik
   dizilimi. */
.wcard.is-soft {
  background: color-mix(in srgb, var(--wc, var(--splash)) 26%, #fff);
  border-color: transparent;
  outline: 2px dashed rgba(255, 255, 255, .92);
  outline-offset: -9px;
}
.wcard.is-soft .wcard-ico { background: #fff; }
.wcard.is-soft .wcard-tag { background: rgba(255, 255, 255, .72); }
.wcard.is-bold {
  background: var(--wc, var(--splash));
  color: var(--wc-ink, color-mix(in srgb, #fff 90%, var(--wc, var(--splash))));
  border-color: color-mix(in srgb, var(--ink) 30%, var(--wc, var(--splash)));
}
.wcard.is-bold h3, .wcard.is-bold .wcard-more { color: inherit; }
.wcard.is-bold p { color: inherit; opacity: .92; }
.wcard.is-bold .wcard-tag {
  background: transparent;
  border: 2px solid currentColor;
  color: inherit;
}
.wcard.is-bold .wcard-ico { background: rgba(255, 255, 255, .92); }
.wcard-list { display: grid; gap: 18px; margin-top: 18px; }
.wcard-date {
  position: relative;
  align-self: flex-start;
  min-width: 88px;
  padding: 20px 14px 12px;
  text-align: center;
  background: color-mix(in srgb, var(--wc, var(--splash)) 24%, #fff);
  border-radius: 9px;
  transform: rotate(-2deg);
  box-shadow: 0 3px 0 rgba(0, 0, 0, .08);
  font: italic 700 .82rem/1.3 var(--font-body);
  color: var(--ink);
}
.wcard-date::before {
  content: "";
  position: absolute;
  top: 8px; left: 12px; right: 12px;
  height: 6px;
  background: radial-gradient(circle, rgba(0, 0, 0, .3) 2.5px, transparent 3px) left center / 14px 6px repeat-x;
}
.wcard-date b { display: block; font: 800 1.75rem/1.15 var(--font-head); font-style: normal; }
.wcard-meta { display: flex; flex-wrap: wrap; gap: 6px 20px; color: var(--ink-soft); font-size: .92rem; }
.wcard:has(> .wcard-date) {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 8px;
  align-items: start;
}
.wcard:has(> .wcard-date) > :not(.wcard-date) { grid-column: 2; }
.wcard:has(> .wcard-date) > .wcard-tag, .wcard:has(> .wcard-date) > .wcard-more { justify-self: start; }
.wcard:has(> .wcard-date) > .wcard-date { grid-row: 1 / span 6; }

/* Grup kartı — başlık sekmeli içerik kutusu (specs/gcard-spec.md).
   Fallback = sekmeli klasör; tema groupCard() ile kenarı+tab'ı kendi
   dünyasının nesnesine çevirir (sandık+pirinç plaka, kâğıt+maskeleme bandı…). */
.gcard {
  position: relative;
  margin-top: 14px;
  padding: 18px 16px 14px;
  background: var(--card);
  border: var(--hard-sm, 2px solid var(--line));
  border-radius: 0 var(--radius-sm, 10px) var(--radius-sm, 10px) var(--radius-sm, 10px);
}
.gcard-tab {
  position: absolute;
  bottom: calc(100% - 2px);
  left: -2px;
  margin: 0;
  padding: 4px 16px 3px;
  font-size: .88rem;
  background: color-mix(in srgb, var(--splash) 16%, var(--paper));
  border: var(--hard-sm, 2px solid var(--line));
  border-bottom: 0;
  border-radius: var(--radius-sm, 10px) var(--radius-sm, 10px) 0 0;
}

/* Vitrin nesnesi — temanın props() sanatı çizer (specs/props-spec.md).
   Sabit sahne kutusu: tema içine ::before/::after ile nesneyi kurar. */
.prop {
  display: inline-block;
  width: 56px;
  height: 56px;
  position: relative;
  flex: none;
  font-style: normal;
  pointer-events: none;
}

/* ═══════════ Pazarlama & ikna (mekanik — paint temanın marketing()'inde) ═══════════
   Sözleşme: specs/marketing-spec.md; davranış MarketingController. */
.topbar { background: var(--paper-2); border-bottom: 2px solid var(--line); }
.topbar-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 0;
  font-weight: 700;
  font-size: .92rem;
}
.topbar a { font-weight: 800; }
.topbar-close {
  border: 0; background: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink-soft);
  font: 800 1rem/1 var(--font-body);
  cursor: pointer;
}
.topbar-close:hover { color: var(--ink); }

/* Üst haber/reklam şeridi (kayan) — .topbar'ın marquee kardeşi; nav'ın ÜSTÜNE
   konur (topbar ile birlikteyse en üstte tickerbar). Kesintisiz döngü için
   consumer içerik setini İKİ kez basar (2. kopya aria-hidden, linkleri
   tabindex="-1"); ray @keyframes ticker ile -%50 kayar. Hover/odakta durur.
   Paint temanın marketing()'inde (35/35 gerçek paint), burası nötr fallback. */
.tickerbar { overflow: hidden; background: var(--paper-2); border-bottom: 2px solid var(--line); }
.tickerbar-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 9px 0;
  font-weight: 700;
  font-size: .9rem;
  animation: ticker 32s linear infinite;
}
.tickerbar-track span { flex: none; display: inline-flex; align-items: center; white-space: nowrap; }
.tickerbar-track span::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-soft);
  margin: 0 22px;
}
.tickerbar a { font-weight: 800; }
.tickerbar:hover .tickerbar-track,
.tickerbar:focus-within .tickerbar-track { animation-play-state: paused; }
.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--paper-2);
  font: 800 .68rem/1.2 var(--font-body);
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
}
.dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  vertical-align: middle;
}
.quotes { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 36px; }
.quote-card { display: flex; flex-direction: column; gap: 16px; padding: 24px 24px 20px; background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); }
.quote-card blockquote { font-size: 1.02rem; line-height: 1.6; }
.quote-card figcaption { display: flex; align-items: center; gap: 12px; }
.quote-card figcaption b { display: block; line-height: 1.25; }
.quote-card figcaption small { color: var(--ink-soft); font-weight: 600; }
.avatar {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--paper-2);
  font: 800 .95rem/1 var(--font-body);
  color: var(--ink);
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar.big { width: 84px; height: 84px; font-size: 1.5rem; }
.members { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; margin-top: 36px; }
.member {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  padding: 26px 18px 22px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
}
.member .avatar { margin-bottom: 8px; }
.member h3 { font-size: 1.08rem; }
.member p { color: var(--ink-soft); font-size: .9rem; font-weight: 600; }
/* Foto varyantı — "polaroid" öğretmen kartı: büyük fotoğraf kartı doldurur,
   isim + branş altta. Avatar'lı varsayılanın alternatifi; tema marketing()'de
   çerçeve/eğim/süsleme boyar. */
.member.has-photo { padding: 12px 12px 18px; gap: 4px; }
.member-photo {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  margin-bottom: 10px;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  position: relative;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.facts { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-top: 36px; text-align: center; }
.fact {
  flex: 1 1 150px;
  max-width: 240px;
  padding: 22px 16px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
}
.fact .counter { display: block; font: 800 2.4rem/1.1 var(--font-head); color: var(--ink); }
.fact small { color: var(--ink-soft); font-weight: 700; }
.timeline { list-style: none; margin-top: 36px; display: flex; flex-direction: column; }
.timeline li { display: flex; gap: 18px; position: relative; padding-bottom: 26px; }
.timeline li:last-child { padding-bottom: 0; }
/* dikey hat + düğüm: tema boyar; konum burada */
.timeline li::before {
  content: "";
  position: absolute;
  left: 74px; top: 26px; bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline li:last-child::before { display: none; }
.tl-time {
  flex: none;
  width: 62px;
  text-align: right;
  font: 800 .92rem/1.6 var(--font-body);
  color: var(--ink-soft);
}
.timeline li::after {
  content: "";
  position: absolute;
  left: 68px; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--card);
}
.tl-body { padding-left: 24px; }
.tl-body b { display: block; }
.tl-body p { color: var(--ink-soft); font-size: .95rem; }
.newsletter { display: flex; gap: 12px; align-items: stretch; max-width: 480px; }
.newsletter .input { flex: 1; min-width: 0; }
.cookie {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 290;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 720px;
  margin-inline: auto;
  padding: 16px 20px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}
.cookie[hidden] { display: none; }
.cookie p { flex: 1 1 320px; font-size: .92rem; font-weight: 600; }
.cookie p a { font-weight: 800; }
.cookie-actions { display: flex; gap: 10px; }
.countdown { display: flex; gap: 12px; justify-content: center; margin-top: 26px; }
.cd-cell {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  min-width: 74px;
  padding: 12px 10px 10px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}
.cd-cell b { font: 800 1.7rem/1.1 var(--font-head); color: var(--ink); }
.cd-cell small { color: var(--ink-soft); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 26px; }
.trust li {
  padding: 8px 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  font-weight: 700;
  font-size: .88rem;
}
.pricing-tiers { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 26px; margin-top: 40px; }
.pricing-tiers .price-card { flex: 1 1 260px; max-width: 360px; }

/* ═══════════ Medya (mekanik — paint temanın media()'sında) ═══════════
   Sözleşme: specs/media-spec.md; davranış MediaController. */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .45s cubic-bezier(.3, .7, .3, 1); }
.carousel-slide { flex: 0 0 100%; min-width: 0; }
.carousel-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.carousel-prev, .carousel-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font: 800 1.1rem/1 var(--font-body);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease;
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--card);
  padding: 0;
  cursor: pointer;
}
/* Mozaik galeri: sabit foto sayısı YOK — 12'lik nth-child desen döngüsü
   (12n+1 ve 12n+8 büyük 2x2) + dense akış her N'de dengeli dizer; 4 kart
   hedef sayılarda (5/10/15…) satırlar tam dolar. 4'ten az fotoda :has
   kapısı devreye girmez, düz eşit grid kalır. */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(120px, 16vw, 170px); grid-auto-flow: dense; gap: 14px; margin-top: 36px; }
.gallery:has(> :nth-child(4)) a:nth-child(12n+1),
.gallery:has(> :nth-child(4)) a:nth-child(12n+8) { grid-column: span 2; grid-row: span 2; }
.gallery a { display: block; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--line); }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.gallery a:hover img { transform: scale(1.05); }
dialog.lightbox {
  margin: auto;
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 1080px);
  max-height: 92vh;
  overflow: visible;
}
dialog.lightbox::backdrop { background: rgba(0, 0, 0, .8); }
.lightbox figure { margin: 0; }
.lightbox img { max-width: 100%; max-height: 80vh; display: block; border-radius: var(--radius-sm); }
.lightbox figcaption { color: #fff; text-align: center; padding: 12px 4px 0; font-weight: 700; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font: 800 1.15rem/1 var(--font-body);
  cursor: pointer;
}
.lightbox-close { top: -16px; right: -16px; }
.lightbox-prev { left: -18px; top: 50%; translate: 0 -50%; }
.lightbox-next { right: -18px; top: 50%; translate: 0 -50%; }
.video { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius-sm); border: 2px solid var(--line); background: var(--paper-2); }
.video iframe, .video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.audio { width: 100%; }
.logocloud { list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 38px; margin-top: 30px; }
.logocloud img { height: 40px; width: auto; }
.beforeafter { position: relative; overflow: hidden; border-radius: var(--radius-sm); border: 2px solid var(--line); --ba-pos: 50%; }
.beforeafter img { width: 100%; display: block; aspect-ratio: 16 / 10; object-fit: cover; }
.beforeafter .ba-after { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0); }
.beforeafter .ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  margin: 0;
}
.beforeafter .ba-range::-webkit-slider-thumb { appearance: none; width: 4px; height: 100vh; background: transparent; }
.beforeafter::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos);
  width: 3px;
  margin-left: -1.5px;
  background: var(--card);
  pointer-events: none;
}
.errpage {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  padding: 90px 24px;
}
.errpage .err-code { font: 800 clamp(4rem, 12vw, 7rem)/1 var(--font-head); color: var(--ink); letter-spacing: .02em; }
.errpage p { color: var(--ink-soft); max-width: 420px; }
.errpage .btn { margin-top: 16px; }
/* Tooltip — saf CSS balon; kritik bilgi İÇİN KULLANILMAZ (mobil hover yok) */
[data-tip] { position: relative; cursor: help; }
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%; bottom: calc(100% + 8px);
  transform: translateX(-50%) scale(.94);
  background: var(--ink);
  color: var(--paper);
  font: 700 .8rem/1.35 var(--font-body);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  max-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 50;
}
[data-tip]:hover::after, [data-tip]:focus-visible::after { opacity: 1; transform: translateX(-50%) scale(1); }

/* ═══════════ Navigasyon: sayfalama (paint temanın navigation()'ında) ═══════════ */
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .page-gap {
  min-width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font: 800 .95rem/1 var(--font-body);
  text-decoration: none;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.page-gap { border-color: transparent; background: none; color: var(--ink-soft); }
.pagination a.is-current { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ═══════════ Navigasyon parça 2: tabs + to-top + skip-link (mekanik) ═══════════ */
.tabs-bar { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 2px solid var(--line); padding-bottom: 10px; }
.tabs-bar [role="tab"] {
  border: 2px solid var(--line);
  background: var(--paper-2);
  color: var(--ink-soft);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font: 800 .92rem/1.2 var(--font-body);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease;
}
.tabs-bar [role="tab"].is-active { background: var(--card); color: var(--ink); border-color: var(--ink); }
.tab-panel { display: none; padding-top: 20px; }
.tab-panel.is-active { display: block; }
.to-top {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 280;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--card);
  color: var(--ink);
  font: 800 1.15rem/1 var(--font-body);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.to-top.is-show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.skip-link {
  position: absolute;
  left: 12px; top: 12px;
  z-index: 400;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-64px);
  opacity: 0;
}
.skip-link:focus-visible { transform: translateY(0); opacity: 1; }

/* ═══════════ Admin paneli (mekanik — paint temanın admin()'inde; yalnız b+d boyalı) ═══════════
   Sözleşme: specs/admin-spec.md; davranış ExtrasController. */
.dash { display: grid; grid-template-columns: 230px 1fr; gap: 26px; align-items: start; }
.dash-side { position: sticky; top: 96px; }
.dash-nav { display: flex; flex-direction: column; gap: 4px; }
.dash-nav a {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-soft);
  border: 2px solid transparent;
}
.dash-nav a.is-active { color: var(--ink); background: var(--paper-2); border-color: var(--line); }
.dash-main { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.widget { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.widget-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px;
  border-bottom: 2px solid var(--line);
}
.widget-head h3 { font-size: 1.02rem; }
.widget-body { padding: 18px; }
.stat {
  position: relative;
  display: flex; flex-direction: column; gap: 2px;
  padding: 18px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}
.stat b { font: 800 1.9rem/1.1 var(--font-head); color: var(--ink); }
.stat small { color: var(--ink-soft); font-weight: 700; }
.stat-delta {
  position: absolute;
  right: 14px; top: 14px;
  font: 800 .78rem/1.2 var(--font-body);
  padding: 3px 8px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--paper-2);
}
.table-wrap { overflow-x: auto; border: 2px solid var(--line); border-radius: var(--radius-sm); background: var(--card); }
.table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.table th, .table td { text-align: left; padding: 12px 16px; white-space: nowrap; }
.table th {
  font: 800 .78rem/1.3 var(--font-body);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--line);
}
.table td { border-bottom: 1px solid var(--line); }
.table tbody tr:last-child td { border-bottom: 0; }
.notif { list-style: none; display: flex; flex-direction: column; }
.notif-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
}
.notif-item:last-child { border-bottom: 0; }
.notif-item .dot { margin-top: 7px; opacity: 0; }
.notif-item.is-unread .dot { opacity: 1; }
.notif-item small { display: block; color: var(--ink-soft); }
.status { display: inline-flex; align-items: center; gap: 7px; font: 700 .85rem/1.2 var(--font-body); }
.status::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--ink-soft); border: 2px solid var(--line); }
.menu-host { position: relative; display: inline-block; }
.usermenu {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font: 700 .95rem/1.2 var(--font-body);
  cursor: pointer;
}
.usermenu .avatar { width: 34px; height: 34px; font-size: .8rem; }
.menu {
  position: absolute;
  right: 0; top: calc(100% + 8px);
  z-index: 120;
  min-width: 180px;
  display: flex; flex-direction: column;
  padding: 8px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}
.menu[hidden] { display: none; }
.menu a { padding: 9px 12px; border-radius: 8px; text-decoration: none; font-weight: 700; color: var(--ink); }
.menu a:hover { background: var(--paper-2); }
.menu hr { border: 0; border-top: 2px solid var(--line); margin: 6px 4px; }
.settings { display: flex; flex-direction: column; }
.settings-row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}
.settings-row:last-child { border-bottom: 0; }
.settings-row small { display: block; color: var(--ink-soft); }
.gsearch { max-width: 420px; }
.gsearch .kbd {
  position: absolute;
  right: 14px; top: 50%;
  translate: 0 -50%;
  pointer-events: none;
}
.kbd {
  display: inline-block;
  padding: 3px 8px;
  border: 2px solid var(--line);
  border-bottom-width: 3px;
  border-radius: 7px;
  background: var(--paper-2);
  font: 700 .75rem/1.2 var(--font-body);
  color: var(--ink-soft);
}
.locked { position: relative; opacity: .6; pointer-events: none; user-select: none; }
.locked::after {
  content: "🔒";
  position: absolute;
  right: 12px; top: 12px;
  font-size: 1.05rem;
  filter: grayscale(1);
}
.readonly { opacity: .7; cursor: not-allowed; }
.skeleton {
  height: 14px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  translate: -100% 0;
  background: rgba(255, 255, 255, .35);
  animation: skshimmer 1.3s ease-in-out infinite;
}
@keyframes skshimmer { to { translate: 100% 0; } }
.progress {
  height: 12px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
}
.progress i { display: block; height: 100%; background: var(--ink); border-radius: inherit; }
.copybtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--ink);
  font: 700 .88rem/1.2 var(--font-body);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease;
}

/* ═══════════ Blog ekleri (mekanik — paint temanın blogExtras()'ında; yalnız b+d boyalı) ═══════════
   Sözleşme: specs/blog-extras-spec.md. */
.post-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.post-filter a {
  padding: 8px 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-soft);
  font: 800 .88rem/1.2 var(--font-body);
  text-decoration: none;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease;
}
.post-filter a.is-active { background: var(--card); color: var(--ink); border-color: var(--ink); }
.related { margin-top: 54px; }
.related h2 { font-size: 1.5rem; margin-bottom: 18px; }
.author {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  margin: 34px 0;
}
.author small { display: block; color: var(--ink-soft); font-weight: 700; margin-bottom: 6px; }
.author p { color: var(--ink-soft); font-size: .95rem; }
.share { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 26px 0; }
.share a {
  padding: 8px 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font: 700 .88rem/1.2 var(--font-body);
  text-decoration: none;
  color: var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
}
.readbar {
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 260;
  height: 5px;
  background: transparent;
  pointer-events: none;
}
.readbar i { display: block; height: 100%; width: 0; background: var(--ink); }
.pullquote {
  margin: 30px 0;
  padding: 6px 0 6px 22px;
  border-left: 5px solid var(--line);
  font: 700 1.35rem/1.5 var(--font-head);
  color: var(--ink);
}
.inline-cta {
  margin: 30px 0;
  padding: 22px 24px;
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: var(--radius);
}
.inline-cta b { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.inline-cta p { color: var(--ink-soft); margin-bottom: 14px; }
.comments { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.comment { display: flex; gap: 12px; align-items: flex-start; }
.comment-body {
  flex: 1; min-width: 0;
  padding: 12px 16px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}
.comment-body small { color: var(--ink-soft); margin-left: 8px; font-weight: 600; }
.comment-body p { margin-top: 4px; font-size: .96rem; }

/* ═══════════ Reveal ═══════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }


/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  border: 1.5px solid rgba(65, 78, 102, .5);
  font: 800 1rem/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease;
}
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(65, 78, 102, .9); }
.btn-lg { padding: 16px 32px; font-size: 1.08rem; }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--hard);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(65, 78, 102, .9); }

.btn-ghost {
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--hard);
}
.btn-ghost:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(65, 78, 102, .9); }

/* Kutup gecesi bandındaki butonlar */
.btn-light {
  background: var(--mustard);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .35);
}
.btn-light:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0, 0, 0, .35); }
.btn-outline-light {
  background: transparent;
  color: #f0f5fa;
  border-color: rgba(234, 243, 253, .85);
  box-shadow: none;
}
.btn-outline-light:hover { background: rgba(234, 243, 253, .14); transform: translate(-1px, -1px); }


/* Dikişli yün etiketi kicker */
.kicker {
  display: inline-block;
  font: 800 .78rem/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border: 1.5px dashed rgba(255, 255, 255, .8);
  box-shadow: 0 0 0 2px var(--red), var(--hard-sm);
  padding: 7px 14px;
  border-radius: 7px;
  transform: rotate(-1.5deg);
  margin-bottom: 18px;
}


/* Minyatür RAY vurgusu: düz hat + traversler */
em.squiggle {
  font-style: normal;
  color: var(--red);
  position: relative;
  white-space: nowrap;
}
em.squiggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.16em;
  height: .38em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'%3E%3Cpath d='M4 3 L10 11 L16 3 L22 11 L28 3 L34 11 L40 3 L46 11 L52 3 L58 11 L64 3 L70 11 L76 3 L82 11 L88 3 L94 11 L100 3 L106 11 L112 3' fill='none' stroke='%23cc6b6b' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.asterisk-link {
  text-decoration: none;
  color: var(--pine);
  font-size: .6em;
  vertical-align: super;
  font-weight: 800;
}
.asterisk-light { color: var(--mustard); }
.fineprint {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 480px;
}


/* ---------- Nav ---------- */
.nav { border-bottom: 1.5px solid rgba(65, 78, 102, .5); }
.nav.is-stuck { box-shadow: 0 4px 0 rgba(65, 78, 102, .12); }
/* Logo: yün yumağı (çapraz iplik izleri) */
.logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background-color: var(--red);
  background-image:
    linear-gradient(35deg, transparent 30%, rgba(255, 255, 255, .35) 30% 34%, transparent 34% 64%, rgba(255, 255, 255, .35) 64% 68%, transparent 68%),
    linear-gradient(-40deg, transparent 44%, rgba(255, 255, 255, .3) 44% 48%, transparent 48%);
  border: var(--bd);
  box-shadow: var(--hard-sm);
  color: #fff;
  font: 800 1.4rem/1 var(--font-head);
  transform: rotate(-5deg);
}
.logo-name { font: 800 1.5rem/1 var(--font-head); color: var(--ink); }
.logo-dot { color: var(--red); }

/* Burger + drawer paint override */
.nav-drawer { border-bottom: 1.5px solid rgba(65, 78, 102, .5); }
.nav-drawer .btn { border-bottom: 1.5px solid rgba(65, 78, 102, .5); }


/* ---------- Nav: ipe asılı ÖRGÜ ELDİVEN sekmeler ---------- */
.nav-links { gap: 15px; padding-top: 13px; /* ip + mandallara yer */ }
/* kurutma ipi */
.nav-links::before {
  content: "";
  position: absolute;
  left: -30px; right: -30px;
  top: 8px;
  height: 2px;
  background: rgba(65, 78, 102, .45);
  border-radius: 2px;
}
/* ÖRGÜ ELDİVEN sekmeler: örgü dokulu gövde + üstte kürk manşet,
   ipe ahşap mandalla tutturulmuş; basınca ipinde sallanır */
.nav-links a {
  display: block;
  position: relative;
  padding: 15px 16px 13px;
  border: var(--bd);
  border-radius: 10px 10px 16px 16px;
  background-image:
    linear-gradient(rgba(255, 255, 255, .85) 0 8px, transparent 8px),
    repeating-linear-gradient(115deg, transparent 0 6px, rgba(255, 255, 255, .22) 6px 9px);
  box-shadow: 0 5px 12px rgba(65, 78, 102, .18);
  font: 800 .86rem/1 var(--font-body);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transform-origin: 50% -8px;
  transition: transform .25s ease;
}
/* ahşap mandal */
.nav-links a::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  width: 9px; height: 14px;
  margin-left: -4.5px;
  background: #d3a968;
  border: 1.5px solid rgba(65, 78, 102, .45);
  border-radius: 3px 3px 4px 4px;
}
/* başparmak (gövde renginde, yandan çıkar) */
.nav-links a::after {
  content: "";
  position: absolute;
  left: -8px; bottom: 7px;
  width: 13px; height: 17px;
  background-color: inherit;
  border: var(--bd);
  border-radius: 60% 40% 50% 60% / 60% 45% 55% 40%;
  transform: rotate(24deg);
}
.nav-links a:nth-child(2n)   { transform: rotate(1.6deg); }
.nav-links a:nth-child(2n+1) { transform: rotate(-1.4deg); }
.nav-links a:hover { transform: rotate(0deg) translateY(-2px); }
/* Maskot "basınca" eldiven ipinde sallanır */
.nav-links a.tab-pressed { transform: rotate(4deg) translateY(1px); }
.nav-links a:nth-child(1) { background-color: var(--red); }
.nav-links a:nth-child(2) { background-color: var(--sky); }
.nav-links a:nth-child(3) { background-color: var(--pine); }
.nav-links a:nth-child(4) { background-color: var(--mustard); }
.nav-links a:nth-child(5) { background-color: var(--blush); }
.nav-links a:nth-child(6) { background-color: var(--tang); }

.nav::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 100px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(rgba(247, 250, 252, .95), rgba(247, 250, 252, 0));
}

/* NAV GRUP PANELİ = BUĞULU PENCERE: beyaz kasalı buz mavisi cam, köşede
   buz çiçeği kristalleri; linkler parmakla silinmiş berrak izler */
.menu.nav-menu {
  margin-top: 8px;
  padding: 14px 12px;
  gap: 5px;
  background: var(--paper-2);
  border: 5px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1.5px rgba(65, 78, 102, .5), 0 10px 22px rgba(65, 78, 102, .18);
}
/* buz çiçeği — sol üst köşede ince kristal çizgi demeti */
.menu.nav-menu::before {
  content: "";
  position: absolute;
  top: 4px; left: 4px;
  width: 34px; height: 34px;
  background:
    linear-gradient(45deg, transparent 46%, rgba(255, 255, 255, .85) 48%, transparent 54%) 0 0 / 22px 22px no-repeat,
    linear-gradient(-45deg, transparent 46%, rgba(255, 255, 255, .8) 48%, transparent 54%) 2px 6px / 18px 18px no-repeat,
    linear-gradient(90deg, transparent 46%, rgba(255, 255, 255, .7) 48%, transparent 54%) 8px 2px / 14px 14px no-repeat;
  pointer-events: none;
}
/* silinmiş izler — camdan daha berrak şeritler */
.menu.nav-menu a {
  background: rgba(255, 255, 255, .55);
  border-radius: 12px 14px 11px 15px / 14px 11px 15px 12px;
  color: var(--ink);
  transition: background .16s ease, transform .16s ease;
}
.menu.nav-menu a:hover { background: #fff; transform: scaleX(1.02); }


/* ---------- Nav maskotu: KARDAN ADAM ----------
   Kar beyazı yuvarlak baş (ince kontur + yumuşak gölge). Dikey ritim
   ferah ve NET: gözler → hemen altında iri havuç burun (.mas-face::before,
   aşağı bakan turuncu koni) → onun altında AYRIK tek kavisli kömür
   gülümseme (.mas-mouth). Boynuna sarılı püsküllü kırmızı atkı (.mas-hat —
   şapka DEĞİL, baş çıplak), dal kol (.mas-arm); sevinince ❄ uçuşur. */
.mas-face {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  width: 40px; height: 44px;
  background: #ffffff;
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 50%;
  box-shadow: 2px 2px 0 rgba(65, 78, 102, .22), inset -3px -4px 0 rgba(226, 237, 246, .9);
  animation: masbreathe 2.8s ease-in-out infinite;
}
/* havuç burun — gözlerin hemen altında ortada, ucu hafif küt aşağı koni */
.mas-face::before {
  content: "";
  position: absolute;
  left: 50%; top: 16px;
  width: 8px; height: 9px;
  margin-left: -4px;
  background: #e07b3f;
  clip-path: polygon(14% 0, 86% 0, 56% 97%, 44% 97%);
}
.mas-eye {
  position: absolute;
  top: 10px;
  width: 6px; height: 6px;
}
.mas-eye i {
  display: block;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  animation: masblink 4.6s ease infinite;
}
.mas-cheek {
  position: absolute;
  top: 18px;
  width: 7px; height: 5px;
  background: var(--blush);
  border-radius: 50%;
  opacity: .9;
}
/* kömür gülümseme — havucun ALTINDA net ayrık tek kavisli yay */
.mas-mouth {
  position: absolute;
  left: 50%; top: 26px;
  transform: translateX(-50%);
  width: 12px; height: 5px;
  border: 2px solid var(--ink);
  border-top: none;
  border-radius: 0 0 12px 12px;
  transition: width .15s ease, height .15s ease, background .15s ease;
}
.mascot:hover .mas-mouth, .mascot.party .mas-mouth {
  width: 16px; height: 8px;
  border-color: rgba(65, 78, 102, .5);
  background: var(--red);
  border-radius: 0 0 15px 15px;
}
/* boynuna sarılı kırmızı atkı (yatay şerit) */
.mas-hat {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 36px; height: 7px;
  background: var(--red);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 6px;
}
/* yandan sarkan püsküllü atkı ucu */
.mas-hat::after {
  content: "";
  position: absolute;
  right: 4px; top: 2px;
  width: 8px; height: 8px;
  background: var(--red);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-bottom: 3px dashed rgba(255, 255, 255, .85);
  border-radius: 2px 2px 3px 3px;
  transform: rotate(-6deg);
}
/* dal kol */
.mas-arm {
  position: absolute;
  right: 0; bottom: 14px;
  width: 4px; height: 16px;
  background: var(--tang);
  border-radius: 3px;
  transform-origin: 50% 10%;
  transform: rotate(-18deg);
}
.mas-arm::before {
  content: "";
  position: absolute;
  left: -4px; top: 4px;
  width: 7px; height: 3px;
  background: var(--tang);
  border-radius: 3px;
  transform: rotate(35deg);
}
/* sevgi yerine kar taneleri (❄) uçuşur */
.mas-hearts { position: absolute; left: 0; right: 0; top: -4px; pointer-events: none; }
.mas-hearts b {
  position: absolute;
  left: 50%;
  font: 700 11px/1 var(--font-body);
  color: transparent;
  opacity: 0;
}
.mas-hearts b::before {
  content: "❄";
  position: absolute;
  left: 0; top: 0;
  color: var(--sky);
}
/* HOVER/PARTY: yumuşak neşeli salınım + atkı ucu savrulur
   (hızlı üşüme titremesi denendi, göz yoruyordu) */
html[data-mascot="cocuk"] .mascot:hover .mas-face,
html[data-mascot="cocuk"] .mascot.party .mas-face {
  animation: mtr-rock 1.2s ease-in-out infinite;
}
html[data-mascot="cocuk"] .mascot:hover .mas-hat::after,
html[data-mascot="cocuk"] .mascot.party .mas-hat::after {
  transform-origin: 50% 0;
  animation: mtr-scarf .941s ease-in-out infinite;
}
/* tabandan nazik sağa-sola salınım — translateX(-50%) korunur */
@keyframes mtr-rock {
  0%, 100% { transform: translateX(-50%) rotate(-2deg); }
  50%      { transform: translateX(-50%) rotate(2deg); }
}
@keyframes mtr-scarf {
  0%, 100% { transform: rotate(-14deg); }
  50%      { transform: rotate(6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .mascot .mas-hat::after { animation: none; }
}


/* ---------- Hero: güneş + bulutlar ---------- */
.hero {
  position: relative;
  padding: 120px 0 130px; /* eldivenlere + kar tepelerine pay */
}

.hero-badge {
  display: inline-block;
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  box-shadow: var(--hard-sm);
  color: var(--ink);
  font-weight: 800;
  font-size: .9rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  transform: rotate(1deg);
}
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.12rem;
  margin: 20px 0 28px;
  max-width: 520px;
}

/* Dekor: güneş + bulut */
.blob {
  position: absolute;
  border: 1.5px solid rgba(65, 78, 102, .5);
}
.blob-1 { /* güneş */
  width: 96px; height: 96px;
  background: var(--mustard);
  border-radius: 50%;
  top: 10%; right: 5%;
  box-shadow: 0 0 0 10px rgba(224, 169, 92, .25);
  animation: floaty 8s ease-in-out infinite;
}
.blob-2 { /* bulut */
  width: 110px; height: 38px;
  background: #ffffff;
  border: none;
  border-radius: 999px;
  top: 24%; left: 3%;
  box-shadow:
    28px -16px 0 2px #ffffff,
    58px -8px 0 -4px #ffffff,
    0 6px 14px rgba(65, 78, 102, .1);
  animation: drift 22s linear infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-14px) rotate(3deg); }
}
@keyframes drift {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(60px); }
  100% { transform: translateX(0); }
}
.doodle { position: absolute; font-size: 1.5rem; animation: float 5s ease-in-out infinite; }
.doodle-sun   { color: var(--red);     top: 14%; right: 16%; animation-delay: 0s; }
.doodle-star  { color: var(--tang);    top: 88%; left: 4%;  animation-delay: 1.2s; font-size: 1.15rem; }
.doodle-heart { color: var(--pine);    top: 8%;  left: 42%; animation-delay: 2.1s; font-size: 1.05rem; }

/* Kar tepeleri geçişi (yumuşak iki kubbe) */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; height: 64px; }
.hero-wave svg { display: none; }
.hero-wave::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64px;
  background-image:
    radial-gradient(58% 120px at 18% 100%, var(--paper-2) 60px, transparent 61px),
    radial-gradient(70% 150px at 78% 100%, var(--paper-2) 76px, transparent 77px),
    linear-gradient(transparent 0 58px, var(--paper-2) 58px);
  background-repeat: no-repeat;
}

/* .is-bold: TAM RENKLİ hero — kar gecesi: zemin koyu gece mavisi + yağan
   kar taneleri, mürekkep kar beyazı, vurgu fener sarısı. */
.hero.is-bold {
  background-color: color-mix(in srgb, var(--sky) 30%, #1d2a3e);
  background-image:
    radial-gradient(circle 2px at 14% 26%, rgba(255, 255, 255, .85) 60%, transparent 62%),
    radial-gradient(circle 1.5px at 38% 64%, rgba(255, 255, 255, .6) 60%, transparent 62%),
    radial-gradient(circle 2.5px at 62% 18%, rgba(255, 255, 255, .75) 60%, transparent 62%),
    radial-gradient(circle 1.5px at 80% 48%, rgba(255, 255, 255, .55) 60%, transparent 62%),
    radial-gradient(circle 2px at 92% 78%, rgba(255, 255, 255, .7) 60%, transparent 62%);
  background-size: 460px 380px;
  color: #f6fbff;
}
.hero.is-bold h1 em { color: var(--mustard); } /* fener ışığı */
html:has(.hero.is-bold:first-of-type) { --bold-fade: color-mix(in srgb, var(--sky) 30%, #1d2a3e); } /* maskot şeridi bold zemine boyansın */


/* Tarayıcı maketi */
.hero-mock { position: relative; }
.browser {
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(65, 78, 102, .16);
  overflow: hidden;
  transform: rotate(1.2deg);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  background: #e6eef5;
  border-bottom: 1.5px solid rgba(65, 78, 102, .5);
}
.b-dot { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid var(--ink); }
.b-dot:nth-child(1) { background: var(--red); }
.b-dot:nth-child(2) { background: var(--mustard); }
.b-dot:nth-child(3) { background: var(--pine); }
.b-url {
  margin-left: 10px;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 4px 14px;
  font: 700 .78rem/1 var(--font-body);
  color: var(--ink-soft);
  flex: 1;
  text-align: center;
}
.browser-body { padding: 0 0 16px; }

.m-ticker {
  overflow: hidden;
  background: var(--red);
  color: #fff;
  font: 700 .78rem/1 var(--font-body);
  padding: 8px 0;
  white-space: nowrap;
}

.m-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 18px;
  background: #f0f6fb;
  border: 2px dashed var(--line);
  margin: 14px 16px;
  border-radius: 14px;
}
.m-hero-art { font-size: 3rem; animation: float 4s ease-in-out infinite; }

.m-line { display: block; height: 10px; border-radius: 6px; background: #d9e3ed; }
.m-line-lg { width: 82%; height: 14px; background: #c9d6e4; }
.m-btn {
  width: 92px; height: 26px;
  border-radius: 8px;
  background: var(--red);
  border: 1.5px solid var(--ink);
  margin-top: 4px;
}
.m-card {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: 2px 2px 0 rgba(65, 78, 102, .25);
}
.m-tag {
  align-self: flex-start;
  font: 800 .62rem/1 var(--font-body);
  color: #fff;
  background: var(--pine);
  border: 1px solid var(--ink);
  padding: 4px 8px;
  border-radius: 6px;
}
.m-cal {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  background: #f7e6e6;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 4px 9px;
}
.m-cal b { font: 800 .9rem/1.1 var(--font-head); color: var(--red); }
.m-cal i { font: 800 .5rem/1 var(--font-body); font-style: normal; color: var(--ink-soft); letter-spacing: .1em; }
.m-ph {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: #e6eef5;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .95rem;
}

.hero-mock-note {
  position: absolute;
  right: -6px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 999px;
  box-shadow: var(--hard-sm);
  padding: 9px 16px;
  font: 700 .8rem/1.2 var(--font-body);
  color: var(--ink);
  transform: rotate(-1.4deg);
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--pine);
  animation: pulse 1.6s ease-in-out infinite;
  flex: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(95, 141, 119, .5); }
  60%      { box-shadow: 0 0 0 7px rgba(95, 141, 119, 0); }
}


/* ---------- Kayan şerit: karda kayan KIZAKLAR ---------- */
.strip {
  position: relative;
  background: var(--paper-2);
  padding: 10px 0 26px;
  overflow: hidden;
}
/* karda kalan çift kızak izi */
.strip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 9px;
  height: 8px;
  background-image:
    repeating-linear-gradient(90deg, rgba(65, 78, 102, .28) 0 14px, transparent 14px 22px),
    repeating-linear-gradient(90deg, rgba(65, 78, 102, .28) 0 14px, transparent 14px 22px);
  background-size: 100% 2px, 100% 2px;
  background-position: 0 0, 8px 6px;
  background-repeat: no-repeat;
  pointer-events: none;
}
.strip-track {
  gap: 18px;
  position: relative;
  z-index: 1;
}
/* kızak: gövde + altında öne kıvrık ahşap kayak */
.strip-track span {
  flex: none;
  position: relative;
  background: var(--card);
  border: var(--bd);
  color: var(--ink);
  font: 800 .88rem/1 var(--font-body);
  padding: 11px 18px;
  border-radius: 9px 9px 4px 4px;
  box-shadow: 0 5px 12px rgba(65, 78, 102, .14);
}
/* kayak demiri: uçta yukarı kıvrılır */
.strip-track span::before {
  content: "";
  position: absolute;
  left: -6px; right: -2px;
  bottom: -8px;
  height: 10px;
  border-bottom: 3.5px solid #b07a52;
  border-left: 3.5px solid #b07a52;
  border-radius: 0 0 0 12px;
  pointer-events: none;
}
/* gövdeyi kayağa bağlayan iki ayak */
.strip-track span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -5px;
  height: 5px;
  background-image:
    linear-gradient(#b07a52, #b07a52), linear-gradient(#b07a52, #b07a52);
  background-size: 4px 100%, 4px 100%;
  background-position: 22% 0, 78% 0;
  background-repeat: no-repeat;
}
.strip-track span:nth-child(4n+1) { background: #fdf4f0; }
.strip-track span:nth-child(4n+2) { background: var(--card); }
.strip-track span:nth-child(4n+3) { background: var(--sage); }
.strip-track span:nth-child(4n+4) { background: #f7ecec; }


/* ---------- Özellik kartları: kar tuğlalı İGLOLAR ---------- */
.deck { margin-top: 48px; }
.deck-stack { row-gap: 38px; }

.fcard {
  --roof: var(--red); /* iglo kapısının rengi */
  position: relative;
  background-color: var(--card);
  /* kar tuğlası derzleri: yatay hatlar + şaşırtmalı dikey derzler */
  background-image:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(143, 183, 221, .28) 34px 35.5px),
    repeating-linear-gradient(90deg, transparent 0 56px, rgba(143, 183, 221, .22) 56px 57.5px);
  border: var(--bd);
  border-radius: 46px 46px 14px 14px; /* kubbe omuzları */
  box-shadow: var(--hard);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
/* iglo giriş tüneli (alt kenar ortası, kimlik rengi) */
.fcard::before {
  content: "";
  position: absolute;
  bottom: -1.5px; left: 50%;
  width: 38px; height: 20px;
  transform: translateX(-50%);
  background: var(--roof);
  border: var(--bd);
  border-bottom: none;
  border-radius: 19px 19px 0 0;
  opacity: .9;
  pointer-events: none;
}
.fcard:nth-child(7n+1) { --roof: var(--red); }
.fcard:nth-child(7n+2) { --roof: var(--mustard); }
.fcard:nth-child(7n+3) { --roof: var(--sky); }
.fcard:nth-child(7n+4) { --roof: var(--pine); }
.fcard:nth-child(7n+5) { --roof: var(--tang); }
.fcard:nth-child(7n+6) { --roof: var(--blush); }
.fcard:nth-child(7n+7) { --roof: var(--pine); }
.fcard h3 { font-size: 1.28rem; }
.fcard p { color: var(--ink-soft); font-size: .93rem; }
.fcard .btn { margin-top: 6px; align-self: center; }

/* Geniş ekran: hover + tüm satıra yayılan CTA kartı */
.deck:not(.deck-ready) .fcard { transition: transform .18s ease, box-shadow .18s ease; }
.deck:not(.deck-ready) .fcard:hover { transform: translate(-3px, -3px) rotate(-.4deg); box-shadow: 0 12px 24px rgba(65, 78, 102, .16); }
.deck:not(.deck-ready) .fcard-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 30px;
  row-gap: 4px;
  padding-top: 30px;
}

.deck-btn {
  border: 1.5px solid rgba(65, 78, 102, .5);
  box-shadow: var(--hard-sm);
}
.deck-btn:hover { transform: translate(-2px, -2px); box-shadow: 0 7px 16px rgba(65, 78, 102, .18); }
.deck-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(65, 78, 102, .9); }
.deck-dot {
  border: 1.5px solid rgba(65, 78, 102, .5);
}
.deck-dot.is-active { background: var(--red); }


/* ---------- Kart sahneleri ---------- */
.fcard-scene {
  height: 185px;
  flex: none;
  border: 2px dashed var(--line);
  border-radius: 14px;
  background: #f7fafd;
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
}

/* 1 — Duyuru & Blog */
.sc-duyuru .sc-mega {
  position: absolute; left: 20px; top: 50%;
  margin-top: -22px;
  font-size: 2rem;
  transform-origin: 70% 80%;
  animation: megawig 3.8s ease-in-out infinite;
}
@keyframes megawig {
  0%, 20%, 100% { transform: rotate(-8deg); }
  8%            { transform: rotate(10deg); }
  14%           { transform: rotate(-2deg); }
}
.sc-duyuru .sc-ring {
  position: absolute; left: 48px; top: 50%;
  margin-top: -34px;
  width: 22px; height: 22px;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: ring 3.8s ease-out infinite;
}
@keyframes ring {
  0%        { transform: scale(.4); opacity: 0; }
  6%        { opacity: .8; }
  24%       { transform: scale(2.6); opacity: 0; }
  25%, 100% { opacity: 0; }
}
.sc-duyuru .sc-note {
  position: absolute; left: 78px; right: 16px; top: 50%;
  transform: translateY(-52%);
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 12px;
  padding: 15px 13px 17px;
  box-shadow: var(--hard-sm);
}
.sc-duyuru .l {
  display: block;
  height: 8px;
  border-radius: 5px;
  background: #d9e3ed;
  margin-bottom: 9px;
  width: 0;
  animation: typeline 3.8s ease-out infinite;
}
@keyframes typeline {
  0%        { width: 0; }
  16%, 100% { width: var(--w); }
}
.sc-stamp {
  position: absolute; right: -12px; bottom: -13px;
  background: var(--red);
  color: #fff;
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 8px;
  padding: 5px 9px;
  font: 800 .68rem/1 var(--font-body);
  animation: stamp 3.8s ease infinite;
}
@keyframes stamp {
  0%, 34%  { transform: rotate(-9deg) scale(0); opacity: 0; }
  41%      { transform: rotate(-9deg) scale(1.25); opacity: 1; }
  47%, 94% { transform: rotate(-9deg) scale(1); opacity: 1; }
  100%     { transform: rotate(-9deg) scale(1); opacity: 0; }
}

/* 2 — Galeri */
.sc-galeri .ph {
  position: absolute; left: 50%; top: 52%;
  width: 64px; height: 76px;
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 8px;
  padding: 3px 3px 14px;
  box-shadow: var(--hard-sm);
  opacity: 0;
  animation: dealph 4.2s ease infinite;
}
.sc-galeri .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.sc-galeri .ph::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 8px; right: 8px;
  height: 6px;
  background: #d9e3ed;
  border-radius: 3px;
}
@keyframes dealph {
  0%       { transform: translate(40px, -150px) rotate(35deg); opacity: 0; }
  7%       { opacity: 1; }
  15%, 90% { transform: translate(calc(-50% + var(--x)), -50%) rotate(var(--r)); opacity: 1; }
  100%     { transform: translate(calc(-50% + var(--x)), -50%) rotate(var(--r)); opacity: 0; }
}

/* 3 — Takvim */
.sc-takvim .cal {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 98px;
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--hard-sm);
  text-align: center;
}
.sc-takvim .cal b {
  display: block;
  background: var(--red);
  color: #fff;
  font: 800 .6rem/1 var(--font-body);
  letter-spacing: .14em;
  padding: 6px 0;
  border-bottom: 1.5px solid rgba(65, 78, 102, .5);
}
.sc-takvim .cal i {
  display: block;
  font: 800 2.1rem/1.2 var(--font-head);
  font-style: normal;
  color: var(--ink);
  padding: 8px 0 10px;
  animation: datebounce 3.6s ease infinite;
}
@keyframes datebounce {
  0%, 42%, 58%, 100% { transform: translateY(0); }
  50%                { transform: translateY(-7px); }
}
.sc-takvim ellipse {
  fill: none;
  stroke: var(--mustard);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 330;
  stroke-dashoffset: 330;
  animation: drawcirc 3.6s ease infinite;
}
@keyframes drawcirc {
  0%, 12%  { stroke-dashoffset: 330; opacity: 1; }
  46%, 90% { stroke-dashoffset: 0; opacity: 1; }
  100%     { stroke-dashoffset: 0; opacity: 0; }
}

/* 4 — Kampanya */
.sc-popup .mini-browser {
  position: absolute; inset: 16px 20px;
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 12px;
  overflow: hidden;
}
.sc-popup .mb-bar {
  display: block;
  height: 16px;
  border-bottom: 1.5px solid rgba(65, 78, 102, .5);
  background: #e6eef5;
}
.sc-popup .mb-dim {
  position: absolute; inset: 18px 0 0;
  background: rgba(65, 78, 102, .35);
  opacity: 0;
  animation: dim 4s ease infinite;
}
@keyframes dim {
  0%, 16%  { opacity: 0; }
  28%, 88% { opacity: 1; }
  100%     { opacity: 0; }
}
.sc-popup .mb-pop {
  position: absolute; left: 50%; top: 56%;
  width: 70%;
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 10px;
  box-shadow: var(--hard-sm);
  padding: 10px;
  text-align: center;
  transform: translate(-50%, -50%) scale(0);
  animation: popin 4s cubic-bezier(.2, 1.5, .4, 1) infinite;
}
.sc-popup .mb-pop b { display: block; font: 800 1.25rem/1.1 var(--font-head); color: var(--red); }
.sc-popup .mb-pop i { font: 700 .68rem/1.4 var(--font-body); font-style: normal; color: var(--ink-soft); }
@keyframes popin {
  0%, 22%  { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  36%, 88% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100%     { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
.sc-popup .conf {
  position: absolute; top: -10px;
  width: 7px; height: 11px;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  opacity: 0;
  animation: conf 4s ease-in infinite;
}
.sc-popup .c1 { left: 18%; background: var(--mustard); animation-delay: .5s; }
.sc-popup .c2 { left: 34%; background: var(--sky);     animation-delay: .66s; }
.sc-popup .c3 { left: 52%; background: var(--blush);   animation-delay: .56s; }
.sc-popup .c4 { left: 68%; background: var(--sage);    animation-delay: .74s; }
.sc-popup .c5 { left: 84%; background: var(--red);     animation-delay: .6s; }
@keyframes conf {
  0%, 6% { transform: translateY(0) rotate(0); opacity: 0; }
  10%    { opacity: 1; }
  52%    { transform: translateY(190px) rotate(340deg); opacity: 1; }
  53%, 100% { transform: translateY(190px) rotate(340deg); opacity: 0; }
}

/* 5 — Panel */
.sc-panel .pnl {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 43%;
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 12px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-shadow: var(--hard-sm);
}
.sc-panel .tgl {
  position: relative;
  width: 42px; height: 21px;
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 999px;
  background: #d9e3ed;
  animation: tglbg 4s step-end infinite;
}
.sc-panel .tgl::after {
  content: "";
  position: absolute; top: 1px; left: 1px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--ink);
  animation: tglknob 4s ease infinite;
}
@keyframes tglbg {
  0%, 16%  { background: #d9e3ed; }
  20%, 92% { background: var(--sage); }
  100%     { background: #d9e3ed; }
}
@keyframes tglknob {
  0%, 14%  { transform: translateX(0); }
  22%, 90% { transform: translateX(20px); }
  100%     { transform: translateX(0); }
}
.sc-panel .sld {
  position: relative;
  height: 12px;
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 999px;
  overflow: hidden;
  background: #f7fafd;
}
.sc-panel .sld i {
  position: absolute; inset: 0;
  width: 0;
  background: var(--mustard);
  animation: sldfill 4s ease infinite;
}
@keyframes sldfill {
  0%, 26%  { width: 0; }
  46%, 92% { width: 78%; }
  100%     { width: 0; }
}
.sc-panel .sv {
  align-self: flex-start;
  font: 800 .66rem/1 var(--font-body);
  background: var(--red);
  color: #fff;
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 8px;
  padding: 6px 9px;
  box-shadow: 2px 2px 0 var(--ink);
  animation: svpress 4s ease infinite;
}
@keyframes svpress {
  0%, 52%   { transform: none; box-shadow: 2px 2px 0 var(--ink); }
  58%       { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
  64%, 100% { transform: none; box-shadow: 2px 2px 0 var(--ink); }
}
.sc-panel .mini-site {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 38%; height: 72%;
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 12px;
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-panel .ms-head {
  height: 18px;
  border-radius: 6px;
  border: 1.5px solid var(--ink);
  background: #d9e3ed;
  animation: mshead 4s step-end infinite;
}
@keyframes mshead {
  0%, 62%  { background: #d9e3ed; }
  66%, 96% { background: var(--mustard); }
  100%     { background: #d9e3ed; }
}
.sc-panel .ms-l { height: 7px; border-radius: 4px; background: #d9e3ed; }
.sc-panel .ms-check {
  position: absolute; right: 9px; bottom: 7px;
  font: 800 1rem/1 var(--font-body);
  color: var(--pine);
  animation: pop 4s ease infinite;
}

/* 6 — Her ekranda */
.sc-ekran .dev {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 10px;
  box-shadow: var(--hard-sm);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px;
  width: 170px; height: 108px;
  overflow: hidden;
  animation: devmorph 5.4s ease infinite;
}
@keyframes devmorph {
  0%, 24%  { width: 170px; height: 108px; border-radius: 10px; }
  33%, 57% { width: 118px; height: 128px; border-radius: 13px; }
  66%, 91% { width: 74px;  height: 134px; border-radius: 17px; }
  100%     { width: 170px; height: 108px; border-radius: 10px; }
}
.sc-ekran .dev i { display: block; flex: none; border-radius: 4px; background: #d9e3ed; height: 9px; }
.sc-ekran .dev i:first-child { background: var(--blush); height: 16px; border: 1.5px solid var(--ink); }
.sc-ekran .dv-check {
  position: absolute; right: 22%; top: 16px;
  font: 800 1.05rem/1 var(--font-body);
  color: var(--pine);
  animation: pop 5.4s ease infinite;
}

/* 7 — CTA kartı: hardal kapılı iglo */
.fcard-cta { background-color: #f6ecd9; --roof: var(--mustard); }
.sc-cta { display: grid; place-items: center; }
.sc-cta .big { font-size: 3.2rem; animation: float 3s ease-in-out infinite; }
.sc-cta .zero {
  position: absolute; right: 20%; bottom: 16px;
  background: var(--mustard);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 10px;
  padding: 6px 13px;
  font: 800 1.15rem/1 var(--font-head);
  color: var(--ink);
  transform: rotate(6deg);
  box-shadow: var(--hard-sm);
}


/* ---------- Vitrin nesneleri ----------
   props: 1=örgü bere 2=buz sarkıtı 3=kar küresi 4=kızak */
.prop[data-prop="1"] {
  /* ponpon (kontur ringli) */
  background:
    radial-gradient(circle 5.5px at 50% 13%, #fff 96%, transparent),
    radial-gradient(circle 6.5px at 50% 13%, rgba(65, 78, 102, .5) 96%, transparent);
  transform-origin: 50% 88%;
  animation: rprop-zipla 6.2s ease-in-out infinite;
}
/* bere canlanır: çömelir, ZIPLAR (squash & stretch), yere oturur, minik seker */
@keyframes rprop-zipla {
  0%, 55%, 100% { transform: translateY(0) scale(1, 1); }
  60% { transform: translateY(2px) scale(1.1, .85); }
  66% { transform: translateY(-9px) scale(.92, 1.12); }
  72% { transform: translateY(0) scale(1.12, .84); }
  78% { transform: translateY(-3px) scale(.98, 1.04); }
  83% { transform: translateY(0) scale(1.05, .96); }
  88% { transform: translateY(0) scale(1, 1); }
}
.prop[data-prop="1"]::before {
  /* örgü dokulu tepe */
  content: '';
  position: absolute; left: 11px; top: 13px;
  width: 34px; height: 24px;
  border: var(--bd);
  border-radius: 50% 50% 6% 6% / 80% 80% 8% 8%;
  box-shadow: var(--hard-sm);
  background: repeating-linear-gradient(112deg, var(--red) 0 5px, #b95c5c 5px 8px);
}
.prop[data-prop="1"]::after {
  /* fitilli katlama bandı */
  content: '';
  position: absolute; left: 8px; top: 35px;
  width: 40px; height: 11px;
  border: var(--bd);
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, #d98a8a 0 4px, var(--red) 4px 8px);
}

.prop[data-prop="2"]::before {
  /* karlı saçak + sarkan buz dişleri (tek clip-path gövde) */
  content: '';
  position: absolute; left: 6px; top: 6px;
  width: 44px; height: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 23%, 90% 61%, 74% 29%, 54% 96%, 34% 29%, 16% 70%, 0 23%);
  background: linear-gradient(180deg, #fff 0 6px, #e7f1f8 6px 11px, rgba(231, 241, 248, .95) 11px, var(--sky) 100%);
  filter: drop-shadow(0 2px 2px rgba(65, 78, 102, .28));
}
.prop[data-prop="2"]::after {
  /* eriyen damla: en uzun dişin ucunda */
  content: '';
  position: absolute; left: 27px; top: 38px;
  width: 7px; height: 9px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  background: var(--sky);
  animation: rprop-damla 4.6s linear infinite;
}
/* sarkıt erir: damla dişin ucunda OLUŞUR, büyür, koparak DÜŞER, yok olur */
@keyframes rprop-damla {
  0%, 18%  { transform: translateY(-4px) scale(.25); opacity: 0; }
  28%      { transform: translateY(-3px) scale(.5); opacity: .9; }
  56%      { transform: translateY(-1px) scale(.85); opacity: .9; }
  68%      { transform: translateY(0) scale(1); opacity: .95; }
  73%      { transform: translateY(1px) scale(.9, 1.2); opacity: .95; }
  86%      { transform: translateY(11px) scale(.95); opacity: .9; }
  92%, 100% { transform: translateY(13px) scale(1.3, .5); opacity: 0; }
}

/* kar küresi ÇALKALANIR: biri sallamış gibi hızlı sağa-sola sarsılır, sönümlenip durur */
.prop[data-prop="3"] { animation: rprop-calkala 7s ease-in-out infinite; transform-origin: 50% 92%; }
@keyframes rprop-calkala {
  0%, 55%, 100% { transform: rotate(0deg); }
  59% { transform: rotate(-11deg); }
  64% { transform: rotate(10deg); }
  69% { transform: rotate(-8deg); }
  74% { transform: rotate(6deg); }
  79% { transform: rotate(-3deg); }
  84% { transform: rotate(1.5deg); }
  88% { transform: rotate(0deg); }
}
.prop[data-prop="3"]::before {
  /* cam kubbe: içinde çam + kar tepesi + savrulan taneler */
  content: '';
  position: absolute; left: 11px; top: 4px;
  width: 34px; height: 34px;
  border: var(--bd);
  border-radius: 50%;
  box-shadow: var(--hard-sm);
  background:
    radial-gradient(circle 2px at 30% 32%, #fff 96%, transparent),
    radial-gradient(circle 1.5px at 62% 20%, #fff 96%, transparent),
    radial-gradient(circle 1.5px at 44% 48%, #fff 96%, transparent),
    radial-gradient(circle 2px at 72% 42%, #fff 96%, transparent),
    radial-gradient(ellipse 15px 6px at 50% 88%, #fff 96%, transparent),
    conic-gradient(from 150deg at 50% 40%, var(--pine) 0 60deg, transparent 60deg),
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .85) 0 5px, rgba(143, 183, 221, .28) 6px);
}
.prop[data-prop="3"]::after {
  /* ahşap kaide */
  content: '';
  position: absolute; left: 14px; top: 36px;
  width: 28px; height: 12px;
  border: var(--bd);
  border-radius: 4px 4px 7px 7px;
  background: linear-gradient(180deg, var(--tang) 0 4px, #96683f 4px);
}

.prop[data-prop="4"] {
  /* oturak-demir payandaları */
  background:
    linear-gradient(var(--tang), var(--tang)) 16px 34px / 4px 8px no-repeat,
    linear-gradient(var(--tang), var(--tang)) 36px 34px / 4px 8px no-repeat;
  transform-origin: 50% 86%;
  animation: rprop-kay 6.6s ease-in-out -2.4s infinite;
}
/* kızak yokuştan iner gibi: geri alınır, burnu eğilip İLERİ KAYAR, süzülüp geri döner */
@keyframes rprop-kay {
  0%, 52%, 100% { transform: translate(0, 0) rotate(0deg); }
  58% { transform: translate(-4px, -1px) rotate(-3deg); }
  66% { transform: translate(8px, 2px) rotate(5deg); }
  74% { transform: translate(9px, 2px) rotate(3deg); }
  86% { transform: translate(-1.5px, 0) rotate(-1.5deg); }
  92% { transform: translate(0, 0) rotate(0deg); }
}
.prop[data-prop="4"]::before {
  /* çıtalı ahşap oturak */
  content: '';
  position: absolute; left: 8px; top: 22px;
  width: 40px; height: 10px;
  border: var(--bd);
  border-radius: 4px;
  box-shadow: var(--hard-sm);
  background:
    linear-gradient(rgba(65, 78, 102, .35), rgba(65, 78, 102, .35)) 13px 50% / 1.5px 100% no-repeat,
    linear-gradient(rgba(65, 78, 102, .35), rgba(65, 78, 102, .35)) 26px 50% / 1.5px 100% no-repeat,
    var(--tang);
}
.prop[data-prop="4"]::after {
  /* önden kıvrılan kızak demiri */
  content: '';
  position: absolute; left: 6px; top: 30px;
  width: 44px; height: 16px;
  border: 3px solid transparent;
  border-bottom-color: var(--red);
  border-right-color: var(--red);
  border-radius: 0 0 18px 0;
}


/* ---------- Grup kartı: buz saçaklı pencere çerçevesi + örgü atkı bandı ----------
   Kenar = buzlu beyaz pervazlı pencere; üst pervazdan sıra hâlinde buz
   saçakları sarkar (prop'un tekil buz sarkıtından FARKLI HÂL). Tab =
   düz serili örgü atkı bandı, iki ucu püsküllü — maskotun boyna sarılı
   atkısından FARKLI HÂL; yalnız başlık metni taşır (gcard-spec).
   D-hissi: yumuşak gölge + ince kontur. */
.gcard {
  margin-top: 32px;
  padding: 30px 20px 18px; /* üstte saçak payı */
  background: var(--card);
  border: 7px solid #eaf2fa;
  border-radius: 16px;
  box-shadow:
    0 0 0 1.5px rgba(65, 78, 102, .5),
    inset 0 0 0 1.5px rgba(65, 78, 102, .3),
    0 14px 28px rgba(65, 78, 102, .14);
}
/* üst pervaz karı + sarkan buz saçakları (sağ üst köşe .prop'a boş bırakılır) */
.gcard::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 20px;
  right: 84px;
  height: 24px;
  background-image:
    radial-gradient(5px 18px at 10% 4px, color-mix(in srgb, var(--sky) 45%, #fff) 98%, transparent 100%),
    radial-gradient(4px 12px at 30% 2px, color-mix(in srgb, var(--sky) 45%, #fff) 98%, transparent 100%),
    radial-gradient(5.5px 21px at 52% 5px, color-mix(in srgb, var(--sky) 45%, #fff) 98%, transparent 100%),
    radial-gradient(4px 13px at 72% 2px, color-mix(in srgb, var(--sky) 45%, #fff) 98%, transparent 100%),
    radial-gradient(5px 17px at 90% 3px, color-mix(in srgb, var(--sky) 45%, #fff) 98%, transparent 100%),
    linear-gradient(#ffffff, #ffffff);
  background-size: auto, auto, auto, auto, auto, 100% 7px;
  background-repeat: no-repeat;
  filter: drop-shadow(0 1.5px 0 rgba(65, 78, 102, .28));
  pointer-events: none;
}
.gcard-tab {
  position: absolute;
  top: -16px;
  bottom: auto;
  left: 18px;
  padding: 9px 20px;
  font: 800 .85rem/1 var(--font-body);
  color: #fff;
  /* örgü dokusu: çapraz ilmek taraması */
  background-image:
    repeating-linear-gradient(45deg, transparent 0 5px, rgba(255, 255, 255, .2) 5px 10px),
    repeating-linear-gradient(-45deg, transparent 0 5px, rgba(255, 255, 255, .2) 5px 10px);
  background-color: var(--red);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 7px;
  box-shadow: var(--hard-sm);
  transform: rotate(-2deg);
}
/* atkının iki ucundaki püsküller */
.gcard-tab::before,
.gcard-tab::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 78%;
  transform: translateY(-50%);
  background: repeating-linear-gradient(0deg, var(--red) 0 3px, transparent 3px 6px);
  z-index: -1;
}
.gcard-tab::before { left: -9px; }
.gcard-tab::after { right: -9px; }


/* ---------- Dünya kartı = pastel kar yaması kızak: --wc döngüsünden pastel
   zemin, TEK imza detay = altta kavisli ahşap kızak paleti (::before).
   Başlık üstte, etiket altında hafif not; "Keşfet" atkı kırmızısı. Hafif
   eğik (rotate: bağımsız özellik — .reveal'ın transform:none'ı ezmesin). */
.wcard {
  --wc: var(--sky);
  background: color-mix(in srgb, var(--wc) 26%, #fff);
  border: 0;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(65, 78, 102, .16);
  overflow: visible;
  rotate: .5deg;
  transition: rotate .18s ease, translate .18s ease, box-shadow .18s ease;
}
.wcard:nth-child(2n) { rotate: -.5deg; }
.wcard:nth-child(4n+2) { --wc: var(--blush); }
.wcard:nth-child(4n+3) { --wc: var(--mustard); }
.wcard:nth-child(4n) { --wc: var(--sage); }
.wcard:hover { rotate: 0deg; translate: 0 -4px; box-shadow: 0 16px 30px rgba(65, 78, 102, .2); }
/* tek kızak paleti — kart karda kayıyor */
.wcard::before {
  content: "";
  position: absolute;
  bottom: -12px; left: 8%; right: 8%;
  height: 14px;
  border-bottom: 5px solid #b8905a;
  border-radius: 0 0 999px 999px;
  pointer-events: none;
}
/* içerik sırası: ikon → başlık → etiket (etkinlik varyantına dokunma) */
.wcard:not(:has(> .wcard-date)) > .wcard-media { order: -4; }
.wcard:not(:has(> .wcard-date)) > .wcard-ico { order: -3; }
.wcard:not(:has(> .wcard-date)) > h3 { order: -2; }
.wcard:not(:has(> .wcard-date)) > .wcard-tag { order: -1; margin-top: -4px; }
.wcard-ico { background: #fff; box-shadow: 0 5px 12px rgba(65, 78, 102, .16); }
.wcard-tag {
  background: transparent;
  padding: 0;
  border-radius: 0;
  font: 800 .78rem/1.3 var(--font-body);
  color: var(--ink);
}
.wcard p { color: color-mix(in srgb, var(--ink) 76%, #fff); }
.wcard-more { font: 800 .9rem/1 var(--font-body); color: var(--red); }
.wcard-media img { border-radius: 18px 18px 0 0; }
.wcard.is-soft .wcard-tag { background: transparent; }
/* .is-bold = TAM RENKLİ ÖRGÜ YÜN KART (özgün — kaynak eşi yok): kart pastel
   kar yaması değil sıkı örülmüş yün — 6'lı döngü (atkı kırmızısı/buz mavisi/
   çam/hardal/tarçın/gül kurusu), koyu yünde kırık beyaz, açık yünde lacivert
   mürekkep. Doku = gcard atkısının çapraz ilmek taraması; üst kenar fitilli
   MANŞET bandı (::after), kızak paleti (base ::before) altta kalır — örgü
   battaniyeli kızak. Etiket = dikişli bez etiket, ikon = kar topu. */
.wcard.is-bold {
  --wc: var(--red);
  --wc-ink: #fdf3f0;
  background-color: var(--wc);
  /* örgü dokusu: çapraz ilmek taraması */
  background-image:
    repeating-linear-gradient(45deg, transparent 0 5px, rgba(255, 255, 255, .16) 5px 10px),
    repeating-linear-gradient(-45deg, transparent 0 5px, rgba(255, 255, 255, .16) 5px 10px);
  color: var(--wc-ink);
  border: 0;
  box-shadow: 0 12px 26px rgba(65, 78, 102, .24);
}
.wcard.is-bold:nth-child(6n+2) { --wc: var(--sky); --wc-ink: var(--ink); }
.wcard.is-bold:nth-child(6n+3) { --wc: var(--pine); --wc-ink: #f0f7f2; }
.wcard.is-bold:nth-child(6n+4) { --wc: var(--mustard); --wc-ink: var(--ink); }
.wcard.is-bold:nth-child(6n+5) { --wc: var(--tang); --wc-ink: #f8ede4; }
.wcard.is-bold:nth-child(6n) { --wc: var(--blush); --wc-ink: var(--ink); }
/* üst kenar = fitilli örgü manşeti (eldiven manşetinin kart hâli) */
.wcard.is-bold::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  border-radius: 20px 20px 0 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .5) 0 6px, transparent 6px 12px),
    color-mix(in srgb, var(--wc) 62%, #fff);
  pointer-events: none;
}
.wcard.is-bold h3 { color: inherit; }
.wcard.is-bold p { color: inherit; opacity: .9; }
/* etiket = örgüye dikilmiş bez etiket (kesik dikiş çizgili) */
.wcard.is-bold .wcard-tag {
  border: 1.5px dashed currentColor;
  border-radius: 6px;
  background: transparent;
  padding: 3px 10px;
  color: inherit;
  font: 800 .74rem/1.3 var(--font-body);
  letter-spacing: .03em;
}
/* ikon = yuvarlanmış kar topu (buz gölgeli) */
.wcard.is-bold .wcard-ico {
  background: #fff;
  box-shadow:
    0 5px 12px rgba(65, 78, 102, .24),
    inset -3px -4px 0 rgba(226, 237, 246, .9);
}
.wcard.is-bold .wcard-more { color: var(--wc-ink); }
.wcard.is-bold:hover { rotate: 0deg; translate: 0 -4px; box-shadow: 0 16px 30px rgba(65, 78, 102, .3); }


/* ---------- Split bölümler ---------- */
.split-copy p:not(.kicker) { color: var(--ink-soft); margin: 16px 0 20px; }
/* onaylar: yeşil sinyal ışığı */
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(65, 78, 102, .5);
  background: var(--pine);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  box-shadow: 0 0 0 3px rgba(95, 141, 119, .25);
}


/* Duyuru akışı maketi */
.feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(65, 78, 102, .16);
  padding: 20px;
  transform: rotate(-1.2deg);
}
.feed-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border-radius: 13px;
  border: 1.5px dashed var(--line);
  background: #f7fafd;
}
.feed-item.feed-new {
  background: #f7e6e6;
  border: 1.5px solid rgba(65, 78, 102, .5);
  box-shadow: var(--hard-sm);
  animation: feedpop .6s ease both;
}
@keyframes feedpop {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.feed-ava {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--card);
  border: 1.5px solid var(--ink);
  font-size: 1.2rem;
}
.feed-item b { display: block; font-size: .92rem; }
.feed-time { flex: none; font: 700 .72rem/1 var(--font-body); color: var(--red); }


/* SERP maketi */
.serp {
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(65, 78, 102, .16);
  padding: 22px;
  transform: rotate(1.2deg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.serp-bar {
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 999px;
  padding: 10px 18px;
  font: 700 .9rem/1 var(--font-body);
  color: var(--ink);
  background: #f7fafd;
}
.serp-hit {
  padding: 14px 16px;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1.5px dashed var(--line);
}
.serp-hit-you {
  background: #f6ecd9;
  border: 1.5px solid rgba(65, 78, 102, .5);
  box-shadow: var(--hard-sm);
  position: relative;
}
.serp-url { font: 700 .74rem/1 var(--font-body); color: var(--pine); }
.serp-hit b { font-size: .98rem; color: #5878a8; }
.serp-you {
  position: absolute;
  top: -13px; right: 14px;
  background: var(--mustard);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font: 800 .72rem/1 var(--font-body);
  font-style: normal;
  padding: 5px 11px;
  border-radius: 999px;
  transform: rotate(2deg);
}
.serp-line { display: block; height: 11px; border-radius: 6px; background: #d9e3ed; width: 70%; }


/* ---------- Adımlar: YÜN PONPONLARI ---------- */
.step {
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: var(--radius);
  box-shadow: var(--hard);
  padding: 30px 26px;
  position: relative;
}
.step:nth-of-type(1) { transform: rotate(-.6deg); }
.step:nth-of-type(3) { transform: rotate(.5deg); }
.step:nth-of-type(5) { transform: rotate(-.4deg); }
/* yün ponponu: gövde + etrafında aynı renk noktalı hav */
.step-no {
  display: grid;
  place-items: center;
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 4px dotted rgba(255, 255, 255, .65);
  color: #fff;
  font: 800 1.25rem/1 var(--font-head);
  margin-bottom: 22px;
  box-shadow: var(--hard-sm), 0 0 0 3px var(--pom, var(--red));
  background: var(--pom, var(--red));
}
.step-no::after { content: none; }
.step:nth-of-type(1) .step-no { --pom: var(--red); }
.step:nth-of-type(3) .step-no { --pom: var(--sky); }
.step:nth-of-type(5) .step-no { --pom: var(--pine); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .95rem; }
.step-arrow {
  align-self: center;
  font: 800 1.6rem/1 var(--font-head);
  color: var(--red);
}


/* ---------- Fiyat: kulplu SICAK KAKAO KUPASI ---------- */
.price-wrap { margin-top: 84px; }
.price-card {
  width: min(460px, 100%);
  position: relative;
  background-color: var(--card);
  /* üstte kakao yüzeyi + yüzen marshmallowlar */
  background-image:
    radial-gradient(9px 7px at 34% 15px, #fff 98%, transparent 100%),
    radial-gradient(8px 6px at 46% 20px, #fff 98%, transparent 100%),
    radial-gradient(9px 7px at 62% 14px, #fff 98%, transparent 100%),
    linear-gradient(#8a5c3d 0 30px, transparent 30px);
  border: var(--bd);
  border-radius: 18px 18px 30px 30px;
  box-shadow: 0 14px 28px rgba(65, 78, 102, .18);
  padding: 52px 36px 38px;
  text-align: center;
  transform: rotate(-.6deg);
}
/* kupa kulpu (sağda) */
.price-card::after {
  content: "";
  position: absolute;
  top: 24%; right: -40px;
  width: 52px; height: 62px;
  border: 11px solid var(--card);
  border-radius: 50%;
  box-shadow:
    0 0 0 1.5px rgba(65, 78, 102, .5),
    inset 0 0 0 1.5px rgba(65, 78, 102, .5),
    6px 10px 18px rgba(65, 78, 102, .14);
  z-index: -1;
}
/* yükselen buhar kıvrımları */
.price-card::before {
  content: "";
  position: absolute;
  top: -38px; left: 0; right: 0;
  height: 38px;
  background-image:
    linear-gradient(rgba(65, 78, 102, .22), rgba(65, 78, 102, .06)),
    linear-gradient(rgba(65, 78, 102, .18), rgba(65, 78, 102, .04)),
    linear-gradient(rgba(65, 78, 102, .22), rgba(65, 78, 102, .06));
  background-size: 4px 26px, 4px 34px, 4px 22px;
  background-position: 38% 100%, 50% 100%, 62% 100%;
  background-repeat: no-repeat;
  border-radius: 4px;
  pointer-events: none;
}
.price-head { margin-bottom: 24px; }
.price-badge {
  display: inline-block;
  background: var(--red);
  border: 1.5px solid rgba(65, 78, 102, .5);
  color: #fff;
  font: 800 .78rem/1 var(--font-body);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--hard-sm);
  transform: rotate(1.5deg);
  margin-bottom: 18px;
}
.price-big {
  font: 800 4rem/1 var(--font-head);
  color: var(--red);
}
.price-card .ticks { text-align: left; margin-bottom: 28px; }
.price-card .fineprint { max-width: none; }


/* ---------- SSS ---------- */
.faq details {
  background: var(--card);
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 14px;
  padding: 0 22px;
  box-shadow: var(--hard-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  padding: 19px 34px 19px 0;
  position: relative;
  user-select: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(65, 78, 102, .5);
  background: var(--mustard);
  color: var(--ink);
  font: 800 1.15rem/1 var(--font-body);
  transition: transform .2s ease, background .2s ease;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--red);
  color: #fff;
}
.faq details p { color: var(--ink-soft); padding: 0 0 20px; font-size: .96rem; }


/* ---------- CTA bandı: KUTUP GECESİ + aurora ---------- */
.cta-band {
  margin: 90px 0 0;
  padding: 110px 0 120px;
  background: #2c3547;
  color: #f0f5fa;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* aurora perdeleri + kar taneleri + alttaki kar tepeleri */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(112deg, transparent 16%, rgba(95, 141, 119, .3) 30%, rgba(143, 183, 221, .22) 44%, transparent 58%),
    linear-gradient(66deg, transparent 48%, rgba(179, 143, 197, .2) 62%, transparent 78%),
    radial-gradient(circle, rgba(240, 245, 250, .95) 1.6px, transparent 2.3px),
    radial-gradient(circle, rgba(240, 245, 250, .6) 1.2px, transparent 1.9px),
    radial-gradient(circle, rgba(240, 245, 250, .8) 1.4px, transparent 2.1px),
    radial-gradient(60% 90px at 22% 100%, rgba(226, 237, 246, .18) 60px, transparent 61px),
    radial-gradient(70% 110px at 80% 100%, rgba(226, 237, 246, .16) 74px, transparent 75px);
  background-size: 100% 100%, 100% 100%, 9px 9px, 8px 8px, 9px 9px, auto, auto;
  background-position: 0 0, 0 0, 16% 30%, 64% 20%, 84% 48%, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  pointer-events: none;
}
.cta-in h2 { color: #f0f5fa; }
.cta-in h2 em { font-style: normal; color: var(--mustard); }
.cta-in p { margin: 14px auto 30px; max-width: 520px; color: #c3cede; font-size: 1.1rem; }


/* ---------- Footer ---------- */
.footer { background: #2c3547; color: #93a9c9; padding: 50px 0 40px; }
.footer-in { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer .logo-name { color: #f0f5fa; }
.footer-note { max-width: 480px; font-size: .92rem; }
.footer-copy { font-size: .8rem; opacity: .6; }


/* ---------- Blog ---------- */
.page-head { padding: 92px 0 40px; }
.page-head p { color: var(--ink-soft); max-width: 560px; }


.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
  row-gap: 40px;
  padding-bottom: 90px;
}
/* Yazı kartı = TEK YÜN PONPONLA tutturulmuş beyaz paspartu kış kartı:
   fotoğrafa köşe yuvarlağı, sade tarih, atkı kırmızısı "Devamını oku".
   Hafif eğik (rotate: bağımsız özellik — .reveal transform'uyla çakışmaz). */
.post-card {
  position: relative;
  background: var(--card);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(65, 78, 102, .16);
  overflow: visible;
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  rotate: -.4deg;
  transition: rotate .18s ease, translate .18s ease, box-shadow .18s ease;
}
.post-card:nth-child(2n) { rotate: .4deg; }
.post-card:hover { rotate: 0deg; translate: 0 -5px; box-shadow: 0 18px 32px rgba(65, 78, 102, .22); }
/* üstten tutturan tek yün ponponu */
.post-card::before {
  content: "";
  position: absolute;
  top: -13px; left: 50%;
  width: 24px; height: 24px;
  margin-left: -12px;
  z-index: 2;
  background: var(--pine);
  border: 3.5px dotted rgba(255, 255, 255, .65);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5px var(--pine), 0 3px 7px rgba(65, 78, 102, .2);
  pointer-events: none;
}
.post-cover { height: 200px; border-bottom: 0; border-radius: 12px; overflow: hidden; }
.post-body { padding: 16px 10px 14px; }
.post-date {
  align-self: flex-start;
  font: 800 .78rem/1 var(--font-body);
  letter-spacing: .04em;
  color: var(--sky);
}
.post-body h3 { margin: 0; }
.post-body p { color: var(--ink-soft); font-size: .95rem; }
.post-more { font: 800 .9rem/1 var(--font-body); color: var(--red); }

/* Yazı sayfası */
.post { width: min(760px, calc(100% - 48px)); margin-inline: auto; padding: 84px 0 50px; }
.crumb { font-weight: 800; font-size: .9rem; color: var(--ink-soft); text-decoration: none; }
.crumb:hover { color: var(--red); }
.post-cover-lg {
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 16px;
  box-shadow: var(--hard);
  overflow: hidden;
  margin: 6px 0 32px;
  transform: rotate(-.4deg);
}
.post-content p { margin: 0 0 18px; color: #5d6980; }
.post-content h2 { margin: 34px 0 12px; font-size: 1.45rem; }
.post-content li { margin-bottom: 8px; color: #5d6980; }
.post-content strong { color: var(--ink); }
.post-note {
  border: 2px dashed var(--line);
  border-radius: 14px;
  background: #f7fafd;
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 26px 0;
}
.post-ctabox {
  margin: 60px 0 10px;
  position: relative;
  background: #f6ecd9;
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 14px;
  box-shadow: var(--hard);
  padding: 28px 26px;
  text-align: center;
}
/* yazı sonu CTA'sı: kulplu mini kupa */
.post-ctabox::after {
  content: "";
  position: absolute;
  top: 26%; right: -30px;
  width: 40px; height: 48px;
  border: 9px solid #f6ecd9;
  border-radius: 50%;
  box-shadow:
    0 0 0 1.5px rgba(65, 78, 102, .5),
    inset 0 0 0 1.5px rgba(65, 78, 102, .5);
  z-index: -1;
}
.post-ctabox::before { content: none; }
.post-ctabox h2 { margin: 0 0 8px; font-size: 1.5rem; }
.post-ctabox p { color: var(--ink-soft); margin-bottom: 18px; }


/* ---------- Form temelleri: buğulu cam pencere ---------- */
/* Etiket madde imi = mini kar tanesi */
.label::before {
  content: "❄";
  display: inline-block;
  margin-right: 7px;
  color: var(--sky);
  font-size: .85em;
}
.required { color: var(--red); }
/* Girdiler = buğulu cam: buz beyazı yüzey, kenardan içeri don buğusu */
.input, .textarea, .select {
  border: var(--bd);
  border-radius: 12px;
  background-color: #fdfeff;
  box-shadow: var(--hard-sm), inset 0 0 0 3px rgba(226, 237, 246, .55);
}
/* Focus = buton jesti: cam öne kalkar + buz mavisi don halkası */
.input:focus-visible, .textarea:focus-visible, .select:focus-visible {
  border-color: rgba(65, 78, 102, .8);
  transform: translate(-2px, -2px);
  box-shadow: 0 7px 16px rgba(65, 78, 102, .2), 0 0 0 3px rgba(143, 183, 221, .4);
}
/* Textarea = karne kartı: buz mavisi satırlar içerikle kayar */
.textarea {
  line-height: 28px;
  background-image: repeating-linear-gradient(
    to bottom, transparent 0 27px, rgba(143, 183, 221, .4) 27px 28px);
  background-attachment: local;
}
/* Onay = çam yeşili dolar (beyaz tik); radyo = kırmızı yün ponpon noktası;
   switch = atkı kırmızısı rayda kayan kar topu */
.check input, .radio input, .switch input {
  border: var(--bd);
  box-shadow: var(--hard-sm);
}
.check input:checked { background: var(--pine); }
.check input::before { background: #fff; }
.radio input::before { background: var(--red); }
.switch input::before { background: #fff; border: 1.5px solid rgba(65, 78, 102, .5); box-sizing: border-box; }
.switch input:checked { background: var(--red); border-color: rgba(65, 78, 102, .6); }
.switch input:checked::before { background: #fff; }
.check input:focus-visible, .radio input:focus-visible, .switch input:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 0 5px 12px rgba(65, 78, 102, .22), 0 0 0 3px rgba(143, 183, 221, .4);
}
/* Kaydırıcı topuzu = kırmızı yün ponponu; stepper ± = ahşap mandallar */
.range::-webkit-slider-thumb { background: var(--red); border-color: rgba(65, 78, 102, .6); }
.range::-moz-range-thumb { background: var(--red); border-color: rgba(65, 78, 102, .6); }
.stepper button {
  border: 1.5px solid rgba(65, 78, 102, .45);
  border-radius: 6px;
  background: #d3a968;
  color: #fff;
  box-shadow: var(--hard-sm);
}
.stepper button:active { transform: translate(2px, 2px); box-shadow: 0 1px 2px rgba(65, 78, 102, .2); }
/* Etiketler = örgü yün çipler (dikiş izli kesik kontur) */
.tags-input { border: var(--bd); border-radius: 12px; background-color: #fdfeff; box-shadow: var(--hard-sm); }
.tags-input:focus-within {
  transform: translate(-2px, -2px);
  box-shadow: 0 7px 16px rgba(65, 78, 102, .2), 0 0 0 3px rgba(143, 183, 221, .4);
}
.tag { background: var(--sage); border: 1.5px dashed rgba(65, 78, 102, .45); }
.tag button:hover { color: var(--red); }
/* Yıldızlar = sıcak hardal (kutup gecesinde parlar) */
.rating input:checked ~ label, .rating label:hover, .rating label:hover ~ label { background: var(--mustard); }
.colorpicker { border: var(--bd); box-shadow: var(--hard-sm); }
/* Dosya yükleme = kar yığını alanı; sürüklerken kar savrulur */
.upload { border-color: rgba(65, 78, 102, .45); }
.upload b { color: var(--red); }
.upload.is-drag { background: var(--paper-2); transform: translate(-2px, -2px); box-shadow: 0 7px 16px rgba(65, 78, 102, .2); }
/* Wizard adımları = yün rozetler: aktif buz mavisi, biten çam yeşili */
.wizard-steps li.is-active { background: var(--sky); border: var(--bd); color: #fff; box-shadow: var(--hard-sm); }
.wizard-steps li.is-active::before { border-color: rgba(65, 78, 102, .5); }
.wizard-steps li.is-done { background: var(--pine); border: var(--bd); color: #fff; }
.wizard-steps li.is-done::before { background: #fff; border-color: rgba(65, 78, 102, .5); }
/* Girdi grubu ekleri = buz rafı segmenti */
.input-group > span { background: var(--paper-2); border: var(--bd); color: var(--ink); }
.field.is-error .input, .field.is-error .textarea, .field.is-error .select {
  border-color: var(--red);
  box-shadow: 0 4px 10px rgba(204, 107, 107, .35);
}
.field.is-error .check input, .field.is-error .radio input, .field.is-error .switch input {
  border-color: var(--red);
}
.field.is-error .label { color: var(--red); }
.field.is-error .label::before { color: var(--red); }
.field.is-error .field-hint { color: var(--red); font-weight: 800; }


/* ---------- Geri bildirim & Overlay: karlı pencere + yün notlar ---------- */
/* Modal = üstünde kar birikmiş ahşap pervazlı buzlu cam pencere;
   zemin = kutup gecesi (loş lacivert + kar taneleri) */
dialog.modal {
  border: var(--bd);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(24, 32, 48, .4), inset 0 0 0 3px rgba(226, 237, 246, .55);
  overflow: hidden;
  padding-top: 36px;
}
/* ahşap pervaz + üstüne yağmış kar kubbeleri */
dialog.modal::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18px;
  background-image:
    radial-gradient(circle 11px at 10% 2px, #fff 10px, transparent 11px),
    radial-gradient(circle 14px at 32% -3px, #fff 13px, transparent 14px),
    radial-gradient(circle 10px at 54% 2px, #fff 9px, transparent 10px),
    radial-gradient(circle 14px at 77% -2px, #fff 13px, transparent 14px),
    radial-gradient(circle 10px at 97% 1px, #fff 9px, transparent 10px),
    linear-gradient(#d3a968, #d3a968);
  border-bottom: 1.5px solid rgba(65, 78, 102, .45);
}
dialog.modal::backdrop {
  background:
    radial-gradient(circle, rgba(240, 245, 250, .8) 1.4px, transparent 2.1px) 0 0 / 22px 22px,
    rgba(24, 32, 48, .55);
}
/* Kapat = basınca sıkışan kar topu */
.modal-close {
  border: var(--bd);
  background: #fff;
  box-shadow: var(--hard-sm), inset -2px -3px 0 rgba(226, 237, 246, .9);
}
.modal-close:hover { transform: translate(-1px, -1px); box-shadow: 0 5px 12px rgba(65, 78, 102, .24), inset -2px -3px 0 rgba(226, 237, 246, .9); }
.modal-close:active { transform: translate(1px, 1px); box-shadow: 0 1px 2px rgba(65, 78, 102, .2); }
/* Onay rozeti = yün ponpon (adım numarası diliyle) */
.confirm-ico {
  border: 4px dotted rgba(255, 255, 255, .65);
  background: var(--sky);
  box-shadow: var(--hard-sm), 0 0 0 3px var(--sky);
}
.confirm.is-danger .confirm-ico { background: var(--red); box-shadow: var(--hard-sm), 0 0 0 3px var(--red); }
.confirm.is-danger h3 { color: var(--red); }

/* Toast = eline tutuşturulan yün pusula not; tür = soldaki kar topu rozeti */
.toast {
  border: var(--bd);
  border-radius: 12px;
  box-shadow: var(--hard-sm);
  padding-left: 46px;
  position: relative;
}
.toast::before {
  content: "i";
  position: absolute;
  left: 14px; top: 50%;
  width: 19px; height: 19px;
  margin-top: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(65, 78, 102, .5);
  background: var(--sky);
  display: grid;
  place-items: center;
  font: 800 .68rem/1 var(--font-body);
  color: #fff;
}
.toast.is-ok::before { content: "✓"; background: var(--pine); }
.toast.is-error::before { content: "×"; background: var(--red); font-size: .8rem; }
.toast.is-warn::before { content: "!"; background: var(--mustard); color: var(--ink); }

/* Alert = buz mavisi kayıt bandı; tür = sol bant + kar topu rozeti + zemin tonu */
.alert {
  background: color-mix(in srgb, var(--sky) 12%, #fff);
  border: var(--bd);
  border-left: 8px solid var(--sky);
  border-radius: 12px;
  box-shadow: var(--hard-sm);
}
.alert.is-ok { border-left-color: var(--pine); background: color-mix(in srgb, var(--pine) 10%, #fff); }
.alert.is-error { border-left-color: var(--red); background: color-mix(in srgb, var(--red) 9%, #fff); }
.alert.is-warn { border-left-color: var(--mustard); background: color-mix(in srgb, var(--mustard) 14%, #fff); }
.alert-ico { border: 1.5px solid rgba(65, 78, 102, .5); border-radius: 50%; background: var(--sky); }
.alert-ico::before { color: #fff; }
.alert.is-ok .alert-ico { background: var(--pine); }
.alert.is-error .alert-ico { background: var(--red); }
.alert.is-warn .alert-ico { background: var(--mustard); }
.alert.is-warn .alert-ico::before { color: var(--ink); }

/* Spinner = dönen kırmızı yün ponponu */
.spinner {
  border: 3px dotted rgba(255, 255, 255, .9);
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}

/* Boş durum = karda bekleyen boş kızak (üstünde kimse yok) */
.empty-art::before {
  content: "";
  position: absolute;
  left: 12px; right: 12px; top: 30px;
  height: 24px;
  background: #d3a968;
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 10px 10px 4px 4px;
  box-shadow: var(--hard-sm);
}
/* öne kıvrık ahşap kayak demiri */
.empty-art::after {
  content: "";
  position: absolute;
  left: 4px; right: 16px; bottom: 14px;
  height: 16px;
  border-bottom: 4px solid #b07a52;
  border-left: 4px solid #b07a52;
  border-radius: 0 0 0 16px;
}
.empty h3 { color: var(--ink); }


/* ---------- Pazarlama & ikna: kış bahçesi vitrini ---------- */
/* Üst duyuru = buz rafı bandı */
.topbar { background: var(--sage); border-bottom: var(--bd); color: var(--ink); }
.topbar a { color: var(--red); }
.topbar-close { color: var(--ink-soft); }
.topbar-close:hover { color: var(--ink); }
/* Üst haber şeridi = buz sarkıtı saçaklı buz kornişi (objectTypes: buz
   sarkıtı); alt kenardan buz sarkıtları sarkar; ayırıcı = kar tanesi */
.tickerbar { position: relative; background: var(--sage); border-bottom: var(--bd); }
/* üst pervazda ince kar birikintisi */
.tickerbar::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  z-index: 1;
  background: color-mix(in srgb, var(--sky) 42%, #fff);
}
/* alt kenardan sarkan buz sarkıtları */
.tickerbar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 11px;
  z-index: 1;
  background: color-mix(in srgb, var(--sky) 45%, #fff);
  clip-path: polygon(0 0,100% 0,100% 35%,92% 100%,84% 35%,75% 100%,66% 35%,58% 100%,50% 35%,42% 100%,33% 35%,25% 100%,16% 35%,8% 100%,0 35%);
  filter: drop-shadow(0 1px 0 rgba(65, 78, 102, .18));
}
.tickerbar-track { padding: 15px 0 18px; color: var(--ink); font-weight: 800; }
/* ayırıcı = altı kollu kar tanesi kristali */
.tickerbar-track span::after {
  width: 13px; height: 13px;
  border: 0; border-radius: 0;
  background: var(--sky);
  clip-path: polygon(50% 0,60% 33%,93% 25%,70% 50%,93% 75%,60% 67%,50% 100%,40% 67%,7% 75%,30% 50%,7% 25%,40% 33%);
}
.tickerbar a { color: var(--red); }
/* Rozet = dikişli yün etiket (kicker diliyle) */
.badge {
  background: var(--red);
  color: #fff;
  border: 1.5px dashed rgba(255, 255, 255, .8);
  box-shadow: 0 0 0 1.5px var(--red);
  border-radius: 7px;
}
/* Nokta = kar topu */
.dot { width: 12px; height: 12px; background: #fff; border: 2px solid var(--sky); }
/* Veli görüşü = kış kartpostalı (buğulu cam çerçeve); tırnak = kırmızı yün ilmeği */
.quote-card {
  border: var(--bd);
  border-radius: 14px;
  box-shadow: var(--hard), inset 0 0 0 3px rgba(226, 237, 246, .55);
  position: relative;
}
.quote-card::before {
  content: "“";
  position: absolute;
  top: -18px; left: 18px;
  font: 800 3rem/1 var(--font-head);
  color: var(--red);
  background: var(--card);
  padding: 0 6px;
  border-radius: 8px;
}
.avatar { border-color: rgba(65, 78, 102, .45); background: var(--sage); box-shadow: var(--hard-sm); }
/* Öğretmen kartı = kış bahçesi dostu kartı */
.member { border: var(--bd); border-radius: 14px; box-shadow: var(--hard), inset 0 0 0 3px rgba(226, 237, 246, .55); }
.member .avatar { background: var(--sky); color: #fff; }
.member:nth-child(2n) .avatar { background: var(--red); }
.member:nth-child(3n) .avatar { background: var(--pine); }
/* Fotolu kart = buğulu pencereden çekilmiş KIŞ DOSTU FOTOĞRAFI — fotoğrafın
   üst pervazına kar birikintisi konmuş (tickerbar birikintisinin pencere
   FARKLI HÂLİ); kartlar hafif eğik, hover'da doğrulur */
.member.has-photo { position: relative; transform: rotate(-1deg); transition: transform .18s ease; }
.member.has-photo:nth-child(2n) { transform: rotate(.9deg); }
.member.has-photo:hover { transform: rotate(0); }
.member.has-photo .member-photo { border: var(--bd); border-radius: 12px; box-shadow: inset 0 0 0 2px rgba(226, 237, 246, .55); }
.member.has-photo::before {
  content: "";
  position: absolute;
  top: 7px; left: 20px; right: 26px;
  height: 11px;
  background: #fff;
  border: var(--bd);
  border-radius: 10px 16px 8px 14px / 9px 11px 7px 10px;
  z-index: 1;
}
.member.has-photo:nth-child(2n)::before { left: 26px; right: 18px; border-radius: 14px 9px 15px 8px / 10px 8px 11px 9px; }
.member.has-photo:nth-child(3n)::before { left: 22px; right: 30px; }
/* Sayaçlar = kar yığınına dizili KARTOPU KOVALARI — "kovada kaç kartopu
   biriktirdik?" kartopu savaşı hazırlığı. Kova = renkli ağız bantlı + kulplu
   beyaz kova; ağzından iki sıra kartopu taşar, sayı = kovadaki kartopu adedi,
   small = dikişli yün yafta. Zemin = yumuşak konturlu kar yığını bankı. */
.facts { position: relative; padding: 30px 8px 10px; align-items: flex-end; }
.facts::after {
  content: "";
  position: absolute;
  left: -6px; right: -6px; bottom: -2px;
  height: 18px;
  background: #fff;
  border: var(--bd);
  border-radius: 16px 22px 10px 18px / 14px 12px 8px 10px;
  box-shadow: var(--hard-sm), inset 0 4px 0 rgba(226, 237, 246, .8);
}
.fact {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  border: var(--bd);
  border-top: 9px solid var(--red);
  border-radius: 10px 10px 22px 22px;
  box-shadow: var(--hard-sm), inset 0 0 0 3px rgba(226, 237, 246, .55);
  transition: transform .18s ease;
}
.fact:hover { transform: translateY(-5px); }
/* kova kulbu — ağız bandıyla aynı renkte yukarı kavis */
.fact::before {
  content: "";
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%);
  width: 56%;
  height: 30px;
  border: 5px solid var(--red);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}
/* ağızdan taşan kartopları — iki sıra, ince konturlu */
.fact::after {
  content: "";
  position: absolute;
  top: -13px; left: 10px; right: 10px;
  height: 24px;
  background:
    radial-gradient(circle at 9px 6px,  #fff 5px, rgba(65, 78, 102, .5) 5.5px 6.5px, transparent 7px) 0 0 / 40px 24px repeat-x,
    radial-gradient(circle at 27px 8px, #fff 5px, rgba(65, 78, 102, .5) 5.5px 6.5px, transparent 7px) 0 0 / 40px 24px repeat-x,
    radial-gradient(circle at 18px 16px, #fff 6px, rgba(65, 78, 102, .5) 6.5px 7.5px, transparent 8px) 0 0 / 40px 24px repeat-x,
    radial-gradient(circle at 36px 15px, #fff 6px, rgba(65, 78, 102, .5) 6.5px 7.5px, transparent 8px) 0 0 / 40px 24px repeat-x;
}
.fact:nth-child(2n) { border-top-color: var(--sky); }
.fact:nth-child(2n)::before { border-color: var(--sky); }
.fact:nth-child(3n) { border-top-color: var(--pine); }
.fact:nth-child(3n)::before { border-color: var(--pine); }
.fact:nth-child(4n) { border-top-color: var(--mustard); }
.fact:nth-child(4n)::before { border-color: var(--mustard); }
/* sevimli asimetri: üçüncü kovanın kulbu yana devrilmiş */
.fact:nth-child(3)::before { transform: translateX(-42%) rotate(-8deg); }
.fact .counter { color: var(--red); }
/* yün yafta etiketi — dikişli kenar (trust çipleriyle aynı elden) */
.fact small {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: var(--sage);
  border: 1.5px dashed rgba(65, 78, 102, .45);
  border-radius: 999px;
  transform: rotate(-1.5deg);
}
.fact:nth-child(2n) small { transform: rotate(1.5deg); }
/* Zaman çizelgesi = kardaki ayak izi rotası; düğümler kar topları
   (araya bir kırmızı yün ponponu karışır) */
.timeline li::before { background: repeating-linear-gradient(to bottom, var(--sky) 0 5px, transparent 5px 12px); width: 2px; opacity: .85; }
.timeline li::after {
  border: 1.5px solid rgba(65, 78, 102, .45);
  background: #fff;
  box-shadow: var(--hard-sm), inset -2px -2px 0 rgba(226, 237, 246, .9);
}
.timeline li:nth-child(3n)::after { background: var(--red); border: 2px dotted rgba(255, 255, 255, .75); box-shadow: 0 0 0 1.5px var(--red), var(--hard-sm); }
.tl-time { color: var(--red); }
/* KVKK bandı = kar birikintili not penceresi */
.cookie { border: var(--bd); border-radius: 14px; box-shadow: var(--hard), inset 0 0 0 3px rgba(226, 237, 246, .55); }
/* Geri sayım = buz küpü hücreleri */
.cd-cell { border: var(--bd); border-radius: 12px; background: #fdfeff; box-shadow: var(--hard-sm), inset 0 0 0 3px rgba(226, 237, 246, .55); }
.cd-cell b { color: var(--red); }
/* Güven çipleri = örgü yün yaftalar */
.trust li { border: 1.5px dashed rgba(65, 78, 102, .45); background: var(--sage); border-radius: 999px; }
/* Öne çıkan fiyat = tepsinin ortasındaki dumanı üstünde kakao
   (rozet .price-head::after'ta: ::before/::after kupa+buhar için dolu) */
.pricing-tiers .price-card.is-featured {
  position: relative;
  border-color: rgba(65, 78, 102, .7);
  box-shadow: 0 10px 22px rgba(65, 78, 102, .22);
  transform: translateY(-6px);
}
.pricing-tiers .price-card.is-featured .price-head::after {
  content: "EN ISITAN";
  position: absolute;
  top: -14px; right: 18px;
  background: var(--red);
  color: #fff;
  border: 1.5px dashed rgba(255, 255, 255, .8);
  box-shadow: 0 0 0 1.5px var(--red), var(--hard-sm);
  border-radius: 7px;
  padding: 5px 12px;
  font: 800 .68rem/1.2 var(--font-body);
  letter-spacing: .08em;
  transform: rotate(2deg);
}


/* ---------- Medya: kar küresi & buzlu pencereler ---------- */
/* Karusel = kar küresi vitrini; oklar kar topu, aktif nokta atkı kırmızısı */
.carousel { border: var(--bd); border-radius: 20px; background: #fdfeff; box-shadow: var(--hard), inset 0 0 0 3px rgba(226, 237, 246, .55); }
.carousel-prev, .carousel-next { border: var(--bd); background: #fff; box-shadow: var(--hard-sm), inset -2px -3px 0 rgba(226, 237, 246, .9); }
.carousel-prev:hover, .carousel-next:hover { transform: translate(-1px, -1px); box-shadow: 0 5px 12px rgba(65, 78, 102, .24), inset -2px -3px 0 rgba(226, 237, 246, .9); }
.carousel-dot { border-color: rgba(65, 78, 102, .5); }
.carousel-dot.is-active { background: var(--red); }
.carousel-ui { padding-bottom: 16px; }
/* Galeri = buzlu cam pencere: kenarlarda don beyazı çerçeve (::before) +
   köşede kar kristali (::after); fotoğraf net kalır — üzerine gelince don
   silinir */
.gallery { row-gap: 22px; }
.gallery a {
  position: relative;
  border: var(--bd);
  border-radius: 12px;
  background: #fdfeff;
  box-shadow: var(--hard-sm), inset 0 0 0 3px rgba(226, 237, 246, .6);
  transition: transform .18s ease, box-shadow .18s ease;
}
.gallery img { transition: filter .3s ease; }
.gallery a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 7px rgba(240, 248, 255, .45), inset 0 0 0 12px rgba(240, 248, 255, .18);
  transition: opacity .3s ease;
  pointer-events: none;
}
.gallery a::after {
  content: "\2744";
  position: absolute;
  top: 8px; right: 12px;
  font-size: 1rem;
  color: rgba(65, 78, 102, .55);
  transition: opacity .3s ease;
  pointer-events: none;
}
.gallery a:hover { transform: translate(-2px, -2px); box-shadow: var(--hard); }
.gallery a:hover img { transform: none; }
.gallery a:hover::before, .gallery a:hover::after { opacity: 0; }
.lightbox img { border: 3px solid #fff; box-shadow: 0 18px 60px rgba(0, 0, 0, .5); border-radius: 14px; }
.lightbox-close, .lightbox-prev, .lightbox-next { border: var(--bd); background: #fff; box-shadow: var(--hard-sm), inset -2px -3px 0 rgba(226, 237, 246, .9); }
/* Video = ahşap pervazlı pencere */
.video { border: 1.5px solid rgba(65, 78, 102, .45); border-radius: 14px; box-shadow: var(--hard), 0 -6px 0 #d3a968; }
.audio { accent-color: var(--red); }
.logocloud li { padding: 10px 16px; border: var(--bd); border-radius: 12px; background: #fdfeff; box-shadow: var(--hard-sm), inset 0 0 0 3px rgba(226, 237, 246, .55); }
/* Öncesi/sonrası = camdaki buzu kazıma; ayraç = buz kazıma çizgisi */
.beforeafter { border: var(--bd); border-radius: 14px; box-shadow: var(--hard); }
.beforeafter::after { background: #fff; border-inline: 2px solid var(--sky); width: 6px; margin-left: -3px; box-shadow: 0 0 0 1.5px rgba(65, 78, 102, .3); }
/* 404 = tipide kaybolan patika — rakamların üstüne kar yağmış */
.errpage .err-code { color: var(--sky); text-shadow: 0 4px 0 #fff, 0 8px 12px rgba(65, 78, 102, .25); transform: rotate(-2deg); }
/* Tooltip = kutup gecesi not balonu */
[data-tip]::after { background: var(--ink); color: #fff; border-radius: 10px; box-shadow: 0 6px 14px rgba(65, 78, 102, .3); }

/* Çerçevesiz foto = kış fotoğrafı: yumuşak kesim + TEK imza = köşeye konmuş
   tek minik kar tanesi (don vinyeti + hover mekaniği atıldı — ince-zarif) */
.wphoto img {
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(65, 78, 102, .2);
}
.wphoto::after {
  content: "\2744"; position: absolute; top: 10px; right: 14px;
  font-size: 1rem; line-height: 1;
  color: rgba(253, 254, 255, .95);
  text-shadow: 0 1px 3px rgba(65, 78, 102, .5);
  pointer-events: none;
}


/* ---------- Sayfalama: ipe mandalla asılı numara kartları ---------- */
.pagination a { border: var(--bd); border-radius: 8px; box-shadow: var(--hard-sm), inset 0 0 0 3px rgba(226, 237, 246, .45); }
.pagination a:nth-child(odd) { transform: rotate(-1.4deg); }
.pagination a:nth-child(even) { transform: rotate(1.2deg); }
.pagination a:hover { transform: translate(-1px, -2px) rotate(0); box-shadow: 0 5px 12px rgba(65, 78, 102, .24); }
/* aktif sayfa = atkı kırmızısı yün kart */
.pagination a.is-current { background: var(--red); border-color: rgba(65, 78, 102, .6); color: #fff; box-shadow: var(--hard-sm); }
.page-gap { box-shadow: none; transform: none; }
/* ---------- Sekmeler = ipe mandalla asılı yün etiketler; yukarı çık = savrulan kartopu ---------- */
/* Alt çizgi = kurutma ipi; etiketler ipte hafif şaşmalı sallanır */
.tabs-bar { border-bottom: 2px dashed rgba(65, 78, 102, .45); }
.tabs-bar [role="tab"] { border: var(--bd); border-radius: 12px 12px 8px 8px; background: var(--card); box-shadow: var(--hard-sm), inset 0 0 0 3px rgba(226, 237, 246, .45); }
.tabs-bar [role="tab"]:nth-child(odd) { transform: rotate(-1.2deg); }
.tabs-bar [role="tab"]:nth-child(even) { transform: rotate(1deg); }
.tabs-bar [role="tab"]:hover { transform: translateY(-2px) rotate(0); box-shadow: 0 5px 12px rgba(65, 78, 102, .24), inset 0 0 0 3px rgba(226, 237, 246, .45); }
/* Aktif sekme = atkı kırmızısı örgü eldiven */
.tabs-bar [role="tab"].is-active { background: var(--red); border-color: rgba(65, 78, 102, .6); color: #fff; transform: rotate(0); box-shadow: var(--hard-sm), inset 0 0 0 3px rgba(255, 255, 255, .28); }
/* Yukarı çık = yukarı savrulan kartopu (iç halka = bastırılmış kar) */
.to-top { border: var(--bd); background: #fff; box-shadow: var(--hard-sm), inset 0 0 0 4px rgba(226, 237, 246, .7); }
.to-top:hover { transform: translateY(-4px); box-shadow: 0 6px 14px rgba(65, 78, 102, .24), inset 0 0 0 4px rgba(226, 237, 246, .7); }


/* ---------- Blog ekleri: karlı günün sıcak köşesi (D-hissi) ---------- */
/* Kategori çipleri = ipte şaşmalı yün etiketler; aktifi atkı kırmızısı */
.post-filter a { border: var(--bd); background: var(--card); box-shadow: var(--hard-sm); }
.post-filter a:nth-child(odd) { transform: rotate(-1.2deg); }
.post-filter a:nth-child(even) { transform: rotate(1deg); }
.post-filter a:hover { transform: translateY(-2px) rotate(0); box-shadow: 0 5px 12px rgba(65, 78, 102, .24); }
.post-filter a.is-active { background: var(--red); border-color: rgba(65, 78, 102, .6); color: #fff; transform: rotate(0); }
/* Yazar kutusu = hafif eğik kış kartpostalı */
.author { border: var(--bd); box-shadow: var(--hard-sm), inset 0 0 0 4px rgba(226, 237, 246, .5); transform: rotate(-.3deg); }
/* Paylaş düğmeleri = avuçta sıkılmış mini kartopları */
.share a { border: var(--bd); box-shadow: var(--hard-sm), inset 0 0 0 3px rgba(226, 237, 246, .55); }
.share a:hover { transform: translateY(-3px); box-shadow: 0 6px 14px rgba(65, 78, 102, .22), inset 0 0 0 3px rgba(226, 237, 246, .55); }
/* Okuma çubuğu = sayfa üstünde örülen atkı şeridi (ilmek ilmek, degradesiz) */
.readbar i { background: repeating-linear-gradient(90deg, var(--red) 0 14px, rgba(204, 107, 107, .65) 14px 28px); border-radius: 0 4px 4px 0; }
/* Alıntı = buzlu cama parmakla yazılan söz; başında kar tanesi */
.pullquote { border-left: 6px solid var(--sky); }
.pullquote::before { content: "❄"; color: var(--sky); font-size: 1.4rem; margin-right: 10px; }
/* Yazı içi CTA = sıcak kakao molası notu (kakao sütü yıkaması) */
.inline-cta { border: var(--bd); background: color-mix(in srgb, var(--tang) 16%, #fff); box-shadow: var(--hard-sm); }
/* Yorumlar = eve dönen kartpostallar; avatarlar yün ponponları */
.comment-body { border: var(--bd); border-radius: 16px 16px 16px 6px; box-shadow: var(--hard-sm); }
.comment .avatar { background: var(--blush); }
.comment:nth-child(2n) .avatar { background: var(--sky); color: #fff; }
.comment:nth-child(3n) .avatar { background: var(--sage); }


/* ═══════════ Duyarlılık (@media — en sonda: paint'i override eder) ═══════════ */
@media (prefers-reduced-motion: reduce) {
  .mascot, .mas-face, .mas-eye i, .mas-arm, .mas-hearts b { animation: none !important; }
}

@media (max-width: 980px) {
  .deck-stack { grid-template-columns: 1fr; } /* JS yoksa tek sütun liste */
  .deck.deck-ready .deck-ui { display: flex; }
  .deck-ready .deck-stack {
    display: block;
    position: relative;
    width: min(400px, 100%);
    margin-inline: auto;
    transition: height .3s ease;
  }
  .deck-ready .fcard {
    position: absolute;
    top: 0; left: 0; right: 0;
    transition: transform .38s cubic-bezier(.2, .8, .3, 1.15), opacity .3s ease;
    touch-action: pan-y;
    cursor: grab;
    will-change: transform;
  }
  .deck-ready .fcard.is-top   { z-index: 4; }
  .deck-ready .fcard.is-b1    { z-index: 3; transform: translateY(16px) scale(.955) rotate(2deg); }
  .deck-ready .fcard.is-b2    { z-index: 2; transform: translateY(30px) scale(.91) rotate(-2.4deg); }
  .deck-ready .fcard.is-under { z-index: 1; transform: translateY(30px) scale(.91); opacity: 0; pointer-events: none; }
  .deck-ready .fcard.is-b1, .deck-ready .fcard.is-b2, .deck-ready .fcard.is-under { cursor: default; }
  .deck-ready .fcard.is-b1 > *, .deck-ready .fcard.is-b2 > * { visibility: hidden; }
  .deck-ready .fcard.is-dragging { transition: none; cursor: grabbing; }
  .deck-ready .fcard.is-flying { z-index: 5; transition: transform .42s ease-in, opacity .42s ease-in; }
  .deck-ready .fcard.is-returning { transition: none; transform: translate(-130%, -8%) rotate(-22deg); opacity: 0; }

  .deck-ready .fcard-cta .fcard-scene { height: 96px; }
  .deck-ready .fcard-cta .big { display: none; }
  .deck-ready .fcard-cta .zero { position: static; font-size: 1.5rem; padding: 8px 18px; transform: rotate(-3deg); }

  .hero-in { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding-top: 76px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .fineprint { margin-inline: auto; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split-rev .split-copy { order: 1; }
  .split-rev .split-art { order: 2; }
  /* :has'li 4-adım kuralı (0,2,0) düz .steps'i (0,1,0) ezer — mobilde tek
     sütuna dönmesi için burada da :has'li seçiciyle yazılmalı. */
  .steps, .steps:has(> :nth-child(7)) { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 700px) {
  :root { --nav-gutter: 32px; --nav-gap: 12px; } /* mobil nav boşlukları: 16px kenar + 12px öğe arası */
  .nav-links, .nav-cta { display: none; }
  .nav-menu { display: none !important; } /* açık kalmış grup paneli mobile taşmasın */
  .nav-burger { display: flex; }
  .mascot { display: none; }
  .hero { padding-top: 44px; }
  .deck-ready .deck-stack { width: min(340px, 100%); }
  .section { padding: 64px 0; }
  .hero-mock-note { right: 8px; }
  .m-cards { grid-template-columns: 1fr 1fr; }
  .m-card-gallery { grid-column: span 2; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(110px, 28vw, 150px); }
  .blob-1, .doodle-heart { display: none; }
  .post-cover-lg img { height: 210px; }
}

@media (min-width: 701px) {
  .nav-drawer { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .doodle, .m-hero-art, .strip-track, .tickerbar-track, .m-ticker span { animation: none !important; }
  .fcard-scene *, .fcard-scene *::after { animation: none !important; opacity: 1 !important; }
  .prop, .prop::before, .prop::after { animation: none !important; }
  .fcard { transition: none; }
  /* Geri bildirim: dönme yerine yumuşak nabız; modal/toast geçişsiz */
  dialog.modal { transition: none; }
  .toast { animation: none; }
  .spinner, .btn.is-loading::after { animation: fbpulse 1.4s ease-in-out infinite; }
  /* Medya: karusel kaydırması ve galeri zoom'u anında */
  .carousel-track { transition: none; }
  .gallery a:hover img { transform: none; }
  /* Admin: iskelet parlaması sabit */
  .skeleton::after { animation: none; }
}

@media (max-width: 980px) {
  /* Panel dar ekranda tek kolon; kenar nav yatay şeride döner */
  .dash { grid-template-columns: 1fr; }
  .dash-side { position: static; }
  .dash-nav { flex-direction: row; flex-wrap: wrap; }
}
@keyframes fbpulse {
  0%, 100% { opacity: .35; }
  50%      { opacity: 1; }
}

@media (max-width: 700px) {
  /* Toast dar ekranda tam genişlik alta yaslanır */
  .toast-host { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}


/* ---------- Yapısal sapmalar (structureBase/@media override) ---------- */
section[id], .cta-band { scroll-margin-top: 148px; }

@media (prefers-reduced-motion: reduce) {
  .doodle, .blob, .m-hero-art, .strip-track, .m-ticker span { animation: none !important; }
  .fcard-scene *, .fcard-scene *::after { animation: none !important; opacity: 1 !important; }
  .fcard { transition: none; }
}

@media (max-width: 980px) {
  .deck-ready .fcard.is-b1    { z-index: 3; transform: translateY(18px) scale(.955) rotate(2deg); }
  .deck-ready .fcard.is-b2    { z-index: 2; transform: translateY(34px) scale(.91) rotate(-2.4deg); }
  .deck-ready .fcard.is-under { z-index: 1; transform: translateY(34px) scale(.91); opacity: 0; pointer-events: none; }
  .hero { padding-top: 100px; }
}

@media (max-width: 700px) {
  .page-head { padding-top: 56px; }
  .post { padding-top: 56px; }
}

/* ---------- Seyrek ziyaretçi: yuvarlandıkça büyüyen kartopu ----------
   Küçük bir kartopu section tabanında soldan sağa yuvarlanır ve yol
   boyunca kar toplayıp büyür (scale 1 -> 1.7, geçiş ~7s, döngü 49s).
   Kar beyazı top beyaz zeminde kaybolmasın diye ink konturu + buz
   mavisi kenar yıkaması taşır; dönüş iki minik buz beneğiyle okunur.
   Renk sabit; yalnız faz section sırasına göre kayar. z-index:-1 =
   içeriğin arkasında, zeminde yuvarlanır. */
.section { position: relative; z-index: 0; }
.section::after {
  content: "";
  position: absolute;
  left: 0; bottom: 12px;
  z-index: -1;
  width: 18px; height: 18px;
  border: 1.5px solid rgba(65, 78, 102, .5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 66% 60%, rgba(143, 183, 221, .55) 0 2.2px, transparent 3px),
    radial-gradient(circle at 30% 38%, rgba(143, 183, 221, .45) 0 1.8px, transparent 2.6px),
    radial-gradient(circle, #fff 0 6.5px, #eef5fa 7.5px, var(--sage) 9px);
  transform: translateX(-80px);
  animation: rvisit-yuvarlan 49s linear infinite;
}
.section:nth-of-type(3n+2)::after { animation-delay: -17s; }
.section:nth-of-type(3n)::after { animation-delay: -33s; }
/* GOTCHA: yatay tam geçişte calc(100vw + Npx) compositor donduruyor —
   saf 135vw kullan (b temasında kanıtlandı). */
@keyframes rvisit-yuvarlan {
  0%, 85.7% { transform: translateX(-80px) rotate(0turn) scale(1); }
  100%      { transform: translateX(135vw) rotate(9turn) scale(1.7); }
}
@media (prefers-reduced-motion: reduce) {
  .section::after { content: none; }
}

