/* KobiZeka — Layout Styles */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ink:        #0f172a;
      --ink-mid:    #4b5563;
      --ink-soft:   #9ca3af;
      --bg-header:  #f3f4f6;
      --surface:    #ffffff;
      --border:     #e5e7eb;
      --accent:     #2563eb;
      --accent-h:   #1d4ed8;
      --radius:     8px;
      --nav-h:      64px;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--ink);
      background: #ffffff;
      line-height: 1.6;
    }

    /* ── Header ──────────────────────────────────────────────── */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: var(--nav-h);
      background: var(--bg-header);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 32px;
      height: 100%;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 32px;
    }

    /* ── Logo ────────────────────────────────────────────────── */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon-img {
      width: 36px; height: 36px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
      transition: opacity .2s;
    }
    .logo:hover .logo-icon-img { opacity: .85; }

    .logo-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--ink);
      letter-spacing: -0.02em;
    }

    .logo-text span { color: var(--accent); }

    /* ── Center nav ──────────────────────────────────────────── */
    .nav-center {
      display: flex;
      align-items: center;
      justify-content: left;
      gap: 4px;
      list-style: none;
    }

    .nav-center a {
      display: block;
      padding: 7px 16px;
      border-radius: var(--radius);
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--ink-mid);
      text-decoration: none;
      transition: color .15s, background .15s;
      white-space: nowrap;
    }

    .nav-center a:hover  { color: var(--ink); background: #e9eaec; }
    .nav-center a.active { color: var(--accent); font-weight: 600; }

    /* ── Right side ──────────────────────────────────────────── */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    /* Müşteri Girişi button */
    .btn-login {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 20px;
      background: var(--accent);
      color: #fff;
      border-radius: var(--radius);
      font-size: 0.88rem;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      transition: background .15s, transform .15s;
      font-family: inherit;
    }

    .btn-login:hover { background: var(--accent-h); transform: translateY(-1px); }

    /* ── Lang switcher ───────────────────────────────────────── */
    .lang-switcher {
      position: relative;
    }

    .lang-btn {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 7px 12px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface);
      cursor: pointer;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ink-mid);
      font-family: inherit;
      transition: border-color .15s, color .15s;
      white-space: nowrap;
    }

    .lang-btn:hover { border-color: var(--accent); color: var(--accent); }

    .lang-btn svg {
      width: 12px; height: 12px;
      fill: none; stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform .2s;
    }

    .lang-btn.open svg { transform: rotate(180deg); }

    .currency-switcher { position: relative; }
    .currency-btn {
      display: flex; align-items: center; gap: 5px;
      padding: 7px 12px; border: 1.5px solid var(--border);
      border-radius: var(--radius); background: var(--surface);
      cursor: pointer; font-size: .85rem; font-weight: 600;
      color: var(--ink); font-family: inherit;
    }
    .currency-btn:hover { border-color: var(--accent); color: var(--accent); }
    .currency-dropdown {
      display: none; position: absolute; right: 0; top: calc(100% + 6px);
      background: var(--surface); border: 1.5px solid var(--border);
      border-radius: var(--radius); min-width: 130px;
      box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 200;
      overflow: hidden;
    }
    .currency-dropdown.open { display: block; }
    .currency-dropdown a {
      display: flex; align-items: center; justify-content: space-between;
      padding: 9px 14px; font-size: .84rem; color: var(--ink);
      text-decoration: none; transition: background .12s;
    }
    .currency-dropdown a:hover { background: var(--bg); }
    .currency-dropdown a.current { color: var(--accent); font-weight: 700; }

    .lang-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      right: 0;
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      box-shadow: 0 8px 28px rgba(0,0,0,.10);
      min-width: 150px;
      overflow: hidden;
      z-index: 200;
    }

    .lang-dropdown.open { display: block; animation: fadeIn .15s ease; }

    @keyframes fadeIn { from { opacity:0; transform: translateY(-4px); } to { opacity:1; transform: none; } }

    .lang-dropdown a {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 10px 14px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--ink-mid);
      text-decoration: none;
      transition: background .1s;
    }

    .lang-dropdown a:hover   { background: #f9fafb; color: var(--ink); }
    .lang-dropdown a.current { color: var(--accent); font-weight: 600; background: #eff6ff; }
    .lang-dropdown a + a     { border-top: 1px solid var(--border); }

    /* ── Hamburger ───────────────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 36px; height: 36px;
      align-items: center;
      justify-content: left;
      border: none; background: none;
      cursor: pointer;
      border-radius: 6px;
      padding: 4px;
      transition: background .15s;
    }

    .hamburger:hover { background: #e9eaec; }

    .hamburger span {
      display: block;
      height: 2px; width: 20px;
      background: var(--ink-mid);
      border-radius: 2px;
      transition: transform .25s, opacity .2s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile menu ─────────────────────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 8px 28px 20px;
      z-index: 99;
      box-shadow: 0 12px 32px rgba(0,0,0,.07);
      animation: slideDown .2s ease;
    }

    @keyframes slideDown { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: none; } }
    .mobile-menu.open { display: block; }

    .mobile-menu a {
      display: block;
      padding: 13px 0;
      border-bottom: 1px solid var(--border);
      font-size: .95rem;
      font-weight: 500;
      color: var(--ink-mid);
      text-decoration: none;
    }

    .mobile-menu a.active { color: var(--accent); }
    .mobile-menu a:hover  { color: var(--ink); }

    .mobile-login {
      display: block;
      margin-top: 14px;
      padding: 11px 20px;
      background: var(--accent);
      color: #fff;
      text-align: center;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: .9rem;
      text-decoration: none;
    }

    .mobile-lang {
      display: flex;
      gap: 8px;
      padding-top: 14px;
      margin-top: 4px;
      border-top: 1px solid var(--border);
    }

    .mobile-lang a {
      padding: 5px 12px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--ink-mid);
      text-decoration: none;
    }

    .mobile-lang a.current { border-color: var(--accent); color: var(--accent); background: #eff6ff; }

    /* ── Page body ───────────────────────────────────────────── */
    .page-body { padding-top: var(--nav-h); min-height: calc(60vh - var(--nav-h)); }

    @media (max-width: 768px) {
      .nav-center, .nav-right { display: none; }
      .hamburger { display: flex; }
      .nav-inner { grid-template-columns: 1fr auto; gap: 0; }
    }
  /* Hide images until page styles are ready — prevents flash */
  .kz-card-img img { opacity: 0; transition: opacity .4s ease; }
  .kz-card-img img.kz-img-loaded { opacity: 1; }

  /* ── Footer & Layout ── */
  .site-footer{background:#0f172a;color:#94a3b8;padding:56px 0 0;margin-top:0}
  .footer-inner{max-width:1260px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr 1.4fr;gap:40px 28px;align-items:start}
  .footer-brand{grid-column:1}
  .footer-brand{}
  .footer-logo{display:flex;align-items:center;gap:10px;text-decoration:none;margin-bottom:14px}
  .footer-logo-img{width:36px;height:36px;border-radius:10px;object-fit:cover;flex-shrink:0}
  .footer-logo span{font-size:1.1rem;font-weight:600;color:#f1f5f9;letter-spacing:-.01em}
  .footer-logo strong{color:#60a5fa}
  .footer-tagline{font-size:.83rem;line-height:1.6;color:#64748b;max-width:220px}
  .footer-col-title{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.09em;color:#f1f5f9;margin-bottom:14px}
  .footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:9px}
  .footer-col ul li a{color:#94a3b8;text-decoration:none;font-size:.86rem;display:flex;align-items:center;gap:6px;transition:color .15s}
  .footer-col ul li a:hover{color:#f1f5f9}
  .fi{font-size:.9rem}
  .footer-contact-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
  .footer-contact-list li{font-size:.84rem;line-height:1.5}
  .fc-company{color:#e2e8f0;font-weight:600;font-size:.84rem}
  .fc-addr{color:#64748b;font-size:.82rem;line-height:1.6}
  .footer-contact-list a{color:#94a3b8;text-decoration:none;transition:color .15s}
  .footer-contact-list a:hover{color:#f1f5f9}
  .footer-bottom{max-width:1260px;margin:0 auto;padding:18px 24px;border-top:1px solid #1e293b;display:flex;align-items:center;justify-content:space-between;font-size:.78rem;color:#475569;flex-wrap:wrap;gap:10px}
  .footer-legal{border-top:1px solid #1e293b;padding:24px 0;margin-top:20px}
  .footer-legal-inner{max-width:1260px;margin:0 auto;padding:0 24px;display:flex;flex-direction:column;gap:8px}
  .footer-legal-inner p{font-size:.71rem;line-height:1.65;color:#334155}
  .footer-legal-inner strong{color:#475569;font-weight:600}
  .page-content-wrap{max-width:1260px;margin:0 auto;padding:0 24px}
  .page-content-wrap.full-width{max-width:1260px}
  .footer-bottom-langs{display:flex;gap:12px}
  .footer-bottom-langs a{color:#475569;text-decoration:none;font-size:.78rem;transition:color .15s}
  .footer-bottom-langs a:hover,.footer-bottom-langs a.active{color:#93c5fd}
  @media(max-width:1024px){
    .footer-inner{grid-template-columns:1fr 1fr 1fr;gap:32px 24px}
    .footer-brand{grid-column:1/-1}
    .footer-contact-col{grid-column:auto}
  }
  @media(max-width:600px){
    .footer-inner{grid-template-columns:1fr 1fr}
    .footer-brand{grid-column:1/-1}
  }
  @media(max-width:400px){
    .footer-inner{grid-template-columns:1fr}
  }
  
