/* ============================================================
   LisansMarket - Ana Stiller
   Dark Mode (varsayılan) + Light Mode
   ============================================================ */

:root {
  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --primary-grad: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1600px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow: 0 10px 40px rgba(0,0,0,.35);
  --gold: #d4af6a;
  --gold-2: #f1d9a6;
  --gold-grad: linear-gradient(135deg, #f1d9a6, #d4af6a);
}

/* ---------- DARK (default) ---------- */
:root,
[data-theme="dark"] {
  --bg: #050a18;
  --bg-2: #0a1124;
  --surface: #0e1730;
  --surface-2: #121d3a;
  --surface-hover: #16234a;
  --border: rgba(255,255,255,.07);
  --border-strong: rgba(255,255,255,.12);
  --text: #eef2ff;
  --text-2: #aab3cf;
  --text-3: #6b748f;
  --glow: radial-gradient(60% 60% at 70% 20%, rgba(59,130,246,.20), transparent 70%);
}

/* ---------- LIGHT ---------- */
[data-theme="light"] {
  --bg: #f4f6fb;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f7f9fd;
  --surface-hover: #eef2fb;
  --border: rgba(15,23,42,.08);
  --border-strong: rgba(15,23,42,.14);
  --text: #0f172a;
  --text-2: #475069;
  --text-3: #8a93a8;
  --shadow: 0 10px 30px rgba(15,23,42,.08);
  --glow: radial-gradient(60% 60% at 70% 20%, rgba(59,130,246,.10), transparent 70%);
}

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

html, body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font);
  background:
    radial-gradient(50% 38% at 85% -5%, rgba(59,130,246,.14), transparent 70%),
    radial-gradient(40% 32% at 10% 8%, rgba(212,175,106,.07), transparent 70%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Yumuşak geçişler (premium his) */
a, button, .btn, .product-card, .cat-card, .blog-card, .testimonial-card, .cc, .acc-nav a, .sb, .soc-btn, .info-list li {
  transition: color .2s, background-color .2s, border-color .2s, box-shadow .25s, transform .25s, filter .2s;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(94%, var(--container)); max-width: 100%; margin: 0 auto; padding: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; flex-shrink: 0; }
.logo img { flex-shrink: 0; }
.logo .logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--primary-grad); display: grid; place-items: center;
  color: #fff; font-size: 20px;
}
.logo small { display: block; font-size: 10px; font-weight: 500; color: var(--text-3); }
.logo .accent { color: var(--primary); }

.main-nav {
  display: flex; align-items: center; gap: 2px; margin: 0 auto; min-width: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 7px; box-shadow: var(--shadow);
}
.main-nav > a, .nav-drop-toggle {
  color: var(--text-2); font-weight: 600; font-size: 13.5px; white-space: nowrap;
  padding: 8px 10px; border-radius: 999px; line-height: 1; transition: .15s;
}
.main-nav > a:hover, .nav-dropdown:hover .nav-drop-toggle { color: var(--text); background: var(--surface-hover); }
.main-nav > a.active { color: #fff; background: var(--primary-grad); }

/* ---------- Kategoriler dropdown ---------- */
.nav-dropdown { position: relative; display: flex; }
.nav-drop-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-drop-toggle .caret { font-size: 11px; transition: transform .2s; }
.nav-dropdown:hover .caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 360px; background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 16px; box-shadow: var(--shadow); padding: 10px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: .18s; z-index: 200;
}
.nav-drop-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-dropdown:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-item { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 11px; color: var(--text-2); font-size: 14px; font-weight: 500; }
.nav-drop-item:hover { background: var(--surface-hover); color: var(--text); }
.ndi-icon { width: 30px; height: 30px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.ndi-icon img { width: 28px; height: 28px; object-fit: contain; }
.ndi-name { line-height: 1.2; }

/* Basit "Daha" alt menüsü (tek sütun) */
.nav-drop-menu.simple { grid-template-columns: 1fr; width: 210px; }
.nav-drop-menu.simple .nav-drop-item { padding: 10px 12px; }

/* ---------- Masaüstü kategori şeridi (yatay renkli pill'ler) ---------- */
.cat-strip-wrap {
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(14px);
}
.cat-strip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 6px 16px 6px 6px; border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cpc) 88%, #000), color-mix(in srgb, var(--cpc2) 88%, #000));
  border: 1px solid color-mix(in srgb, #fff 22%, transparent);
  color: #fff; font-weight: 600; font-size: 13.5px; white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
  transition: transform .18s, filter .18s;
}
.cat-pill:hover { filter: brightness(1.09); transform: translateY(-2px); }
.cp-ico {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,.22); display: grid; place-items: center;
  font-size: 16px; line-height: 1; color: #fff; overflow: hidden;
}
.cp-ico.has-img { background: #fff; }
.cp-ico img { width: 100%; height: 100%; object-fit: cover; }
.cp-name { line-height: 1; }

/* Mobilde şerit gizli — mobil görünüm olduğu gibi kalır */
@media (max-width: 1100px) { .cat-strip-wrap { display: none; } }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); display: grid; place-items: center;
  position: relative; transition: .2s;
}
.icon-btn:hover { background: var(--surface-hover); }
.cart-badge {
  position: absolute; top: -6px; right: -6px; background: var(--primary);
  color: #fff; font-size: 11px; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 9px; display: grid; place-items: center; padding: 0 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 12px 22px; border-radius: 12px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: .2s; white-space: nowrap;
}
.btn-primary { background: var(--primary-grad); color: #fff; box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 38%, transparent); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(59,130,246,.45); }
.btn-ghost { background: var(--surface); border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: var(--surface-hover); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 60px 0 40px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: var(--glow); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 52px; line-height: 1.08; font-weight: 800; letter-spacing: -1px; }
.hero h1 .grad {
  background: var(--primary-grad); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { color: var(--text-2); font-size: 18px; margin: 18px 0 26px; max-width: 460px; }

.trust-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-item {
  display: flex; align-items: center; gap: 10px; background: var(--surface);
  border: 1px solid var(--border); padding: 12px 16px; border-radius: 12px;
}
.trust-item .ti-icon {
  width: 34px; height: 34px; border-radius: 9px; background: rgba(59,130,246,.15);
  color: var(--primary); display: grid; place-items: center; font-size: 16px;
}
.trust-item b { font-size: 14px; }
.trust-item span { display: block; font-size: 12px; color: var(--text-3); }

.hero-visual {
  position: relative; min-height: 340px; border-radius: 24px;
  background:
    radial-gradient(70% 90% at 60% 40%, rgba(59,130,246,.25), transparent 70%),
    linear-gradient(180deg, rgba(37,99,235,.12), transparent);
  display: grid; place-items: center; border: 1px solid var(--border);
}
.hero-boxes { display: flex; gap: 14px; align-items: flex-end; }
.hero-box {
  width: 120px; height: 160px; border-radius: 14px; background: var(--surface-2);
  border: 1px solid var(--border-strong); box-shadow: var(--shadow);
  display: grid; place-items: center; text-align: center; padding: 14px; font-weight: 700;
}
.hero-box.lg { width: 150px; height: 200px; transform: translateY(-12px); }
.hero-box span { font-size: 26px; display: block; margin-bottom: 8px; }
.hero-image { width: 100%; height: auto; max-height: 460px; object-fit: contain; display: block; }

.hero-visual:has(.hero-slider), .hero-visual:has(.hero-image) { background: none; border: none; min-height: 0; padding: 0; }

/* ---------- Hero Slider ---------- */
.hero-full { padding: 28px 0 10px; }
.hero-full .hero-visual { width: 100%; }
.hero-slider.wide .hero-slides { aspect-ratio: auto; max-height: 640px; }
.hero-slider.wide .hero-slide { position: absolute; inset: 0; }
.hero-slider.wide .hero-slide.active { position: relative; }
.hero-slider.wide .hero-slide img,
.hero-slider.wide .hero-slide video { width: 100%; height: auto; max-height: 640px; object-fit: cover; display: block; }
.hero-empty { text-align: center; padding: 30px 0; }
.hero-empty .hero-boxes { justify-content: center; margin-top: 18px; }

/* ---------- Ara banner ---------- */
.hero-slider.hero-mobile { display: none; }
.promo-banner.pb-mobile { display: none; }
.promo-banner { display: block; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); max-height: 180px; }
.promo-banner img { width: 100%; height: 100%; max-height: 180px; object-fit: cover; display: block; }
a.promo-banner { transition: transform .2s, box-shadow .2s; }
a.promo-banner:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hero-slider { position: relative; width: 100%; border-radius: 20px; overflow: hidden; }
.hero-slides { position: relative; width: 100%; aspect-ratio: 16 / 11; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease;
  display: grid; place-items: center; pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img, .hero-slide video { width: 100%; height: 100%; object-fit: contain; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--surface) 80%, transparent); backdrop-filter: blur(6px);
  color: var(--text); font-size: 24px; line-height: 1; display: grid; place-items: center;
  cursor: pointer; transition: .15s; opacity: 0;
}
.hero-slider:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.hero-arrow.prev { left: 12px; }
.hero-arrow.next { right: 12px; }
.hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(120,140,180,.45); cursor: pointer; transition: .2s; padding: 0; }
.hero-dot.active { background: var(--primary); width: 24px; border-radius: 5px; }

/* ---------- Section ---------- */
.section { padding: 30px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.section-head h2 { font-size: 24px; display: flex; align-items: center; gap: 10px; }
.section-head a { color: var(--text-2); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.section-head a:hover { color: var(--primary); }

/* ---------- Category Grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.cat-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: .2s; position: relative;
}
.cat-card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-thumb {
  aspect-ratio: 1 / 1; overflow: hidden; display: grid; place-items: center;
  background: linear-gradient(160deg, #1b2a52, #0e1730);
}
[data-theme="light"] .cat-thumb { background: linear-gradient(160deg, #e8eefc, #f4f6fb); }
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-thumb .cat-ph { font-size: 64px; }
.cat-body { display: flex; align-items: center; gap: 8px; padding: 14px 16px; }

/* Anasayfa kategori: 6'şarlı 2 sıra */
.cat-grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1100px) { .cat-grid-6 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .cat-grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .cat-grid-6 { grid-template-columns: repeat(2, 1fr); } }

/* Dikkat çekici "Tümünü Gör" butonu */
.see-all-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 999px;
  background: var(--primary-grad, linear-gradient(135deg,#3b82f6,#2563eb));
  color: #fff !important; font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 40%, transparent);
  transition: transform .15s, filter .15s;
}
.see-all-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.cat-card .cat-name { font-weight: 700; font-size: 15px; line-height: 1.3; }
.cat-card .cat-sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.cat-card .cat-arrow {
  margin-left: auto; width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-2); display: grid; place-items: center; color: var(--text-3);
  flex-shrink: 0; transition: transform .18s, background .18s, color .18s;
}
.cat-card .cat-arrow svg { width: 16px; height: 16px; }
.cat-card:hover .cat-arrow { background: var(--primary); color: #fff; transform: translateX(3px); }

/* ---------- Product Cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.product-grid.cols-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* Tek sıra yatay kaydırmalı ürün şeridi (ok'lu + otomatik carousel) */
.product-row {
  display: flex; grid-template-columns: none;
  overflow-x: auto; gap: 16px; padding-bottom: 4px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.product-row::-webkit-scrollbar { display: none; }
.product-row > * { flex: 0 0 auto; width: 230px; scroll-snap-align: start; }
@media (max-width: 640px) { .product-row > * { width: 190px; } }

/* Carousel ok butonları */
.pc-wrap { position: relative; }
.pc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; z-index: 6;
  background: var(--surface); border: 1px solid var(--border-strong);
  color: var(--text); font-size: 24px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow);
  transition: background-color .15s, opacity .15s;
}
.pc-arrow:hover { background: var(--surface-hover); }
.pc-prev { left: -8px; }
.pc-next { right: -8px; }
@media (max-width: 640px) { .pc-arrow { width: 34px; height: 34px; font-size: 19px; } .pc-prev { left: 2px; } .pc-next { right: 2px; } }
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: .2s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.product-thumb {
  aspect-ratio: 3 / 4; background: linear-gradient(160deg, #1b2a52, #0e1730);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
[data-theme="light"] .product-thumb { background: linear-gradient(160deg, #e8eefc, #f4f6fb); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumb .ph-text { font-weight: 800; font-size: 20px; opacity: .9; text-align: center; padding: 12px; }
.product-badge {
  position: absolute; top: 10px; left: 10px; background: rgba(34,197,94,.9);
  color: #fff; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 7px;
}
.product-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-body h3 {
  font-size: 15px; font-weight: 700; line-height: 1.3; min-height: 2.6em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-body .p-sub {
  font-size: 12px; color: var(--text-3); line-height: 1.45; min-height: 3.6em;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; }
.price { font-size: 18px; font-weight: 800; color: var(--primary); }
.price .old { font-size: 13px; color: var(--text-3); text-decoration: line-through; font-weight: 500; margin-left: 6px; }
.add-btn {
  width: 100%; margin-top: 12px; height: 42px; border-radius: 12px; background: var(--primary-grad);
  color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px;
  border: none; font-size: 14px; font-weight: 700; letter-spacing: .2px;
  box-shadow: 0 6px 18px rgba(37,99,235,.30); transition: transform .15s, box-shadow .15s, filter .15s;
}
.add-btn svg { flex-shrink: 0; }
.add-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,99,235,.42); filter: brightness(1.06); }
.add-btn:active { transform: translateY(0); }
.add-btn-disabled, .add-btn-disabled:hover {
  background: var(--surface-2); color: var(--text-3); box-shadow: none; cursor: not-allowed;
  transform: none; filter: none; border: 1px solid var(--border);
}
.out-of-stock { font-size: 12px; color: #ef4444; font-weight: 600; }

/* ---------- Feature strip ---------- */
.feature-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; margin: 30px 0;
}
.feature-item { display: flex; align-items: center; gap: 14px; }
.feature-item .fi-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(59,130,246,.12);
  color: var(--primary); display: grid; place-items: center; font-size: 20px;
}
.feature-item b { font-size: 15px; }
.feature-item span { display: block; font-size: 12px; color: var(--text-3); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 48px 0 24px; margin-top: 50px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; gap: 30px; }
.footer-grid h4 { font-size: 14px; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: var(--text-2); font-size: 14px; }
.footer-grid ul li a:hover { color: var(--primary); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px; border-radius: 10px; background: var(--surface);
  border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-2);
}
.social a:hover { background: var(--primary); color: #fff; }
.newsletter { display: flex; gap: 8px; margin-top: 12px; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 36px; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; color: var(--text-3); font-size: 13px; }
.pay-logos { display: flex; gap: 8px; }
.pay-logos span { background: var(--surface); border: 1px solid var(--border); padding: 5px 10px; border-radius: 7px; font-size: 12px; font-weight: 700; }

/* ---------- Forms / inputs ---------- */
.input, select.input, textarea.input {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border-strong);
  border-radius: 11px; padding: 13px 15px; color: var(--text); font-size: 15px; font-family: inherit;
}
.input:focus { outline: none; border-color: var(--primary); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; margin-bottom: 7px; color: var(--text-2); font-weight: 500; }
.search-form { position: relative; }

/* ---------- Cards / tables ---------- */
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.page-title { font-size: 28px; margin: 24px 0; }
.breadcrumb { color: var(--text-3); font-size: 14px; margin: 18px 0; }
.breadcrumb a { color: var(--text-2); }

table.data { width: 100%; border-collapse: collapse; }
table.data th, table.data td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--border); font-size: 14px; }
table.data th { color: var(--text-3); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
table.data tr:hover td { background: var(--surface-2); }

.badge { display: inline-block; padding: 4px 10px; border-radius: 7px; font-size: 12px; font-weight: 600; }
.badge.green { background: rgba(34,197,94,.15); color: #22c55e; }
.badge.yellow { background: rgba(234,179,8,.15); color: #eab308; }
.badge.red { background: rgba(239,68,68,.15); color: #ef4444; }
.badge.blue { background: rgba(59,130,246,.15); color: #3b82f6; }
.badge.gray { background: var(--surface-2); color: var(--text-2); }

/* ---------- Flash messages ---------- */
.flash { padding: 13px 18px; border-radius: 11px; margin-bottom: 14px; font-size: 14px; font-weight: 500; }
.flash.success { background: rgba(34,197,94,.13); color: #22c55e; border: 1px solid rgba(34,197,94,.3); }
.flash.error { background: rgba(239,68,68,.13); color: #ef4444; border: 1px solid rgba(239,68,68,.3); }

/* ---------- Theme toggle ---------- */
.theme-toggle .sun { display: none; }
[data-theme="light"] .theme-toggle .sun { display: block; }
[data-theme="light"] .theme-toggle .moon { display: none; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; } .mt-3 { margin-top: 30px; } .mb-2 { margin-bottom: 20px; }
.muted { color: var(--text-3); }
.license-box { background: var(--surface-2); border: 1px dashed var(--primary); border-radius: 11px; padding: 16px; font-family: monospace; font-size: 15px; white-space: pre-wrap; word-break: break-all; }
.empty { text-align: center; padding: 60px 20px; color: var(--text-3); }
.empty .e-icon { font-size: 48px; margin-bottom: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .hero-visual { display: none; }
  .hero-full .hero-visual { display: block; }
  .hero h1 { font-size: 38px; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feature-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
}

/* ============================================================
   Ek bileşenler (ürün detay, sepet, ödeme, hesap, tablolar)
   ============================================================ */

/* Tablolar */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 12px 10px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.table th { color: var(--text-2); font-weight: 600; font-size: 13px; }
.table tfoot td { border-bottom: none; }

/* Rozetler */
.badge-green  { background: rgba(34,197,94,.15); color: #22c55e; }
.badge-blue   { background: rgba(59,130,246,.15); color: #3b82f6; }
.badge-red    { background: rgba(239,68,68,.15); color: #ef4444; }
.badge-yellow { background: rgba(234,179,8,.15); color: #eab308; }

.qty-input { width: 80px; text-align: center; }
.link-danger { color: #ef4444; font-weight: 700; }
.page-content { line-height: 1.8; color: var(--text-2); }
/* Editörden/kopyala-yapıştırdan gelen sabit renkleri ez — her temada okunur kalsın */
.page-content, .page-content * { color: var(--text-2) !important; background-color: transparent !important; }
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content strong, .page-content b { color: var(--text) !important; }
.page-content a { color: var(--primary) !important; text-decoration: underline; }
.page-content h2, .page-content h3 { color: var(--text); margin: 18px 0 10px; }
.page-content p { margin-bottom: 12px; }
.page-content ul { margin: 0 0 12px 20px; }

/* Ürün detay */
.product-detail { display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr) 300px; gap: 26px; align-items: start; }
.pd-media { position: sticky; top: 92px; }
.pd-media .product-thumb { aspect-ratio: 3 / 4; max-width: 360px; border-radius: var(--radius); }
.pd-media .product-thumb img { object-fit: contain; }

/* Buy butonları */
.pd-buy { display: flex; gap: 10px; flex-wrap: wrap; align-items: stretch; }
.pd-buy .qty-input { width: 72px; text-align: center; }
.pd-buy .pd-add { flex: 1; min-width: 150px; font-size: 15px; padding: 12px 16px; }
.pd-buy .pd-buynow { flex: 1; min-width: 150px; font-size: 15px; padding: 12px 16px; color: #fff; background: linear-gradient(135deg, #f59e0b, #f97316); border: 0; }
.pd-buy .pd-buynow:hover { filter: brightness(1.05); }
.pd-buy .pd-fav-icon { flex: 0 0 auto; width: 52px; padding: 0; display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, #f43f5e, #ec4899); border: 0; box-shadow: 0 4px 12px rgba(244,63,94,.28); }
.pd-buy .pd-fav-icon:hover { filter: brightness(1.06); transform: translateY(-1px); }
.pd-buy .pd-fav-icon svg { stroke: #fff; }
.pd-buy .pd-fav-icon.is-fav svg, .pd-buy .pd-fav-icon .fav-btn.is-fav svg { fill: #fff; }

/* Sağ sidebar */
.pd-aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 92px; }
.pd-aside-box { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 14px; }
.pd-aside-title { font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.pd-aside-combo, .pd-aside-item { display: flex; gap: 10px; align-items: center; padding: 8px; border-radius: 12px; transition: background .15s; }
.pd-aside-combo:hover, .pd-aside-item:hover { background: var(--surface-2); }
.pac-thumb, .pai-img { width: 52px; height: 52px; border-radius: 10px; overflow: hidden; flex-shrink: 0; display: grid; place-items: center; background: var(--surface-2); font-size: 22px; }
.pac-thumb img, .pai-img img { width: 100%; height: 100%; object-fit: cover; }
.pac-name, .pai-name { font-size: 13px; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pac-price, .pai-price { font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 2px; }
.pd-aside-combo { border: 1px dashed color-mix(in srgb, var(--primary) 35%, var(--border)); margin-bottom: 8px; }
.pd-info h1 { font-size: 28px; margin-bottom: 10px; }
.pd-price { font-size: 30px; font-weight: 800; color: var(--primary); margin: 18px 0; }
.pd-price .old { font-size: 17px; color: var(--text-3); text-decoration: line-through; font-weight: 500; margin-left: 10px; }
.pd-meta { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.pd-buy { display: flex; gap: 12px; align-items: stretch; margin-bottom: 18px; }
.pd-buy .qty-input { width: 90px; }
.pd-buy .btn { flex: 1; }
.pd-trust { display: flex; gap: 18px; flex-wrap: wrap; color: var(--text-3); font-size: 13px; }
.pd-desc { line-height: 1.8; color: var(--text-2); }

/* Sepet */
.cart-table-wrap { padding: 6px 14px; }
.cart-prod { display: flex; align-items: center; gap: 12px; }
.cart-thumb { width: 48px; height: 48px; border-radius: 10px; background: var(--surface-2); display: grid; place-items: center; overflow: hidden; flex-shrink: 0; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; flex-wrap: wrap; gap: 16px; }
.cart-summary { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.cart-total { font-size: 18px; }
.cart-total span { font-weight: 800; color: var(--primary); font-size: 22px; margin-left: 6px; }

/* Ödeme */
.checkout-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 24px; align-items: start; }
.order-summary .os-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.order-summary .os-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; font-weight: 700; font-size: 16px; }

/* Sonuç kutuları */
.result-box { text-align: center; padding: 60px 20px; max-width: 640px; margin: 0 auto; }
.result-icon { font-size: 56px; margin-bottom: 14px; }
.result-box h1 { font-size: 28px; margin-bottom: 8px; }
.result-actions { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* Auth */
.auth-card { max-width: 440px; margin: 20px auto; }
.auth-card h1 { font-size: 26px; margin-bottom: 4px; }
.auth-alt { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-2); }
.auth-alt a { color: var(--primary); font-weight: 600; }

/* Hesap / sipariş */
.account-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.order-head { display: flex; justify-content: space-between; align-items: flex-start; }
.license-block { margin-bottom: 16px; }
.license-box { background: var(--bg); border: 1px solid var(--border-strong); border-radius: 10px; padding: 12px 14px; margin-bottom: 8px; }
.license-box code { font-family: 'Courier New', monospace; font-size: 14px; color: var(--primary); word-break: break-all; }

/* Hero ek */
.hero-copy .trust-item { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px; }
.trust-item .ti-icon { font-size: 18px; }
.trust-item b { display: block; font-size: 13px; }
.trust-item small { color: var(--text-3); font-size: 11px; }

@media (max-width: 1080px) {
  .product-detail { grid-template-columns: minmax(0, 340px) 1fr; }
  .pd-aside { grid-column: 1 / -1; position: static; flex-direction: row; flex-wrap: wrap; }
  .pd-aside-box { flex: 1; min-width: 260px; }
}
@media (max-width: 860px) {
  .product-detail, .checkout-grid { grid-template-columns: 1fr; }
  .cart-summary { width: 100%; justify-content: space-between; }
  .pd-media { position: static; }
  .pd-media .product-thumb { max-width: 300px; margin: 0 auto; }
  .pd-aside { flex-direction: column; }
}

/* ============================================================
   Müşteri Yorumları + Blog
   ============================================================ */
.testimonial-carousel { overflow: hidden; }
.testimonial-track {
  display: flex; gap: 16px;
  transition: transform .45s ease;
}
.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 4); /* 4 görünür, aradaki 3 boşluk = 3*16px */
  box-sizing: border-box;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.tc-nav { display: flex; gap: 8px; }
.tc-arrow {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); font-size: 22px; line-height: 1;
  display: grid; place-items: center; cursor: pointer; transition: .15s;
}
.tc-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.tc-arrow:disabled { opacity: .35; cursor: default; }
.tc-arrow:disabled:hover { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
@media (max-width: 1100px) { .testimonial-card { flex-basis: calc((100% - 32px) / 3); } }
@media (max-width: 820px)  { .testimonial-card { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 540px)  { .testimonial-card { flex-basis: 100%; } }
.testimonial-card .stars { color: #f5b50a; font-size: 16px; letter-spacing: 2px; }
.testimonial-card .stars .dim { color: var(--border-strong); }
.testimonial-card .t-content { color: var(--text-2); font-size: 14px; line-height: 1.7; flex: 1; }
.testimonial-card .t-author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: var(--primary-grad); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 18px;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-author b { display: block; font-size: 14px; }
.t-author small { color: var(--text-3); font-size: 12px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; transition: .2s;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.blog-thumb { aspect-ratio: 16 / 9; background: var(--surface-2); display: grid; place-items: center; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb span { font-size: 40px; }
.blog-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-date { font-size: 12px; color: var(--text-3); }
.blog-body h3 { font-size: 17px; line-height: 1.35; }
.blog-body .muted { font-size: 13px; line-height: 1.6; }
.blog-more { margin-top: auto; color: var(--primary); font-weight: 600; font-size: 13px; }

/* Blog yazı detay */
.blog-article { max-width: 820px; margin: 0 auto; }
.blog-article h1 { font-size: 32px; line-height: 1.2; margin-bottom: 6px; }
.blog-cover { width: 100%; border-radius: 16px; margin-bottom: 22px; }
.blog-content { line-height: 1.85; color: var(--text-2); font-size: 16px; }
.blog-content h2, .blog-content h3 { color: var(--text); margin: 22px 0 10px; }
.blog-content p { margin-bottom: 14px; }
.blog-content img { border-radius: 12px; margin: 14px 0; }
.blog-content ul, .blog-content ol { margin: 0 0 14px 22px; }

/* ============================================================
   Nasıl Çalışır / İstatistik / SSS / WhatsApp / Satış bildirimi
   ============================================================ */
.how-section .section-sub { color: var(--text-3); font-size: 14px; margin-top: 4px; }
.how-grid { display: flex; align-items: stretch; gap: 14px; }
.how-step {
  flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 20px; text-align: center; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.how-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary-grad); opacity: 0; transition: opacity .25s ease;
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,.10);
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
}
.how-step:hover::before { opacity: 1; }
.how-num {
  position: absolute; top: 14px; right: 16px;
  font-size: 17px; font-weight: 800; letter-spacing: .02em;
  color: color-mix(in srgb, var(--primary) 22%, transparent);
}
.how-ico-wrap {
  width: 54px; height: 54px; margin: 2px auto 14px; border-radius: 16px;
  display: grid; place-items: center; color: #fff;
  background: var(--primary-grad);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--primary) 32%, transparent);
}
.how-ico-wrap svg { width: 25px; height: 25px; }
.how-emoji { font-size: 26px; line-height: 1; }
.how-step h3 { font-size: 16px; margin-bottom: 7px; letter-spacing: -.01em; }
.how-step p { color: var(--text-2); font-size: 13px; line-height: 1.55; }
.how-arrow { display: flex; align-items: center; color: var(--text-3); }
.how-arrow svg { width: 22px; height: 22px; opacity: .5; }

.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 6px 0;
}
.stat-box {
  position: relative; overflow: hidden; isolation: isolate;
  text-align: center; color: #fff;
  background: var(--primary-grad); border-radius: 18px; padding: 30px 18px;
  box-shadow: 0 14px 32px color-mix(in srgb, var(--primary) 32%, transparent);
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
/* Nokta dokusu (arka plan deseni) */
.stat-box::before {
  content: ''; position: absolute; z-index: -1; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.5px, transparent 1.6px);
  background-size: 16px 16px;
  mask-image: linear-gradient(135deg, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(135deg, #000 0%, transparent 70%);
}
/* Yumuşak ışık lekesi (sağ üst) */
.stat-box::after {
  content: ''; position: absolute; z-index: -1; top: -50px; right: -50px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.25), transparent 70%);
}
.stat-box:hover { transform: translateY(-6px); box-shadow: 0 22px 48px color-mix(in srgb, var(--primary) 42%, transparent); }
.stat-num {
  font-size: 40px; font-weight: 800; line-height: 1; letter-spacing: -.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  opacity: .95; margin-top: 12px; position: relative; padding-top: 12px;
}
.stat-label::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.6);
}

.faq-cols { display: flex; gap: 12px; align-items: flex-start; }
.faq-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 760px) { .faq-cols { flex-direction: column; } }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--text);
  font-size: 15px; font-weight: 600; padding: 16px 18px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-ico { font-size: 22px; color: var(--primary); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 18px 16px; color: var(--text-2); font-size: 14px; line-height: 1.7; }

.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }

.sales-popup {
  position: fixed; left: 20px; bottom: 20px; z-index: 80;
  display: flex; align-items: center; gap: 13px; width: 330px; max-width: calc(100vw - 40px);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong); border-radius: 16px;
  padding: 13px 44px 13px 14px;
  box-shadow: 0 16px 44px rgba(0,0,0,.34);
  opacity: 0; transform: translateY(16px) scale(.97); transition: opacity .35s, transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
[data-theme="light"] .sales-popup { box-shadow: 0 16px 40px rgba(15,23,42,.14); }
.sales-popup.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.sales-popup .sp-ico {
  position: relative; width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 22px;
  background: var(--primary-grad); box-shadow: 0 6px 16px rgba(37,99,235,.35);
}
.sales-popup .sp-live {
  position: absolute; top: -3px; right: -3px; width: 13px; height: 13px; border-radius: 50%;
  background: #22c55e; border: 2.5px solid var(--surface);
  box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: spPulse 1.8s infinite;
}
@keyframes spPulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.sales-popup .sp-text { min-width: 0; line-height: 1.3; }
.sales-popup .sp-top { display: flex; align-items: center; gap: 6px; }
.sales-popup .sp-name { font-size: 14px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sales-popup .sp-verify {
  flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; background: #22c55e; color: #fff;
  font-size: 10px; font-weight: 900; display: grid; place-items: center;
}
.sales-popup .sp-mid { font-size: 13px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sales-popup .sp-mid .sp-product { color: var(--primary); font-weight: 600; }
.sales-popup .sp-time { font-size: 11.5px; color: var(--text-3); margin-top: 2px; }
.sales-popup .sp-close {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--surface-2); color: var(--text-3); font-size: 16px; line-height: 1;
  display: grid; place-items: center; transition: .15s;
}
.sales-popup .sp-close:hover { background: var(--surface-hover); color: var(--text); }

@media (max-width: 820px) {
  .how-grid { flex-direction: column; }
  .how-arrow svg { transform: rotate(90deg); }
  .how-arrow { justify-content: center; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .sales-popup { left: 12px; right: 12px; width: auto; max-width: none; }
}



/* ============================================================
   Mobil alt navigasyon
   ============================================================ */
.bottom-nav { display: none; }
@media (max-width: 1100px) {
  .main-nav { display: none; }
}
@media (max-width: 1100px) {
  .bottom-nav {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: var(--surface); border-top: 1px solid var(--border);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0,0,0,.18);
  }
  .bottom-nav a {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
    color: var(--text-2); font-size: 11px; font-weight: 600; padding: 4px 2px;
  }
  .bottom-nav a:active { color: var(--primary); }
  .bottom-nav .bn-ico { font-size: 20px; line-height: 1; position: relative; }
  .bottom-nav .bn-badge {
    position: absolute; top: -6px; right: -10px; min-width: 16px; height: 16px; padding: 0 4px;
    background: var(--primary); color: #fff; border-radius: 999px; font-size: 10px; font-weight: 700;
    display: grid; place-items: center; line-height: 1;
  }
  /* İçerik alt navbar'ın altında kalmasın */
  body { padding-bottom: 64px; }
  /* WhatsApp butonu alt navbar'ın üstüne çıksın */
  .whatsapp-fab { bottom: 78px; }
  .sales-popup { bottom: 76px; }
}

/* ---------- Header mobil iyileştirme ---------- */
@media (max-width: 980px) {
  .header-inner { height: 64px; gap: 12px; justify-content: space-between; }
  .logo img { height: 46px !important; }
  .header-actions { gap: 8px; }
}
@media (max-width: 560px) {
  .header-actions .hide-mobile { display: none !important; }
  .header-actions { gap: 6px; }
  .icon-btn { width: 40px; height: 40px; }
  .header-actions .btn-sm { padding: 8px 10px; font-size: 0; }
  .header-actions .btn-sm::before { content: '👤'; font-size: 16px; }
  .logo img { height: 40px !important; }
  .page-title { font-size: 24px; }
  .section { padding: 28px 0; }
  .contact-hero h1 { font-size: 26px; }
  /* Bölüm başlığı + "Tümünü Gör": mobilde tek satırda kalsın, buton küçülsün.
     Sadece buton olan başlıklara uygula — alt açıklamalı başlıkları (Nasıl Çalışır) bozma. */
  .section-head:has(.see-all-btn) { flex-wrap: nowrap; gap: 10px; align-items: center; }
  .section-head:has(.see-all-btn) h2 { font-size: 18px; min-width: 0; flex: 1; }
  .section-head .see-all-btn { flex-shrink: 0; padding: 7px 13px; font-size: 12.5px; white-space: nowrap; }
}

/* ============================================================
   MOBİL OPTİMİZASYON (genel)
   ============================================================ */
@media (max-width: 600px) {
  /* Ürünler: 2'li grid -> görseller küçülür */
  .product-grid, .product-grid.cols-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card .pc-img, .product-card img { height: auto; }

  /* Kategoriler: 2'li kompakt grid (büyük görselli) */
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-body { padding: 10px 12px; }
  .cat-card .cat-name { font-size: 14px; }
  .cat-thumb .cat-ph { font-size: 48px; }
  .cat-card .cat-arrow { display: none; }

  /* Güven şeridi: 2x2 */
  .feature-strip { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .feature-item { padding: 14px; }

  /* SSS: tek sütun, daha sıkı */
  .faq-cols { flex-direction: column; gap: 10px; }
  .faq-q { font-size: 14px; padding: 13px 14px; }
  .faq-a-inner { padding: 0 14px 14px; font-size: 13px; }

  /* Slider: mobilde görselin tamamı görünsün (kırpma yok) */
  .hero-full { padding: 14px 0 6px; }
  .hero-slider.hero-desktop { display: none; }
  .hero-slider.hero-mobile { display: block; }
  .hero-slider.wide .hero-slides { aspect-ratio: auto; max-height: none; }
  .hero-slider.wide .hero-slide { position: absolute; inset: 0; }
  .hero-slider.wide .hero-slide.active { position: relative; }
  .hero-slider.wide .hero-slide img,
  .hero-slider.wide .hero-slide video { width: 100%; height: auto; max-height: none; object-fit: contain; }

  /* Ara banner: mobilde hero gibi görselin tamamı görünsün (kırpma/bozulma yok) */
  .promo-banner { max-height: none; aspect-ratio: auto; border-radius: 14px; }
  .promo-banner img { width: 100%; height: auto; max-height: none; object-fit: contain; display: block; }
  .promo-banner.pb-desktop { display: none; }
  .promo-banner.pb-mobile { display: block; aspect-ratio: auto; }
  .promo-banner.pb-mobile img { width: 100%; height: auto; object-fit: contain; }

  /* Müşteri yorumları: tek kart */
  .testimonial-card { flex-basis: 100%; }

  /* Başlıklar */
  .section-head h2 { font-size: 20px; }
}

/* Footer mobil */
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid .logo, .footer-grid .social, .footer-grid .newsletter { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---------- İletişim sayfası (kurumsal) ---------- */
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.info-card { padding: 26px 24px; }
.info-title { font-size: 18px; margin-bottom: 6px; }
.info-list { list-style: none; margin: 8px 0 0; padding: 0; }
.info-list li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.info-list li:last-child { border-bottom: none; }
.info-ico {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--surface-2); border: 1px solid var(--border);
  display: grid; place-items: center; font-size: 19px;
}
.info-row { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.info-label { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); font-weight: 600; }
.info-val { font-size: 15px; font-weight: 600; color: var(--text); word-break: break-word; }
a.info-val:hover { color: var(--primary); }
.info-social { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.info-social-row { display: flex; gap: 10px; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  font-weight: 700; font-size: 15px; transition: .15s;
}
.soc-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

/* ============================================================
   Hesabım (panel)
   ============================================================ */
.account-grid { display: grid; grid-template-columns: 260px 1fr; gap: 20px; align-items: start; min-width: 0; }
.account-grid > * { min-width: 0; }
.account-main { min-width: 0; }
.account-side { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; position: sticky; top: 100px; min-width: 0; }
.acc-user { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; margin-bottom: 12px; border-bottom: 1px solid var(--border); }
.acc-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-grad); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 19px; flex-shrink: 0; }
.acc-user b { display: block; font-size: 14px; }
.acc-user small { color: var(--text-3); font-size: 12px; word-break: break-all; }
.acc-nav { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.acc-nav a { padding: 11px 14px; border-radius: 10px; color: var(--text-2); font-weight: 600; font-size: 14px; transition: .15s; }
.acc-nav a:hover { background: var(--surface-2); color: var(--text); }
.acc-nav a.active { background: var(--primary); color: #fff; }
.acc-nav .acc-logout { margin-top: 8px; border-top: 1px solid var(--border); border-radius: 0 0 10px 10px; color: var(--text-3); }
.acc-nav .acc-logout:hover { color: #ef4444; background: transparent; }

.acc-welcome { font-size: 18px; margin-bottom: 18px; }
.acc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; min-width: 0; }
.acc-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px; text-align: center; position: relative; overflow: hidden; min-width: 0; }
.acc-stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary-grad); opacity: .8; }
.acc-stat .as-num { display: block; font-size: 24px; font-weight: 800; color: var(--primary); }
.acc-stat .as-label { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.acc-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }

/* Sipariş kartları (tablo yerine) */
.order-list { display: flex; flex-direction: column; gap: 10px; }
.order-card {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: 14px; background: var(--surface);
  text-decoration: none; color: inherit; transition: border-color .15s, transform .15s, box-shadow .15s;
}
.order-card:hover { border-color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow); }
.oc-main { flex: 1; min-width: 0; }
.oc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; }
.oc-no { font-weight: 700; font-size: 14.5px; letter-spacing: .01em; }
.oc-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--text-3); font-size: 13px; }
.oc-total { font-weight: 800; color: var(--primary); font-size: 15px; }
.oc-arrow { color: var(--text-3); font-size: 26px; line-height: 1; flex-shrink: 0; }
.order-card:hover .oc-arrow { color: var(--primary); }

.lic-block { border: 1px solid var(--border); border-radius: 14px; padding: 16px; margin-bottom: 14px; }
.lic-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.lic-name { font-weight: 700; font-size: 15px; }
.lic-meta { font-size: 12px; color: var(--text-3); }
.lic-key {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--surface-2); border: 1px dashed var(--border-strong); border-radius: 10px;
  padding: 10px 14px; margin-bottom: 8px; cursor: pointer; transition: .15s;
}
.lic-key:hover { border-color: var(--primary); }
.lic-key code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 14px; color: var(--text); letter-spacing: .5px; word-break: break-all; }
.lic-copy { font-size: 12px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.lic-key.copied { border-color: #22c55e; }
.lic-key.copied .lic-copy { color: #22c55e; }

@media (max-width: 860px) {
  .account-grid { grid-template-columns: 1fr; }
  .account-side { position: static; padding: 14px; }
  .acc-nav { flex-direction: row; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .acc-nav a { flex: none; text-align: center; white-space: normal; padding: 12px 10px; background: var(--surface-2); border-radius: 12px; }
  .acc-nav a.active { background: var(--primary); color: #fff; }
  .acc-nav .acc-logout { grid-column: 1 / -1; margin-top: 0; border-top: none; background: var(--surface-2); color: #ef4444; }
  .acc-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .acc-stat { padding: 14px 8px; }
  .acc-stat .as-num { font-size: 17px; white-space: nowrap; }
  .acc-stat .as-label { font-size: 11px; }
  .account-main .panel { padding: 16px; }
}
@media (max-width: 520px) {
  .page-title { font-size: 24px; }
  .acc-user { padding-bottom: 12px; margin-bottom: 10px; }
  .acc-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .acc-stat { padding: 12px 5px; border-radius: 12px; }
  .acc-stat .as-num { font-size: 15px; }
  .acc-stat .as-label { font-size: 10px; line-height: 1.2; }
  .acc-welcome { font-size: 16px; }
  .account-main .panel { padding: 14px 12px; }
}

/* Tabloları mobilde kart yapısına çevir */
@media (max-width: 600px) {
  .table-cards thead { position: absolute; left: -9999px; }
  .table-cards, .table-cards tbody, .table-cards tr, .table-cards td { display: block; width: 100%; }
  .table-cards tr {
    border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px;
    margin-bottom: 10px; background: var(--surface-2);
  }
  .table-cards td {
    border: none; padding: 6px 0; display: flex; justify-content: space-between;
    align-items: center; gap: 12px; text-align: right;
  }
  .table-cards td + td { border-top: 1px dashed var(--border); }
  .table-cards td::before {
    content: attr(data-label); font-weight: 700; color: var(--text-2);
    text-align: left; font-size: 13px;
  }
  .table-cards td[data-label=""] { padding-top: 10px; }
  .table-cards td[data-label=""]::before { content: ""; }
  .table-cards td[data-label=""] .btn { width: 100%; }
  .table-cards td[data-label=""] { justify-content: stretch; }
  .table-cards tfoot tr { background: transparent; border: none; padding: 4px 12px; }
  .table-cards tfoot td[colspan] { display: none; }
}

/* ============================================================
   VIP / PREMIUM KATMANI
   ============================================================ */

/* --- Scroll'da beliriş --- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* --- Premium başlıklar (altın alt çizgi) --- */
.section-head h2 { position: relative; letter-spacing: -.02em; }
.section-head h2::after {
  content: ''; display: block; width: 46px; height: 3px; margin-top: 10px; border-radius: 3px;
  background: var(--gold-grad);
}
.page-title { letter-spacing: -.02em; }

/* --- Kart parıltısı / kalkış --- */
.product-card, .cat-card, .blog-card, .testimonial-card {
  position: relative;
}
.product-card:hover, .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px var(--border-strong);
}
[data-theme="light"] .product-card:hover, [data-theme="light"] .blog-card:hover {
  box-shadow: 0 20px 45px rgba(15,23,42,.14), 0 0 0 1px var(--border-strong);
}
.product-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 60% at 50% -10%, rgba(59,130,246,.16), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.product-card:hover::before { opacity: 1; }

/* --- Butonlarda hafif ışıma --- */
.btn-primary { box-shadow: 0 8px 22px rgba(37,99,235,.30); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(37,99,235,.45); transform: translateY(-1px); }

/* --- Puan / değerlendirme bandı (premium) --- */
.rating-strip.premium {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  position: relative; border: none; padding: 20px 28px; border-radius: 18px;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(120deg, var(--gold) 0%, rgba(212,175,106,.25) 30%, rgba(59,130,246,.5) 70%, var(--primary) 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 14px 40px rgba(0,0,0,.30);
}
[data-theme="light"] .rating-strip.premium { box-shadow: 0 14px 34px rgba(15,23,42,.10); }
.rs-avatars { display: flex; }
.rs-avatars span {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  font-size: 13px; font-weight: 800; color: #fff; margin-left: -10px;
  border: 2px solid var(--surface); background: var(--primary-grad);
}
.rs-avatars span:first-child { margin-left: 0; }
.rs-avatars span:nth-child(2) { background: linear-gradient(135deg,#22c55e,#16a34a); }
.rs-avatars span:nth-child(3) { background: linear-gradient(135deg,#8b5cf6,#6d28d9); }
.rs-avatars span:nth-child(4) { background: linear-gradient(135deg,#f59e0b,#ea580c); }
.rs-avatars .rs-more { background: var(--gold-grad); color: #2a2410; }
.rs-main { display: flex; flex-direction: column; gap: 2px; }
.rating-stars {
  font-size: 20px; letter-spacing: 3px; line-height: 1;
  background: linear-gradient(90deg, #f1d9a6, #d4af6a 40%, #f7e9c6 60%, #d4af6a);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: starShimmer 3.5s linear infinite;
}
@keyframes starShimmer { to { background-position: 200% 0; } }
.rs-line { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.rs-line .rating-score { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.rs-line .rs-out { font-size: 14px; color: var(--text-3); font-weight: 600; }
.rs-line .rs-dot { color: var(--text-3); }
.rs-line .rating-text { font-size: 14px; color: var(--text-2); font-weight: 600; }
.rs-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700;
  color: var(--gold-2); background: rgba(212,175,106,.12); border: 1px solid rgba(212,175,106,.35);
  padding: 8px 14px; border-radius: 999px;
}

/* --- Güven rozetleri şeridi --- */
.trust-strip {
  display: flex; align-items: center; justify-content: center; gap: 12px 26px; flex-wrap: wrap;
  padding: 20px 0;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 14px; font-weight: 600; }
.trust-item .ti-ico {
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border); font-size: 15px;
}

/* --- Neden Biz? --- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.why-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px 20px;
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-grad);
  opacity: .0; transition: opacity .3s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.why-card:hover::after { opacity: 1; }
.why-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 26px;
  background: var(--surface-2); border: 1px solid var(--border); margin-bottom: 14px;
}
.why-card h3 { font-size: 16px; margin-bottom: 6px; }
.why-card p { color: var(--text-2); font-size: 13px; line-height: 1.6; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); } }
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
  .rating-strip.premium { gap: 14px; padding: 18px; }
  .rs-badge { order: 3; }
}

/* ============================================================
   Hızlı arama + Duyuru şeridi
   ============================================================ */
.hero-search-wrap { margin-top: 4px; }
.hero-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: 16px;
  padding: 10px 10px 10px 18px; box-shadow: var(--shadow);
}
.hero-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.15); }
.hero-search .hs-ico { font-size: 18px; opacity: .7; flex-shrink: 0; }
.hero-search input {
  flex: 1; min-width: 0; background: none; border: none; outline: none;
  color: var(--text); font-size: 16px; font-family: inherit; padding: 8px 4px;
}
.hero-search input::placeholder { color: var(--text-3); }
.hero-search .btn { flex-shrink: 0; padding: 12px 26px; }

/* Canlı arama önerisi (typeahead) */
.hero-search.hs-typeahead { position: relative; }
.hs-suggest {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 60;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 14px; box-shadow: var(--shadow); padding: 6px;
  display: none; max-height: 380px; overflow-y: auto;
}
.hs-suggest.open { display: block; }
.hss-item {
  display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 10px;
  color: var(--text); text-decoration: none;
}
.hss-item:hover, .hss-item.active { background: var(--surface-hover); }
.hss-ico {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0; overflow: hidden;
  background: var(--surface-2); display: grid; place-items: center; font-size: 20px;
}
.hss-ico img { width: 100%; height: 100%; object-fit: cover; }
.hss-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.hss-name { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hss-cat { font-size: 12px; color: var(--text-3); }
.hss-price { font-weight: 700; font-size: 14px; color: var(--primary); flex-shrink: 0; white-space: nowrap; }
.hs-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 12px; padding-left: 4px; }
.hs-tags span { font-size: 13px; color: var(--text-3); }
.hs-tags a {
  font-size: 13px; color: var(--text-2); background: var(--surface-2);
  border: 1px solid var(--border); border-radius: 999px; padding: 5px 13px; transition: .15s;
}
.hs-tags a:hover { border-color: var(--primary); color: var(--primary); }

.announce-bar {
  color: #fff; font-size: 14px; font-weight: 600; position: relative;
  background: linear-gradient(120deg, var(--ann, #2563eb) 0%, color-mix(in srgb, var(--ann, #2563eb) 62%, #000) 100%);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.12);
}
.announce-bar::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 180% at 0% 0%, rgba(255,255,255,.18), transparent 55%);
}
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 42px; padding: 8px 0; text-align: center; }
.announce-bar a, .announce-bar span { color: #fff; }
.announce-bar a { text-decoration: underline; text-underline-offset: 3px; }
.announce-close {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.18); color: #fff; font-size: 18px; line-height: 1;
  display: grid; place-items: center; transition: .15s;
}
.announce-close:hover { background: rgba(255,255,255,.32); }

@media (max-width: 600px) {
  .hero-search { flex-wrap: wrap; padding: 10px 12px; }
  .hero-search input { width: 100%; order: 1; }
  .hero-search .hs-ico { display: none; }
  .hero-search .btn { width: 100%; order: 2; }
  .announce-inner { font-size: 13px; padding-right: 34px; }
}

/* ============================================================
   Çerez onayı
   ============================================================ */
.cookie-consent {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 100;
  max-width: 560px; margin: 0 auto;
  display: none; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between;
  background: color-mix(in srgb, var(--surface) 94%, transparent); backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong); border-radius: 16px;
  padding: 16px 18px; box-shadow: 0 16px 44px rgba(0,0,0,.34);
}
.cookie-consent.show { display: flex; }
.cookie-consent .cc-text { font-size: 13.5px; color: var(--text-2); flex: 1; min-width: 220px; line-height: 1.5; }
.cookie-consent .cc-text a { color: var(--primary); font-weight: 600; }
.cookie-consent .cc-actions { display: flex; gap: 8px; flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-consent { left: 12px; right: 12px; bottom: 76px; }
  .cookie-consent .cc-actions { width: 100%; }
  .cookie-consent .cc-actions .btn { flex: 1; }
}

/* ---------- Arama sayfası ---------- */
.search-hero { max-width: 760px; margin: 0 auto 30px; text-align: center; }
.search-title { font-size: 30px; margin-bottom: 16px; letter-spacing: -.02em; }
.search-hero .hs-tags { justify-content: center; }
.search-count { margin-bottom: 18px; font-size: 15px; }
.search-empty { text-align: center; padding: 50px 20px; }
.search-empty .se-ico { font-size: 50px; margin-bottom: 14px; }
.search-empty h3 { font-size: 20px; margin-bottom: 8px; }
.search-empty p { margin-bottom: 18px; }

/* ---------- Ürünler sayfası başlık + arama ---------- */
.products-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-search.compact { flex: 0 1 420px; padding: 6px 6px 6px 16px; box-shadow: none; border-radius: 14px; }
.hero-search.compact input { font-size: 15px; padding: 8px 4px; }
.hero-search.compact .btn { padding: 10px 20px; }
@media (max-width: 700px) {
  .products-head { flex-direction: column; align-items: stretch; }
  .hero-search.compact { flex-basis: auto; }
}

/* ============================================================
   Favoriler
   ============================================================ */
.product-card { position: relative; }
.fav-btn {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: color-mix(in srgb, var(--surface) 80%, transparent); backdrop-filter: blur(6px);
  color: var(--text-2); display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.18); transition: .18s;
}
.fav-btn:hover { color: #ef4444; transform: scale(1.1); }
.fav-btn.active { color: #ef4444; background: #fff; }
.fav-btn.active svg { fill: #ef4444; stroke: #ef4444; animation: favPop .3s ease; }
@keyframes favPop { 0% { transform: scale(.6); } 60% { transform: scale(1.25); } 100% { transform: scale(1); } }

.fav-badge {
  position: absolute; top: -5px; right: -6px; min-width: 17px; height: 17px; padding: 0 4px;
  background: #ef4444; color: #fff; border-radius: 999px; font-size: 10px; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}
#fav-header { position: relative; }

/* Ürün detay favori butonu */
.pd-fav { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; }
.pd-fav .fav-btn.active svg { fill: #ef4444; stroke: #ef4444; }
.pd-fav.is-fav { color: #ef4444; border-color: rgba(239,68,68,.4); }

/* ============================================================
   Marka logo şeridi (kayan)
   ============================================================ */
.brand-marquee {
  position: relative; overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-track {
  display: flex; gap: 18px; width: max-content;
  animation: brandScroll 38s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }
@keyframes brandScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.brand-item {
  flex: 0 0 auto; width: 150px; height: 96px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; padding: 10px 16px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s;
}
.brand-item:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.brand-item img { max-width: 100%; max-height: 72px; width: auto; height: auto; object-fit: contain; display: block; }

@media (max-width: 600px) {
  .brand-item { width: 124px; height: 80px; padding: 8px 12px; }
  .brand-item img { max-height: 60px; }
  .brand-track { gap: 12px; animation-duration: 26s; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ============================================================
   Ödeme yöntemi seçimi + Havale sayfası
   ============================================================ */
.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.pay-method { position: relative; cursor: pointer; }
.pay-method input { position: absolute; opacity: 0; }
.pay-method .pm-body {
  display: flex; flex-direction: column; gap: 2px;
  border: 2px solid var(--border); border-radius: 12px; padding: 14px;
  background: var(--surface); transition: .15s;
}
.pay-method .pm-body b { font-size: 14px; }
.pay-method .pm-body small { color: var(--text-3); font-size: 12px; }
.pay-method input:checked + .pm-body { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent); }
@media (max-width: 540px) { .pay-methods { grid-template-columns: 1fr; } }

.transfer-box { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 30px; box-shadow: var(--shadow); }
.transfer-head { text-align: center; margin-bottom: 22px; }
.transfer-head .tf-ico { font-size: 42px; }
.transfer-head h1 { font-size: 24px; margin: 8px 0 6px; }
.transfer-summary { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.transfer-summary > div { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 22px; text-align: center; }
.transfer-summary span { display: block; font-size: 12px; color: var(--text-3); }
.transfer-summary b { font-size: 18px; }
.tf-amount { color: var(--primary); }
.transfer-warn { background: #fff7e6; color: #92600a; border: 1px solid #ffe2a8; border-radius: 10px; padding: 12px 14px; font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.tf-sub { font-size: 15px; margin-bottom: 12px; }
.bank-list { display: flex; flex-direction: column; gap: 12px; }
.bank-card { border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; background: var(--surface-2); }
.bank-top { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.bank-iban { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bank-iban code { font-size: 15px; font-weight: 600; letter-spacing: .04em; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; }
.transfer-note { margin-top: 18px; padding: 14px; background: var(--surface-2); border-radius: 10px; font-size: 13px; color: var(--text-2); line-height: 1.6; }
.transfer-actions { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }

/* Admin banka satırları */
.bank-row { display: grid; grid-template-columns: 1fr 1fr 1.3fr auto; gap: 8px; margin-bottom: 8px; align-items: center; }
@media (max-width: 700px) { .bank-row { grid-template-columns: 1fr; } }

/* Ürün detay havale fiyatı */
.pd-transfer-price { margin: -6px 0 14px; font-size: 14px; color: var(--text-2); background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; display: inline-block; }
.pd-transfer-price b { color: var(--primary); }

/* ============================================================
   Üye giriş / kayıt - iki panelli
   ============================================================ */
.auth-split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  max-width: 920px; margin: 10px auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.auth-brand {
  position: relative; overflow: hidden; color: #fff; padding: 46px 40px;
  display: flex; flex-direction: column;
  background: linear-gradient(150deg, color-mix(in srgb, var(--primary) 88%, #000) 0%, var(--primary) 100%);
}
.auth-brand::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.14) 1.4px, transparent 1.5px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(150deg, #000, transparent 80%);
  mask-image: linear-gradient(150deg, #000, transparent 80%);
}
.ab-logo {
  position: relative; z-index: 1; width: 96px; height: 96px; border-radius: 22px; margin-bottom: 22px;
  background: #fff; display: grid; place-items: center; padding: 8px; font-size: 44px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.ab-logo img { width: 100%; height: 100%; object-fit: contain; }
.auth-brand h2 { position: relative; z-index: 1; color: #fff; font-size: 26px; margin: 0 0 10px; letter-spacing: -.02em; }
.ab-desc { position: relative; z-index: 1; color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.ab-features { position: relative; z-index: 1; list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 10px; }
.ab-features li {
  display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 11px 14px;
}
.abf-ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,.2); font-size: 15px; flex-shrink: 0; }

.auth-form-side { padding: 46px 42px; display: flex; flex-direction: column; justify-content: center; }
.afs-head { margin-bottom: 24px; }
.afs-head h1 { font-size: 26px; margin: 0 0 6px; }
.afs-head p { color: var(--text-3); font-size: 14px; }
.auth-input { position: relative; }
.auth-input .ai-ico { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 14px; opacity: .6; pointer-events: none; }
.auth-input .input { padding-left: 38px; padding-right: 40px; }
.auth-input .ai-eye { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 16px; padding: 6px; line-height: 1; }
.auth-form-side .auth-alt { text-align: center; font-size: 14px; color: var(--text-2); margin-top: 14px; }

@media (max-width: 820px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-brand { padding: 32px 26px; }
  .auth-brand .ab-features { display: none; }
  .auth-form-side { padding: 30px 24px; }
}

/* Kayan duyuru şeridi (marquee) */
.announce-bar.announce-scroll { position: relative; overflow: hidden; padding: 0; }
.announce-bar.announce-scroll .announce-marquee { overflow: hidden; white-space: nowrap; }
.announce-bar.announce-scroll .announce-track {
  display: inline-flex; padding: 10px 0;
  animation: announceMarquee 22s linear infinite; will-change: transform;
}
.announce-bar.announce-scroll:hover .announce-track { animation-play-state: paused; }
.announce-bar.announce-scroll .announce-item { display: inline-block; padding-right: 80px; }
.announce-bar.announce-scroll .announce-item, .announce-bar.announce-scroll .announce-item a { color: #fff; text-decoration: none; font-weight: 600; font-size: 14px; }
.announce-bar.announce-scroll .announce-close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); z-index: 2; }
@keyframes announceMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* ============================================================
   KOMBO PAKETLER
   ============================================================ */
.section-sub { color: var(--text-3); margin-top: 4px; }

.combo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 20px; }
.combo-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.combo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.combo-media { position: relative; aspect-ratio: 16/9; background: var(--surface-2); overflow: hidden; }
.combo-media > img { width: 100%; height: 100%; object-fit: cover; }
.combo-thumbs { display: grid; grid-template-columns: 1fr 1fr; width: 100%; height: 100%; gap: 2px; }
.combo-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.combo-badge {
  position: absolute; top: 10px; left: 10px; background: linear-gradient(135deg,#ef4444,#dc2626);
  color: #fff; font-size: 12px; font-weight: 800; padding: 5px 10px; border-radius: 999px; letter-spacing: .02em;
}
.combo-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.combo-meta { display: flex; gap: 8px; }
.combo-tag { font-size: 12px; font-weight: 700; color: var(--primary); background: color-mix(in srgb, var(--primary) 12%, transparent); padding: 3px 10px; border-radius: 999px; }
.combo-name { font-size: 16px; font-weight: 700; line-height: 1.3; margin: 0; }
.combo-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 6px; }
.combo-price { font-size: 19px; font-weight: 800; color: var(--primary); }
.combo-go { font-size: 13px; font-weight: 700; color: var(--text-3); }

/* Detay */
.combo-detail { margin-top: 18px; }
.combo-detail-head {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 22px 24px; margin-bottom: 22px;
}
.combo-desc { color: var(--text-2); margin: 8px 0 0; line-height: 1.6; }
.combo-detail-meta { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; align-items: center; }
.combo-pricebox { text-align: right; min-width: 160px; }
.combo-old { color: var(--text-3); text-decoration: line-through; font-size: 15px; }
.combo-now { font-size: 30px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.combo-save { color: #16a34a; font-weight: 700; font-size: 13px; margin-top: 2px; }
.combo-pick-info { background: color-mix(in srgb, var(--primary) 8%, transparent); border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent); border-radius: 12px; padding: 12px 16px; margin-bottom: 16px; font-size: 15px; }
.combo-pick-info b { color: var(--primary); }
.combo-section-title { font-size: 16px; margin: 0 0 14px; }

.combo-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.combo-item {
  display: flex; align-items: center; gap: 12px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; padding: 10px 12px; position: relative;
}
.combo-item.selectable { cursor: pointer; transition: border-color .15s, background .15s; }
.combo-item.selectable:hover { border-color: var(--primary); }
.combo-item.picked { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 7%, transparent); }
.combo-item.oos { opacity: .5; }
.combo-item input[type=checkbox] { position: absolute; opacity: 0; pointer-events: none; }
.ci-img { position: relative; width: 52px; height: 52px; border-radius: 10px; overflow: hidden; background: var(--surface-2); flex-shrink: 0; }
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-noimg { display: grid; place-items: center; width: 100%; height: 100%; font-size: 22px; }
.ci-oos { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,.6); color: #fff; font-size: 10px; font-weight: 700; text-align: center; }
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-weight: 600; font-size: 14px; line-height: 1.3; }
.ci-price { color: var(--text-3); font-size: 13px; margin-top: 2px; }
.ci-tick { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border); display: grid; place-items: center; color: transparent; font-size: 13px; flex-shrink: 0; transition: .15s; }
.combo-item.picked .ci-tick { background: var(--primary); border-color: var(--primary); color: #fff; }
.combo-actions { margin-top: 22px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* Admin havuz seçimi */
.combo-pool { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px; max-height: 420px; overflow-y: auto; border: 1px solid var(--border); border-radius: 12px; padding: 10px; background: var(--surface-2); }
.pool-item { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 7px 10px; cursor: pointer; transition: border-color .15s; }
.pool-item:hover { border-color: var(--primary); }
.pool-item input { width: 16px; height: 16px; accent-color: var(--primary); }
.pool-item img { width: 34px; height: 34px; border-radius: 6px; object-fit: cover; }
.pool-noimg { width: 34px; height: 34px; border-radius: 6px; display: grid; place-items: center; background: var(--surface-2); }
.pool-name { flex: 1; font-size: 13px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pool-price { font-size: 12px; color: var(--text-3); white-space: nowrap; }

@media (max-width: 600px) {
  .combo-detail-head { flex-direction: column; }
  .combo-pricebox { text-align: left; }
}
.cart-combo-badge { display: inline-block; margin-top: 3px; font-size: 11px; font-weight: 700; color: var(--primary); background: color-mix(in srgb, var(--primary) 12%, transparent); padding: 2px 8px; border-radius: 999px; }

/* ============================================================
   DROPZONE
   ============================================================ */
.dz-hero {
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 45%, #4c1d95 100%);
  border-radius: 22px; padding: 34px 36px; margin: 20px 0 26px; color: #fff; position: relative; overflow: hidden;
}
.dz-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(168,85,247,.35), transparent 55%); pointer-events: none; }
.dz-hero-left { position: relative; z-index: 1; }
.dz-kicker { display: inline-block; background: rgba(251,191,36,.18); color: #fcd34d; font-size: 12px; font-weight: 800; letter-spacing: .08em; padding: 6px 12px; border-radius: 999px; }
.dz-title { font-size: 44px; font-weight: 900; letter-spacing: .04em; margin: 14px 0 6px; line-height: 1; }
.dz-sub { color: rgba(255,255,255,.82); font-size: 15px; max-width: 480px; }
.dz-chips { display: flex; gap: 10px; margin-top: 16px; }
.dz-chip { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; }

.dz-hero-right { position: relative; z-index: 1; }
.dz-countbox { background: rgba(10,8,30,.55); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 18px 20px; min-width: 320px; }
.dz-count-label { text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .1em; color: #fcd34d; margin-bottom: 12px; }
.dz-countdown { display: flex; justify-content: center; gap: 10px; }
.dz-unit { background: rgba(0,0,0,.35); border-radius: 12px; padding: 10px 6px; min-width: 62px; text-align: center; }
.dz-num { display: block; font-size: 30px; font-weight: 900; font-variant-numeric: tabular-nums; }
.dz-unit small { font-size: 9px; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.dz-progress { height: 6px; background: rgba(255,255,255,.15); border-radius: 999px; margin-top: 16px; overflow: hidden; }
.dz-progress-bar { height: 100%; background: linear-gradient(90deg,#fbbf24,#f59e0b); border-radius: 999px; }
.dz-progress-txt { text-align: center; font-size: 12px; color: rgba(255,255,255,.7); margin-top: 8px; }

.dz-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.dz-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.dz-card:not(.locked):not(.soldout):hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.dz-card.locked { background: linear-gradient(160deg,#0f172a,#1e293b); border-color: #334155; }
.dz-card-media { position: relative; aspect-ratio: 3/4; background: var(--surface-2); overflow: hidden; }
.dz-card-media > img { width: 100%; height: 100%; object-fit: cover; }
.dz-blur { filter: blur(14px) brightness(.6); transform: scale(1.1); }
.dz-noimg { display: grid; place-items: center; width: 100%; height: 100%; font-size: 40px; }
.dz-locked-face { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: repeating-linear-gradient(45deg,#0f172a,#0f172a 12px,#131c31 12px,#131c31 24px); }
.dz-locked-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.dz-lock { font-size: 34px; }
.dz-lock-time { font-size: 12px; font-weight: 800; letter-spacing: .1em; color: #38bdf8; background: rgba(0,0,0,.5); padding: 4px 10px; border-radius: 999px; }
.dz-rarity { position: absolute; top: 8px; right: 8px; font-size: 10px; font-weight: 800; letter-spacing: .04em; padding: 3px 8px; border-radius: 6px; color: #fff; background: #6b7280; }
.dz-legendary { background: linear-gradient(135deg,#f59e0b,#ea580c); }
.dz-epic { background: linear-gradient(135deg,#a855f7,#7c3aed); }
.dz-rare { background: linear-gradient(135deg,#3b82f6,#2563eb); }
.dz-disc { position: absolute; top: 8px; left: 8px; background: linear-gradient(135deg,#22c55e,#16a34a); color: #fff; font-size: 13px; font-weight: 800; padding: 4px 9px; border-radius: 8px; }
.dz-soldout-tag { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,.6); color: #fff; font-weight: 800; letter-spacing: .1em; }
.dz-card-body { padding: 12px 14px 6px; flex: 1; }
.dz-card-name { font-weight: 700; font-size: 14px; line-height: 1.3; }
.dz-card-hint { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.dz-card-prices { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.dz-old { color: var(--text-3); text-decoration: line-through; font-size: 13px; }
.dz-now { color: var(--primary); font-weight: 800; font-size: 17px; }
.dz-stock { font-size: 11px; color: #f59e0b; font-weight: 600; margin-top: 4px; }
.dz-card-foot { padding: 6px 14px 14px; }
.dz-card-foot form { margin: 0; }
.dz-btn-break { width: 100%; background: linear-gradient(135deg,#f59e0b,#ea580c); color: #fff; font-weight: 800; border: none; }
.dz-btn-break:hover { filter: brightness(1.05); }
.dz-btn-locked { width: 100%; background: var(--surface-2); color: var(--text-3); border: 1px solid var(--border); cursor: not-allowed; }

/* Admin dropzone havuz */
.dz-admin-pool { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.dz-pool-head, .dz-pool-row { display: grid; grid-template-columns: 2.2fr .6fr .8fr 1fr .8fr 1fr; gap: 8px; align-items: center; padding: 8px 12px; }
.dz-pool-head { background: var(--surface-2); font-size: 12px; font-weight: 700; color: var(--text-3); }
.dz-pool-row { border-top: 1px solid var(--border); }
.dz-pool-prod { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.dz-pool-prod img { width: 34px; height: 34px; border-radius: 6px; object-fit: cover; }
.input-sm { padding: 6px 8px !important; font-size: 13px !important; }

@media (max-width: 820px) {
  .dz-hero { grid-template-columns: 1fr; }
  .dz-title { font-size: 34px; }
  .dz-countbox { min-width: 0; }
  .dz-pool-head { display: none; }
  .dz-pool-row { grid-template-columns: 1fr 1fr; gap: 6px; }
  .dz-pool-prod { grid-column: 1 / -1; }
}

/* ============================================================
   ÖDÜLLER (Şans Çarkı & Sürpriz Kutu)
   ============================================================ */
.rw-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; }
.rw-balance { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 8px 16px; font-size: 14px; }
.rw-balance b { color: var(--primary); }
.rw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 18px; }
.rw-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.rw-panel-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; font-weight: 700; font-size: 16px; }
.rw-head-wheel { background: linear-gradient(135deg,#0891b2,#06b6d4); color: #fff; }
.rw-head-box { background: linear-gradient(135deg,#7c3aed,#a855f7); color: #fff; }
.rw-ico { margin-right: 6px; }
.rw-rights { background: rgba(0,0,0,.25); padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 800; }
.rw-panel-body { padding: 22px 18px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.rw-btn { min-width: 200px; }
.rw-btn-box { background: linear-gradient(135deg,#7c3aed,#a855f7) !important; border: none; }
.rw-btn-ico { margin-right: 6px; }
.rw-hint { font-size: 12px; color: var(--text-3); text-align: center; margin: 0; }

/* Çark */

/* Kutu */
.box-stage { height: 130px; display: grid; place-items: center; }
.gift-box { font-size: 80px; transition: transform .2s; }
.gift-box.shaking { animation: giftShake .5s ease-in-out infinite; }
.gift-box.opened { animation: giftPop .5s ease; }
@keyframes giftShake { 0%,100%{transform:rotate(0)} 25%{transform:rotate(-12deg)} 75%{transform:rotate(12deg)} }
@keyframes giftPop { 0%{transform:scale(1)} 50%{transform:scale(1.5)} 100%{transform:scale(1)} }

/* Kazanımlar */
.rw-sec-title { font-size: 15px; margin: 0 0 14px; }
.rw-wins { display: flex; flex-direction: column; gap: 8px; }
.rw-win { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--surface-2); border-radius: 12px; }
.rw-win-ico { font-size: 22px; }
.rw-win-info { flex: 1; min-width: 0; }
.rw-win-info b { font-size: 14px; }
.rw-win-info small { display: block; color: var(--text-3); font-size: 12px; }
.rw-win-info code { background: var(--surface); padding: 1px 6px; border-radius: 5px; color: var(--primary); }
.rw-win-date { font-size: 12px; color: var(--text-3); }

/* Sonuç modalı */
.rw-modal { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.rw-modal.show { display: flex; }
.rw-modal-card { background: var(--surface); border-radius: 20px; padding: 32px 28px; text-align: center; max-width: 380px; width: 100%; animation: rwPop .3s ease; }
@keyframes rwPop { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.rw-modal-emoji { font-size: 60px; margin-bottom: 10px; }
.rw-modal-card h2 { margin: 0 0 8px; font-size: 22px; }
.rw-modal-card p { color: var(--text-2); margin: 0 0 20px; }

/* Checkout kupon/bakiye */
.co-coupon { margin-bottom: 12px; }
.co-coupon-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.co-balance { display: flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; margin-bottom: 16px; cursor: pointer; font-size: 14px; }

/* Admin ödül satırları */
.rw-prize-head { display: flex; gap: 8px; padding: 4px 2px; font-size: 12px; color: var(--text-3); font-weight: 700; }
.rw-prize-row { display: flex; gap: 8px; align-items: center; padding: 6px 0; border-top: 1px solid var(--border); flex-wrap: wrap; }
.rw-coupon-form { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

@media (max-width: 820px) {
  .rw-grid { grid-template-columns: 1fr; }
}

/* Dropzone anasayfa teaser */
.dz-teaser {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  background: linear-gradient(135deg,#1e1b4b,#4c1d95 60%,#7c2d92);
  border-radius: 20px; padding: 28px 32px; color: #fff; text-decoration: none;
  position: relative; overflow: hidden; transition: transform .15s, box-shadow .15s;
}
.dz-teaser::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 85% 30%, rgba(245,158,11,.3), transparent 55%); pointer-events:none; }
.dz-teaser:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(76,29,149,.35); }
.dz-teaser-left { position: relative; z-index: 1; }
.dz-teaser-kicker { display:inline-block; background: rgba(251,191,36,.2); color:#fcd34d; font-size:11px; font-weight:800; letter-spacing:.08em; padding:5px 12px; border-radius:999px; }
.dz-teaser-title { font-size:32px; font-weight:900; letter-spacing:.04em; margin:12px 0 6px; }
.dz-teaser-sub { color: rgba(255,255,255,.82); font-size:14px; max-width:520px; margin:0 0 14px; }
.dz-teaser-btn { display:inline-block; background:#fff; color:#4c1d95; font-weight:800; font-size:14px; padding:10px 20px; border-radius:999px; }
.dz-teaser-right { position: relative; z-index: 1; }
.dz-teaser-count { display:flex; gap:8px; }
.dz-teaser-count .dz-unit { background: rgba(0,0,0,.35); border-radius:10px; padding:8px 4px; min-width:54px; text-align:center; }
.dz-teaser-count .dz-num { font-size:24px; }
@media (max-width: 720px) {
  .dz-teaser { grid-template-columns: 1fr; }
  .dz-teaser-title { font-size:26px; }
}

/* ============================================================
   ÖZELLİKLER / REFERANS / SEPET TEŞVİĞİ
   ============================================================ */
.cart-nudge { background: linear-gradient(135deg,#ecfeff,#f0f9ff); border: 1px solid #bae6fd; border-radius: 12px; padding: 12px 16px; margin-bottom: 14px; font-size: 14px; color: #0c4a6e; }
.cart-nudge.done { background: linear-gradient(135deg,#f0fdf4,#dcfce7); border-color: #86efac; color: #166534; }
.cart-nudge b { color: inherit; }
.cart-nudge-bar { height: 6px; background: #e0f2fe; border-radius: 999px; margin-top: 8px; overflow: hidden; }
.cart-nudge-bar span { display: block; height: 100%; background: linear-gradient(90deg,#06b6d4,#0891b2); border-radius: 999px; }

/* Referans sayfası */
.ref-hero { background: linear-gradient(135deg,#1e293b,#334155); color: #fff; border-radius: 16px; padding: 22px; margin-bottom: 18px; }
.ref-hero-row { display: flex; align-items: center; justify-content: center; gap: 24px; }
.ref-stat { text-align: center; }
.ref-stat b { display: block; font-size: 30px; color: #fcd34d; }
.ref-stat span { font-size: 13px; color: rgba(255,255,255,.75); }
.ref-plus { font-size: 28px; color: rgba(255,255,255,.5); }
.ref-note { text-align: center; color: rgba(255,255,255,.8); font-size: 13px; margin: 14px 0 0; }
.ref-share { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px; margin-bottom: 16px; }
.ref-share > label { font-weight: 700; font-size: 14px; display: block; margin-bottom: 8px; }
.ref-copy { display: flex; gap: 8px; }
.ref-copy input { flex: 1; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface-2); font-size: 14px; }
.ref-code { margin-top: 10px; font-size: 14px; color: var(--text-2); }
.ref-code code { background: var(--surface-2); padding: 3px 10px; border-radius: 6px; color: var(--primary); font-weight: 700; }
.ref-buttons { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.ref-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.ref-box { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; }
.ref-box b { display: block; font-size: 26px; color: var(--primary); }
.ref-box span { font-size: 13px; color: var(--text-3); }

/* Admin özellik kartları + switch */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 12px; }
.feature-card { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; transition: border-color .15s; }
.feature-card.on { border-color: #22c55e; background: color-mix(in srgb, #22c55e 5%, transparent); }
.feature-ico { font-size: 26px; width: 40px; text-align: center; }
.feature-body { flex: 1; min-width: 0; }
.feature-name { font-weight: 700; font-size: 15px; }
.feature-desc { font-size: 12.5px; color: var(--text-3); margin-top: 2px; }
.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: #cbd5e1; border-radius: 999px; transition: .2s; }
.switch .slider::before { content: ''; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.switch input:checked + .slider { background: #22c55e; }
.switch input:checked + .slider::before { transform: translateX(20px); }

@media (max-width: 600px) { .ref-stats { grid-template-columns: 1fr; } }

/* ============================================================
   ÜRÜN YORUMLARI
   ============================================================ */
.pr-avg { font-size: 14px; color: var(--text-2); }
.pr-stars { color: #f59e0b; letter-spacing: 1px; }
.pr-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; margin-top: 14px; }
.pr-list { display: flex; flex-direction: column; gap: 12px; }
.pr-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.pr-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pr-name { font-weight: 700; font-size: 14px; }
.pr-verified { display: inline-block; margin-left: 8px; font-size: 11px; font-weight: 700; color: #16a34a; background: color-mix(in srgb,#16a34a 12%,transparent); padding: 2px 8px; border-radius: 999px; }
.pr-comment { margin: 8px 0 6px; color: var(--text-2); line-height: 1.5; font-size: 14px; }
.pr-date { font-size: 12px; color: var(--text-3); }
.pr-form-box { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px; align-self: start; }
.pr-form-title { font-size: 15px; margin: 0 0 10px; }
.pr-rating { display: inline-flex; flex-direction: row-reverse; gap: 4px; margin-bottom: 10px; }
.pr-rating input { display: none; }
.pr-rating label { font-size: 26px; color: #cbd5e1; cursor: pointer; transition: color .1s; }
.pr-rating input:checked ~ label,
.pr-rating label:hover, .pr-rating label:hover ~ label { color: #f59e0b; }
@media (max-width: 720px) { .pr-wrap { grid-template-columns: 1fr; } }

/* Sayfalama (public) */
.pager { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin: 26px 0 6px; justify-content: center; }
.pager-dots { color: var(--text-3); padding: 0 4px; }

/* Ürün açıklaması içindeki HTML (eski site tasarımı korunur) */
.pd-desc { line-height: 1.75; color: var(--text-2); word-break: break-word; }
.pd-desc * { max-width: 100%; }
.pd-desc ul, .pd-desc ol { margin: 8px 0; padding-left: 20px; }
.pd-desc ul { list-style: none; padding-left: 0; }
.pd-desc ul li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.pd-desc ul li::before { content: "•"; position: absolute; left: 4px; color: var(--primary); font-weight: 700; }
.pd-desc ol li { margin-bottom: 8px; }
.pd-desc p { margin: 0 0 10px; }
.pd-desc img { height: auto; border-radius: 8px; }
.pd-desc a { color: var(--primary); text-decoration: underline; }
.pd-desc h1, .pd-desc h2, .pd-desc h3, .pd-desc h4 { margin: 14px 0 8px; line-height: 1.3; }
.pd-desc table { border-collapse: collapse; width: 100%; }
.pd-desc td, .pd-desc th { border: 1px solid var(--border); padding: 6px 10px; }

/* Ürün açıklaması başlık altında */
.pd-desc-top { margin: 4px 0 18px; }

/* Kombo havuz kademeleri */
.combo-tiers { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 18px; }
.combo-tier-chip { background: var(--surface-2, #f1f5f9); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; font-size: 13px; color: var(--text-2); }
.combo-tier-chip b { color: var(--primary); }

/* Kategori ikonunda ürün kapağı yedeği (kare-yuvarlak) */

/* ============================================================
   Ürün detay sekmeleri (Sipariş / Hakkında / Sorular / Yorumlar)
   ============================================================ */
.pd-tabs { margin-top: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.pd-tabnav { display: flex; flex-wrap: wrap; gap: 4px; padding: 10px 12px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.pd-tab {
  border: 0; background: transparent; color: var(--text-2); font-weight: 600; font-size: 14px;
  padding: 10px 16px; border-radius: 10px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s, color .15s;
}
.pd-tab:hover { background: var(--surface-hover); }
.pd-tab.active { background: var(--primary); color: #fff; }
.pd-tab-count { background: rgba(0,0,0,.15); border-radius: 999px; font-size: 12px; padding: 1px 8px; }
.pd-tab.active .pd-tab-count { background: rgba(255,255,255,.25); }
.pd-panes { padding: 22px; }
.pd-pane { display: none; }
.pd-pane.active { display: block; animation: pdFade .2s ease; }
@keyframes pdFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Sipariş bilgileri kartları */
.pd-ob { display: flex; gap: 14px; padding: 16px 18px; border-radius: 14px; background: var(--surface-2); border-left: 4px solid var(--ic, var(--primary)); margin-bottom: 12px; }
.pd-ob:last-child { margin-bottom: 0; }
.pd-ob-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; background: color-mix(in srgb, var(--ic) 16%, transparent); }
.pd-ob-body h4 { margin: 0 0 4px; font-size: 15px; font-weight: 700; color: var(--text); }
.pd-ob-body p { margin: 0; color: var(--text-2); line-height: 1.6; font-size: 14px; }

/* Sorular sekmesi */
.pd-ask { text-align: center; padding: 24px 16px; }
.pd-ask-ic { font-size: 40px; margin-bottom: 8px; }
.pd-ask h4 { margin: 0 0 6px; font-size: 18px; }
.pd-ask .btn { margin-top: 14px; }

/* ============================================================
   Canlı sosyal kanıt barı
   ============================================================ */
.sp-bar { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 14px 18px; border-radius: 14px;
  background: color-mix(in srgb, var(--primary) 8%, var(--surface)); border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border)); }
.sp-msg { flex: 1; font-size: 14.5px; color: var(--text); }
.sp-msg .sp-ic { font-size: 18px; margin-right: 4px; }
.sp-msg b { color: var(--primary); }
.sp-live { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #16a34a; white-space: nowrap; }
.sp-dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; animation: spPulse 1.4s infinite; }
@keyframes spPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

/* Yorum puan dağılımı */
.pr-summary { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; padding: 8px 0 20px; }
.pr-big { text-align: center; min-width: 120px; }
.pr-big-num { font-size: 46px; font-weight: 800; line-height: 1; color: var(--text); }
.pr-big-stars { color: #f59e0b; font-size: 18px; margin: 6px 0 2px; }
.pr-big-count { font-size: 13px; color: var(--text-3); }
.pr-bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 7px; }
.pr-bar-row { display: flex; align-items: center; gap: 10px; }
.pr-bar-label { font-size: 13px; color: var(--text-2); width: 34px; }
.pr-bar { flex: 1; height: 9px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.pr-bar span { display: block; height: 100%; background: #f59e0b; border-radius: 999px; }
.pr-bar-cnt { font-size: 13px; color: var(--text-3); width: 28px; text-align: right; }
.pr-section-title { margin: 8px 0 14px; font-size: 16px; }

/* Öncelikli hizmet kutusu */
.pd-priority { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; cursor: pointer;
  background: var(--surface-2); border: 1px solid var(--border); margin-bottom: 12px; transition: border-color .15s, background .15s; }
.pd-priority:hover { border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.pd-priority:has(.pd-pr-check:checked) { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 7%, var(--surface)); }
.pd-pr-ic { font-size: 24px; flex-shrink: 0; }
.pd-pr-body { flex: 1; display: flex; flex-direction: column; }
.pd-pr-title { font-weight: 700; font-size: 14.5px; }
.pd-pr-desc { font-size: 12.5px; color: var(--text-2); line-height: 1.4; margin-top: 2px; }
.pd-pr-price { font-weight: 800; color: var(--primary); white-space: nowrap; }
.pd-pr-check { width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--primary); }

/* Miktar stepper */
.qty-stepper { display: inline-flex; align-items: stretch; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--surface); }
.qty-stepper .qty-btn { width: 40px; border: 0; background: var(--surface-2); font-size: 20px; font-weight: 700; color: var(--text); cursor: pointer; line-height: 1; }
.qty-stepper .qty-btn:hover { background: var(--surface-hover); }
.qty-stepper .qty-input { width: 52px; text-align: center; border: 0; background: transparent; color: var(--text); font-size: 16px; font-weight: 700; -moz-appearance: textfield; }
.qty-stepper .qty-input::-webkit-outer-spin-button, .qty-stepper .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Başlık altı kısa açıklama + hover tooltip */
.pd-teaser { position: relative; margin: -2px 0 14px; color: var(--text-2); font-size: 14px; line-height: 1.55; }
.pd-teaser-more { border: 0; background: none; color: var(--primary); font-weight: 600; cursor: pointer; padding: 0 0 0 4px; font-size: 14px; }
.pd-teaser-more:hover { text-decoration: underline; }
.pd-teaser-full {
  display: none; position: absolute; top: 100%; left: 0; z-index: 30; margin-top: 8px;
  width: min(560px, 92vw); background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; box-shadow: var(--shadow);
  font-size: 13.5px; line-height: 1.65; color: var(--text-2);
}
.pd-teaser:hover .pd-teaser-full, .pd-teaser.open .pd-teaser-full { display: block; }

/* ============================================================
   Bildirim zili + açılır menü
   ============================================================ */
.notif-wrap { position: relative; }
.notif-bell { position: relative; }
.notif-badge { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px;
  background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; border-radius: 999px;
  display: grid; place-items: center; line-height: 1; }
.notif-menu { position: absolute; top: calc(100% + 10px); right: 0; z-index: 200; width: 360px; max-width: 92vw;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg, 0 20px 50px rgba(0,0,0,.25));
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .16s; overflow: hidden; }
.notif-menu.open { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 560px) {
  .notif-menu { position: fixed; top: 62px; right: 8px; left: 8px; width: auto; max-width: none; }
}
.notif-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); font-weight: 700; }
.notif-read { border: 0; background: none; color: var(--primary); font-weight: 600; font-size: 13px; cursor: pointer; }
.notif-list { max-height: 420px; overflow-y: auto; padding: 6px; }
.notif-item { display: flex; gap: 12px; padding: 12px; border-radius: 12px; text-decoration: none; color: var(--text); transition: background .15s; }
.notif-item:hover { background: var(--surface-2); }
.notif-ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; }
.notif-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.notif-title { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.notif-tag { font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 999px; letter-spacing: .3px; }
.notif-desc { font-size: 12.5px; color: var(--text-2); line-height: 1.45; }
.notif-empty { padding: 28px 16px; text-align: center; color: var(--text-3); font-size: 14px; }

/* Yorum girişi CTA */
.pr-login-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 22px 16px; background: var(--surface-2); border-radius: 14px; }
.pr-login-cta span { color: var(--text-2); font-size: 14px; }
.pr-login-cta .btn { min-width: 260px; }

/* ============================================================
   LOOT GECESİ
   ============================================================ */
.loot-hero { background: radial-gradient(120% 100% at 50% 0%, #10203f 0%, #0a0f1e 70%); color: #e2e8f0; padding: 48px 0 40px; text-align: center; }
.loot-tag { letter-spacing: 4px; font-size: 12px; color: #38bdf8; font-weight: 700; }
.loot-title { font-size: 44px; font-weight: 900; margin: 6px 0 8px; background: linear-gradient(90deg,#67e8f9,#a78bfa); -webkit-background-clip: text; background-clip: text; color: transparent; }
.loot-sub { color: #94a3b8; max-width: 620px; margin: 0 auto 14px; }
.loot-status { font-size: 18px; font-weight: 800; margin-top: 10px; }
.loot-live { color: #22c55e; } .loot-prep { color: #38bdf8; }
.loot-count { font-variant-numeric: tabular-nums; color: #fff; }
.loot-pickinfo { margin-top: 12px; color: #cbd5e1; font-size: 13.5px; }
.loot-pickinfo b { color: #67e8f9; }

.loot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.loot-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; position: relative; }
.loot-card.legendary { border-color: #f59e0b; box-shadow: 0 0 0 1px #f59e0b55, 0 8px 24px #f59e0b22; }
.loot-card.epic { border-color: #a78bfa; box-shadow: 0 0 0 1px #a78bfa55; }
.loot-card.rare { border-color: #38bdf8; box-shadow: 0 0 0 1px #38bdf855; }
.loot-media { aspect-ratio: 3/4; position: relative; overflow: hidden; display: grid; place-items: center; background: linear-gradient(160deg,#1b2a52,#0e1730); }
.loot-media img { width: 100%; height: 100%; object-fit: cover; }
.loot-noimg { font-size: 48px; }
.loot-rarity { position: absolute; top: 8px; right: 8px; font-size: 10px; font-weight: 800; letter-spacing: .5px; padding: 3px 8px; border-radius: 6px; background: #0009; color: #fff; }
.loot-card.legendary .loot-rarity { background: #f59e0b; color: #1a1200; }
.loot-card.epic .loot-rarity { background: #a78bfa; color: #1a0a2e; }
.loot-card.rare .loot-rarity { background: #38bdf8; color: #04283a; }
.loot-lock { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 6px; font-size: 34px; color: #67e8f9; background: rgba(6,12,24,.35); }
.loot-lock-time { font-size: 12px; font-weight: 700; color: #cbd5e1; }
.loot-soldout { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%) rotate(-8deg); text-align: center; background: #ef4444; color: #fff; font-weight: 800; padding: 4px; }
.loot-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.loot-name { font-weight: 700; font-size: 14px; line-height: 1.3; }
.loot-price { display: flex; align-items: baseline; gap: 8px; }
.loot-old { text-decoration: line-through; color: var(--text-3); font-size: 13px; }
.loot-now { font-weight: 800; color: var(--primary); font-size: 17px; }
.loot-disc { font-size: 11px; font-weight: 800; color: #16a34a; background: #16a34a1a; padding: 1px 6px; border-radius: 6px; }
.loot-body .btn { margin-top: auto; }

/* Sağ alt sosyal medya buton yığını (WhatsApp üstünde) */
.fab-stack { position: fixed; right: 22px; bottom: 90px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.fab-social { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.28); transition: transform .15s, filter .15s; }
.fab-social:hover { transform: scale(1.1); filter: brightness(1.05); }
.fab-social svg { display: block; }
@media (max-width: 600px) {
  .fab-stack { right: 16px; bottom: 82px; }
  .fab-social { width: 44px; height: 44px; }
}

/* Çark ücretli çevirme butonu */
.rw-btn-paid { margin-top: 10px; background: linear-gradient(135deg,#f59e0b,#f97316); color: #fff; border: 0; }
.rw-btn-paid:hover { filter: brightness(1.05); }

/* ============================================================
   Admin ödül (çark/kutu) editörü — tek satır tablo
   ============================================================ */
.rw-grid-cols { grid-template-columns: minmax(0,1.8fr) minmax(0,1.3fr) minmax(0,1.5fr) 54px 60px 48px 48px 84px; }
.rw-prize-header { display: grid; grid-template-columns: minmax(0,1.8fr) minmax(0,1.3fr) minmax(0,1.5fr) 54px 60px 48px 48px 84px; gap: 10px; padding: 4px 12px 8px; }
.rw-prize-header span { font-size: 11px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .3px; }
.rw-row { display: grid; grid-template-columns: minmax(0,1.8fr) minmax(0,1.3fr) minmax(0,1.5fr) 54px 60px 48px 48px 84px; gap: 10px; align-items: center;
  padding: 8px 12px; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; background: var(--surface); }
.rw-row:hover { border-color: var(--border-strong, #cbd5e1); }
.rw-row.is-new { border-style: dashed; background: transparent; }
.rw-row .input { width: 100%; }
.rw-cell-val { min-width: 0; }
.rw-cell-val .input { width: 100%; }
.rw-color { padding: 2px; height: 38px; cursor: pointer; }
.rw-row-actions { display: flex; gap: 6px; justify-content: flex-end; }
.rw-ibtn { width: 34px; height: 34px; border-radius: 8px; border: 0; display: grid; place-items: center; cursor: pointer; font-size: 15px; text-decoration: none; }
.rw-ibtn.save { background: var(--primary); color: #fff; }
.rw-ibtn.del { background: #fee2e2; color: #dc2626; }
.rw-ibtn:hover { filter: brightness(1.05); }
.rw-switch { position: relative; display: inline-block; width: 40px; height: 22px; cursor: pointer; }
.rw-switch input { opacity: 0; width: 0; height: 0; }
.rw-switch span { position: absolute; inset: 0; background: var(--border-strong, #cbd5e1); border-radius: 999px; transition: .2s; }
.rw-switch span::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.rw-switch input:checked + span { background: #16a34a; }
.rw-switch input:checked + span::before { transform: translateX(18px); }
@media (max-width: 980px) {
  .rw-prize-header { display: none; }
  .rw-row { grid-template-columns: 1fr 1fr; }
  .rw-row-actions { grid-column: 1 / -1; }
}

/* Çark/Kutu ayar formu — hizalı satırlar */
.rw-settings .rw-set-row { display: grid; grid-template-columns: 52px 1fr 260px; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.rw-settings .rw-set-row:first-child { padding-top: 4px; }
.rw-set-label b { display: block; font-size: 14px; }
.rw-set-label small { color: var(--text-3); font-size: 12px; }
.rw-settings .field { margin: 0; }
.rw-settings .field label { display: block; font-size: 12px; color: var(--text-3); margin-bottom: 4px; }
.rw-set-actions { padding-top: 16px; }
@media (max-width: 720px) { .rw-settings .rw-set-row { grid-template-columns: 52px 1fr; } .rw-settings .field { grid-column: 1 / -1; } }

/* Ödül görsel hücresi */
.rw-imgcell { width: 54px; height: 40px; border: 1px dashed var(--border-strong,#cbd5e1); border-radius: 8px; display: grid; place-items: center; cursor: pointer; overflow: hidden; background: var(--surface-2); }
.rw-imgcell img { width: 100%; height: 100%; object-fit: cover; }
.rw-imgph { font-size: 18px; opacity: .5; }
.rw-imgcell:hover { border-color: var(--primary); }

/* Ödül hediye et formu */
.rw-gift { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.rw-gift .input[name="user"] { flex: 1; min-width: 240px; }
.rw-gift .input[type="number"] { width: 90px; }

/* Dropzone/Loot — canlı ama kilitli (Kilidi Aç ile açılır) */
.dz-card.sealed .dz-card-media img { filter: blur(10px); transform: scale(1.08); }
.dz-card.sealed .dz-disc, .dz-card.sealed .dz-card-prices, .dz-card.sealed .dz-stock { visibility: hidden; }
.dz-card.sealed .dz-buyform { display: none; }
.dz-card.revealed .dz-card-media img { filter: none; transform: none; transition: filter .35s ease; }
.dz-card.revealed .dz-disc, .dz-card.revealed .dz-card-prices, .dz-card.revealed .dz-stock { visibility: visible; }
.dz-card.revealed .dz-btn-unlock { display: none; }
.dz-card.revealed .dz-buyform { display: block; }
.dz-btn-unlock { display: inline-block; width: 100%; text-align: center; text-decoration: none;
  background: linear-gradient(135deg,#8b5cf6,#6366f1); color: #fff; border: 0; font-weight: 700; }
.dz-btn-unlock:hover { filter: brightness(1.06); }
.dz-btn-unlock, .loot-unlock { white-space: normal; line-height: 1.25; height: auto; min-height: 42px; display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* Loot kilit aç */
.loot-card.sealed .loot-media img { filter: blur(10px); transform: scale(1.08); }
.loot-card.sealed .loot-price, .loot-card.sealed .loot-name { visibility: hidden; }
.loot-card.sealed .loot-buyform { display: none; }
.loot-card.revealed .loot-media img { filter: none; transform: none; transition: filter .35s ease; }
.loot-card.revealed .loot-price, .loot-card.revealed .loot-name { visibility: visible; }
.loot-card.revealed .loot-unlock { display: none; }
.loot-card.revealed .loot-buyform { display: block; }
.loot-unlock { display: inline-block; width: 100%; text-align: center; text-decoration: none;
  background: linear-gradient(135deg,#8b5cf6,#6366f1); color: #fff; border: 0; font-weight: 700; padding: 10px; border-radius: 10px; cursor: pointer; }
.loot-unlock:hover { filter: brightness(1.06); }

/* Sorular butonları */
.pd-ask-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
/* Loot hero — gece teması (Dropzone yapısı + farklı ton) */
.dz-hero.loot-theme { background: linear-gradient(135deg, #0f2544 0%, #3b2a6b 55%, #5b21b6 100%); }
.dz-hero.loot-theme .dz-kicker { background: rgba(103,232,249,.15); color: #67e8f9; }

/* ============================================================
   Destek talepleri
   ============================================================ */
.tk-list { display: flex; flex-direction: column; gap: 8px; }
.tk-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: var(--text); background: var(--surface); }
.tk-row:hover { border-color: var(--primary); }
.tk-subject { font-weight: 700; }
.tk-meta { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.tk-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.tk-badge.open { background: #dbeafe; color: #1d4ed8; }
.tk-badge.answered { background: #dcfce7; color: #15803d; }
.tk-badge.closed { background: var(--surface-2); color: var(--text-3); }
.tk-subject-line { margin-bottom: 14px; font-size: 16px; }
.tk-thread { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.tk-msg { max-width: 80%; padding: 12px 14px; border-radius: 14px; }
.tk-msg.from-user { align-self: flex-end; background: var(--primary); color: #fff; border-bottom-right-radius: 4px; }
.tk-msg.from-admin { align-self: flex-start; background: var(--surface-2); border-bottom-left-radius: 4px; }
.tk-msg-head { font-size: 11px; opacity: .8; margin-bottom: 4px; }
.tk-msg-body { line-height: 1.5; }
.tk-reply { display: flex; gap: 10px; align-items: flex-end; }
.tk-reply textarea { flex: 1; }

/* ============================================================
   ŞANS ÇARKI — şık tasarım (dış halka + ışıklar + glow)
   ============================================================ */
.wheel-wrap { width: 340px; height: 340px; margin: 0 auto; position: relative; }
.wheel-ring { position: relative; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, color-mix(in srgb, var(--primary) 30%, #1a0a2e) 0%, #140a28 58%, #0b0518 100%);
  box-shadow: 0 0 0 3px var(--primary), 0 0 34px 8px color-mix(in srgb, var(--primary) 55%, transparent), 0 14px 40px rgba(0,0,0,.45), inset 0 0 26px rgba(0,0,0,.65); }
.wheel-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; transform: translate(-50%,-50%);
  background: color-mix(in srgb, var(--primary) 35%, #ffffff); box-shadow: 0 0 8px 2px color-mix(in srgb, var(--primary) 85%, transparent), 0 0 2px #fff; animation: wheelDot 1.6s ease-in-out infinite; }
.wheel-dot:nth-child(even) { animation-delay: .8s; }
@keyframes wheelDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.wheel-pointer { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); z-index: 4;
  width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent; border-top: 26px solid var(--primary);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.5)); }
.wheel { position: absolute; top: 30px; left: 30px; width: 280px; height: 280px; border-radius: 50%;
  border: 6px solid #0b0518; box-shadow: inset 0 0 0 3px rgba(255,255,255,.14); transform: rotate(0deg); }
.wheel-label { position: absolute; left: 50%; top: 50%; width: 44%; height: 0;
  display: flex; align-items: center; justify-content: flex-end; transform-origin: 0 0;
  padding-right: 14px; box-sizing: border-box; pointer-events: none; overflow: visible; }
.wheel-label > span { font-size: 11px; font-weight: 800; color: #fff; white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 0 2px rgba(0,0,0,.6); letter-spacing: .2px; }
.wheel-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; font-size: 26px;
  background: radial-gradient(circle at 40% 35%, #fff, #e2e8f0); box-shadow: 0 3px 12px rgba(0,0,0,.4), 0 0 0 4px color-mix(in srgb, var(--primary) 35%, transparent); }
@media (max-width: 420px) {
  .wheel-wrap, .wheel-ring { width: 300px; height: 300px; }
  .wheel { top: 26px; left: 26px; width: 248px; height: 248px; }
}

/* ============================================================
   KASALAR (satın almalı, CS-stil)
   ============================================================ */
.case-balance { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 8px 14px; font-size: 14px; }
.case-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.case-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; color: var(--text); transition: transform .15s, box-shadow .15s; position: relative; }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.15); border-color: var(--primary); }
.case-card-media { aspect-ratio: 4/3; display: grid; place-items: center; background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 18%, #0e1730), #0b1020); overflow: hidden; }
.case-card-media img { width: 100%; height: 100%; object-fit: cover; }
.case-noimg { font-size: 54px; }
.case-card-body { padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; }
.case-card-name { font-weight: 700; }
.case-card-price { font-weight: 800; color: var(--primary); }
.case-card-open { position: absolute; top: 10px; right: 10px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; opacity: 0; transition: .15s; }
.case-card:hover .case-card-open { opacity: 1; }

.case-head { margin: 10px 0 18px; }
.case-roll { position: relative; overflow: hidden; border: 2px solid var(--border); border-radius: 16px; background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--primary) 16%, var(--surface-2)), var(--surface-2)); padding: 16px 0; height: 148px; }
.case-roll-pointer { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: var(--primary); z-index: 3; box-shadow: 0 0 12px 2px color-mix(in srgb, var(--primary) 70%, transparent); }
.case-roll-pointer::before, .case-roll-pointer::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; }
.case-roll-pointer::before { top: -1px; border-top: 10px solid var(--primary); }
.case-roll-pointer::after { bottom: -1px; border-bottom: 10px solid var(--primary); }
.case-roll-track { display: flex; gap: 8px; will-change: transform; padding-left: 8px; }
.case-roll-item { flex: 0 0 120px; height: 116px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 8px; }
.case-roll-item img { width: 64px; height: 64px; object-fit: contain; }
.case-roll-item small { font-size: 10px; text-align: center; line-height: 1.2; max-height: 24px; overflow: hidden; }
.case-roll-item.legendary { border-color: #f59e0b; box-shadow: inset 0 -3px 0 #f59e0b; }
.case-roll-item.epic { border-color: #a78bfa; box-shadow: inset 0 -3px 0 #a78bfa; }
.case-roll-item.rare { border-color: #38bdf8; box-shadow: inset 0 -3px 0 #38bdf8; }
.case-actions { display: flex; align-items: center; gap: 16px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }

.case-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-top: 12px; }
.case-item { border: 1px solid var(--border); border-radius: 12px; padding: 12px; text-align: center; background: var(--surface); position: relative; }
.case-item.legendary { border-color: #f59e0b; } .case-item.epic { border-color: #a78bfa; } .case-item.rare { border-color: #38bdf8; }
.case-item-media { height: 70px; display: grid; place-items: center; font-size: 30px; }
.case-item-media img { max-height: 70px; max-width: 100%; object-fit: contain; }
.case-item-name { font-size: 12.5px; font-weight: 600; margin-top: 6px; line-height: 1.3; }
.case-item-odds { font-size: 12px; color: var(--text-3); margin-top: 4px; }

.case-modal { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: none; place-items: center; z-index: 999; }
.case-modal.open { display: grid; }
.case-modal-card { background: var(--surface); border-radius: 20px; padding: 28px; text-align: center; max-width: 360px; width: 90%; box-shadow: 0 24px 60px rgba(0,0,0,.4); animation: casepop .3s; }
@keyframes casepop { from { transform: scale(.85); opacity: 0; } to { transform: none; opacity: 1; } }
.case-modal-label { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.case-modal-card img { max-width: 160px; max-height: 160px; border-radius: 12px; margin: 0 auto 10px; }
.case-modal-name { font-size: 17px; font-weight: 700; margin-bottom: 16px; }
.case-modal-actions { display: flex; gap: 10px; justify-content: center; }

/* ============================================================
   Cüzdan
   ============================================================ */
.wallet-hero { background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 55%, #7c3aed)); color: #fff; border-radius: 18px; padding: 24px 26px; margin-bottom: 20px; box-shadow: 0 12px 30px color-mix(in srgb, var(--primary) 35%, transparent); }
.wallet-hero-label { opacity: .85; font-size: 13px; }
.wallet-hero-amount { font-size: 36px; font-weight: 900; margin-top: 4px; }
.wallet-topup h3 { margin: 0 0 10px; }
.wallet-packages { display: flex; flex-wrap: wrap; gap: 10px; }
.wallet-pkg { padding: 12px 20px; border: 2px solid var(--border); border-radius: 12px; font-weight: 800; text-decoration: none; color: var(--text); transition: .15s; }
.wallet-pkg:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.wallet-tx { display: flex; flex-direction: column; gap: 6px; }
.wallet-tx-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); }
.wallet-tx-main { display: flex; flex-direction: column; gap: 2px; }
.wallet-tx-type { font-weight: 700; font-size: 14px; }
.wallet-tx-note { font-size: 12.5px; color: var(--text-2); }
.wallet-tx-date { font-size: 11px; color: var(--text-3); }
.wallet-tx-amt { font-weight: 800; font-size: 16px; }
.wallet-tx-amt.pos { color: #16a34a; }
.wallet-tx-amt.neg { color: #dc2626; }

/* Sadakat puanı kutusu (cüzdan) */
.loyalty-box { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; margin-bottom: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, #f59e0b 12%, var(--surface)), var(--surface)); }
.loyalty-pts { font-size: 24px; font-weight: 900; color: #d97706; }
.loyalty-pts span { font-size: 14px; font-weight: 600; color: var(--text-2); }
.loyalty-form { display: flex; gap: 8px; align-items: center; }

/* Stok gelince haber ver */
.stock-alert { margin-top: 14px; padding: 16px; border: 1px dashed var(--border); border-radius: 12px; background: var(--surface-2); }
.stock-alert-title { font-weight: 700; margin-bottom: 10px; }
.stock-alert-form { display: flex; gap: 8px; }
.stock-alert-form .input { flex: 1; }

/* Hediye kartı (cüzdan) */
.giftcard-box { border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; margin-bottom: 20px; background: linear-gradient(135deg, color-mix(in srgb, #ec4899 10%, var(--surface)), var(--surface)); }
.giftcard-box h3 { margin: 0 0 10px; }
.giftcard-form { display: flex; gap: 8px; }
.giftcard-form .input { flex: 1; }

/* Bayi paneli */
.reseller-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.reseller-card { border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; background: var(--surface); }
.reseller-card-label { font-size: 13px; color: var(--text-2); }
.reseller-card-val { font-size: 30px; font-weight: 900; color: var(--primary); margin: 4px 0 6px; }

/* Mevcut sepetler (admin) */
.cc-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.cc-stat { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 8px 14px; font-size: 14px; }
.cc-stat b { color: var(--primary); }

/* Header bakiye rozeti */
.balance-pill { display: inline-flex; align-items: center; gap: 5px; height: 38px; padding: 0 14px; border-radius: 999px;
  font-weight: 800; font-size: 14px; text-decoration: none; white-space: nowrap;
  color: #fff; background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 55%, #7c3aed));
  box-shadow: 0 4px 12px color-mix(in srgb, var(--primary) 35%, transparent); }
.balance-pill:hover { filter: brightness(1.06); }
@media (max-width: 560px) { .balance-pill { height: 34px; padding: 0 10px; font-size: 13px; } }

/* Aydınlık/Karanlık moda göre logo değişimi */
.logo-img { height: 54px; width: auto; max-height: 54px; flex-shrink: 0; object-fit: contain; }
.logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: inline-block; }

/* Slider slaytı tıklanabilir link */
.hero-slide-link { display: block; width: 100%; height: 100%; }
.hero-slide-link img, .hero-slide-link video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide-link { cursor: pointer; }


/* Slider yönetimi — alt alta satırlar */
.sl-list { display: flex; flex-direction: column; gap: 12px; }
.sl-row { display: flex; align-items: center; gap: 14px; border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; background: var(--surface); }
.sl-row-thumb { width: 160px; height: 50px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: var(--surface-2); }
.sl-row-thumb img, .sl-row-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sl-row-info { flex: 1; min-width: 0; }
.sl-row-link { font-size: 13px; word-break: break-all; }
.sl-row-link a { color: var(--primary); }
.sl-row-actions { display: flex; gap: 8px; flex-shrink: 0; }
@media (max-width: 640px) { .sl-row { flex-wrap: wrap; } .sl-row-thumb { width: 100%; height: 90px; } }

/* Slider sıralama kontrolleri */
.sl-order { display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; }
.sl-order form { line-height: 0; }
.sl-move { width: 30px; height: 24px; border: 1px solid var(--border); background: var(--surface-2); color: var(--text); border-radius: 6px; cursor: pointer; font-size: 11px; }
.sl-move:hover:not(:disabled) { background: var(--primary); color: #fff; border-color: var(--primary); }
.sl-move:disabled { opacity: .3; cursor: default; }
.sl-pos { font-weight: 800; font-size: 13px; color: var(--text-2); min-width: 20px; text-align: center; }

/* Slider sıra elle girişi */
.sl-pos form { line-height: 0; margin: 0; }
.sl-posinput { width: 46px; height: 28px; box-sizing: border-box; text-align: center; font-weight: 800; font-size: 13px; line-height: 26px; padding: 0; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); color: var(--text); appearance: textfield; -moz-appearance: textfield; }
.sl-posinput::-webkit-outer-spin-button, .sl-posinput::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sl-posinput:focus { border-color: var(--primary); outline: none; }

/* Header arama açılır kutusu */
.search-wrap { position: relative; }
.search-menu-form.hs-typeahead { position: relative; }
.search-menu { position: absolute; top: calc(100% + 10px); right: 0; z-index: 200; width: 320px; max-width: 92vw;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg, 0 20px 50px rgba(0,0,0,.25));
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .16s; padding: 12px; }
.search-menu.open { opacity: 1; visibility: visible; transform: none; }
.search-menu-form { display: flex; gap: 8px; }
.search-menu-form input { flex: 1; min-width: 0; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg, transparent); color: var(--text); font-size: 14px; outline: none; }
.search-menu-form input:focus { border-color: var(--primary); }
@media (max-width: 560px) {
  .search-menu { position: fixed; top: 62px; right: 8px; left: 8px; width: auto; max-width: none; }
}
