    /* ═══════════════════════════════════════════════════════════════
       İYİLİK HALİ — toprak paleti + humanist tipografi
       Design (editoryal) + mevcut içerik iskeleti birleştirildi
       ═══════════════════════════════════════════════════════════════ */
    :root {
      --bg: #f5f1ea;
      --bg-2: #ece5d7;
      --paper: #faf7f0;
      --ink: #1c1f19;
      --ink-2: #2d322a;
      --muted: #6a6458;
      --rule: #d9d1bf;
      --moss: #3d5a3d;
      --moss-2: #6b8e6b;
      --moss-soft: #e4ece0;
      --clay: #b97a4a;
      --gold: #c9a766;
      --sand: #c9b89a;
      --alert: #a83e2c;

      --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
      --font-sans: "Public Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      --font-mono: "JetBrains Mono", ui-monospace, "Fira Mono", monospace;

      --r-sm: 6px;
      --r-md: 12px;
      --r-lg: 20px;

      --pad: clamp(20px, 4vw, 48px);
      --maxw: 1280px;
    }

    /* Tema varyasyonları — toolbar ile değiştirilir */
    [data-mode="clinical"] {
      --bg: #f4f6f7; --bg-2: #e6ebee; --paper: #ffffff;
      --ink: #1a2228; --ink-2: #2a343c; --muted: #5a6773;
      --rule: #d3dae0;
      --moss: #1f5a6b; --moss-2: #4a8599; --moss-soft: #e3ecf0;
      --clay: #2f6a8a; --gold: #6b95a8; --sand: #b9c9d3;
      --font-display: "Public Sans", sans-serif;
    }
    [data-mode="modern"] {
      --bg: #0f0f10; --bg-2: #17171a; --paper: #1c1c1f;
      --ink: #f5f0e6; --ink-2: #e8e2d4; --muted: #8e867a;
      --rule: #2a2a2e;
      --moss: #e0c084; --moss-2: #d4a656; --moss-soft: #2a2418;
      --clay: #c97a4a; --gold: #e0c084; --sand: #4a4640;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { margin: 0; padding: 0; }
    body {
      background: var(--bg); color: var(--ink);
      font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
      -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
      transition: background .4s, color .4s;
    }
    a { color: inherit; }
    button { font-family: inherit; cursor: pointer; }
    h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; }
    p { margin: 0; }

    .serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.015em; }
    .serif i, .serif em { font-style: italic; color: var(--moss); }
    .mono {
      font-family: var(--font-mono); font-size: 11px;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
      font-weight: 500;
    }

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 var(--pad);
    }
    hr.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

    /* ═══ BETA STRIP (design) ═══ */
    .beta-strip {
      background: var(--ink); color: var(--bg);
      font-family: var(--font-mono); font-size: 10.5px;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 8px 16px; text-align: center;
    }
    .beta-strip b { color: var(--gold); font-weight: 500; margin-right: 10px; }

    /* ═══ NAV ═══ */
    .topnav {
      position: sticky; top: 0; z-index: 40;
      backdrop-filter: saturate(140%) blur(10px);
      background: color-mix(in oklab, var(--bg) 82%, transparent);
      border-bottom: 1px solid var(--rule);
    }
    .nav-inner {
      display: grid;
      grid-template-columns: auto 1fr auto auto;
      align-items: center; gap: 24px;
      padding: 14px var(--pad);
      max-width: var(--maxw); margin: 0 auto;
    }
    .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .brand-mark { width: 30px; height: 30px; }
    .brand-text {
      font-family: var(--font-display); font-size: 22px; line-height: 1;
      color: var(--ink);
    }
    .brand-text i { font-style: italic; color: var(--moss); }
    .brand-sub {
      font-family: var(--font-sans); font-size: 10.5px;
      color: var(--muted); margin-top: 2px;
      letter-spacing: 0.05em;
    }
    .nav-links {
      display: flex; gap: 22px; justify-content: center;
      font-size: 14px; font-weight: 500;
    }
    .nav-links a {
      text-decoration: none; color: var(--ink-2);
      padding: 6px 2px;
      border-bottom: 1px solid transparent;
      transition: border-color .15s, color .15s;
    }
    .nav-links a:hover { border-bottom-color: var(--ink); color: var(--ink); }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--ink); color: var(--bg);
      padding: 10px 18px; border-radius: 999px;
      font-size: 13px; font-weight: 500;
      text-decoration: none; border: 1px solid var(--ink);
      transition: transform .15s;
    }
    .nav-cta:hover { transform: translateY(-1px); color: var(--bg); }
    .nav-cta .dot {
      width: 7px; height: 7px; background: var(--moss-2); border-radius: 50%;
      animation: pulse 2.2s infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--moss-2) 70%, transparent); }
      50% { box-shadow: 0 0 0 6px transparent; }
    }
    @media (max-width: 991.98px) {
      .nav-links { display: none !important; }
      .nav-cta { display: none; }
      .nav-inner { grid-template-columns: auto 1fr auto; }
    }

    /* ═══ HERO ═══ */
    .hero {
      position: relative;
      padding: clamp(40px, 7vw, 88px) 0 clamp(40px, 6vw, 72px);
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: clamp(24px, 4vw, 64px);
      align-items: center;
    }
    @media (max-width: 1100px) {
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(52px, 9vw, 112px);
      line-height: 0.98;
      margin: 18px 0 28px;
      color: var(--ink);
      letter-spacing: -0.02em;
    }
    .hero-title i { font-style: italic; color: var(--moss); }
    .hero-lede {
      font-size: clamp(16px, 1.6vw, 19px);
      color: var(--ink-2);
      max-width: 560px;
      margin-bottom: 32px;
      line-height: 1.6;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
    .btn-ink {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--ink); color: var(--bg);
      padding: 14px 24px; border-radius: 999px;
      font-weight: 500; font-size: 14px;
      text-decoration: none; border: 1px solid var(--ink);
      transition: transform .15s;
    }
    .btn-ink:hover { transform: translateY(-1px); color: var(--bg); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: var(--ink);
      padding: 14px 24px; border-radius: 999px;
      font-weight: 500; font-size: 14px;
      text-decoration: none; border: 1px solid var(--rule);
      transition: background .15s;
    }
    .btn-ghost:hover { background: var(--paper); color: var(--ink); }

    /* ═══ 5 AYAK TEKERLEĞİ — hero sağ kolonu ═══ */
    .wheel {
      position: relative;
      width: min(100%, 460px);
      aspect-ratio: 1;
      margin: 0 auto;
    }
    .wheel-track {
      position: absolute; inset: 8%;
      border: 1px dashed var(--rule);
      border-radius: 50%;
    }
    .wheel-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 56%; height: 56%;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 16px;
      box-shadow: 0 6px 32px rgba(29, 31, 25, .06);
    }
    .wheel-center .mono { margin-bottom: 6px; }
    .wheel-center-title {
      font-family: var(--font-display);
      font-size: clamp(26px, 3.5vw, 36px);
      color: var(--ink); margin-bottom: 6px;
    }
    .wheel-center-desc {
      font-size: 13px; color: var(--muted); line-height: 1.5;
      max-width: 180px;
    }
    .wheel-pillar {
      position: absolute;
      width: 72px; height: 72px;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      cursor: pointer;
      transition: all .25s ease;
      transform: translate(-50%, -50%);
    }
    .wheel-pillar:hover,
    .wheel-pillar.active {
      background: var(--moss);
      border-color: var(--moss);
      color: var(--bg);
      transform: translate(-50%, -50%) scale(1.1);
    }
    .wheel-pillar i.mdi { font-size: 24px; }
    .wheel-pillar span {
      font-size: 10px; margin-top: 2px;
      font-weight: 500; letter-spacing: .02em;
    }

    /* ═══ SECTIONS ═══ */
    section.panel {
      padding: clamp(48px, 7vw, 96px) 0;
      border-top: 1px solid var(--rule);
    }
    .section-head { margin-bottom: clamp(32px, 4vw, 56px); }
    .section-head .mono { display: block; margin-bottom: 8px; }
    .section-head h2 {
      font-family: var(--font-display);
      font-size: clamp(34px, 4.5vw, 54px);
      color: var(--ink); max-width: 820px;
    }
    .section-head h2 i { font-style: italic; color: var(--moss); }
    .section-head .lede {
      margin-top: 16px; font-size: 16px;
      color: var(--muted); max-width: 680px; line-height: 1.6;
    }

    /* ═══ Kartlar ═══ */
    .grid-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .card {
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: var(--r-md);
      padding: 24px;
      display: flex; flex-direction: column;
      transition: border-color .2s, transform .2s;
    }
    .card:hover { border-color: var(--moss-2); transform: translateY(-2px); }
    .card .mono { margin-bottom: 10px; }
    .card h4 {
      font-family: var(--font-display); font-size: 22px;
      margin-bottom: 10px; color: var(--ink);
    }
    .card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
    .card .icon-wrap {
      width: 44px; height: 44px;
      background: var(--moss-soft); color: var(--moss);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; font-size: 22px;
    }

    /* ═══ Mini değerlendirme ═══ */
    .assess-wrap {
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: var(--r-lg);
      padding: clamp(24px, 3vw, 40px);
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px; align-items: center;
    }
    @media (max-width: 900px) {
      .assess-wrap { grid-template-columns: 1fr; }
    }
    .assess-q { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px); color: var(--ink); margin-bottom: 20px; }
    .assess-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 16px; }
    .assess-opt {
      background: var(--bg); border: 1px solid var(--rule);
      border-radius: 8px; padding: 14px 4px;
      font-size: 14px; font-weight: 500;
      color: var(--ink-2);
      transition: all .15s;
    }
    .assess-opt:hover { border-color: var(--moss); }
    .assess-opt.selected { background: var(--moss); color: var(--bg); border-color: var(--moss); }
    .assess-progress {
      display: flex; gap: 4px; margin-bottom: 16px;
    }
    .assess-progress span {
      flex: 1; height: 3px; background: var(--rule); border-radius: 2px;
      transition: background .25s;
    }
    .assess-progress span.done { background: var(--moss); }
    .assess-labels {
      display: flex; justify-content: space-between;
      font-size: 11px; color: var(--muted); margin-top: 6px;
    }
    .radar-wrap svg { width: 100%; max-width: 340px; display: block; margin: 0 auto; }
    .radar-result h3 {
      font-family: var(--font-display); font-size: 28px;
      margin-bottom: 12px; color: var(--ink);
    }
    .radar-result p { color: var(--muted); font-size: 14px; line-height: 1.6; }
    .radar-result .weakest {
      background: var(--moss-soft); color: var(--moss);
      padding: 12px 16px; border-radius: 8px;
      margin-top: 16px; font-size: 13px;
    }

    /* ═══ Nefes widget ═══ */
    .breathe-box {
      background: linear-gradient(135deg, var(--paper), var(--moss-soft));
      border: 1px solid var(--rule);
      border-radius: var(--r-lg);
      padding: clamp(32px, 4vw, 56px);
      text-align: center;
    }
    .breathe-circle {
      width: clamp(180px, 28vw, 240px);
      aspect-ratio: 1;
      margin: 24px auto;
      border-radius: 50%;
      background: radial-gradient(circle, var(--moss) 0%, var(--moss-2) 100%);
      display: flex; align-items: center; justify-content: center;
      color: var(--bg); font-family: var(--font-display);
      font-size: 24px;
      transition: transform 4s cubic-bezier(.45,.05,.55,.95);
      box-shadow: 0 10px 40px rgba(61, 90, 61, .25);
    }
    .breathe-circle.inhale { transform: scale(1.3); }
    .breathe-circle.hold { transform: scale(1.3); }
    .breathe-circle.exhale { transform: scale(0.8); }
    .breathe-controls { display: flex; gap: 12px; justify-content: center; margin-top: 16px; }

    /* ═══ Journey (6 adım) ═══ */
    .journey-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 780px) { .journey-grid { grid-template-columns: 1fr; } }
    .journey-step {
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: var(--r-md);
      padding: 24px;
      position: relative;
    }
    .journey-step .step-num {
      font-family: var(--font-display);
      font-size: 44px; color: var(--moss); line-height: 1;
      margin-bottom: 8px;
    }
    .journey-step h4 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; }
    .journey-step p { color: var(--muted); font-size: 14px; line-height: 1.6; }
    .journey-step .duration {
      margin-top: 12px; padding-top: 12px;
      border-top: 1px dashed var(--rule);
      font-size: 12px; color: var(--muted);
    }

    /* ═══ Hatlar — 4 kart ═══ */
    .hotline-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }
    .hotline-card {
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: var(--r-md);
      padding: 20px;
      display: flex; flex-direction: column;
      text-decoration: none; color: inherit;
      transition: border-color .15s, transform .15s;
    }
    .hotline-card:hover { border-color: var(--moss); transform: translateY(-2px); }
    .hotline-num {
      font-family: var(--font-display);
      font-size: 46px; color: var(--moss);
      line-height: 1; margin-bottom: 4px;
    }
    .hotline-card strong { font-size: 14px; margin-bottom: 4px; }
    .hotline-card small { color: var(--muted); font-size: 12px; line-height: 1.5; }

    /* ═══ Aile (tip kutular) ═══ */
    .tip-list { display: grid; gap: 12px; }
    .tip {
      background: var(--paper); border-left: 3px solid var(--clay);
      border-radius: 0 8px 8px 0; padding: 16px 20px;
    }
    .tip strong {
      font-family: var(--font-display); font-size: 18px;
      display: block; color: var(--ink); margin-bottom: 4px;
    }
    .tip span { color: var(--muted); font-size: 14px; line-height: 1.5; }

    /* ═══ SSS ═══ */
    .faq-item {
      background: var(--paper); border: 1px solid var(--rule);
      border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden;
    }
    .faq-q {
      padding: 18px 20px; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      font-weight: 500; color: var(--ink);
    }
    .faq-q:hover { background: var(--bg-2); }
    .faq-q i { color: var(--moss); transition: transform .25s; }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .3s, padding .3s;
      color: var(--muted); padding: 0 20px;
    }
    .faq-item.open .faq-a { max-height: 500px; padding: 0 20px 20px; }
    .faq-item.open .faq-q i { transform: rotate(180deg); }

    /* ═══ İletişim formu ═══ */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px;
    }
    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
    .contact-info { display: flex; flex-direction: column; gap: 20px; }
    .contact-item {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .contact-item i {
      font-size: 22px; color: var(--moss); margin-top: 3px;
      flex-shrink: 0;
    }
    .contact-item strong { display: block; margin-bottom: 4px; }
    .contact-item span { color: var(--muted); font-size: 14px; }

    .form-field { margin-bottom: 16px; }
    .form-field label {
      display: block; font-size: 12px; font-weight: 500;
      margin-bottom: 6px; color: var(--ink-2);
      letter-spacing: .03em;
    }
    .form-field input, .form-field select, .form-field textarea {
      width: 100%; padding: 12px 14px;
      background: var(--paper); border: 1px solid var(--rule);
      border-radius: 8px; font-family: var(--font-sans);
      font-size: 14px; color: var(--ink);
      transition: border-color .15s;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      outline: none; border-color: var(--moss);
    }
    .chip-group {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px;
    }
    .chip {
      padding: 8px 14px; border-radius: 999px;
      background: var(--bg); border: 1px solid var(--rule);
      font-size: 13px; color: var(--ink-2);
      cursor: pointer; transition: all .15s;
    }
    .chip:hover { border-color: var(--moss); }
    .chip.selected { background: var(--moss); color: var(--bg); border-color: var(--moss); }

    /* ═══ Footer ═══ */
    footer.site-footer {
      background: var(--ink); color: var(--bg);
      padding: 64px 0 24px;
    }
    footer.site-footer a { color: color-mix(in oklab, var(--bg) 75%, var(--muted)); text-decoration: none; display: block; padding: 3px 0; font-size: 13px; }
    footer.site-footer a:hover { color: var(--bg); }
    footer.site-footer h6 {
      color: var(--gold); font-family: var(--font-mono);
      font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 32px;
    }
    @media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand .brand-text { color: var(--bg); }
    .footer-brand .brand-text i { color: var(--gold); }
    .footer-brand p { color: color-mix(in oklab, var(--bg) 65%, var(--muted)); font-size: 13px; margin-top: 12px; line-height: 1.6; max-width: 360px; }
    .footer-bar {
      border-top: 1px solid color-mix(in oklab, var(--bg) 10%, var(--ink));
      margin-top: 48px; padding-top: 20px;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
      font-size: 12px; color: color-mix(in oklab, var(--bg) 60%, var(--muted));
    }

    /* ═══ Tweaks toolbar — 3 tema değiştirici ═══ */
    .tweaks {
      position: fixed; bottom: 16px; left: 16px;
      background: var(--paper); border: 1px solid var(--rule);
      border-radius: 999px; padding: 6px;
      display: flex; gap: 4px; z-index: 100;
      box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }
    .tweak-btn {
      background: transparent; border: 0;
      padding: 6px 14px; border-radius: 999px;
      font-family: var(--font-mono); font-size: 10px;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--muted); cursor: pointer;
    }
    .tweak-btn.active { background: var(--ink); color: var(--bg); }
    @media (max-width: 540px) { .tweaks { bottom: 80px; } }

    /* Yardımcı */
    .text-muted-ink { color: var(--muted); }
    .mt-sm { margin-top: 12px; }
    .mt-md { margin-top: 20px; }
    .mt-lg { margin-top: 32px; }

    /* Assess sonuç ekranı */
    .assess-result-title { font-size: 28px; margin: 8px 0 12px; color: var(--ink); }
    .assess-result-lede { color: var(--muted); font-size: 14px; line-height: 1.6; }
    .assess-weakest {
      background: var(--moss-soft); color: var(--moss);
      padding: 14px 18px; border-radius: 10px;
      margin-top: 20px; font-size: 14px;
    }

    /* Beta banner ve hamburger blog-shared.css'ten gelir,
       burada override ile toprak paletine uydur */
    .beta-banner { display: none !important; } /* design'daki beta-strip kullanıldığı için */
    .hamburger-btn {
      color: var(--moss) !important;
      border-color: var(--rule) !important;
      background: var(--paper) !important;
    }
    .mobile-menu { background: var(--bg) !important; }
    .mobile-menu nav a {
      color: var(--ink) !important;
      border-bottom-color: var(--rule) !important;
    }
    .mobile-menu nav a i { color: var(--moss) !important; }
.ih-acil-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.ih-acil-fab.collapsed .ih-acil-options { display: none; }
.ih-acil-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #b94a4a;
  color: #fff;
  border: 0;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(185,74,74,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, background 0.15s;
}
.ih-acil-toggle:hover { transform: scale(1.05); background: #a13d3d; }
.ih-acil-toggle::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #b94a4a;
  opacity: 0.4;
  animation: ihAcilPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes ihAcilPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ih-acil-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #1c1f19;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  min-width: 240px;
  animation: ihAcilSlide 0.2s ease-out;
}
@keyframes ihAcilSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ih-acil-options .ih-acil-title {
  color: #c9a766;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px 6px;
  border-bottom: 1px solid #3a3d37;
  margin-bottom: 4px;
}
.ih-acil-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #f5f1ea;
  font-size: 14px;
  transition: background 0.12s;
}
.ih-acil-link:hover { background: #2a2d27; color: #fff; }
.ih-acil-link .num {
  display: inline-block;
  min-width: 36px;
  font-weight: 800;
  font-size: 17px;
  color: #b94a4a;
}
.ih-acil-link .ad { font-weight: 600; }
.ih-acil-link .saat { display: block; font-size: 11px; color: #c5beb2; margin-top: 2px; }
@media (max-width: 520px) {
  .ih-acil-fab { right: 12px; bottom: 12px; }
  .ih-acil-options { min-width: calc(100vw - 24px); }
}
.ih-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 760px;
  margin: 0 auto;
  background: #1c1f19;
  color: #f5f1ea;
  border-radius: 12px;
  padding: 20px 22px;
  font-family: 'Public Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05);
  z-index: 9999;
  display: none;
  animation: ihCookieSlideUp 0.35s ease-out;
}
.ih-cookie.show { display: block; }
@keyframes ihCookieSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.ih-cookie h4 {
  margin: 0 0 8px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  color: #e4ece0;
}
.ih-cookie p { margin: 0 0 14px; color: #c5beb2; }
.ih-cookie a { color: #c9a766; text-decoration: underline; }
.ih-cookie a:hover { color: #e4ece0; }
.ih-cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ih-cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}
.ih-cookie-btn.primary { background: #6b8e6b; color: #fff; }
.ih-cookie-btn.primary:hover { background: #7ba17b; }
.ih-cookie-btn.secondary { background: transparent; color: #c5beb2; border: 1px solid #3a3d37; }
.ih-cookie-btn.secondary:hover { color: #f5f1ea; border-color: #6b8e6b; }
.ih-cookie-btn.text { background: transparent; color: #c9a766; padding: 10px 8px; }
.ih-cookie-btn.text:hover { color: #e4ece0; }
@media (max-width: 520px) {
  .ih-cookie { left: 8px; right: 8px; bottom: 8px; padding: 16px 18px; font-size: 13px; }
  .ih-cookie h4 { font-size: 17px; }
}

    /* ═══ Hamburger + mobil çekmece (blog-shared'dan) ═══ */
    .hamburger-btn {
      display: none; background: var(--paper); border: 1px solid var(--rule);
      border-radius: 8px; width: 44px; height: 44px; align-items: center;
      justify-content: center; cursor: pointer; color: var(--moss); font-size: 1.5rem; padding: 0;
    }
    .hamburger-btn:hover { background: var(--bg-2); border-color: var(--moss-2); }
    @media (max-width: 991.98px) { .hamburger-btn { display: inline-flex; } }
    .mobile-menu {
      position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); z-index: 2000;
      background: var(--bg); padding: 1.5rem; overflow-y: auto;
      box-shadow: -14px 0 44px rgba(28,31,25,.18); border-left: 1px solid var(--rule);
    }
    .mobile-menu-header { display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 1rem; border-bottom: 1px solid var(--rule); margin-bottom: 1rem; }
    .mobile-menu-close { background: transparent; border: none; font-size: 1.75rem; color: var(--muted); cursor: pointer; line-height: 1; }
    .mobile-menu nav a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--rule);
      text-decoration: none; color: var(--ink); font-weight: 500; font-size: 1.02rem; }
    .mobile-menu nav a:hover { color: var(--moss); }
    .mobile-menu nav a i { color: var(--moss); margin-right: .5rem; width: 24px; }
    .mobile-backdrop { position: fixed; inset: 0; background: rgba(28,31,25,.42); z-index: 1999; }
