/* styles.css
 * Global temel stiller ve bileşen sınıfları.
 * Tüm renkler themes.css değişkenlerinden gelir.
 * Tasarım: minimalist Clean-Tech, premium boşluklar, yumuşak köşeler.
 */

/* ============ TEMEL ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Çapa (#bölüm) hedefleri sticky navbar'ın altında kalmasın */
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  user-select: none;
}

/* Erişilebilirlik: görünür odak halkası */
:focus-visible {
  outline: 3px solid var(--primary-400);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Düzen kapsayıcı */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: clamp(56px, 9vw, 120px);
}

/* Bölüm başlık kalıbı */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-ink);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 18px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-soft);
  max-width: 600px;
  margin-top: 14px;
}

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

/* ============ BUTONLAR ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--primary-500);
  color: var(--on-primary);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-primary);
}

.btn-ghost {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
  transform: translateY(-2px);
}

.btn-soft {
  background: var(--primary-soft);
  color: var(--primary-700);
}
.btn-soft:hover { transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn .material-symbols-outlined { font-size: 1.15em; }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--band-from), var(--band-to));
  color: var(--on-band);
  box-shadow: var(--shadow-primary);
}
.brand-mark .material-symbols-outlined { font-size: 22px; }
/* Yasal/metin sayfaları (gizlilik vb.) */
.legal-block { margin-bottom: 28px; }
.legal-block h2 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--color-text);
}
.legal-block p { margin: 0 0 10px; line-height: 1.7; color: var(--color-text-soft); }
.legal-block ul { margin: 0 0 10px 1.2em; line-height: 1.7; color: var(--color-text-soft); }
.legal-block li { margin-bottom: 6px; }
.legal-block a { color: var(--primary-600); font-weight: 600; }

/* Marka logosu (görsel) — eski .brand-mark karesiyle aynı boyut */
.brand-logo {
  width: 38px; height: 38px;
  border-radius: 11px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
.brand small {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-soft);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-links a:hover { color: var(--color-text); background: var(--color-surface-2); }

/* Aktif gezinme linki (data-active veya scroll-spy ile) */
.nav-links a.active {
  color: var(--color-text);
  font-weight: 600;
  background: var(--color-surface-2);
}
/* Masaüstünde aktif bölüm için ince alt çizgi göstergesi */
@media (min-width: 901px) {
  .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary-500);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-text-soft);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.18s ease;
}
.icon-btn:hover { background: var(--color-surface-2); color: var(--color-text); transform: translateY(-1px); }

.nav-toggle { display: none; }

/* Mobil menü */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 24px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; font-size: 1rem; }
  .nav-toggle { display: grid; }

  /* Marka, kalan alanı alır ve gerektiğinde küçülür; aksiyonlar sabit kalır.
     Böylece dar ekranda taşma yerine marka esner (min-width:0 taşmayı engeller). */
  .nav-inner { gap: 10px; }
  .brand { flex: 0 1 auto; min-width: 0; }
  .brand > span { min-width: 0; line-height: 1.15; }
  .nav-actions { flex: 0 0 auto; }
}

/* Dar telefonlar (≤420px): navbar öğelerini sığdır — theme + Giriş + hamburger.
   Hardcoded renk yok; yalnız boşluk/boyut ölçeği daraltılır. */
@media (max-width: 420px) {
  .nav-inner { gap: 8px; height: 62px; }
  .nav-links { inset: 62px 0 auto 0; }
  .nav-actions { gap: 4px; }
  .icon-btn { width: 38px; height: 38px; }
  .brand-logo { width: 32px; height: 32px; }
  .brand { gap: 8px; font-size: 0.92rem; }
  .brand small { font-size: 0.6rem; }
  .nav-actions .btn-sm { padding: 8px 12px; font-size: 0.82rem; }
}

/* Çok dar (≤360px): marka metni iki satıra sarabilir, taşma imkânsız kalır. */
@media (max-width: 360px) {
  .nav-inner { gap: 6px; }
  .brand > span { white-space: normal; }
  .nav-actions { gap: 2px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, var(--primary-soft), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -25%; left: -15%;
  width: 50vw; height: 50vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, var(--accent-purple-soft), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 7px 14px 7px 8px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-text-soft);
}
.hero-badge .pill {
  background: var(--accent-green-soft);
  color: var(--accent-green-ink);
  font-weight: 700;
  font-size: 0.74rem;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}
.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  margin-top: 22px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--primary-500), var(--accent-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-soft);
  margin-top: 22px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-text);
}
.hero-stat .lbl {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Hero görsel — PDF mockup yığını */
.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.pdf-mock {
  position: absolute;
  width: 230px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pdf-mock img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* Alt kısımda başlık okunabilirliği için degrade perde */
.pdf-mock::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0));
  pointer-events: none;
}
.pdf-mock .mock-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.pdf-mock .mock-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.pdf-mock.back  { transform: rotate(-9deg) translate(-86px, 14px) scale(0.92); opacity: 0.9; }
.pdf-mock.mid   { transform: rotate(5deg) translate(78px, -8px) scale(0.96); }
.pdf-mock.front { transform: rotate(-2deg) translateY(-4px); z-index: 2; }
.hero-visual:hover .pdf-mock.back  { transform: rotate(-12deg) translate(-104px, 10px) scale(0.92); }
.hero-visual:hover .pdf-mock.mid   { transform: rotate(8deg) translate(96px, -12px) scale(0.96); }
.hero-visual:hover .pdf-mock.front { transform: rotate(-2deg) translateY(-14px); }

.float-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-full);
  padding: 8px 14px 8px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  animation: floaty 4s ease-in-out infinite;
}
.float-chip .ic {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: var(--radius-full);
}
.float-chip.c1 { top: 6%; left: 0; }
.float-chip.c2 { bottom: 8%; right: 2%; animation-delay: 1.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 360px; order: 2; }
  .hero-lead { margin-inline: auto; }
  .hero-grid .hero-text { text-align: center; }
  .hero-cta, .hero-stats, .hero-badge { justify-content: center; }
  .hero-stats { justify-content: center; }
}

/* ============ GÜVEN ŞERİDİ ============ */
.trust-strip {
  border-block: 1px solid var(--color-border);
  background: var(--color-surface);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 48px;
  padding-block: 26px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}
.trust-item .material-symbols-outlined {
  font-size: 26px;
  color: var(--primary-500);
}
.trust-item .t-title { font-weight: 700; font-size: 0.92rem; }
.trust-item .t-sub { font-size: 0.78rem; color: var(--color-text-muted); }
@media (max-width: 760px) {
  .trust-inner { gap: 18px 28px; }
}

/* ============ SINAV GERİ SAYIM BANDI ============ */
.countdown-band {
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s ease;
}
.countdown--green  { background: var(--accent-green-soft); }
.countdown--yellow { background: var(--accent-amber-soft); }
.countdown--red    { background: var(--accent-pink-soft); }
.countdown--input  { background: var(--color-surface); }

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 13px;
  flex-wrap: wrap;
}

.countdown-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}
.countdown-left .material-symbols-outlined {
  font-size: 22px;
  color: var(--primary-500);
  flex-shrink: 0;
}
.countdown--green  .countdown-left .material-symbols-outlined { color: var(--accent-green-ink); }
.countdown--yellow .countdown-left .material-symbols-outlined { color: var(--accent-amber); }
.countdown--red    .countdown-left .material-symbols-outlined { color: var(--color-error); }

.countdown-text strong {
  font-weight: 800;
  font-size: 1.02rem;
}

.countdown-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.countdown-date-display {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.countdown-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-soft);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.countdown-change:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
  background: var(--primary-soft);
}
.countdown-change .material-symbols-outlined { font-size: 14px; }

.countdown-date-input,
.countdown-date-select {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 7px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-background);
  color: var(--color-text);
  transition: border-color 0.2s ease;
}
.countdown-date-input:focus,
.countdown-date-select:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(19, 200, 236, 0.15);
}

@media (max-width: 600px) {
  .countdown-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .countdown-right {
    align-self: stretch;
    justify-content: space-between;
  }
  .countdown-date-input { flex: 1; }
}

/* ============ ÜRÜN DETAY SAYFASI ============ */

/* Breadcrumb */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: 16px 0;
  flex-wrap: wrap;
}
.pd-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.pd-breadcrumb a:hover { color: var(--primary-500); }

/* Hero: iki sütun */
.pd-hero { padding: 0 0 56px; }
.pd-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Banner */
.pd-banner-wrap { position: relative; }
.pd-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-text);
  color: var(--color-bg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* Detaylar sütunu */
.pd-details { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.pd-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0;
}
.pd-description {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin: 0;
}

/* Fiyat satırı */
.pd-price-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pd-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
}
.pd-old-price {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.pd-badge-discount {
  background: var(--accent-green);
  color: var(--on-accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Meta chip'ler */
.pd-meta-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-soft);
}
.pd-chip .material-symbols-outlined { font-size: 15px; }

/* Etiketler */
.pd-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--primary-soft);
  color: var(--primary-600);
  border-radius: var(--radius-full);
}

/* Aksiyon butonları */
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pd-shopier-btn { gap: 8px; }

/* Garanti satırı */
.pd-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}
.pd-guarantee .material-symbols-outlined { font-size: 16px; color: var(--accent-green); }

/* Bölüm başlığı */
.pd-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 32px;
}
.pd-section-title .material-symbols-outlined { font-size: 24px; color: var(--primary-500); }

/* Önizleme carousel */
.pd-carousel-section { padding-top: 0; }
.pd-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.pdc-track { display: flex; }
.pdc-slide { display: none; width: 100%; }
.pdc-slide--active { display: block; }
.pdc-slide img { width: 100%; max-height: 520px; object-fit: contain; }
.pdc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.pdc-nav:hover { background: rgba(0,0,0,0.7); }
.pdc-nav--prev { left: 12px; }
.pdc-nav--next { right: 12px; }
.pdc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.pdc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: background 0.2s;
}
.pdc-dot--active { background: var(--primary-500); }

/* İlgili ürünler */
.pd-related-section { padding-top: 0; }
.pd-rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pd-rel-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pd-rel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-400);
}
.pd-rel-cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pd-rel-cover img { width: 100%; height: 100%; object-fit: cover; }
.pd-rel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
}
.pd-rel-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
}
.pd-rel-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-500);
}
.pd-rel-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.pd-rel-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
  margin-top: 4px;
}

/* Hata ekranı */
.pd-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
}
.pd-error-icon { font-size: 56px; color: var(--color-text-muted); margin-bottom: 16px; }
.pd-error h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 8px; }
.pd-error p { color: var(--color-text-soft); margin: 0 0 24px; }

/* Responsive */
@media (max-width: 900px) {
  .pd-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .pd-banner { aspect-ratio: 16/9; }
  .pd-rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pd-title { font-size: 1.35rem; }
  .pd-price { font-size: 1.6rem; }
  .pd-actions { flex-direction: column; }
  .pd-rel-grid { grid-template-columns: 1fr; }
}

/* ============ FLASHCARD SİSTEMİ ============ */

/* Sekme filtreleri */
.fc-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.fc-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 9px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-text-soft);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.fc-tab .material-symbols-outlined { font-size: 17px; }
.fc-tab:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
}
.fc-tab--active {
  border-color: var(--primary-500);
  background: var(--primary-soft);
  color: var(--primary-600);
}

/* İlerleme göstergesi */
.fc-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.fc-progress .material-symbols-outlined { font-size: 18px; color: var(--primary-500); }
.fc-seen-count {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* Kart sahnesi (3D perspektif) */
.fc-scene {
  perspective: 1000px;
  cursor: pointer;
  margin-bottom: 24px;
  border-radius: var(--radius-xl);
  outline: none;
}
.fc-scene:focus-visible {
  outline: 2px solid var(--primary-400);
  outline-offset: 4px;
}

/* Kart dış kabı */
.fc-card {
  position: relative;
  width: 100%;
  min-height: 240px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-xl);
}
.fc-card.is-flipped {
  transform: rotateY(180deg);
}

/* prefers-reduced-motion: animasyonsuz anında geçiş */
@media (prefers-reduced-motion: reduce) {
  .fc-card { transition: none; }
}

/* Kart yüzleri (ön & arka) */
.fc-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.fc-front {
  background: var(--color-surface);
}
.fc-back {
  background: var(--primary-soft);
  border-color: var(--primary-400);
  transform: rotateY(180deg);
}

.fc-face-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  align-self: flex-start;
}
.fc-back .fc-face-label { color: var(--primary-600); }

.fc-text {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
}
.fc-back .fc-text {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--color-text);
}

.fc-hint {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fc-hint::before {
  content: "touch_app";
  font-family: "Material Symbols Outlined";
  font-size: 16px;
}

/* Buton grubu */
.fc-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Tamamlandı ekranı */
.fc-complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.fc-complete-icon {
  font-size: 52px;
  color: var(--accent-amber);
  margin-bottom: 16px;
}
.fc-complete-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--color-text);
}
.fc-complete-text {
  font-size: 1rem;
  color: var(--color-text-soft);
  margin: 0 0 6px;
}
.fc-complete-sub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 0 28px;
}
.fc-complete-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Boş / hata durumu */
.fc-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 600px) {
  .fc-face { padding: 28px 20px; }
  .fc-text { font-size: 0.97rem; }
  .fc-tabs { gap: 6px; }
  .fc-tab { font-size: 0.82rem; padding: 7px 14px; }
}

/* ============ ÖZELLİKLER GRID ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}
.feature-icon .material-symbols-outlined { font-size: 28px; }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; color: var(--color-text-soft); }
/* Renkli pastel ikon varyasyonları */
.ic-purple { background: var(--accent-purple-soft); color: var(--accent-purple); }
.ic-amber  { background: var(--accent-amber-soft);  color: var(--accent-amber); }
.ic-green  { background: var(--accent-green-soft);  color: var(--accent-green); }
.ic-pink   { background: var(--accent-pink-soft);   color: var(--accent-pink); }
.ic-primary{ background: var(--primary-soft);       color: var(--primary-600); }
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features-grid { grid-template-columns: 1fr; } }

/* ============ FİLTRE SEKMELERİ ============ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tab {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tab:hover { border-color: var(--primary-400); color: var(--color-text); }
.filter-tab.active {
  background: var(--primary-500);
  border-color: var(--primary-500);
  color: var(--on-primary);
  box-shadow: var(--shadow-primary);
}

/* ============ ÜRÜN KARTLARI ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.product-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}
.product-cover img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-cover img { transform: scale(1.06); }
.product-cover .cover-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}
.product-cover .cover-fallback .material-symbols-outlined { font-size: 46px; opacity: 0.92; }
.product-cover .cover-fallback span.label {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-top: 6px;
}
.badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--primary-600);
  box-shadow: var(--shadow-sm);
}
.badge.save { background: var(--color-success); color: var(--on-accent); }
.badge.soon { background: var(--accent-amber); color: #3a2a00; }
.preview-btn {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
}
.product-card:hover .preview-btn { opacity: 1; transform: translateY(0); }
.preview-btn:hover { background: var(--color-surface); }
.preview-btn .material-symbols-outlined { font-size: 16px; }

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}
.product-cat {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-ink);
}
.product-title { font-size: 1.12rem; margin: 8px 0; }
.product-desc {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-soft);
  background: var(--color-surface-2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.product-meta .m { display: inline-flex; align-items: center; gap: 4px; }
.product-meta .material-symbols-outlined { font-size: 16px; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.price { display: flex; flex-direction: column; }
.price .now { font-size: 1.3rem; font-weight: 800; color: var(--color-text); }
.price .was {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
}
.empty-state .material-symbols-outlined { font-size: 48px; opacity: 0.5; }

/* Skeleton (yükleniyor) */
.skeleton-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
}
.skeleton-card .sk {
  background: linear-gradient(90deg, var(--color-surface-2) 25%, var(--color-border) 37%, var(--color-surface-2) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}
.skeleton-card .sk.cover { aspect-ratio: 4/3; }
.skeleton-card .sk.bar { height: 14px; border-radius: 6px; margin: 14px 20px; }
.skeleton-card .sk.bar.short { width: 50%; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ============ FAQ AKORDEON ============ */
.faq-wrap { max-width: 760px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item.open { border-color: var(--primary-400); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}
.faq-q .material-symbols-outlined {
  transition: transform 0.3s ease;
  color: var(--primary-500);
  flex-shrink: 0;
}
.faq-item.open .faq-q .material-symbols-outlined { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}
.faq-a-inner a { color: var(--primary-ink); font-weight: 600; }

/* ============ CTA BANT ============ */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--band-from), var(--band-to));
  color: var(--on-band);
  box-shadow: var(--shadow-xl);
}
.cta-band h2 { color: var(--on-band); font-size: clamp(1.6rem, 4vw, 2.6rem); }
.cta-band p { color: var(--on-band-soft); margin: 16px auto 0; max-width: 540px; }
.cta-band .btn-primary { background: var(--on-band); color: var(--band-ink); box-shadow: var(--shadow-lg); margin-top: 30px; }
.cta-band .btn-primary:hover { background: var(--on-band); transform: translateY(-2px) scale(1.02); }

/* ============ MOBİL UYGULAMA BANDI ============ */
.app-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.app-band-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary-600);
  font-size: 0.8rem;
  font-weight: 600;
}
.app-band-text h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); margin-top: 14px; }
.app-band-text p { color: var(--color-text-soft); margin-top: 12px; max-width: 460px; }
.app-band-stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.app-band-stores a { display: inline-flex; transition: transform 0.2s ease, filter 0.2s ease; }
.app-band-stores a:hover { transform: translateY(-2px); filter: brightness(1.12); }
.app-band-visual {
  display: grid;
  place-items: center;
  width: clamp(96px, 14vw, 150px);
  height: clamp(96px, 14vw, 150px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--band-from), var(--band-to));
  box-shadow: var(--shadow-xl);
}
.app-band-visual .material-symbols-outlined { font-size: clamp(52px, 8vw, 84px); color: var(--on-band); }
@media (max-width: 720px) {
  .app-band { grid-template-columns: 1fr; text-align: center; }
  .app-band-text p { margin-inline: auto; }
  .app-band-stores { justify-content: center; }
  .app-band-visual { display: none; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: 56px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  gap: 40px;
}
.footer-app-stores { display: flex; flex-direction: column; gap: 10px; }
.footer-app-stores a { display: inline-flex; transition: transform 0.2s ease, filter 0.2s ease; }
.footer-app-stores a:hover { transform: translateY(-1px); filter: brightness(1.12); }
.footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 0.92rem; color: var(--color-text-soft); transition: color 0.2s ease; }
.footer ul a:hover { color: var(--primary-600); }
.footer-about p { font-size: 0.9rem; color: var(--color-text-soft); margin-top: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ MODAL ÖRTÜSÜ ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

/* ============ MODAL (önizleme) ============ */
.modal {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-card {
  position: relative;
  width: min(680px, 100%);
  max-height: 90dvh;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.modal.open .modal-card { transform: translateY(0) scale(1); }
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-border);
}
.modal-head h3 { font-size: 1.1rem; }
.modal-body { padding: 22px; overflow-y: auto; }
.preview-stage {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 56dvh;
  margin-inline: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface-2);
}
.preview-stage img { width: 100%; height: 100%; object-fit: contain; }
.preview-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.preview-counter { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 600; }
.preview-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(15, 23, 42, 0.07);
  transform: rotate(-24deg);
}

/* ============ TOAST ============ */
.toast-host {
  position: fixed;
  z-index: 300;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: auto;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .material-symbols-outlined { font-size: 22px; flex-shrink: 0; }
.toast.success .material-symbols-outlined { color: var(--color-success); }
.toast.error   .material-symbols-outlined { color: var(--color-error); }
.toast.info    .material-symbols-outlined { color: var(--color-info); }
.toast.warning .material-symbols-outlined { color: var(--color-warning); }

/* ============ TEMA SEÇİCİ ============ */
.theme-pop {
  position: absolute;
  top: 54px; right: 0;
  z-index: 120;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr); /* 6 tema → 2 sıra × 3 */
  gap: 10px;
  min-width: 0;
}
.theme-pop.open { display: grid; }
.theme-swatch {
  width: 34px; height: 34px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.theme-swatch:hover { transform: scale(1.12); }
.theme-swatch.active { border-color: var(--color-text); transform: scale(1.12); }
.sw-ocean  { background: #13c8ec; }
/* Karanlık: yarısı marka cyan'ı, yarısı grafit zemin — "koyu ama aynı marka" mesajı */
.sw-dark   { background: linear-gradient(135deg, #2ed3f5 0 50%, #12161c 50% 100%); }
.sw-night  { background: #6366f1; }
.sw-day    { background: #f59e0b; }
.sw-forest { background: #10b981; }
.sw-energy { background: #ef4444; }
.theme-wrap { position: relative; }

/* ============ ANİMASYON YARDIMCILARI ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ SAYFA GEÇİŞLERİ ============ */
/* Sayfa içeriği yüklenirken yumuşak giriş (sert "flash" yerine) */
@keyframes so-page-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
main {
  animation: so-page-in 0.45s ease both;
}
/* Başka sayfaya geçerken yumuşak çıkış (navigation.js ekler) */
body.page-leaving {
  opacity: 0;
  transition: opacity 0.22s ease;
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  main { animation: none; }
  body.page-leaving { opacity: 1; transition: none; }
}

/* ============ AUTH SAYFASI ============ */
.auth-shell {
  min-height: calc(100dvh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
  background: linear-gradient(150deg, var(--band-from), var(--band-to));
  color: var(--on-band);
  overflow: hidden;
}
.auth-aside h2 { color: var(--on-band); font-size: 2rem; }
.auth-aside p { color: var(--on-band-soft); margin-top: 16px; max-width: 380px; }
.auth-aside ul { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.auth-aside li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.auth-aside li .material-symbols-outlined { background: rgba(255,255,255,0.18); border-radius: var(--radius-full); padding: 6px; }
.auth-main {
  display: grid;
  place-items: center;
  padding: 40px 24px;
}
.auth-form { width: min(400px, 100%); }
.auth-form h1 { font-size: 1.8rem; }
.auth-form .sub { color: var(--color-text-soft); margin-top: 8px; margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; }
.field input {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--color-border);
}
.auth-switch { text-align: center; margin-top: 22px; font-size: 0.9rem; color: var(--color-text-soft); }
.auth-switch a { color: var(--primary-600); font-weight: 600; }

/* Şifre sıfırlama panelinde e-posta ulaşmazsa gösterilen destek kutusu. */
.forgot-help {
  margin-top: 26px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}
.forgot-help-title { font-weight: 700; font-size: 0.95rem; color: var(--color-text); }
.forgot-help-text { margin-top: 6px; font-size: 0.875rem; line-height: 1.55; color: var(--color-text-muted); }
.forgot-help-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.forgot-help-actions .btn { flex: 1 1 160px; justify-content: center; font-size: 0.875rem; padding: 10px 14px; }
@media (max-width: 380px) {
  .forgot-help-actions .btn { flex: 1 1 100%; }
}
.google-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: inherit; font-weight: 600; font-size: 0.92rem;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.google-btn:hover { background: var(--color-surface-2); border-color: var(--primary-400); }
.google-g { width: 18px; height: 18px; }
@media (max-width: 880px) { .auth-shell { grid-template-columns: 1fr; } .auth-aside { display: none; } }

/* ============ PAGE HERO (alt sayfalar) ============ */
.page-hero {
  text-align: center;
  padding-block: clamp(40px, 6vw, 72px);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: var(--color-text-soft); margin-top: 14px; }

/* Arama kutusu */
.search-box {
  position: relative;
  max-width: 480px;
  margin: 28px auto 0;
}
.search-box input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
}
.search-box input:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.search-box .material-symbols-outlined {
  position: absolute;
  left: 15px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

/* ============ PROFIL / INDIRILENLERIM ============ */
.profile-section { padding-top: clamp(28px, 4vw, 48px); }

.profile-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
}

.profile-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-user-card,
.profile-status,
.downloads-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.profile-user-card {
  padding: 24px;
  text-align: center;
}

.profile-user-card .avatar {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--on-band);
  background: linear-gradient(135deg, var(--band-from), var(--band-to));
  box-shadow: var(--shadow-primary);
}

/* ============ KATEGORİ HUB (kategoriler.html) ============ */

/* Hızlı seçim çubuğu — kategoriyi konforlu şekilde "yukarıda" sunar */
.cat-quicknav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 12px;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cat-pill:hover {
  transform: translateY(-3px);
  border-color: var(--cc-accent, var(--primary-500));
  box-shadow: var(--shadow-md);
}
.cat-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cc-soft, var(--primary-soft));
  color: var(--cc-accent, var(--primary-500));
  flex-shrink: 0;
}
.cat-pill-icon .material-symbols-outlined { font-size: 22px; }
.cat-pill-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.cat-pill-label { font-size: 1rem; font-weight: 800; color: var(--color-text); }
.cat-pill-count { font-size: 0.74rem; font-weight: 600; color: var(--cc-accent, var(--primary-500)); }

/* Kategori kartları */
.category-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.cat-card {
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.3s ease, border-color 0.3s ease;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--cc-accent, var(--primary-500));
}

.cat-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Renkli banner — sınava özel gradient */
.cat-card-banner {
  position: relative;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(135deg,
      var(--cc-accent, var(--primary-500)),
      color-mix(in srgb, var(--cc-accent, var(--primary-500)), var(--accent-purple) 45%));
  overflow: hidden;
}
.cat-card-banner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.cat-card-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  color: var(--on-primary);
}
.cat-card-icon .material-symbols-outlined { font-size: 30px; }
.cat-card-count {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  /* Açık temada beyaz hap + renkli metin; koyu temada koyu hap + renkli metin. */
  background: color-mix(in srgb, var(--on-primary) 92%, transparent);
  color: var(--cc-accent, var(--primary-600));
  font-size: 0.78rem;
  font-weight: 700;
}
.cat-card-count .material-symbols-outlined { font-size: 15px; }
.cat-card-count--soon { background: color-mix(in srgb, var(--on-primary) 92%, transparent); }

.cat-card-body {
  flex: 1;
  padding: 22px 24px 18px;
}
.cat-card-tagline {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cc-accent, var(--primary-500));
  margin-bottom: 4px;
}
.cat-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.cat-card-desc {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.cat-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--cc-soft, var(--primary-soft));
  color: var(--cc-accent, var(--primary-500));
}

.cat-card-foot {
  padding: 0 24px 22px;
}
.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cc-accent, var(--primary-500));
  transition: gap 0.2s ease;
}
.cat-card-cta .material-symbols-outlined { font-size: 19px; }
.cat-card:hover .cat-card-cta { gap: 12px; }

@media (max-width: 600px) {
  .category-hub-grid { grid-template-columns: 1fr; }
  .cat-quicknav { gap: 10px; }
  .cat-pill { padding: 8px 16px 8px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .cat-card, .cat-pill, .cat-card-cta { transition: none; }
  .cat-card:hover, .cat-pill:hover { transform: none; }
}

.profile-user-card h2 { font-size: 1.15rem; }
.profile-user-card p { margin-top: 6px; color: var(--color-text-soft); font-size: 0.9rem; }

/* Oyun takma adı düzenleyici (profil yan panel) */
.profile-nick { margin-top: 18px; text-align: left; }
.profile-nick-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.profile-nick-row { display: flex; gap: 8px; }
.profile-nick-row input {
  flex: 1; min-width: 0; padding: 9px 12px; font: inherit; font-size: 0.9rem;
  border: 1.5px solid var(--color-border); border-radius: 10px;
  background: var(--color-background); color: var(--color-text);
}
.profile-nick-row input:focus-visible { outline: none; border-color: var(--primary-500); }
.profile-nick-hint { font-size: 0.72rem; color: var(--color-text-muted); margin: 6px 0 0; }

.profile-status {
  padding: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.profile-status .material-symbols-outlined {
  color: var(--primary-600);
  background: var(--primary-soft);
  border-radius: var(--radius-full);
  padding: 8px;
}

.profile-status strong { display: block; font-size: 0.92rem; }
.profile-status p { margin-top: 4px; color: var(--color-text-soft); font-size: 0.85rem; }

.profile-tabs {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.profile-tab {
  border: 0;
  background: transparent;
  color: var(--color-text-soft);
  font: inherit;
  font-weight: 600;
  padding: 11px 14px;
  border-bottom: 2px solid transparent;
  cursor: default;
}

.profile-tab.active {
  color: var(--color-text);
  border-bottom-color: var(--primary-500);
}

.downloads-panel { padding: 22px; }

.downloads-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.downloads-head h3 { font-size: 1.15rem; }

.coming-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-amber);
  background: var(--accent-amber-soft);
}

.downloads-sub {
  margin-top: 8px;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.downloads-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.download-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: grid;
  gap: 8px;
  background: var(--color-surface-2);
}

.download-item h4 { font-size: 1rem; }
.download-meta,
.download-price { font-size: 0.86rem; color: var(--color-text-soft); }

.download-item .btn {
  justify-self: start;
  margin-top: 4px;
}

.download-item .btn[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}

/* İki okuma aksiyonu (kaldığın yer + baştan) yan yana */
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.download-actions .btn { margin-top: 0; }
@media (max-width: 420px) {
  .download-actions { flex-direction: column; align-items: stretch; }
  .download-actions .btn { justify-content: center; }
}

.downloads-empty {
  text-align: center;
  padding: 28px 16px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
}

.downloads-empty .material-symbols-outlined {
  font-size: 36px;
  color: var(--color-text-muted);
}

.downloads-empty h4 { margin-top: 10px; }
.downloads-empty p { margin-top: 6px; color: var(--color-text-soft); margin-bottom: 14px; }

@media (max-width: 920px) {
  .profile-shell { grid-template-columns: 1fr; }
}

/* ---- Notlar kartı örnek-sayfa galerisi + lightbox (notlar-preview.js) ---- */
.shopier-card__gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface);
}
.scg__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  cursor: zoom-in;
  background: var(--color-surface-2);
}
.scg__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.scg__open:focus-visible { outline: 2px solid var(--primary-500); outline-offset: -2px; }
.scg__zoom {
  position: absolute;
  right: 8px;
  top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: color-mix(in srgb, #0f172a 55%, transparent);
  color: #fff;
  pointer-events: none;
}
.scg__zoom .material-symbols-outlined { font-size: 18px; }
/* Ana sayfa ürün ızgarası (index.html #notlar) — 4 PDF kartı.
   Kolon sayısı 4 -> 2 -> 1 iner; 3 kolon KASITLI OLARAK YOK: 4 kart 3+1 dizilince
   son kart tek başına kalıyor. max-width kart genişliğini 272px'e sabitler
   (4x272 + 3x20 = 1148 = .container'ın 1160px iç genişliğine sığar). */
.urun-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 564px;
  margin: 0 auto;
}
@media (min-width: 1180px) {
  .urun-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1148px; }
}
@media (max-width: 620px) {
  .urun-grid { grid-template-columns: minmax(0, 1fr); max-width: 300px; }
}
/* Video ders kartı — ızgaranın altında, tek ve ortalanmış.
   Genişlik .urun-grid'in kart genişliğiyle birebir aynı tutulur (272 / 300px);
   ızgara kırılımı değişirse buradaki değer de değişmeli, yoksa kart kayar. */
.urun-video { max-width: 272px; margin: 30px auto 0; }
@media (max-width: 620px) {
  .urun-video { max-width: 300px; }
}
.urun-video-lead {
  margin: 0 0 12px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
/* Video kartı posteri (index.html) — galeri DEĞİL: pdf-config kaydı olmadığı için
   notlar-preview.js bu kabı atlar, tüm görsel <a> olarak /video'ya gider.
   Ortadaki rozet "bu bir video" sinyali; .scg__zoom ise galeri kartlarındaki büyüteç. */
a.shopier-card__gallery { display: block; text-decoration: none; }
.scg__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: color-mix(in srgb, #0f172a 62%, transparent);
  color: #fff;
  pointer-events: none;
  transition: background .15s ease, transform .15s ease;
}
.scg__play .material-symbols-outlined { font-size: 32px; }
a.shopier-card__gallery:hover .scg__play {
  background: var(--primary-500);
  color: var(--on-primary);
  transform: translate(-50%, -50%) scale(1.06);
}
a.shopier-card__gallery:focus-visible { outline: 2px solid var(--primary-500); outline-offset: -2px; }
.scg__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: color-mix(in srgb, #0f172a 50%, transparent);
  color: #fff;
  transition: background .15s ease;
}
.scg__nav:hover { background: color-mix(in srgb, #0f172a 74%, transparent); }
.scg__nav:focus-visible { outline: 2px solid #fff; outline-offset: 1px; }
.scg__nav--prev { left: 8px; }
.scg__nav--next { right: 8px; }
.scg__nav .material-symbols-outlined { font-size: 22px; }
.scg__counter {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  padding: 3px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, #0f172a 60%, transparent);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  pointer-events: none;
}

.note-lb {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.note-lb.open { display: flex; }
.note-lb__overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #0f172a 82%, transparent);
}
.note-lb__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.note-lb__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}
.note-lb__title { margin: 0; font-size: 1rem; font-weight: 700; }
.note-lb__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-2);
  overflow: hidden;
}
.note-lb__stage img { max-width: 100%; max-height: 64vh; object-fit: contain; display: block; }
.note-lb__wm {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 9px;
  border-radius: 6px;
  background: color-mix(in srgb, #0f172a 55%, transparent);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  pointer-events: none;
}
.note-lb__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px;
}
.note-lb__counter { min-width: 60px; text-align: center; font-size: .85rem; color: var(--color-text-soft); }
.note-lb__nav .icon-btn[disabled] { opacity: .4; cursor: default; }
.note-lb__foot { padding: 0 16px 16px; }
.note-lb__foot .btn { width: 100%; justify-content: center; text-decoration: none; }

/* ============ FOOTER SİTE BAĞLANTILARI (statik iç bağlantı grafiği — SEO/GEO) ============ */
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; padding-bottom: 16px; font-size: .9rem; }
.footer-links a { color: var(--color-text-soft); text-decoration: none; }
.footer-links a:hover { color: var(--primary-500); }

/* ============ YARIŞMA DUYURU ŞERİDİ (promo-banner.js) ============ */
/* Navbar'ın üstünde, tam genişlik. Tema token'lı gradient → aktif temanın rengini alır. */
.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 7px 44px; /* sağ/sol: kapatma butonuna yer */
  background: linear-gradient(90deg, var(--primary-600), var(--primary-500), var(--primary-600));
  background-size: 200% 100%;
  color: var(--on-primary);
  font-size: .92rem;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
  /* Giriş animasyonu (yukarıdan aç) */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .28s ease, opacity .28s ease;
  animation: promoShimmer 6s linear infinite;
}
.promo-banner--in { max-height: 120px; opacity: 1; }
.promo-banner--closing { max-height: 0 !important; opacity: 0 !important; }

/* "Bugün" durumunda hafif nabız — dikkat çeker, göz yormaz. */
.promo-banner--today { animation: promoShimmer 6s linear infinite, promoPulse 2.4s ease-in-out infinite; }

.promo-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--on-primary);
  text-decoration: none;
  max-width: 100%;
}
.promo-banner__emoji { font-size: 1.1rem; flex: 0 0 auto; }
.promo-banner__text { overflow: hidden; text-overflow: ellipsis; }
.promo-banner__text strong { font-weight: 800; }
.promo-banner__arrow {
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
  transition: transform .18s ease;
}
.promo-banner__link:hover .promo-banner__arrow { transform: translateX(3px); }

.promo-banner__close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  color: var(--on-primary);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease;
}
.promo-banner__close:hover { background: rgba(255, 255, 255, .3); }

@keyframes promoShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(0, 0, 0, .18); }
  50% { box-shadow: 0 2px 20px var(--primary-500); }
}

@media (max-width: 480px) {
  .promo-banner { font-size: .82rem; padding: 7px 40px; gap: 4px; }
  .promo-banner__emoji { font-size: 1rem; }
}

/* Hareket azaltma tercihi: animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
  .promo-banner,
  .promo-banner--today { animation: none; }
  .promo-banner { transition: opacity .2s ease; }
}

/* ============ SSS AKORDEON (details/summary — JS'siz çalışır) ============
   Eski .faq-item/.faq-q akordeonu (index, destek, net-hesaplama) JS'e bağlıdır
   ve yerinde kalır. /sss ve gelecekteki SSS blokları bu native sürümü kullanır:
   JavaScript kapalıyken de açılır ve arama motoru içeriği görür. */

/* Kategori kısayolları */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 40px;
}
.faq-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.faq-nav a:hover,
.faq-nav a:focus-visible {
  border-color: var(--primary-500);
  background: var(--primary-soft);
  color: var(--primary-ink);
  transform: translateY(-2px);
}
.faq-nav .material-symbols-outlined { font-size: 18px; color: var(--primary-500); }

/* Soru grupları */
.faq-group { max-width: 760px; margin-inline: auto; scroll-margin-top: 96px; }
.faq-group + .faq-group { margin-top: 44px; }
.faq-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
}
.faq-group-title .material-symbols-outlined { font-size: 22px; color: var(--primary-500); }

/* Tek soru */
.faq-d {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  margin-bottom: 12px;
  overflow: hidden;
  scroll-margin-top: 96px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-d[open] { border-color: var(--primary-400); box-shadow: var(--shadow-md); }
.faq-d:target { border-color: var(--primary-500); box-shadow: var(--shadow-md); }
.faq-d > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
}
.faq-d > summary::-webkit-details-marker { display: none; }
.faq-d > summary::marker { content: ""; }
.faq-d > summary:focus-visible { outline: 2px solid var(--primary-500); outline-offset: -2px; }
.faq-d > summary .material-symbols-outlined {
  color: var(--primary-500);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-d[open] > summary .material-symbols-outlined { transform: rotate(45deg); }
.faq-d-a {
  padding: 0 20px 18px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.faq-d-a p { margin: 0 0 10px; }
.faq-d-a p:last-child { margin-bottom: 0; }
.faq-d-a a { color: var(--primary-ink); font-weight: 600; }

/* ============ SATIŞ SAYFASI BLOKLARI (/notlar) ============ */
.price-list {
  max-width: 720px;
  margin-inline: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 4px 16px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-border);
}
.price-main { min-width: 0; }
.price-row:last-child { border-bottom: none; }
.price-row--best { background: var(--primary-soft); }
.price-name { font-weight: 700; font-size: 0.98rem; color: var(--color-text); }
.price-sub { display: block; font-size: 0.8rem; font-weight: 500; color: var(--color-text-muted); margin-top: 3px; }
.price-flag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  color: var(--on-accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
}
.price-amount { grid-column: 2; text-align: right; white-space: nowrap; font-weight: 800; font-size: 1.05rem; color: var(--color-text); }
.price-amount .was {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
@media (max-width: 400px) {
  .price-row { padding: 14px; gap: 10px; }
  .price-name { font-size: 0.92rem; }
  .price-amount { font-size: 0.98rem; }
}

/* Teslimat adımları */
.steps { display: grid; gap: 10px; max-width: 720px; margin-inline: auto; }
.step {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}
.step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-ink);
  font-weight: 800;
  font-size: 0.95rem;
}
/* Uzun e-posta adresleri 320px'te satırı taşırmasın */
.step > div { min-width: 0; }
.step h3 { font-size: 1rem; margin: 4px 0 0; }
.step p { margin: 6px 0 0; color: var(--color-text-soft); font-size: 0.92rem; line-height: 1.6; overflow-wrap: anywhere; }
.step p a { color: var(--primary-ink); font-weight: 600; }

/* Uyarı kutusu */
.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 720px;
  margin: 14px auto 0;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-warning);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.notice .material-symbols-outlined { color: var(--color-warning); flex-shrink: 0; }

/* İşaretli özellik listesi */
.check-list {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.check-list .material-symbols-outlined { color: var(--color-success); font-size: 20px; flex-shrink: 0; }
/* Kisa etiketli iki sutunlu varyant (/notlar) — dikeyde yari yer kaplar */
.check-list--grid { grid-template-columns: 1fr 1fr; gap: 9px 14px; }
.check-list--grid li { font-size: 0.88rem; line-height: 1.45; }
.check-list--grid .material-symbols-outlined { font-size: 18px; }
@media (max-width: 330px) { .check-list--grid { grid-template-columns: 1fr; } }

/* Sayfa altı künye (son güncelleme + iletişim) */
.page-meta {
  max-width: 760px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.page-meta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 10px;
}
.page-meta-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  color: var(--primary-ink);
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.page-meta-links a:hover { text-decoration: underline; }
.page-meta-links .material-symbols-outlined { font-size: 18px; }

/* ============ /notlar PANELİ ============
   Tasarım kararı: sayfa dikeyde uzamasın diye ağır olan her şey bir kontrolün
   arkasında durur. Tek ders seçici hem örnek şeridini hem konu kartını sürer;
   30 örnek sayfa + 3 içindekiler böylece ~1,5 ekrana sığar.
   Ders renkleri index.html'deki kodlamayla aynı (bilgi taşır, süs değil):
   Tarih=amber, Coğrafya=yeşil, Vatandaşlık=mor. */

.ornek-panel { --ders: var(--primary-500); --ders-soft: var(--primary-soft); }
.ornek-panel[data-ders="tarih"]       { --ders: var(--accent-amber);  --ders-soft: var(--accent-amber-soft); }
.ornek-panel[data-ders="cografya"]    { --ders: var(--accent-green);  --ders-soft: var(--accent-green-soft); }
.ornek-panel[data-ders="vatandaslik"] { --ders: var(--accent-purple); --ders-soft: var(--accent-purple-soft); }
.ornek-panel[data-ders="turkce"]      { --ders: var(--accent-pink);   --ders-soft: var(--accent-pink-soft); }

/* Ders seçici — segment kontrolü */
.ders-secici {
  display: flex;
  gap: 6px;
  padding: 5px;
  max-width: 460px;
  margin: 0 auto 20px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
}
.ders-tab {
  flex: 1;
  padding: 9px 8px;
  border: none;
  border-radius: var(--radius-full);
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.ders-tab:hover { color: var(--color-text); }
.ders-tab[aria-selected="true"] {
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.ders-tab:focus-visible { outline: 2px solid var(--ders); outline-offset: 2px; }

/* Örnek sayfa şeridi — yatay kaydırma, dikeyde sabit yükseklik */
.ornek-strip {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 2px 2px 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ornek-item { flex: 0 0 auto; scroll-snap-align: start; }
.ornek-btn {
  display: block;
  width: 150px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--ders);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ornek-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ornek-btn:focus-visible { outline: 2px solid var(--ders); outline-offset: 2px; }
.ornek-btn img { display: block; width: 100%; height: 138px; object-fit: cover; object-position: top; }
.ornek-cap {
  display: block;
  padding: 8px 10px 10px;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text-soft);
  min-height: 42px;
}
.ornek-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ---- Örnek video bölümü (#ornek-video) ----
   Klipler dikey (3:4) çekildiği için sahne portre; liste yanında/altında durur.
   Poster Bunny'nin thumbnail.jpg'i — ayrı görsel varlığı repoya girmez. */
.ovid {
  display: grid;
  gap: 18px;
  max-width: 660px;
  margin-inline: auto;
}
.ovid-stage {
  position: relative;
  width: min(260px, 74vw);
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--neutral-900);
  box-shadow: var(--shadow-md);
}
.ovid-video { display: block; width: 100%; height: 100%; object-fit: contain; background: var(--neutral-900); }
.ovid-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  border: none;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: background 0.2s ease;
}
.ovid-play:hover { background: rgba(0, 0, 0, 0.4); }
.ovid-play:focus-visible { outline: 3px solid var(--primary-400); outline-offset: -4px; }
.ovid-play .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: var(--primary-500);
  color: var(--on-primary);
  font-size: 34px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.ovid[data-playing] .ovid-play { display: none; }

.ovid-now { margin: 0 0 10px; font-size: 0.92rem; font-weight: 700; color: var(--color-text); text-align: center; }
.ovid-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ovid-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 7px 10px 7px 7px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.ovid-item:hover { transform: translateX(2px); border-color: var(--primary-400); }
.ovid-item:focus-visible { outline: 2px solid var(--primary-500); outline-offset: 2px; }
.ovid-item.is-active { border-color: var(--primary-500); background: var(--primary-soft); }
.ovid-item img {
  flex: 0 0 auto;
  width: 48px;
  height: 64px;
  border-radius: var(--radius-sm, 10px);
  object-fit: cover;
  background: var(--color-surface-2);
}
.ovid-item-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ovid-item-txt strong { font-size: 0.88rem; font-weight: 700; color: var(--color-text); line-height: 1.3; }
.ovid-item-txt span { font-size: 0.78rem; color: var(--color-text-muted); }
.ovid-item-ico { flex: 0 0 auto; font-size: 22px; color: var(--primary-ink); }
.ovid-note { margin: 12px 0 0; font-size: 0.82rem; color: var(--color-text-muted); }
.ovid-note a { color: var(--primary-ink); font-weight: 700; }

@media (min-width: 700px) {
  .ovid { grid-template-columns: 260px 1fr; align-items: start; gap: 22px; }
  .ovid-stage { margin-inline: 0; }
  .ovid-now { text-align: left; }
}

/* Konular — içindekiler kartı */
.konu-ayrac {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 18px auto 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.konu-ayrac::before, .konu-ayrac::after { content: ""; flex: 1; height: 1px; background: var(--color-border); }
.konu-karti {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  max-width: 560px;
  margin-inline: auto;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--ders);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.konu-btn {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm, 10px);
  background: var(--color-surface-2);
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}
.konu-btn img { width: 100%; height: 172px; object-fit: cover; object-position: top; }
.konu-btn:focus-visible { outline: 2px solid var(--ders); outline-offset: 2px; }
.konu-zoom {
  position: absolute;
  right: 6px; bottom: 6px;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  color: var(--ders);
}
.konu-zoom .material-symbols-outlined { font-size: 19px; }
.konu-text h3 { font-size: 1rem; margin: 0; }
.konu-text p { margin: 8px 0 0; font-size: 0.88rem; line-height: 1.55; color: var(--color-text-soft); }
@media (max-width: 460px) {
  .konu-karti { grid-template-columns: 104px 1fr; gap: 14px; padding: 14px; }
  .konu-btn img { height: 140px; }
}

/* Ödeme yolları — teslimat adımının içinde */
.odeme-yollari { display: grid; gap: 8px; margin-top: 10px; }
.odeme-yol {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 9px 11px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  font-size: 0.87rem;
  line-height: 1.5;
  color: var(--color-text-soft);
  overflow-wrap: anywhere;
}
.odeme-yol strong { color: var(--color-text); }
.odeme-yol .material-symbols-outlined { font-size: 19px; color: var(--primary-500); flex-shrink: 0; }

/* SSS kategori çipleri */
.faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto 18px;
}
.faq-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-text-soft);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-chip:hover { border-color: var(--primary-400); color: var(--color-text); }
.faq-chip:focus-visible { outline: 2px solid var(--primary-500); outline-offset: 2px; }
.faq-chip.is-on {
  border-color: var(--primary-500);
  background: var(--primary-soft);
  color: var(--primary-ink);
}
.faq-chip-n {
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  opacity: 0.65;
}

/* Panelde SSS satırları daha sıkı: 20 soru kapalıyken ~1 ekran tutsun */
#faqList .faq-d { margin-bottom: 7px; }
#faqList .faq-d > summary { padding: 11px 14px; font-size: 0.9rem; gap: 12px; }
#faqList .faq-d-a { padding: 0 14px 13px; font-size: 0.89rem; line-height: 1.62; }

/* Fiyat satırında rakamlar hizalansın */
.price-amount { font-variant-numeric: tabular-nums; }

/* Panelde bölümler arası nefes — .section'ın büyük boşluğu burada gereksiz */
.section--sik { padding-block: clamp(22px, 3.6vw, 44px); }
.section--sik .section-head { margin-bottom: 16px; }
.section--sik .section-title { font-size: clamp(1.3rem, 3.4vw, 1.8rem); margin-top: 0; }
.section--sik .section-subtitle { font-size: 0.9rem; margin-top: 6px; }

@media (prefers-reduced-motion: reduce) {
  .ornek-btn, .ders-tab, .faq-chip { transition: none; }
  .ornek-btn:hover { transform: none; }
}


/* ============ ÜRÜN BAZLI SATIN ALMA BAĞLANTILARI (/notlar) ============
   Her fiyat satırının altında o ürüne özel kısa yollar. Play / App Store
   rozetleri YALNIZCA uygulama içi satın alması CANLI olan üründe basılır —
   henüz yayında olmayan bir ürüne mağaza linki vermek, müşteriyi uygulamada
   bulamayacağı bir şeyi aramaya gönderir. */
.urun-linkler {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.ul-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.ul-pill .material-symbols-outlined { font-size: 15px; }
.ul-pill:hover,
.ul-pill:focus-visible {
  border-color: var(--primary-500);
  background: var(--primary-soft);
  color: var(--primary-ink);
}
.ul-pill:focus-visible { outline: 2px solid var(--primary-500); outline-offset: 1px; }
.ul-pill--shopier {
  border-color: var(--primary-500);
  background: var(--primary-soft);
  color: var(--primary-ink);
}
.ul-pill--iban {
  border-color: var(--accent-green);
  color: var(--accent-green-ink);
}
.ul-pill--iban:hover,
.ul-pill--iban:focus-visible {
  border-color: var(--accent-green);
  background: var(--accent-green-soft);
  color: var(--accent-green-ink);
}
.ul-note {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
/* Mağaza fiyat farkı uyarısı — fiyat tablosunun altında, tek ve genel */
.kdv-not {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  max-width: 720px;
  margin: 12px auto 0;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  color: var(--color-text-soft);
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: left;
}
.kdv-not strong { color: var(--color-text); }
.kdv-not .material-symbols-outlined { font-size: 17px; color: var(--primary-500); flex-shrink: 0; }
/* Mağaza fiyat karşılaştırma tablosu (/notlar) — Shopier · App Store · Google Play.
   Dar ekranda tablo kendi içinde yatay kayar; sayfa gövdesi kaymaz. */
.magaza-fiyat { max-width: 720px; margin: 10px auto 0; overflow-x: auto; }
.magaza-fiyat table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 0.8rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.magaza-fiyat caption {
  caption-side: bottom;
  text-align: left;
  padding: 7px 2px 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}
.magaza-fiyat th,
.magaza-fiyat td {
  padding: 8px 10px;
  text-align: right;
  border-bottom: 1px solid var(--color-border);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--color-text-soft);
}
.magaza-fiyat thead th {
  background: var(--color-surface-2);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.76rem;
}
.magaza-fiyat tbody th {
  text-align: left;
  white-space: normal;
  font-weight: 700;
  color: var(--color-text);
}
.magaza-fiyat thead th:first-child { text-align: left; }
.magaza-fiyat tbody tr:last-child th,
.magaza-fiyat tbody tr:last-child td { border-bottom: none; }
.magaza-fiyat .mf-alt {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.magaza-fiyat .mf-kdv { font-size: 0.68rem; font-weight: 600; color: var(--color-text-muted); }
/* Mağaza şeridi — fiyat tablosunun altında, TÜM ürünler için tek ve ortak.
   Ürün başına Play/App Store çipi (.ul-pill) yalnız uygulama içi satışı CANLI
   olan üründe basılır; bu şerit ise "aldığın her şey mobilde de açılır" mesajıdır. */
.app-serit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  max-width: 720px;
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.app-serit-txt {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex: 1 1 260px;
  min-width: 0;
  text-align: left;
}
.app-serit-txt p { margin: 0; font-size: 0.82rem; line-height: 1.5; color: var(--color-text-soft); }
.app-serit-txt strong { color: var(--color-text); }
.app-serit-txt .material-symbols-outlined { font-size: 19px; color: var(--primary-500); flex-shrink: 0; }
.app-serit-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.app-serit-badges img { display: block; height: 38px; width: auto; max-width: 100%; }
@media (max-width: 560px) {
  .app-serit { justify-content: center; }
  .app-serit-badges { width: 100%; justify-content: center; }
}
@media (max-width: 360px) {
  .app-serit-badges img { height: 34px; }
}
/* Vurgulu satırda (3'lü Set) çipler zeminden ayrışsın */
.price-row--best .ul-pill { background: var(--color-surface); }
.price-row--best .ul-pill--shopier { background: var(--color-surface); }

@media (max-width: 360px) {
  .ul-pill { padding: 5px 8px; font-size: 0.7rem; }
}
@media (prefers-reduced-motion: reduce) { .ul-pill { transition: none; } }

/* ============ IBAN İLE ÖDEME KUTUSU (/notlar) ============
   Mevcut .modal / .modal-card iskeletini kullanır; buradakiler yalnız gövde.
   Amaç: müşteri IBAN'ı sormak için kimseyi beklemesin, anında ödesin. */
.iban-urun { font-size: 0.9rem; color: var(--color-text-soft); margin: 0 0 14px; }
.iban-urun strong { color: var(--color-text); }

.iban-kutu {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--primary-500);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
}
.iban-satir { display: grid; gap: 2px; }
.iban-etiket {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.iban-deger { font-size: 0.95rem; font-weight: 700; color: var(--color-text); }
.iban-no {
  font-size: clamp(1rem, 4.4vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  overflow-wrap: anywhere;
  /* Kopyala butonu çalışmazsa tek dokunuşla tamamı seçilebilsin */
  user-select: all;
  -webkit-user-select: all;
  cursor: text;
  border-radius: 6px;
}
.iban-no:focus-visible { outline: 2px solid var(--primary-500); outline-offset: 2px; }
.iban-kutu .btn { margin-top: 2px; justify-content: center; }

.iban-adim {
  margin: 18px 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}
.iban-aksiyon { display: flex; flex-wrap: wrap; gap: 10px; }
.iban-aksiyon .btn { flex: 1 1 160px; justify-content: center; }
/* Tek aksiyon kaldığında (yalnız Instagram) buton tam genişlik alsın */
.iban-aksiyon .btn:only-child { flex: 1 1 100%; }
.iban-sure {
  margin: 14px 0 0;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
