/* ============================================================
   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: 28px; height: 90px; }
.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: 6px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 10px; box-shadow: var(--shadow);
}
.main-nav > a, .nav-drop-toggle {
  color: var(--text-2); font-weight: 600; font-size: 15px; white-space: nowrap;
  padding: 9px 16px; 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; }

.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(270px, 1fr)); gap: 14px; }
.cat-card {
  display: flex; align-items: center; gap: 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px;
  transition: .2s; position: relative;
}
.cat-card:hover { background: var(--surface-hover); border-color: var(--border-strong); transform: translateY(-2px); }
.cat-icon {
  width: 60px; height: 60px; display: grid; place-items: center;
  font-size: 44px; flex-shrink: 0; background: transparent;
}
.cat-icon img { width: 60px; height: 60px; object-fit: contain; }
.cat-card .cat-name { font-weight: 700; font-size: 16px; }
.cat-card .cat-sub { font-size: 12px; color: var(--text-3); }
.cat-card .cat-arrow {
  margin-left: auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface-2); display: grid; place-items: center; color: var(--text-2);
  border: 1px solid var(--border); flex-shrink: 0;
}
.cat-card:hover .cat-arrow { background: var(--primary); color: #fff; }

/* ---------- 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)); }
.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: 1.35; background: linear-gradient(160deg, #1b2a52, #0e1730);
  display: grid; place-items: center; position: relative;
}
[data-theme="light"] .product-thumb { background: linear-gradient(160deg, #e8eefc, #f4f6fb); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.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; }
.product-body .p-sub { font-size: 12px; color: var(--text-3); }
.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; }
  .main-nav { display: none; }
}
@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); }
.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: 1fr 1fr; gap: 30px; align-items: start; }
.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: 860px) {
  .product-detail, .checkout-grid { grid-template-columns: 1fr; }
  .cart-summary { width: 100%; justify-content: space-between; }
}

/* ============================================================
   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-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: 980px) {
  .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 .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; }
}

/* ============================================================
   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 */
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { flex-direction: column; text-align: center; gap: 8px; padding: 14px 10px; }
  .cat-icon { width: 46px; height: 46px; font-size: 34px; }
  .cat-icon img { width: 46px; height: 46px; }
  .cat-card .cat-name { font-size: 14px; }
  .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; }
.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%); } }