/*
Theme Name: GPU0
Theme URI:  https://gpu0.net
Author:     Ahmet Aksoy
Version:    3.2.4
Text Domain: gpu0
*/

:root {
  --bg:     #ffffff;
  --fg:     #0d0d0d;
  --mid:    #3a3a3a;
  --muted:  #888888;
  --dim:    #c0c0c0;
  --line:   #e8e8e8;
  --orange: #e91c1c;
  --r:      3px;
  --gray:   100%;
  --wrap:   1040px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;   /* eski tarayıcı fallback */
  overflow-x: clip;     /* sticky header'ı bozmadan yatay taşmayı keser */
  max-width: 100vw;
  /* Sticky footer kaldırıldı, içerik bazlı yerleşim */
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.gpu0-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
/* Okunabilirlik için bazı metin bölümleri dar kalsın */
.gpu0-page-head, .gpu0-home-intro { max-width: 760px; }

/* ── Header ── */
.gpu0-header {
  padding: 22px 0;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid transparent;
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: border-color .3s, background .3s, backdrop-filter .35s;
  animation: gpu0-enter .4s ease both;
}
.gpu0-header.gpu0-scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.gpu0-header-inner { display: flex; align-items: center; justify-content: space-between; }
.gpu0-logo {
  font-size: 12px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--fg); transition: color .15s;
}
.gpu0-logo:hover { color: var(--orange); }
.gpu0-nav { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; }
.gpu0-nav a {
  font-size: 12px; color: var(--muted);
  padding: 5px 10px; border-radius: var(--r);
  border: 1px solid transparent;
  white-space: nowrap;
}
.gpu0-header-inner { gap: 10px; }
.gpu0-logo { flex-shrink: 0; }
.gpu0-nav a:hover { color: var(--fg); border-color: var(--line); }
.gpu0-nav-cta { border-color: var(--line) !important; color: var(--fg) !important; }

/* ── Sayfa başlığı ── */
.gpu0-page-head { padding: 56px 0 44px; }
.gpu0-page-head h1 {
  font-size: clamp(34px, 7vw, 60px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: .95;
}
.gpu0-page-head p { font-size: 13.5px; color: var(--muted); margin-top: 14px; }

/* ── Ürün listesi ── */
.gpu0-product-list { border-top: 1.5px solid var(--fg); }
.gpu0-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.gpu0-product-row:hover .gpu0-row-name { text-decoration: underline; text-underline-offset: 3px; }

/* thumbnail */
.gpu0-row-thumb {
  width: 116px; height: 116px; flex-shrink: 0; border-radius: 12px; overflow: hidden;
  background: var(--line, #e5e7eb); border: 1px solid var(--line, #e5e7eb);
  display: flex; align-items: center; justify-content: center; padding: 5px;
}
.gpu0-row-thumb img {
  width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 4px;
  filter: grayscale(var(--gray)) brightness(.92);
  transition: filter .35s ease, transform .3s ease;
}
.gpu0-product-row:hover .gpu0-row-thumb img { filter: grayscale(0%) brightness(1); transform: scale(1.05); }
.gpu0-row-thumb-ph {
  width: 100%; height: 100%;
  background: var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: var(--dim);
  border-radius: 4px;
}

.gpu0-row-left { flex: 1; min-width: 0; }
.gpu0-row-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.gpu0-row-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.gpu0-row-right { text-align: right; flex-shrink: 0; }
.gpu0-row-price { font-size: 14px; font-weight: 600; color: var(--orange); }
.gpu0-row-price s { font-weight: 400; color: var(--dim); font-size: 12px; margin-right: 3px; }
.gpu0-row-type { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ── Butonlar ── */
.gpu0-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  padding: 9px 18px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  border-radius: var(--r); border: none; cursor: pointer;
  text-decoration: none; transition: opacity .1s;
}
.gpu0-btn:hover { opacity: .8; }
.gpu0-btn-primary { background: var(--fg); color: #fff; }
.gpu0-btn-outline { background: transparent; color: var(--fg); border: 1px solid var(--line); }
.gpu0-btn-outline:hover { border-color: var(--fg); }
.gpu0-btn-sm { padding: 6px 13px; font-size: 12px; }
.gpu0-btn-lg { padding: 11px 22px; font-size: 14px; }
.gpu0-btn-block { width: 100%; }

/* ── Tek ürün ── */
.gpu0-single { padding: 0 0 80px; }
.gpu0-back { font-size: 12px; color: var(--muted); padding: 28px 0 32px; display: inline-flex; align-items: center; gap: 5px; }
.gpu0-back:hover { color: var(--fg); }

/* kapak görseli */
.gpu0-single-cover {
  margin-bottom: 36px;
  border-radius: 8px;
  overflow: hidden;
  max-height: 420px;
  background: transparent;
  display: block;
}
.gpu0-single-cover img {
  width: 100%; height: 420px; object-fit: cover; object-position: top; display: block;
  filter: grayscale(var(--gray)) brightness(.9);
  transition: filter .5s ease;
}
.gpu0-single-cover:hover img { filter: grayscale(0%) brightness(1); }

.gpu0-single-meta { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.gpu0-tag {
  font-size: 11px; color: var(--muted);
  border: 1px solid var(--line); border-radius: 2px; padding: 2px 7px;
}
.gpu0-single-title {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.gpu0-single-grid { display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: start; }

/* sol içerik */
.gpu0-single-content { font-size: 14px; line-height: 1.85; color: var(--mid); }
.gpu0-single-content h2 { font-size: 15px; font-weight: 700; color: var(--fg); margin: 28px 0 10px; letter-spacing: -.2px; }
.gpu0-single-content p { margin-bottom: 14px; }
.gpu0-single-content ul { list-style: none; padding: 0; }
.gpu0-feature-list { list-style: none !important; padding: 0 !important; border-top: 1px solid var(--line); }
.gpu0-feature-list li {
  padding: 11px 0; border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: var(--mid);
  display: flex; gap: 12px; align-items: flex-start;
}
.gpu0-feature-list li::before { content: '—'; color: var(--dim); flex-shrink: 0; }

/* sağ: fiyat + satın al (kutu yok) */
.gpu0-buy-box { position: sticky; top: 32px; }
.gpu0-buy-box-price {
  font-size: 26px; font-weight: 700; letter-spacing: -1px; margin-bottom: 4px;
  color: var(--orange);
}
.gpu0-buy-box-price s { font-size: 14px; color: var(--dim); font-weight: 400; margin-left: 6px; }
.gpu0-buy-box-sub {
  font-size: 12px; color: var(--muted);
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.gpu0-buy-notes { margin-top: 16px; }
.gpu0-buy-note { font-size: 12px; color: var(--muted); padding: 4px 0; display: flex; gap: 8px; align-items: flex-start; }
.gpu0-buy-note::before { content: '✓'; color: var(--fg); flex-shrink: 0; }

/* ── Sayfa ── */
.gpu0-page { padding: 48px 0 80px; min-height: 450px; }
.gpu0-page h1 { font-size: 26px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 28px; }

/* ── Boş durum ── */
.gpu0-empty { padding: 64px 0; color: var(--muted); }
.gpu0-empty p { margin-bottom: 16px; font-size: 14px; }

/* ── Footer ── */
.gpu0-footer { border-top: 1px solid var(--line); padding: 20px 0; margin-top: 80px; }
.gpu0-footer-inner { display: flex; align-items: center; justify-content: space-between; }
.gpu0-footer-logo { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.gpu0-footer p { font-size: 12px; color: var(--muted); }

/* ══ Animasyonlar ══════════════════════════════════════════════ */

@keyframes gpu0-enter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* Sayfa yükleme — kademeli */
.gpu0-page-head h1    { animation: gpu0-enter .55s .05s ease both; }
.gpu0-page-head p,
.gpu0-home-intro,
.gpu0-trust-strip     { animation: gpu0-enter .5s .14s ease both; }
.gpu0-featured-wrap   { animation: gpu0-enter .5s .18s ease both; }

/* Scroll reveal — başlangıç gizli (sadece JS varken) */
.gpu0-js .gpu0-product-row,
.gpu0-js .gpu0-expertise-item,
.gpu0-js .gpu0-gallery-item,
.gpu0-js .gpu0-faq-item,
.gpu0-js .gpu0-info-item,
.gpu0-js .gpu0-auth-box,
.gpu0-js .gpu0-single-content,
.gpu0-js .gpu0-buy-box {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.gpu0-js .gpu0-product-row.gpu0-visible,
.gpu0-js .gpu0-expertise-item.gpu0-visible,
.gpu0-js .gpu0-gallery-item.gpu0-visible,
.gpu0-js .gpu0-faq-item.gpu0-visible,
.gpu0-js .gpu0-info-item.gpu0-visible,
.gpu0-js .gpu0-auth-box.gpu0-visible,
.gpu0-js .gpu0-single-content.gpu0-visible,
.gpu0-js .gpu0-buy-box.gpu0-visible {
  opacity: 1; transform: none;
}

/* Stagger — ürün satırları */
.gpu0-js .gpu0-product-row:nth-child(1) { transition-delay:   0ms; }
.gpu0-js .gpu0-product-row:nth-child(2) { transition-delay:  55ms; }
.gpu0-js .gpu0-product-row:nth-child(3) { transition-delay: 110ms; }
.gpu0-js .gpu0-product-row:nth-child(4) { transition-delay: 165ms; }
.gpu0-js .gpu0-product-row:nth-child(5) { transition-delay: 220ms; }
.gpu0-js .gpu0-product-row:nth-child(6) { transition-delay: 275ms; }
.gpu0-js .gpu0-product-row:nth-child(n+7) { transition-delay: 330ms; }

/* Stagger — uzmanlık */
.gpu0-js .gpu0-expertise-item:nth-child(2) { transition-delay: 80ms; }
.gpu0-js .gpu0-expertise-item:nth-child(3) { transition-delay: 160ms; }

/* Stagger — galeri */
.gpu0-js .gpu0-gallery-item:nth-child(even) { transition-delay: 70ms; }
.gpu0-js .gpu0-gallery-item:nth-child(3n)   { transition-delay: 140ms; }

/* Buy box biraz sonra */
.gpu0-js .gpu0-buy-box { transition-delay: 120ms; }

/* Erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
  .gpu0-header, .gpu0-page-head h1, .gpu0-page-head p,
  .gpu0-home-intro, .gpu0-trust-strip, .gpu0-featured-wrap { animation: none !important; }
  .gpu0-js .gpu0-product-row, .gpu0-js .gpu0-expertise-item,
  .gpu0-js .gpu0-gallery-item, .gpu0-js .gpu0-faq-item,
  .gpu0-js .gpu0-info-item, .gpu0-js .gpu0-auth-box,
  .gpu0-js .gpu0-single-content, .gpu0-js .gpu0-buy-box {
    opacity: 1 !important; transform: none !important;
    transition: none !important;
  }
}

/* ══ / Animasyonlar ══════════════════════════════════════════════ */

/* ── Auth sayfaları (giriş/üye ol) ── */
.gpu0-auth-page { min-height: 450px; display: flex; align-items: center; justify-content: center; padding: 60px 0; }
.gpu0-auth-box { width: 100%; max-width: 400px; }
.gpu0-auth-head { margin-bottom: 28px; }
.gpu0-auth-head h1 { font-size: 26px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 6px; }
.gpu0-auth-head p { font-size: 13px; color: var(--muted); }
.gpu0-auth-head a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.gpu0-auth-form { border-top: 1.5px solid var(--fg); padding-top: 24px; }
.gpu0-auth-link { float: right; font-size: 11px; font-weight: 400; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.gpu0-remember { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); cursor: pointer; margin-top: 4px; }
.gpu0-auth-terms { font-size: 11.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.gpu0-auth-terms a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

/* ── User menu (header dropdown) ── */
.gpu0-user-menu { position: relative; }
.gpu0-user-btn {
  font-family: inherit; font-size: 12px; font-weight: 600;
  background: none; border: 1px solid var(--line); border-radius: var(--r);
  padding: 5px 10px; cursor: pointer; color: var(--fg);
  white-space: nowrap; max-width: 160px; overflow: hidden; text-overflow: ellipsis;
}
.gpu0-user-btn:hover { border-color: var(--fg); }
.gpu0-user-dropdown {
  position: absolute; right: 0; top: 100%;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  min-width: 160px; box-shadow: 0 4px 16px rgba(0,0,0,.06);
  z-index: 200; overflow: hidden;
  /* display yerine opacity/visibility — fare gap'ten geçince kapanmıyor */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s ease, visibility .15s ease, transform .15s ease;
}
.gpu0-user-menu.active .gpu0-user-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.gpu0-user-dropdown a,
.gpu0-user-dropdown form button {
  display: block !important; width: 100%; text-align: left;
  padding: 10px 14px; font-size: 13px; color: var(--fg);
  background: none; border: none; font-family: inherit; cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.gpu0-user-dropdown a:last-child,
.gpu0-user-dropdown form:last-child button { border-bottom: none; }
.gpu0-user-dropdown a:hover,
.gpu0-user-dropdown form button:hover { background: #f5f5f5; }

/* ── Demo butonu ── */
.gpu0-demo-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px; border: 1.5px solid var(--fg); border-radius: var(--r);
  font-size: 13px; font-weight: 600; color: var(--fg); margin-bottom: 16px;
  transition: background .15s;
}
.gpu0-demo-btn::before { content: '▶'; font-size: 10px; }
.gpu0-demo-btn:hover { background: var(--fg); color: #fff; }

/* ── Güven şeridi ── */
.gpu0-trust-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px;
}
.gpu0-trust-strip span {
  font-size: 12px; color: var(--muted);
  padding-right: 16px; margin-right: 16px;
  border-right: 1px solid var(--line);
}
.gpu0-trust-strip span:last-child { border-right: none; padding-right: 0; margin-right: 0; }

/* ── Giriş metni ── */
.gpu0-home-intro { font-size: 15px; color: var(--mid); margin-top: 12px; max-width: 520px; line-height: 1.6; }

/* ── Öne çıkan ürün ── */
.gpu0-featured-wrap { margin-bottom: 4px; }
.gpu0-featured-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--muted); margin-bottom: 8px;
}
.gpu0-featured-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; gap: 20px;
  background: linear-gradient(
    135deg,
    #141414 0%,
    color-mix(in srgb, var(--orange) 6%, #0d0d0d) 55%,
    color-mix(in srgb, var(--orange) 10%, #080808) 100%
  );
  border: 1px solid color-mix(in srgb, var(--orange) 22%, transparent);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset,
              0 4px 24px rgba(0,0,0,.35),
              0 1px 3px rgba(0,0,0,.25);
  color: #fff;
  border-radius: 14px; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gpu0-featured-row:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--orange) 50%, transparent);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset,
              0 8px 36px rgba(0,0,0,.4),
              0 0 20px color-mix(in srgb, var(--orange) 18%, transparent);
}
.gpu0-featured-left { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0; }
.gpu0-featured-thumb {
  width: 108px; height: 108px; border-radius: 14px; overflow: hidden; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center; padding: 6px;
}
.gpu0-featured-thumb img {
  width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 6px;
  filter: grayscale(var(--gray)) brightness(.88);
  transition: filter .35s ease, transform .3s ease;
}
.gpu0-featured-row:hover .gpu0-featured-thumb img {
  filter: grayscale(0%) brightness(1.04); transform: scale(1.06);
}
.gpu0-featured-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.gpu0-featured-desc { font-size: 12.5px; color: rgba(255,255,255,.58); line-height: 1.55; }
.gpu0-featured-right { text-align: right; flex-shrink: 0; }
.gpu0-featured-price { font-size: 20px; font-weight: 700; color: var(--orange, #E8651A); letter-spacing: -.5px; }
.gpu0-featured-price s { font-size: 13px; color: rgba(255,255,255,.38); font-weight: 400; margin-right: 4px; }
.gpu0-featured-type { font-size: 11px; color: rgba(255,255,255,.48); margin-top: 2px; }
.gpu0-featured-version { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 2px; letter-spacing: .02em; }
.gpu0-featured-cta {
  font-size: 12px; color: rgba(255,255,255,.65); margin-top: 10px; display: block;
  transition: color .18s;
}
.gpu0-featured-row:hover .gpu0-featured-cta { color: var(--orange, #E8651A); }

/* ── Sürüm / tarih ── */
.gpu0-row-version { font-size: 11px; color: var(--dim); margin-top: 4px; }

/* ── İstatistik şeridi ── */
.gpu0-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  margin-top: 56px;
}
.gpu0-stat { background: var(--bg); padding: 24px 18px; text-align: center; }
.gpu0-stat-val {
  font-size: clamp(24px, 4vw, 34px); font-weight: 800; letter-spacing: -1px;
  color: var(--fg); line-height: 1;
}
.gpu0-stat-label { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ── Neden GPU0 ── */
.gpu0-why { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); }
.gpu0-why-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--muted); margin-bottom: 22px;
}
.gpu0-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gpu0-why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .15s;
}
.gpu0-why-item:hover { border-color: var(--mid); }
.gpu0-why-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.gpu0-why-title { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.gpu0-why-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Ana sayfa SSS önizleme ── */
.gpu0-home-faq { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); }
.gpu0-home-faq-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--muted); margin-bottom: 16px;
}
.gpu0-home-faq-list { border-top: 1.5px solid var(--fg); margin-bottom: 18px; }
.gpu0-home-faq-item { border-bottom: 1px solid var(--line); }
.gpu0-home-faq-item summary {
  list-style: none; padding: 15px 0; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.gpu0-home-faq-item summary::-webkit-details-marker { display: none; }
.gpu0-home-faq-item summary::after { content: '+'; font-size: 17px; color: var(--muted); font-weight: 400; flex-shrink: 0; }
.gpu0-home-faq-item[open] summary::after { content: '−'; }
.gpu0-home-faq-item p { font-size: 13.5px; color: var(--mid); line-height: 1.8; padding-bottom: 15px; }
.gpu0-home-faq-cta { font-size: 13px; }
.gpu0-home-faq-cta a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* ── Uzmanlıklar ── */
.gpu0-expertise { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); margin-bottom: 20px; }
.gpu0-expertise-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--muted); margin-bottom: 20px;
}
.gpu0-expertise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.gpu0-expertise-item { background: #fff; padding: 22px 24px; }
.gpu0-expertise-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.gpu0-expertise-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Ürün görseli galerisi ── */
.gpu0-gallery-section { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--line); }
.gpu0-gallery-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--muted); margin-bottom: 16px;
}
.gpu0-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.gpu0-gallery-item {
  display: block; overflow: hidden; border-radius: 4px;
  aspect-ratio: 16 / 10; background: var(--line);
}
.gpu0-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(var(--gray)) brightness(.9);
  transition: filter .4s ease, transform .4s ease;
}
.gpu0-gallery-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.03);
}

/* ── Galeri (native WP + özel) ── */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; margin: 24px 0; }
.gallery-item { overflow: hidden; border-radius: 4px; }
.gallery-item img {
  width: 100%; height: 160px; object-fit: cover; display: block;
  filter: grayscale(var(--gray)) brightness(.92);
  transition: filter .4s ease;
  cursor: zoom-in;
}
.gallery-item img:hover { filter: grayscale(0%) brightness(1); }

/* ── Form Elemanları (Genel & İletişim & Destek) ── */
.gpu0-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.gpu0-form-field { margin-bottom: 16px; }
.gpu0-form-field label {
  display: block; font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .4px; margin-bottom: 6px;
}
.gpu0-form-field input[type="text"],
.gpu0-form-field input[type="email"],
.gpu0-form-field input[type="password"],
.gpu0-form-field input[type="url"],
.gpu0-form-field input[type="search"],
.gpu0-form-field select,
.gpu0-contact-form select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r);
  font-family: inherit; font-size: 13.5px; color: var(--fg); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
.gpu0-form-field input:focus,
.gpu0-form-field select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 10%, transparent);
}
.gpu0-form-field textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r);
  font-family: inherit; font-size: 13.5px; color: var(--fg); background: #fff; resize: vertical;
  transition: border-color .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
.gpu0-form-field textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 10%, transparent);
}
.gpu0-contact-grid { display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: start; }
.gpu0-contact-form textarea { resize: vertical; min-height: 120px; }
.gpu0-alert { padding: 12px 14px; border-radius: var(--r); font-size: 13.5px; margin-bottom: 20px; }
.gpu0-alert-ok  { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.gpu0-alert-err { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

.gpu0-contact-info h2 { font-size: 14px; font-weight: 700; letter-spacing: -.2px; margin-bottom: 16px; }
.gpu0-info-list { border-top: 1.5px solid var(--fg); }
.gpu0-info-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.gpu0-info-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
.gpu0-info-val { font-size: 13.5px; color: var(--fg); }
.gpu0-info-val a { text-decoration: underline; text-underline-offset: 3px; color: var(--fg); }

/* ── SSS sayfası ── */
.gpu0-faq { max-width: 720px; }
.gpu0-faq-group { margin-bottom: 44px; }
.gpu0-faq-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 12px; }
.gpu0-faq-item { border-bottom: 1px solid var(--line); }
.gpu0-faq-item:first-of-type { border-top: 1.5px solid var(--fg); }
.gpu0-faq-item summary {
  list-style: none; padding: 16px 0; font-size: 14.5px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.gpu0-faq-item summary::after { content: '+'; font-size: 18px; color: var(--muted); flex-shrink: 0; font-weight: 400; }
.gpu0-faq-item[open] summary::after { content: '−'; }
.gpu0-faq-item summary::-webkit-details-marker { display: none; }
.gpu0-faq-item p { font-size: 13.5px; color: var(--mid); line-height: 1.8; padding-bottom: 16px; }
.gpu0-faq-item a { text-decoration: underline; text-underline-offset: 3px; }
.gpu0-faq-cta { padding-top: 16px; }
.gpu0-faq-cta p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }

/* ── Kupon satırı (checkout) ── */
.gpu0-coupon-row { margin-bottom: 12px; }
.gpu0-coupon-wrap { display: flex; gap: 8px; align-items: center; }
.gpu0-coupon-wrap input {
  flex: 1;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 14px;
  font-family: inherit;
  color: var(--fg);
  background: var(--bg);
  box-sizing: border-box;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.gpu0-coupon-wrap input:focus { outline: none; border-color: var(--fg); }
.gpu0-coupon-wrap input::placeholder { text-transform: none; letter-spacing: 0; color: var(--dim); }
.gpu0-coupon-msg { font-size: 12px; margin-top: 6px; padding: 6px 10px; border-radius: var(--r); }
.gpu0-coupon-ok  { background: #f0fdf4; color: #166534; }
.gpu0-coupon-err { background: #fef2f2; color: #991b1b; }

/* ── Footer nav ── */
.gpu0-footer-nav { display: flex; gap: 16px; }
.gpu0-footer-nav a { font-size: 12px; color: var(--muted); }
.gpu0-footer-nav a:hover { color: var(--fg); }

/* ── Arama (inline, nav içinde) ── */
.gpu0-search-wrap { display: flex; align-items: center; gap: 4px; }
.gpu0-search-toggle {
  background: none; border: none; cursor: pointer; padding: 5px;
  color: var(--muted); display: flex; align-items: center;
  border-radius: var(--r); transition: color .15s;
  flex-shrink: 0;
}
.gpu0-search-toggle:hover { color: var(--fg); }
.gpu0-search-form { display: flex; align-items: center; overflow: hidden; }
.gpu0-search-input {
  width: 0; padding: 0; opacity: 0;
  border: 1px solid transparent; border-radius: var(--r);
  font-family: inherit; font-size: 13px; color: var(--fg);
  background: var(--bg);
  transition: width .22s ease, opacity .22s ease, padding .22s ease, border-color .22s;
}
.gpu0-search-wrap.active .gpu0-search-input {
  width: 160px; opacity: 1;
  padding: 5px 10px;
  border-color: var(--line);
}
.gpu0-search-input:focus { outline: none; border-color: var(--fg); }

/* ── Tier seçici ── */
.gpu0-tiers-list { display: flex; flex-direction: column; gap: 6px; }
.gpu0-tier-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r);
  cursor: pointer; transition: border-color .12s;
}
.gpu0-tier-option input[type=radio] { display: none; }
.gpu0-tier-option.active,
.gpu0-tier-option:has(input:checked) { border-color: var(--fg); }
.gpu0-tier-name { font-size: 13.5px; font-weight: 600; }
.gpu0-tier-price { font-size: 14px; font-weight: 700; }

/* ── Hesap sayfası (yeniden tasarım) ── */
.gpu0-license-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.gpu0-license-card { background: var(--bg); padding: 20px 22px; }
.gpu0-license-card.revoked,
.gpu0-license-card.expired  { opacity: .55; }
.gpu0-lic-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; gap: 12px; }
.gpu0-lic-title { font-size: 15px; font-weight: 700; }
.gpu0-lic-badges { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.gpu0-lic-update-badge {
  font-size: 11px; font-weight: 700; background: var(--fg); color: #fff;
  padding: 2px 8px; border-radius: 3px; white-space: nowrap;
}
.gpu0-lic-key { display: flex; align-items: center; gap: 8px; margin: 10px 0; flex-wrap: wrap; }
.gpu0-lic-key code { background: #f5f5f5; padding: 5px 10px; border-radius: 3px; font-size: 12px; word-break: break-all; border: 1px solid var(--line); letter-spacing: .3px; }
.gpu0-lic-meta { display: flex; gap: 12px; font-size: 12px; color: var(--muted); flex-wrap: wrap; margin-bottom: 12px; }
.gpu0-hesap-summary { font-size: 13px; color: var(--muted); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }

/* ── Responsive ── */
@media (max-width: 680px) {
  .gpu0-single-grid { grid-template-columns: 1fr; gap: 32px; }
  .gpu0-buy-box { position: static; }
  .gpu0-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .gpu0-footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .gpu0-footer-nav { flex-wrap: wrap; gap: 8px 16px; }
  .gpu0-auth-page { align-items: flex-start; padding: 32px 0 60px; }
  .gpu0-expertise-grid { grid-template-columns: 1fr; }
  .gpu0-stats { grid-template-columns: 1fr 1fr; }
  .gpu0-why-grid { grid-template-columns: 1fr; }
  .gpu0-stat { padding: 18px 12px; }
  .gpu0-featured-row {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 16px 18px;
    gap: 12px;
  }
  .gpu0-featured-left { flex: 1 1 100%; }
  .gpu0-featured-right {
    flex: 1 1 100%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 12px; margin-top: 0;
  }
  .gpu0-featured-price { font-size: 22px; }
  .gpu0-featured-cta { margin-top: 0; font-size: 13px; font-weight: 600; }
  .gpu0-trust-strip { gap: 8px 0; }
  .gpu0-trust-strip span { border-right: none; margin-right: 0; padding-right: 0; }
  .gpu0-trust-strip span::after { content: ' ·'; margin-left: 4px; color: var(--line); }
  .gpu0-trust-strip span:last-child::after { content: ''; }
}
@media (max-width: 540px) {
  .gpu0-form-row { grid-template-columns: 1fr; }
  .gpu0-product-row { align-items: flex-start; }
  .gpu0-row-right { text-align: left; }
  .gpu0-single-cover { max-height: 210px; }
  .gpu0-single-cover img { height: 210px; }
  .gpu0-faq-item summary { font-size: 13.5px; }
  .gpu0-contact-form-wrap, .gpu0-contact-info { width: 100%; }
}
/* ── Hamburger menü (mobil) ── */
.gpu0-nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 4px;
  width: 38px; height: 38px; padding: 8px;
  background: none; border: 1px solid var(--line); border-radius: var(--r);
  cursor: pointer; flex-shrink: 0;
}
.gpu0-nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--fg); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.gpu0-nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.gpu0-nav-toggle.open span:nth-child(2) { opacity: 0; }
.gpu0-nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 700px) {
  .gpu0-nav-toggle { display: flex; }
  /* Nav → açılır panel */
  .gpu0-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    padding: 8px 0; max-height: 0; overflow: hidden;
    opacity: 0; pointer-events: none;
    transition: max-height .3s ease, opacity .2s ease;
  }
  .gpu0-nav.open { max-height: 80vh; opacity: 1; pointer-events: auto; overflow-y: auto; }
  .gpu0-nav > a, .gpu0-nav-cta, .gpu0-nav-auth {
    display: block !important; width: 100%;
    padding: 13px 24px !important; font-size: 14px !important;
    border: none !important; border-radius: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    color: var(--fg) !important;
  }
  .gpu0-nav > a:hover { background: #f7f7f7; }
  .gpu0-nav-cta { font-weight: 700; }

  /* Kullanıcı menüsü → panelde düz liste */
  .gpu0-user-menu { width: 100%; }
  .gpu0-user-btn { display: none; }
  .gpu0-user-dropdown {
    position: static;
    opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    transform: none !important; transition: none !important;
    border: none; box-shadow: none; min-width: 0; border-radius: 0;
  }
  .gpu0-user-dropdown a, .gpu0-user-dropdown form button {
    padding: 13px 24px !important; font-size: 14px !important;
    border-bottom: 1px solid var(--line) !important;
  }

  /* Arama → panelde tam genişlik input */
  .gpu0-search-wrap { width: 100%; padding: 10px 24px; }
  .gpu0-search-toggle { display: none; }
  .gpu0-search-form { width: 100%; }
  .gpu0-search-input,
  .gpu0-search-wrap.active .gpu0-search-input {
    width: 100% !important; opacity: 1 !important;
    padding: 10px 12px !important; border-color: var(--line) !important;
  }
}

@media (max-width: 480px) {
  .gpu0-wrap { padding: 0 18px; }
  .gpu0-page-head h1 { letter-spacing: -1.5px; }
  .gpu0-header { padding: 16px 0; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gpu0-row-thumb { width: 90px; height: 90px; }
  .gpu0-auth-box { max-width: 100%; }
  .gpu0-coupon-wrap { flex-direction: column; }
  .gpu0-coupon-wrap .gpu0-btn { width: 100%; }
}

/* ══ Sistem gereksinimleri + Değişiklik günlüğü ══════════════ */
.gpu0-product-extra { margin-top: 36px; border-top: 1px solid var(--line); padding-top: 8px; }
.gpu0-details-block { border-bottom: 1px solid var(--line); }
.gpu0-details-block summary {
  padding: 14px 0; font-size: 13px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none; color: var(--fg);
}
.gpu0-details-block summary::-webkit-details-marker { display: none; }
.gpu0-details-block summary::after { content: '+'; font-size: 16px; font-weight: 400; color: var(--muted); }
.gpu0-details-block[open] summary::after { content: '−'; }
.gpu0-details-body { padding-bottom: 18px; font-size: 13px; color: var(--mid); line-height: 1.9; white-space: pre-wrap; }

/* ══ Yorumlar ══════════════════════════════════════════════════ */
.gpu0-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.gpu0-avg-rating { font-size: 12px; text-transform: none; letter-spacing: 0; font-weight: 400; }

.gpu0-reviews { margin-top: 52px; border-top: 1.5px solid var(--fg); padding-top: 32px; }
.gpu0-review-card {
  border-bottom: 1px solid var(--line); padding: 18px 0;
}
.gpu0-review-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 8px; gap: 12px; flex-wrap: wrap;
}
.gpu0-review-name  { font-size: 13px; font-weight: 700; }
.gpu0-review-title { font-size: 13px; color: var(--muted); }
.gpu0-review-date  { font-size: 11px; color: var(--dim); }
.gpu0-review-body  { font-size: 13.5px; color: var(--mid); line-height: 1.7; }

/* Yıldızlar */
.gpu0-stars { display: inline-flex; gap: 1px; line-height: 1; }
.gpu0-star  { font-size: 13px; color: var(--dim); }
.gpu0-star.filled { color: var(--orange); }

/* Yorum formu */
.gpu0-review-form-wrap { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.gpu0-review-stars-input { display: flex; align-items: center; gap: 3px; margin-bottom: 14px; }
.gpu0-star-pick {
  font-size: 22px; color: var(--dim); cursor: pointer;
  transition: color .1s; line-height: 1;
}
.gpu0-star-pick.active { color: var(--orange); }

/* Scroll reveal — yorum kartları */
.gpu0-js .gpu0-review-card {
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.gpu0-js .gpu0-review-card.gpu0-visible { opacity: 1; transform: none; }

/* ══ Demo giriş bilgileri ══════════════════════════════════════ */
.gpu0-demo-creds {
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px 14px; margin-bottom: 16px; background: #fafafa;
}
.gpu0-demo-creds-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: var(--muted); margin-bottom: 8px;
}
.gpu0-demo-cred-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; margin-bottom: 6px;
}
.gpu0-demo-cred-row > span { color: var(--muted); min-width: 62px; }
.gpu0-demo-cred-row code {
  flex: 1; background: #fff; border: 1px solid var(--line);
  border-radius: 3px; padding: 4px 8px; font-size: 12px;
  color: var(--fg); word-break: break-all;
}
.gpu0-demo-copy {
  background: var(--fg); color: #fff; border: none; border-radius: 3px;
  width: 26px; height: 26px; cursor: pointer; font-size: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: opacity .15s;
}
.gpu0-demo-copy:hover { opacity: .8; }
.gpu0-demo-note {
  font-size: 11.5px; color: var(--muted); margin-top: 4px;
  padding-top: 8px; border-top: 1px dashed var(--line); line-height: 1.5;
}

/* ══ Galeri lightbox ══════════════════════════════════════════ */
.gpu0-gallery-item {
  display: block; overflow: hidden; border-radius: 4px;
  aspect-ratio: 16 / 10; background: var(--line);
  padding: 0; border: none; cursor: zoom-in; width: 100%;
}
.gpu0-lightbox {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(10,10,10,.92);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s ease;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.gpu0-lightbox.active { display: flex; opacity: 1; }
.gpu0-lb-figure {
  margin: 0; max-width: 90vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.gpu0-lb-img {
  max-width: 90vw; max-height: 82vh; object-fit: contain;
  border-radius: 6px; box-shadow: 0 12px 48px rgba(0,0,0,.5);
  transition: opacity .2s ease; animation: gpu0-lb-in .25s ease;
}
@keyframes gpu0-lb-in { from { transform: scale(.96); opacity: 0; } to { transform: none; opacity: 1; } }
.gpu0-lb-counter { font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .5px; }
.gpu0-lb-close, .gpu0-lb-prev, .gpu0-lb-next {
  position: absolute; background: rgba(255,255,255,.1); color: #fff;
  border: none; cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s; backdrop-filter: blur(4px);
}
.gpu0-lb-close { top: 20px; right: 20px; width: 42px; height: 42px; font-size: 26px; line-height: 1; }
.gpu0-lb-prev, .gpu0-lb-next { top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 20px; }
.gpu0-lb-prev { left: 20px; }
.gpu0-lb-next { right: 20px; }
.gpu0-lb-close:hover, .gpu0-lb-prev:hover, .gpu0-lb-next:hover { background: rgba(255,255,255,.25); }
@media (max-width: 560px) {
  .gpu0-lb-prev, .gpu0-lb-next { width: 38px; height: 38px; }
  .gpu0-lb-prev { left: 8px; } .gpu0-lb-next { right: 8px; }
  .gpu0-lb-close { top: 12px; right: 12px; }
}

/* SSS Sayfası Hizalaması */
.gpu0-page-sss .gpu0-page-head,
.gpu0-page-sss .gpu0-faq {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
