/* ============================================================
   RAPTOREX — raptorextech.com
   Datron tarzı: beyaz/temiz, sade, hızlı, görsel odaklı
   ============================================================ */

:root {
  /* Renkler — Raptorex kırmızı + siyah */
  --color-bg: #ffffff;
  --color-bg-2: #f5f7fa;
  --color-surface: #ffffff;
  --color-border: #e4e6ea;
  --color-border-strong: #c9cdd3;
  --color-text: #101418;
  --color-text-muted: #5a6470;
  --color-text-dim: #8a93a0;
  --color-accent: #e11d2a;
  --color-accent-hover: #c01724;
  --color-accent-soft: rgba(225, 29, 42, 0.08);
  --color-accent-2: #c01724;

  /* Tipografi */
  --font-sans: "Saira", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  /* Ölçüler */
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 18px;
  --header-h: 66px;

  /* Geçişler */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.25s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -0.02em; color: var(--color-text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

::selection { background: var(--color-accent); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border-strong); border-radius: 5px; }

/* ---------- Yardımcı sınıflar ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--color-text-muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 24px;
  border-radius: 29px;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--speed) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }

.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-hover); }

.btn-outline { border: 1.5px solid var(--color-border-strong); color: var(--color-text); background: transparent; }
.btn-outline:hover { border-color: var(--color-text); }

.btn-dark { background: var(--color-accent); color: #fff; }
.btn-dark:hover { background: var(--color-accent-hover); }

.btn-lg { padding: 16px 24px; font-size: 1rem; }
.btn-sm { padding: 12px 22px; font-size: 0.94rem; border-radius: 999px; font-weight: 800; }
.btn-xs { padding: 7px 14px; font-size: 0.78rem; border-radius: 999px; font-weight: 800; }

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all var(--speed);
}
.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 20px rgba(16, 20, 24, 0.06);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em; }
.brand img { height: 32px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 7px;
  transition: color var(--speed), background var(--speed);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a:hover { color: var(--color-text); background: var(--color-bg-2); }

/* Dropdown tetikleyici buton (a ile aynı görünüm) */
.nav .nav-link {
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 7px;
  transition: color var(--speed), background var(--speed);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav .nav-link:hover { color: var(--color-text); background: var(--color-bg-2); }

/* Dropdown menü (Datron tarzı hover) */
.nav-item { position: relative; }
.nav-item > a { padding-right: 10px; }
.nav-item .chevron {
  width: 14px; height: 14px;
  transition: transform var(--speed);
}
.nav-item:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 11px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(16, 20, 24, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--speed), transform var(--speed), visibility var(--speed);
  z-index: 200;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 8px;
}
.dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  white-space: nowrap;
}
.dropdown a .dd-sub {
  font-size: 0.72rem;
  color: var(--color-text-dim);
}
.dropdown a:hover { background: var(--color-bg-2); color: var(--color-text); }

/* ---- İki seviyeli menü (Mini / Pro) ---- */
.dropdown .dd-item { position: relative; border-radius: 8px; }
.dd-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--color-text-muted);
  cursor: default;
  white-space: nowrap;
}
.dd-label .chevron { width: 13px; height: 13px; opacity: 0.6; transition: transform var(--speed); }
.dd-item:hover .dd-label,
.dd-item:focus-within .dd-label { background: var(--color-bg-2); color: var(--color-text); }
.dd-item:hover .dd-label .chevron { transform: rotate(90deg); }

.dd-submenu {
  position: absolute;
  top: -9px;
  left: calc(100% - 9px);
  min-width: 220px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 11px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(16,20,24,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity var(--speed), transform var(--speed), visibility var(--speed);
  z-index: 10;
}
.dd-item:hover .dd-submenu,
.dd-item:focus-within .dd-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (hover: none) {
  .nav-item:hover .dropdown { opacity: 0; visibility: hidden; transform: translateY(10px); }
  .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  /* İkinci seviye: dokunmatikte tıklama ile açılır */
  .dd-item:hover .dd-submenu { opacity: 0; visibility: hidden; transform: translateX(8px); }
  .dd-item.open .dd-submenu { opacity: 1; visibility: visible; transform: translateX(0); }
  /* Dokunmatik cihazlarda koyu overlay istemiyoruz — kartlar hep açık görünsün */
  .tile-overlay { opacity: 0; pointer-events: none; }
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid var(--color-border);
}
.nav-toggle svg { width: 21px; height: 21px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 20px 22px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 24px 48px rgba(16,20,24,0.08);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open a { padding: 13px 14px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }

  /* Mobil: dropdown'lar statik listeye dönüşür */
  .nav.open .nav-item { display: flex; flex-direction: column; }
  .nav.open .nav-item > a { justify-content: space-between; }
  .nav.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-border);
    border-radius: 0;
    padding: 4px 0 8px 12px;
    margin: 0 6px 0 14px;
    min-width: 0;
  }
  .nav.open .dropdown a { padding: 10px 12px; }
  .nav.open .nav-item:hover .dropdown,
  .nav.open .nav-item:focus-within .dropdown { transform: none; }
  /* Mobil: ikinci seviye statik listeye dönüşür, tıklama ile açılır */
  .nav.open .dd-item { display: flex; flex-direction: column; }
  .nav.open .dd-label { cursor: pointer; }
  .nav.open .dd-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-border);
    border-radius: 0;
    padding: 2px 0 6px 12px;
    margin: 0 6px 0 14px;
    min-width: 0;
    display: none;
  }
  .nav.open .dd-item.open .dd-submenu { display: flex; flex-direction: column; }
}

/* ---------- Hero (MiniV2 tarzı: koyu degrade + tam band görseli) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 24px;
  background: #0f1115;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.hero-content {
  max-width: 620px;
  margin-left: -50px;
}

.hero .eyebrow { color: #f0a9ad; font-size: 0.8rem; margin-bottom: 10px; }
.hero h1 { color: #ffffff; margin-bottom: 14px; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; }
.hero h1 .accent { color: #ff4d57; }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.37rem; max-width: 560px; margin-bottom: 40px; }

.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn-lg { padding: 15px 28px; font-size: 1rem; }
.hero-cta .btn-outline { border-color: rgba(255,255,255,0.45); color: #fff; }
.hero-cta .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

.hero-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}
.hero-badge {
  padding: 9px 17px;
  font-size: 0.85rem;
  border-color: rgba(255,255,255,0.25);
  background: rgba(15,17,21,0.55);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-media-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 100%;
}
.hero-media-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 17, 21, 0.92) 0%,
    rgba(15, 17, 21, 0.55) 45%,
    rgba(15, 17, 21, 0.2) 75%,
    rgba(15, 17, 21, 0) 100%
  );
  pointer-events: none;
}
.hero-media-video img,
.hero-media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge svg { width: 17px; height: 17px; color: var(--color-accent); }

/* ---------- Ürün grid (Datron shop tarzı) ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) { .products-grid { grid-template-columns: 1fr; } }

/* Kompakt ürün kartları (ürün sayfası altı) — %30 küçültülmüş */
.compact-products { padding: 72px 0 64px; }
.products-grid-compact {
  --tile-scale: 0.7;
}
.products-grid-compact .product-tile {
  font-size: calc(1rem * var(--tile-scale));
}
.products-grid-compact .product-tile-media {
  aspect-ratio: 1 / 0.95;
}
.products-grid-compact .tile-overlay {
  padding: 14px;
  gap: 8px;
}
.products-grid-compact .tile-overlay-desc {
  font-size: 0.92rem;
}
.products-grid-compact .product-tile-body {
  padding: 14px;
}
.products-grid-compact .product-tile-body h3 {
  font-size: 1.15rem;
}
.products-grid-compact .tile-tagline {
  font-size: 0.9rem;
}
.products-grid-compact .tile-cta {
  padding-top: 12px;
}
.products-grid-compact .btn-sm {
  padding: 0.45em 0.9em;
  font-size: 0.92rem;
}
.products-grid-compact .tile-price {
  font-size: 1rem;
}
.products-grid-compact .tile-ribbon {
  font-size: 0.62rem;
  padding: 5px 34px;
  top: 30px;
  right: -38px;
}
.products-grid-compact .tile-coming {
  font-size: 0.62rem;
  padding: 4px 8px;
  top: 10px;
  left: 10px;
}

.product-tile {
  position: relative;
  background: #cce6cc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--speed), box-shadow var(--speed);
  display: flex;
  flex-direction: column;
}
.product-tile:hover { border-color: var(--color-border-strong); box-shadow: 0 12px 36px rgba(16,20,24,0.07); }

.product-tile-media {
  position: relative;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
  background: #c8e2ca;
  border-bottom: 1px solid var(--color-border);
}
.product-tile-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-tile-media .tile-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--speed);
  background: #000;
}
.product-tile:hover .tile-video {
  opacity: 1;
  visibility: visible;
}
.product-tile:hover .product-tile-media img { transform: scale(1.06); }

/* ---- "Çok Yakında" rozeti (kart üstü) ---- */
.tile-coming {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

/* ---- Önsiparişe özel kırmızı çapraz bant ---- */
.tile-ribbon {
  position: absolute;
  top: 34px;
  right: -42px;
  z-index: 4;
  background: #d42a2a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  padding: 6px 42px;
  transform: rotate(45deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
  pointer-events: none;
}

/* ---- Üstü çizili fiyat ---- */
.tile-price s {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  font-weight: 600;
  margin-right: 8px;
  font-size: 0.85em;
}

/* Hover overlay (Datron tarzı) */
.tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(to top, rgba(16, 20, 24, 0.92) 0%, rgba(16, 20, 24, 0.45) 55%, transparent 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.product-tile:hover .tile-overlay,
.product-tile:focus-within .tile-overlay {
  opacity: 1;
  transform: none;
}
.tile-overlay-desc {
  color: #e8eaed;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 90%;
}
.tile-overlay-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tile-price {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  white-space: nowrap;
}
.tile-price .price-eur-main { display: block; font-size: 1.2rem; font-weight: 800; line-height: 1.1; }
.tile-price .price-tl-sub { display: block; font-size: 0.78rem; font-weight: 600; opacity: 0.9; margin-top: 2px; white-space: nowrap; }

.product-tile-body { padding: 20px 24px 22px; }
.product-tile-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.product-tile-body .tile-tagline { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 16px; }

.tile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
.tile-cta .tile-price { font-size: 1.2rem; font-weight: 800; color: var(--color-text); }

/* ---- Kart arka plan temaları (ana sayfa ürün kartları) ---- */
.product-tile.tile-cream,
.product-tile.tile-cream .product-tile-media,
.product-tile.tile-cream .product-tile-body { background: rgb(43, 47, 66); }
.product-tile.tile-purple,
.product-tile.tile-purple .product-tile-media,
.product-tile.tile-purple .product-tile-body { background: rgb(43, 47, 66); }
.product-tile.tile-black,
.product-tile.tile-black .product-tile-media,
.product-tile.tile-black .product-tile-body { background: rgb(43, 47, 66); }
.product-tile.tile-pro,
.product-tile.tile-pro .product-tile-media,
.product-tile.tile-pro .product-tile-body { background: rgb(43, 47, 66); }

.product-tile.tile-cream .product-tile-media,
.product-tile.tile-purple .product-tile-media,
.product-tile.tile-black .product-tile-media,
.product-tile.tile-pro .product-tile-media { border-bottom-color: rgba(255, 255, 255, 0.15); }
.product-tile.tile-cream .product-tile-body h3,
.product-tile.tile-purple .product-tile-body h3,
.product-tile.tile-black .product-tile-body h3,
.product-tile.tile-pro .product-tile-body h3 { color: #fff; }
.product-tile.tile-cream .product-tile-body .tile-tagline,
.product-tile.tile-purple .product-tile-body .tile-tagline,
.product-tile.tile-black .product-tile-body .tile-tagline,
.product-tile.tile-pro .product-tile-body .tile-tagline { color: rgba(255, 255, 255, 0.85); }
.product-tile.tile-cream .tile-cta,
.product-tile.tile-purple .tile-cta,
.product-tile.tile-black .tile-cta,
.product-tile.tile-pro .tile-cta { border-top-color: rgba(255, 255, 255, 0.25); }
.product-tile.tile-cream .tile-cta .tile-price,
.product-tile.tile-purple .tile-cta .tile-price,
.product-tile.tile-black .tile-cta .tile-price,
.product-tile.tile-pro .tile-cta .tile-price { color: #fff; }

/* ---------- Karşılaştırma tablosu ---------- */
.compare-section { background: var(--color-bg-2); }

.compare-table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--color-border); background: var(--color-bg); box-shadow: 0 2px 14px rgba(0,0,0,0.04); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.85rem; }
.compare-table th, .compare-table td { padding: 7px 18px; text-align: left; border-bottom: 1px solid var(--color-border); }
.compare-table thead th { background: var(--color-bg-2); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-dim); font-weight: 600; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody th { font-weight: 500; color: var(--color-text-muted); white-space: nowrap; }
.compare-table td { color: var(--color-text); }
.compare-table td b { font-weight: 600; }

.compare-table .model-head { font-weight: 700; font-size: 0.95rem; color: var(--color-text); }
.compare-table .model-link { display: inline-block; margin-top: 6px; font-size: 0.75rem; color: var(--color-accent); font-weight: 500; }
.compare-table .model-link:hover { text-decoration: underline; }

/* ---------- Feature grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature { padding: 26px; border: 1px solid var(--color-border); border-radius: var(--radius); background: rgb(43, 47, 66); transition: border-color var(--speed); }
.feature:hover { border-color: var(--color-border-strong); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.02rem; margin-bottom: 8px; color: #fff; }
.feature p { color: rgba(255, 255, 255, 0.88); font-size: 0.88rem; }

/* ---------- Referanslar ---------- */
.refs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 960px) { .refs-grid { grid-template-columns: repeat(2, 1fr); } }

.ref-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  min-height: 84px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
  filter: grayscale(1);
  opacity: 0.65;
  transition: all var(--speed);
}
.ref-item:hover { filter: grayscale(0); opacity: 1; border-color: var(--color-border-strong); }
.ref-item img { max-height: 40px; width: auto; object-fit: contain; }

.ref-item {
  position: relative;
}
.ref-name {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(16, 20, 24, 0.92);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 10;
}
.ref-item:hover .ref-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.ref-name::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(16, 20, 24, 0.92);
}

/* ---------- SSS ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
  overflow: hidden;
  transition: border-color var(--speed);
}
.faq-item.open { border-color: var(--color-border-strong); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text);
}
.faq-q .faq-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--speed), background var(--speed), color var(--speed);
}
.faq-q .faq-icon svg { width: 13px; height: 13px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--color-text-muted); font-size: 0.93rem; }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta h2 { max-width: 620px; margin: 0 auto 14px; }
.cta p { color: var(--color-text-muted); max-width: 540px; margin: 0 auto 34px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 32px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--color-text-muted); font-size: 0.9rem; max-width: 280px; }

.footer h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--color-text); margin-bottom: 16px; }
.footer ul { display: grid; gap: 11px; }
.footer a { color: var(--color-text-muted); font-size: 0.9rem; transition: color var(--speed); }
.footer a:hover { color: var(--color-accent); }

.footer-contact li { display: flex; align-items: flex-start; gap: 11px; color: var(--color-text-muted); font-size: 0.9rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--color-accent); flex-shrink: 0; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--color-text-dim);
  font-size: 0.8rem;
  flex-wrap: wrap;
}

/* ---------- İletişim sayfası ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }

.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: border-color var(--speed);
}
.contact-card:hover { border-color: var(--color-border-strong); }
.contact-card .contact-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card .contact-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 0.98rem; margin-bottom: 3px; }
.contact-card p, .contact-card a { color: var(--color-text-muted); font-size: 0.9rem; }
.contact-card a:hover { color: var(--color-accent); }

.form-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  padding: 34px;
  box-shadow: 0 8px 32px rgba(16,20,24,0.05);
}
.form-card h2 { font-size: 1.35rem; margin-bottom: 8px; }
.form-card > p { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 26px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 7px; color: var(--color-text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--color-bg-2);
  border: 1.5px solid var(--color-border);
  border-radius: 9px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.93rem;
  transition: border-color var(--speed);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-note { font-size: 0.76rem; color: var(--color-text-dim); margin-top: 14px; text-align: center; }

/* ---------- Ürün detay sayfası ---------- */
.product-hero { padding-top: calc(var(--header-h) + 40px); }

.product-video-band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dikey (portre) işleme videosu — 16:9 banda hafif küçültüp odak noktasını aşağı al */
.product-video-band video[src*="pro-cdn2.mp4"] {
  transform: scale(0.88);
  object-position: center 68%;
}

.product-video-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.band-thumbs {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  z-index: 5;
}
.band-thumb {
  position: relative;
  width: 120px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
  opacity: 0.75;
  transition: border-color var(--speed), opacity var(--speed), transform var(--speed);
  padding: 0;
  cursor: pointer;
  background: #000;
}
.band-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.band-thumb.active { border-color: #fff; opacity: 1; }
.band-thumb:hover { opacity: 1; transform: translateY(-2px); }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--color-text-dim); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--color-text-muted); transition: color var(--speed); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { opacity: 0.5; }

.product-layout { display: grid; gap: 40px; }
@media (max-width: 960px) { .product-layout { gap: 32px; } }

.product-top { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; align-items: stretch; }
@media (max-width: 960px) { .product-top { grid-template-columns: 1fr; } }

.product-bottom { align-self: start; display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
@media (max-width: 960px) { .product-bottom { grid-template-columns: 1fr; } }

.product-video-band {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f1115;
}

/* Tek ürün resmi (video bandı yerine) */
.product-media {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ProV2 "ÇOK YAKINDA" bandı — video bandı tamamını kaplar */
.product-video-band .coming-soon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #17243f, #0e1626);
}

.product-buy {
  --bg-image: url("../assets/images/products/mini-v2.webp");
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg);
  border: 5px solid #374151;
  box-shadow: 0 2px 14px rgba(16, 20, 24, 0.05);
}
.product-buy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.product-buy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.06) 38%, rgba(255,255,255,0.06) 62%, rgba(255,255,255,0.88) 100%);
}
.product-buy > * { position: relative; z-index: 1; }
.product-buy .price-main { font-size: 1.7rem; line-height: 1.15; }
.product-buy .product-price { margin-bottom: 2px; }
.product-buy .price-note { font-size: 0.78rem; line-height: 1.35; }
.product-buy .variant-group { margin-top: auto; margin-bottom: 8px; }
.product-buy .variant-options { flex-wrap: nowrap; }
.product-buy .variant-option {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 7px 6px;
  border-radius: 10px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 3px solid rgba(16, 20, 24, 0.28);
  box-shadow: 0 4px 8px rgba(16, 20, 24, 0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.product-buy .variant-option:hover {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 5px 10px rgba(16, 20, 24, 0.22);
}
.product-buy .variant-option:active {
  border-bottom-width: 1px;
  transform: translateY(2px);
  box-shadow: 0 1px 3px rgba(16, 20, 24, 0.15);
}
.product-buy .variant-option.active {
  background: rgba(16, 20, 24, 0.85);
  border-color: rgba(16, 20, 24, 0.85);
  border-bottom: 3px solid rgba(16, 20, 24, 0.5);
  color: #fff;
}
.product-buy .variant-option small { font-size: 0.62rem; margin-top: 1px; }
.product-buy .product-actions { margin-top: auto; margin-bottom: 0; gap: 8px; }
.product-buy .btn-lg { padding: 8px 22px; font-size: 0.9rem; }

/* Satın Al blokunda önsipariş fiyat bilgisi */
.buy-price-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.buy-old-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}
.buy-special-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ff6b4a;
}

.gallery { position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 960px) { .gallery { position: static; } }

.gallery-main {
  position: relative;
  aspect-ratio: 1 / 0.95;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fafbfc;
  border: 1px solid var(--color-border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main video.gallery-video { width: 100%; height: 100%; object-fit: cover; display: none; background: #000; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed);
}
.gallery-arrow:hover { background: var(--color-text); color: #fff; }
.gallery-arrow svg { width: 19px; height: 19px; }
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }

.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(68px, 1fr)); gap: 10px; margin-top: 12px; }
.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 9px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all var(--speed);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--color-accent); opacity: 1; }
.gallery-thumb:hover { opacity: 1; }
.thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0,0,0,0.28);
}
.thumb-play svg { width: 26px; height: 26px; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }

.product-info {
  padding: 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgb(43, 47, 66);
  overflow: hidden;
}
.product-info h1 {
  margin: 0;
  padding: 22px 24px;
  background: rgb(43, 47, 66);
  color: #fff;
}
.product-info .product-desc {
  margin: 0;
  padding: 20px 24px;
  background: rgb(43, 47, 66);
  color: #fff;
}
.product-info .product-note {
  margin: 0 24px 18px;
  padding: 13px 16px;
  border: 1.5px solid #ff4d5a;
  border-radius: 10px;
  background: rgba(225, 29, 42, 0.16);
  color: #fff;
  font-size: 1.05rem;
}
.product-info .product-note strong {
  color: #ff7a85;
}
.product-info .product-note-small {
  margin: 8px 0 0;
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.product-info .desc-small-italic {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.product-info .onsiparis-banner {
  margin: 14px 24px 18px;
  padding: 12px 16px;
  border: 1.5px solid #e11d2a;
  border-radius: 10px;
  background: linear-gradient(180deg, #e42534, #c81e2b);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-align: center;
  box-shadow: 0 4px 16px rgba(225, 29, 42, 0.35);
}
.product-info .onsiparis-icon {
  margin-right: 8px;
  color: #ffd6d9;
}
@media (max-width: 560px) {
  .product-info .onsiparis-banner { font-size: 0.82rem; padding: 10px 12px; }
}

/* Deaktif (ön siparişe kapalı) satın alma butonu */
.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.4);
}
.product-info .product-benefits {
  padding: 20px 24px 22px;
  background: rgb(43, 47, 66);
}
.product-info .product-benefits .product-benefit {
  color: rgba(255, 255, 255, 0.85);
}
.product-info .product-benefits .product-benefit svg {
  color: #ff4d5a;
  filter: drop-shadow(0 0 4px rgba(255, 60, 80, 0.55));
}

.product-desc { color: var(--color-text-muted); font-size: 1.02rem; margin-bottom: 26px; }
.product-desc-small { color: #fff; font-size: 0.8rem; line-height: 1.55; margin: -12px 0 26px; max-width: 820px; }
.product-desc-small p { position: relative; margin: 9px 0; padding-left: 4.2em; font-style: italic; }
.product-desc-small p::before { content: "✦"; position: absolute; left: 3.2em; top: 0; color: #fff; font-style: normal; }

.product-price { margin-bottom: 26px; }
.product-price .price-main { font-size: 2.1rem; font-weight: 800; display: block; margin-bottom: 4px; }
.product-price .price-note { font-size: 0.82rem; color: var(--color-text-dim); }

.variant-group { margin-bottom: 24px; }
.variant-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-dim); margin-bottom: 11px; font-weight: 600; }
.variant-options { display: flex; flex-wrap: wrap; gap: 10px; }
.variant-option {
  padding: 11px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--speed);
  background: var(--color-bg);
}
.variant-option:hover { border-color: var(--color-border-strong); }
.variant-option.active { border-color: var(--color-text); background: var(--color-text); color: #fff; }
.variant-option small { display: block; font-weight: 400; color: var(--color-text-dim); font-size: 0.75rem; margin-top: 2px; }
.variant-option.active small { color: rgba(255,255,255,0.7); }

.product-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.product-actions .btn { width: 100%; }

.product-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 24px; border-top: 1px solid var(--color-border); }
@media (max-width: 560px) { .product-benefits { grid-template-columns: 1fr; } }
.product-benefit { display: flex; align-items: center; gap: 11px; font-size: 0.84rem; color: var(--color-text-muted); }
.product-benefit svg { width: 21px; height: 21px; color: var(--color-accent); flex-shrink: 0; }

/* Teknik özellikler tablosu */
.specs-table { border: 1px solid var(--color-border); border-radius: 14px; overflow: hidden; max-width: 820px; margin: 0 auto; box-shadow: 0 2px 14px rgba(0,0,0,0.04); }
.specs-table .spec-row { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 5px 22px; border-bottom: 1px solid var(--color-border); align-items: baseline; }
.specs-table .spec-row:last-child { border-bottom: none; }
.specs-table .spec-row:nth-child(odd) { background: var(--color-bg-2); }
.specs-table .spec-key { color: var(--color-text-muted); font-size: 0.7rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.specs-table .spec-val { color: var(--color-text); font-weight: 400; font-size: 0.85rem; letter-spacing: 0.015em; line-height: 1.5; }
@media (max-width: 560px) { .specs-table .spec-row { grid-template-columns: 1fr; gap: 1px; padding: 5px 16px; } }

/* ---------- Görsel lazy & reveal ---------- */
img[data-src], img[data-srcset] { opacity: 0; transition: opacity 0.4s ease; }
img[data-src].loaded, img[data-srcset].loaded { opacity: 1; }

.reveal { transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.js .reveal { opacity: 0; }
html.js .reveal.visible { opacity: 1; transform: none; }

/* WhatsApp sabit buton */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.35);
  transition: transform var(--speed);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- Utility ---------- */
.text-accent { color: var(--color-accent); }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.bg-light { background: var(--color-bg-2); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Ana sekmeler (Teknik Özellikler / Keşif)
   ============================================================ */
.spec-wrap {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: var(--color-bg);
}
.spec-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-border);
}
.spec-tab {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 12px 24px;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color var(--speed), border-color var(--speed);
}
.spec-tab:hover { color: var(--color-text); }
.spec-tab.is-active { color: var(--color-accent); border-bottom-color: var(--color-accent); }

.spec-panel { display: none; }
.spec-panel.is-active { display: block; }

/* RaptoDroid ekran görüntüleri galerisi */
.raptodroid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .raptodroid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .raptodroid-grid { grid-template-columns: 1fr; } }
.raptodroid-item {
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-2);
  transition: border-color var(--speed), box-shadow var(--speed);
}
.raptodroid-item:hover { border-color: var(--color-border-strong); box-shadow: 0 8px 24px rgba(16,20,24,0.08); }
.raptodroid-item img { width: 100%; display: block; aspect-ratio: 1 / 1.6; object-fit: cover; }
.raptodroid-item figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

/* Kablosuz Kontrol Ünitesi paneli */
.spec-panel[data-spec-panel="kablosuz"] {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.spec-panel[data-spec-panel="kablosuz"] .wcu-intro p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .wcu-grid { grid-template-columns: 1fr; } }
.wcu-item {
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-2);
  transition: border-color var(--speed), box-shadow var(--speed);
}
.wcu-item:hover { border-color: var(--color-border-strong); box-shadow: 0 8px 24px rgba(16,20,24,0.08); }
.wcu-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--color-bg-2);
}
.wcu-item figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.wcu-cta { margin-top: 24px; text-align: center; }
.wcu-cta .btn { min-width: 260px; }

/* Resim Galerisi paneli */
.spec-panel[data-spec-panel="galeri"] {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid--large {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid--large .gallery-item img {
  aspect-ratio: 1 / 1;
}
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-2);
  transition: border-color var(--speed), box-shadow var(--speed);
}
.gallery-item:hover { border-color: var(--color-border-strong); box-shadow: 0 8px 24px rgba(16,20,24,0.08); }
.gallery-item img { width: 100%; display: block; aspect-ratio: 3 / 4; object-fit: cover; }

/* Keşif paneli — açık tema */
.spec-panel[data-spec-panel="kesif"] {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

/* Kontrol Birimi paneli — açık tema */
.spec-panel[data-spec-panel="kontrol"] {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.spec-panel[data-spec-panel="kontrol"] .ctl-intro p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.spec-panel[data-spec-panel="kontrol"] .ctl-intro b { color: var(--color-text); }
.ctl-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.ctl-tab {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  cursor: pointer;
  transition: color var(--speed), border-color var(--speed), background var(--speed);
}
.ctl-tab:hover { color: var(--color-text); border-color: var(--color-border-strong); }
.ctl-tab.is-active { color: #fff; border-color: var(--color-accent); background: var(--color-accent); }
.ctl-panel { display: none; }
.ctl-panel.is-active { display: block; }
.spec-panel[data-spec-panel="kontrol"] .exp-img {
  border: 1px solid var(--color-border);
  background: var(--color-bg-2);
}
.spec-panel[data-spec-panel="kontrol"] .exp-scene {
  display: flex;
  justify-content: center;
}
.spec-panel[data-spec-panel="kontrol"] .exp-stage {
  max-width: 420px;
}

/* ============================================================
   İnteraktif Keşif (Mini V2 ürün sayfası)
   ============================================================ */
.explorer-section { padding: 72px 0; }
.explorer-section .section-head p { margin-top: 10px; max-width: 520px; }

.exp-tabs { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.exp-tab {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  cursor: pointer;
  transition: color var(--speed), border-color var(--speed), background var(--speed);
}
.exp-tab:hover { color: var(--color-text); border-color: var(--color-border-strong); }
.exp-tab.is-active { color: #fff; border-color: var(--color-accent); background: var(--color-accent); }

.exp-layout { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 36px; align-items: start; }
@media (max-width: 960px) { .exp-layout { grid-template-columns: 1fr; } }

.exp-scene { position: relative; }
.exp-stage { position: relative; margin: 0; display: none; }
.exp-stage.is-active { display: block; }
.exp-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg-2);
}

.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  z-index: 2;
  background: none;
  border: none;
  padding: 0;
}
/* Noktayı işaret noktasına bağlayan ok */
.hotspot::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: rgba(31,157,77,0.55);
  transform-origin: left center;
  transform: rotate(-45deg);
  z-index: 1;
}
.hotspot-dot {
  position: absolute;
  left: 0; top: 0;
  /* Nokta, gerçek işaret noktasının sağ-üst açığında durur */
  transform: translate(8px, -32px);
  width: 1.5rem; height: 1.5rem;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: rgba(31,157,77,0.45);
  box-shadow: 0 2px 10px rgba(16,20,24,0.28);
  border: 1.5px solid rgba(255,255,255,0.95);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease, background 0.25s ease;
  animation: hotspot-pulse 2.6s ease-out infinite;
}
.hotspot:hover .hotspot-dot,
.hotspot:focus-visible .hotspot-dot,
.hotspot.is-open .hotspot-dot {
  transform: translate(8px, -32px) scale(1.15);
  animation: none;
  background: #1f9d4d;
  box-shadow: 0 8px 22px rgba(31,157,77,0.45);
}
@keyframes hotspot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,157,77,0.35); }
  70% { box-shadow: 0 0 0 10px rgba(31,157,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,157,77,0); }
}

/* Ok, sayı çemberinin merkezinden geçen dikey (Y) eksene göre aynalanmıştır */
.hotspot-centered::after {
  width: 28px;
  transform: translate(40px, 0) rotate(225deg);
}
.hotspot-centered .hotspot-dot {
  z-index: 2;
}

.hotspot-tip {
  position: absolute;
  left: 50%;
  bottom: calc(50% + 1.5rem);
  transform: translate(-50%, 8px);
  width: 15rem;
  max-width: 70vw;
  background: #fff;
  color: var(--color-text);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16,1,0.3,1), visibility 0.22s;
  z-index: 5;
  text-align: left;
}
.hotspot-tip::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 2px;
}
.hotspot:hover .hotspot-tip,
.hotspot:focus-visible .hotspot-tip,
.hotspot.is-open .hotspot-tip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.hotspot-tip-title { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 4px; }
.hotspot-tip-desc { display: block; font-size: 0.8125rem; line-height: 1.5; color: var(--color-text-muted); }

.exp-list { display: none; list-style: none; margin: 0; padding: 0; }
.exp-list.is-active { display: block; }
.exp-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 14px;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.22s ease;
}
.exp-list-item:hover,
.exp-list-item.is-open { background: var(--color-bg-2); }
.exp-list-num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(31,157,77,0.75);
  transition: background-color 0.22s ease, color 0.22s ease;
}
.exp-list-item:hover .exp-list-num,
.exp-list-item.is-open .exp-list-num { background: #1f9d4d; color: #fff; }
.exp-list-title { display: block; font-weight: 500; font-size: 0.9375rem; }
.exp-list-desc { display: block; color: var(--color-text-muted); font-size: 0.8125rem; line-height: 1.5; margin-top: 2px; }
@media (max-width: 960px) { .exp-list-desc { display: none; } }
@media (prefers-reduced-motion: reduce) { .hotspot-dot { animation: none; } }

/* ============================================================
   Satın Alma Sayfası (checkout)
   ============================================================ */
.checkout-page { padding-top: calc(var(--header-h) + 40px); padding-bottom: 70px; }
.checkout-head { text-align: center; margin-bottom: 36px; }
.checkout-head h1 { font-size: 2rem; margin-bottom: 8px; }
.checkout-head p { color: var(--color-text-muted); max-width: 560px; margin: 0 auto; }

.checkout-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 960px) { .checkout-layout { grid-template-columns: 1fr; } }

.co-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 22px;
}
.co-card h2 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.co-hint { color: var(--color-text-muted); font-size: 0.86rem; margin-bottom: 14px; }

/* Seçili ürün */
.co-product { display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap; }
.co-product-media {
  width: 120px; height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-2);
  flex-shrink: 0;
}
.co-product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.co-product-info { flex: 1 1 200px; min-width: 0; }
.co-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.co-product-info h3 { font-size: 1.2rem; margin-bottom: 6px; }
.co-desc { color: var(--color-text-muted); font-size: 0.85rem; line-height: 1.5; }

/* Adet */
.co-qty { display: flex; flex-direction: column; gap: 6px; }
.co-qty label { font-size: 0.78rem; font-weight: 600; color: var(--color-text-muted); }
.qty-stepper { display: flex; align-items: center; border: 1.5px solid var(--color-border-strong); border-radius: 10px; overflow: hidden; }
.qty-stepper button {
  width: 38px; height: 38px;
  background: var(--color-bg-2);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s ease;
}
.qty-stepper button:hover { background: var(--color-border); }
.qty-stepper input {
  width: 56px; height: 38px;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-bg);
  color: var(--color-text);
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Aksesuarlar */
.co-accessories { display: grid; gap: 10px; }
.acc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.acc-item:hover { border-color: var(--color-border-strong); }
.acc-item:has(input:checked) {
  border-color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 6%, var(--color-bg));
}
.acc-item input { width: 18px; height: 18px; accent-color: var(--color-accent); flex-shrink: 0; }
.acc-label { flex: 1; font-size: 0.92rem; font-weight: 500; }
.acc-price { font-weight: 700; color: var(--color-text); }

/* Özet */
.co-summary {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
@media (max-width: 960px) { .co-summary { position: static; } }
.co-summary h2 { font-size: 1.05rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--color-border); }
.sum-rows { display: grid; gap: 9px; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.88rem; color: var(--color-text-muted); }
.sum-row span:last-child { color: var(--color-text); font-weight: 600; white-space: nowrap; }
.sum-total { display: flex; justify-content: space-between; font-size: 0.88rem; padding-top: 8px; border-top: 1px dashed var(--color-border); color: var(--color-text-muted); }
.sum-grand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 2px solid var(--color-border-strong);
  font-size: 1.15rem;
  font-weight: 700;
}
.sum-note { margin-top: 8px; font-size: 0.78rem; color: var(--color-text-muted); text-align: right; }
.co-summary .btn { margin-top: 18px; width: 100%; }
.co-secure { margin-top: 12px; font-size: 0.75rem; color: var(--color-text-muted); text-align: center; }
.paytr-badge { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.paytr-badge img { height: 26px; width: auto; object-fit: contain; }
.paytr-badge span { font-size: 0.75rem; color: var(--color-text-muted); }

/* ---------- Checkout müşteri formu (PayTR) ---------- */
.co-fields { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--color-border); }
.co-field { display: flex; flex-direction: column; gap: 6px; }
.co-field label { font-size: 0.8rem; font-weight: 600; color: var(--color-text); }
.co-field input,
.co-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--speed), box-shadow var(--speed);
}
.co-field input:focus,
.co-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.15);
}
.co-field textarea { resize: vertical; min-height: 64px; }

/* ---------- Sepet satırı içi aksesuar önerileri ---------- */
.cart-item-accs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 16px 14px 96px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-2);
  border-radius: 0 0 14px 14px;
}
.cart-acc-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}
.cart-acc-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-acc-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.cart-acc-name { font-size: 0.85rem; font-weight: 700; color: var(--color-text); }
.cart-acc-desc { font-size: 0.73rem; color: var(--color-text-muted); line-height: 1.3; }
.cart-acc-price { font-size: 0.85rem; font-weight: 800; color: var(--color-accent); white-space: nowrap; }
.cart-acc-row .btn { flex-shrink: 0; }

/* ---------- Kılavuz (ürün sayfası) ---------- */
.kilavuz-wrap { display: flex; flex-direction: column; gap: 28px; max-width: 880px; }
.kilavuz-section h3 { font-size: 1.05rem; font-weight: 800; margin: 0 0 10px; color: var(--color-text); }
.kilavuz-section p { margin: 0 0 10px; line-height: 1.65; color: var(--color-text); }
.kilavuz-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.kilavuz-table th, .kilavuz-table td { text-align: left; padding: 7px 12px; border: 1px solid var(--color-border); vertical-align: top; }
.kilavuz-table th { background: var(--color-bg-2); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-dim); }
.kilavuz-list { margin: 0; padding-left: 20px; line-height: 1.7; color: var(--color-text); }
.kilavuz-list li { margin-bottom: 4px; }

/* ---------- Sepet rozeti (nav) ---------- */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text);
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cart:hover { background: var(--color-bg-2); color: var(--color-accent); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

/* ---------- Sepet öğeleri ---------- */
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-media {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-2);
  flex-shrink: 0;
}
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info { flex: 1 1 200px; min-width: 0; }
.cart-item-info h3 { font-size: 1rem; margin-bottom: 2px; }
.cart-item-info .co-desc { font-size: 0.8rem; }
.cart-item-qty { flex-shrink: 0; }
.cart-item-price { font-weight: 700; white-space: nowrap; min-width: 90px; text-align: right; }
.cart-item-remove {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.cart-item-remove:hover { background: rgba(212, 42, 42, 0.12); color: #d42a2a; }
@media (max-width: 560px) {
  .cart-item { flex-wrap: wrap; gap: 10px; }
  .cart-item-price { margin-left: auto; }
}

/* ---------- Sepete Ekle onay durumu ---------- */
.js-add-to-cart.is-added { background: #1f9d4d !important; border-color: #1f9d4d !important; }

/* ============================================================
   Destek Bölümü (destek/*.html)
   ============================================================ */
.support-hero { padding-top: calc(var(--header-h) + 48px); }
.support-hero .section-head { margin-bottom: 32px; }
.support-intro { color: var(--color-text-muted); font-size: 1.05rem; max-width: 820px; line-height: 1.7; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 960px) { .support-grid { grid-template-columns: 1fr; } }

.support-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: border-color var(--speed), box-shadow var(--speed), transform var(--speed);
}
.support-card:hover { border-color: var(--color-border-strong); box-shadow: 0 12px 32px rgba(16,20,24,0.08); transform: translateY(-3px); }
.support-card .support-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.support-card .support-card-icon svg { width: 24px; height: 24px; }
.support-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.support-card p { color: var(--color-text-muted); font-size: 0.92rem; flex: 1; margin-bottom: 18px; }
.support-card .btn { align-self: flex-start; }

/* İçerik blokları (yazılım / bakım sayfası) */
.support-block { border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 30px 32px; background: var(--color-bg); }
.support-block + .support-block { margin-top: 22px; }
.support-block h2 { font-size: 1.3rem; margin-bottom: 12px; }
.support-block > p { color: var(--color-text-muted); margin-bottom: 16px; }
.support-block .btn { margin-top: 6px; }

.support-list { display: grid; gap: 12px; margin: 14px 0 4px; }
.support-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.55; }
.support-list li::before { content: ""; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent); margin-top: 9px; }
.support-list li b { color: var(--color-text); font-weight: 600; }

.support-note {
  display: flex; gap: 12px;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 16px 0 4px;
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.support-note b { color: var(--color-text); font-weight: 600; }
.chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Adım adım süreç (bakım / tamirat) */
.support-steps { display: grid; gap: 0; margin-top: 10px; }
.support-step {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.support-step:last-child { border-bottom: none; }
.support-step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}
.support-step-body h3 { font-size: 1.02rem; margin-bottom: 4px; }
.support-step-body p { color: var(--color-text-muted); font-size: 0.92rem; }

/* Bakım önerileri kartları */
.support-tips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
@media (max-width: 960px) { .support-tips { grid-template-columns: 1fr; } }
.support-tip {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--color-bg-2);
}
.support-tip h4 { font-size: 0.98rem; margin-bottom: 8px; }
.support-tip p { color: var(--color-text-muted); font-size: 0.88rem; }

/* Servis talep formu */
.support-form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 28px; }
@media (max-width: 960px) { .support-form-layout { grid-template-columns: 1fr; } }
.support-form-note { color: var(--color-text-muted); font-size: 0.95rem; max-width: 420px; }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
}
.form-status.success { display: block; background: rgba(31,157,77,0.1); border: 1px solid #1f9d4d; color: #17693a; }
.form-status.error { display: block; background: rgba(225,29,42,0.08); border: 1px solid var(--color-accent); color: var(--color-accent); }
.form-status.loading { display: block; background: var(--color-bg-2); border: 1px solid var(--color-border); color: var(--color-text-muted); }
.form-status.loading::after { content: "…"; animation: form-dots 1.2s infinite; }
@keyframes form-dots { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } }

/* Destek CTA bandı */
.support-cta {
  margin-top: 44px;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgb(43, 47, 66);
  color: #fff;
  text-align: center;
}
.support-cta h2 { color: #fff; margin-bottom: 10px; }
.support-cta p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 22px; }
.support-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.support-cta .btn-outline { border-color: rgba(255,255,255,0.45); color: #fff; }
.support-cta .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* ---------- PayTR Taksit Oranları Tablosu (ürün sayfası) ---------- */
.coming-soon {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-2);
}
.coming-soon-band {
  position: absolute;
  left: -6%;
  bottom: 38%;
  width: 112%;
  padding: 14px 0;
  transform: rotate(-32deg);
  transform-origin: center;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 4px 18px rgba(29, 78, 216, 0.45);
}
@media (max-width: 560px) {
  .coming-soon-band { font-size: 1.05rem; padding: 11px 0; }
}
.spec-panel .taksit-wrap,
.taksit-wrap {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-2);
}
.taksit-inner { max-width: 100%; }
.taksit-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
}
.taksit-note {
  margin: 0 0 14px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.taksit-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.taksit-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}
.taksit-table th,
.taksit-table td {
  padding: 9px 12px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}
.taksit-table thead th {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  background: var(--color-bg-2);
}
.taksit-table tbody tr:last-child td { border-bottom: none; }
.taksit-table tbody tr:hover td { background: rgba(0,0,0,0.02); }
.taksit-bank {
  text-align: left !important;
  font-weight: 800;
  color: var(--color-text);
}
.taksit-bank-th { text-align: left !important; }
.taksit-tutar {
  font-weight: 800;
  color: var(--color-text);
}
.taksit-oran {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 1px;
}
.taksit-empty { color: var(--color-text-muted); opacity: 0.5; }
.taksit-foot {
  margin: 12px 0 0;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .taksit-wrap { padding: 16px; }
}

