/* 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}
  }
  


/* ── Homepage Styles ────────────────────────────────────── */

/* ── Reset / Base ─────────────────────────────────────────────── */
.kz-hero,.kz-section,.kz-cta-section{box-sizing:border-box}
.kz-container{max-width:1200px;margin:0 auto;padding:0 24px}

/* ── Hero ─────────────────────────────────────────────────────── */
.kz-hero{
  position:relative;overflow:hidden;
  min-height:calc(100vh - var(--nav-h,64px));
  display:flex;align-items:center;justify-content:center;
  background:radial-gradient(ellipse 80% 55% at 50% -5%,rgba(37,99,235,.18) 0%,transparent 65%),#0c0e14;
  text-align:center;padding:80px 24px 60px;
  /* Hero pulls up flush under navbar */
  margin-top:calc(-1 * var(--nav-h,64px));
}
.kz-hero-glow{
  position:absolute;top:-200px;left:50%;transform:translateX(-50%);
  width:700px;height:500px;
  background:radial-gradient(ellipse,rgba(79,142,255,.07) 0%,transparent 70%);
  pointer-events:none;
}
.kz-hero-inner{position:relative;z-index:1;max-width:760px;margin:0 auto}
.kz-hero-badge{
  display:inline-block;
  background:rgba(37,99,235,.15);border:1px solid rgba(37,99,235,.3);
  color:#93c5fd;font-size:.82rem;font-weight:600;letter-spacing:.04em;
  padding:5px 16px;border-radius:99px;margin-bottom:28px;
}
.kz-hero-title{
  font-size:clamp(2.2rem,5vw,3.6rem);font-weight:800;line-height:1.15;
  color:#f1f5f9;margin-bottom:20px;
}
.kz-hero-title span{
  background:linear-gradient(135deg,#4f8fff 0%,#7c3aed 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.kz-hero-sub{font-size:1.1rem;color:#64748b;line-height:1.7;margin-bottom:36px;max-width:560px;margin-left:auto;margin-right:auto}
.kz-hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:48px}
.kz-btn-primary{
  background:linear-gradient(135deg,#2563eb,#7c3aed);color:#fff;
  padding:13px 28px;border-radius:10px;text-decoration:none;font-size:.95rem;font-weight:600;
  transition:opacity .2s,transform .15s;display:inline-block;
}
.kz-btn-primary:hover{opacity:.9;transform:translateY(-1px)}
.kz-btn-primary.kz-btn-lg{padding:15px 36px;font-size:1rem}
.kz-btn-ghost{
  border:1px solid #252a38;color:#94a3b8;
  padding:13px 28px;border-radius:10px;text-decoration:none;font-size:.95rem;font-weight:500;
  transition:border-color .2s,color .2s;
}
.kz-btn-ghost:hover{border-color:#374151;color:#e2e8f0}
.kz-hero-stats{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap}
.kz-stat{display:flex;align-items:center;gap:7px;font-size:.85rem;color:#475569;font-weight:500}
.kz-stat-icon{font-size:1rem}
.kz-stat-div{width:1px;height:16px;background:#1e293b}

/* ── Section shared ───────────────────────────────────────────── */
.kz-section{padding:80px 0}
.kz-section-head{text-align:center;margin-bottom:56px}
.kz-section-head h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;color:#f1f5f9;margin-bottom:12px}
.kz-section-head p{font-size:1rem;color:#64748b;max-width:560px;margin:0 auto;line-height:1.7}

/* ── Products ─────────────────────────────────────────────────── */
.kz-products-section{background:#0c0e14}
.kz-products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:28px;
}
.kz-product-card{
  position:relative;
  background:#111520;border:1px solid #1a2033;border-radius:16px;
  overflow:hidden;display:flex;flex-direction:column;
  transition:border-color .2s,transform .2s,box-shadow .2s;
}
.kz-product-card:hover{
  border-color:#2563eb;transform:translateY(-3px);
  box-shadow:0 12px 40px rgba(37,99,235,.15);
}
.kz-product-card.kz-featured{border-color:rgba(37,99,235,.4)}
.kz-featured-badge{
  position:absolute;top:14px;right:14px;z-index:2;
  background:rgba(37,99,235,.2);border:1px solid rgba(37,99,235,.4);
  color:#93c5fd;font-size:.72rem;font-weight:700;letter-spacing:.05em;
  padding:3px 10px;border-radius:99px;
}
.kz-card-img{height:180px;overflow:hidden;background:#0d1117}
.kz-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.kz-product-card:hover .kz-card-img img{transform:scale(1.03)}
.kz-card-img-placeholder{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  font-size:3rem;
  background:linear-gradient(135deg,#0f172a 0%,#1e1b4b 100%);
}
.kz-card-body{padding:20px 22px 14px;flex:1}
.kz-card-type-badge{
  display:inline-block;
  background:rgba(124,58,237,.15);border:1px solid rgba(124,58,237,.3);
  color:#c4b5fd;font-size:.72rem;font-weight:600;letter-spacing:.04em;
  padding:2px 10px;border-radius:99px;margin-bottom:12px;
}
.kz-card-title{font-size:1.05rem;font-weight:700;color:#f1f5f9;margin-bottom:8px;line-height:1.4}
.kz-card-desc{font-size:.875rem;color:#64748b;line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.kz-card-footer{
  padding:16px 22px 20px;
  border-top:1px solid #1a2033;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.kz-card-price{display:flex;align-items:baseline;gap:5px;flex-wrap:wrap}
.kz-price-from{font-size:.75rem;color:#475569}
.kz-price-val{font-size:1.3rem;font-weight:800;color:#f1f5f9}
.kz-price-label{font-size:.72rem;color:#475569;background:#1e293b;padding:2px 8px;border-radius:6px}
.kz-card-btn{
  white-space:nowrap;
  background:linear-gradient(135deg,#2563eb,#7c3aed);color:#fff;
  padding:8px 18px;border-radius:8px;text-decoration:none;font-size:.83rem;font-weight:600;
  transition:opacity .2s;flex-shrink:0;
}
.kz-card-btn:hover{opacity:.85}
.kz-no-products{text-align:center;color:#475569;font-size:1rem;padding:40px 0}

/* ── Features ─────────────────────────────────────────────────── */
.kz-features-section{background:#080a0f}
.kz-features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:24px;
}
.kz-feature-card{
  background:#0d1117;border:1px solid #1a2033;border-radius:14px;
  padding:28px 26px;transition:border-color .2s,transform .2s;
}
.kz-feature-card:hover{border-color:#334155;transform:translateY(-2px)}
.kz-feature-icon{font-size:2rem;margin-bottom:16px;display:block}
.kz-feature-card h4{font-size:.95rem;font-weight:700;color:#e2e8f0;margin-bottom:8px}
.kz-feature-card p{font-size:.855rem;color:#64748b;line-height:1.65}

/* ── CTA ──────────────────────────────────────────────────────── */
.kz-cta-section{background:linear-gradient(135deg,#0f172a 0%,#1e1b4b 100%);padding:80px 0}
.kz-cta-inner{text-align:center;max-width:600px;margin:0 auto;padding:0 24px}
.kz-cta-inner h2{font-size:clamp(1.6rem,3vw,2.1rem);font-weight:800;color:#f1f5f9;margin-bottom:14px}
.kz-cta-inner p{font-size:1rem;color:#64748b;line-height:1.7;margin-bottom:32px}

/* ── Responsive ───────────────────────────────────────────────── */
@media(max-width:640px){
  .kz-hero{padding:100px 20px 50px}
  .kz-products-grid{grid-template-columns:1fr}
  .kz-features-grid{grid-template-columns:1fr}
  .kz-stat-div{display:none}
  .kz-hero-stats{gap:16px}
}
