/* ===== Tokens ===== */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-dark: #06080f;
  --bg-dark-2: #0b0e16;
  --bg-dark-3: #161a25;

  --line: #ecedf3;
  --line-strong: #d6d9e3;
  --line-dark: rgba(255,255,255,0.07);
  --line-dark-strong: rgba(255,255,255,0.16);

  --ink: #050b1f;
  --ink-2: #14203f;
  --ink-3: #424d6a;
  --ink-4: #7780a0;
  --ink-on-dark: #f3f5fb;
  --ink-on-dark-2: #a7afc8;
  --ink-on-dark-3: #6b7497;

  --green: #0d8174;
  --green-2: #0a6c61;
  --green-soft: #e3f3f1;
  --green-ink: #075c52;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;

  --shadow-1: 0 1px 2px rgba(15,18,28,.04);
  --shadow-2: 0 4px 14px rgba(15,18,28,.06), 0 2px 4px rgba(15,18,28,.03);
  --shadow-3: 0 18px 40px rgba(15,18,28,.08), 0 4px 12px rgba(15,18,28,.04);
  --shadow-pop: 0 24px 60px -12px rgba(15,18,28,.25);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1240px;
  --container-wide: 1360px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
input, button { font-family: inherit; }

/* ===== Layout ===== */
.container       { max-width: var(--container);      margin: 0 auto; padding: 0 24px; }
.container-wide  { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

/* ===== Type ===== */
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 600;
  margin: 0;
}
h1 { font-size: clamp(36px, 4.8vw, 60px); letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.025em; }
h3 { font-size: 18px; letter-spacing: -0.01em; }
p  { margin: 0; }

.muted { color: var(--ink-3); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 18px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-weight: 500; font-size: 14px;
  background: transparent; color: var(--ink);
  transition: background 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn-sm     { height: 36px; padding: 0 12px; font-size: 13px; border-radius: 7px; }
.btn-lg     { height: 52px; padding: 0 22px; font-size: 15px; border-radius: 10px; }
.btn-primary { background: var(--ink);   color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: #000; }
.btn-green   { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover   { background: var(--green-2); border-color: var(--green-2); }
.btn-ghost   { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover   { border-color: var(--ink); background: var(--bg-soft); }
.btn-ghost-dark    { background: transparent; color: var(--ink-on-dark); border-color: var(--line-dark-strong); }
.btn-ghost-dark:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.04); }

/* ===== Chip ===== */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 10px;
  border-radius: 6px;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--ink-2); font-size: 12.5px; font-weight: 500;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip-green { background: var(--green-soft); border-color: rgba(13,129,116,.2); color: var(--green-ink); }
.chip-red { background: #fee2e2; border-color: rgba(220, 38, 38, .2); color: #b91c1c; }

/* ===== Eyebrow ===== */
.eyebrow-green {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600; color: var(--green-ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow-green::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 4px rgba(13,129,116,.15);
}

/* ===== Icon ===== */
.ico { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ico-lg { width: 20px; height: 20px; stroke-width: 2; }
.ico-md { width: 18px; }
.ico-sm { width: 14px; }
.ico-xs { width: 12px; }
.rot-90  { transform: rotate(90deg); }
.rot-180 { transform: rotate(180deg); }
.rot-270 { transform: rotate(-90deg); }
.rot-fill { fill: currentColor; stroke: none; }

/* ===== Pulse dot animation ===== */
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0   rgba(13,129,116,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(13,129,116,0); }
  100% { box-shadow: 0 0 0 0   rgba(13,129,116,0); }
}

/* ===== Section padding ===== */
section { padding: 56px 0; }
@media (max-width: 768px) { section { padding: 40px 0; } }

/* ===== Section head ===== */
.sec-head { text-align: center; margin-bottom: 32px; }
.sec-head h2 { margin: 0 auto; }
.sec-head .muted { margin-top: 14px; font-size: 15px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}

.utility-bar {
  background: var(--bg-dark);
  color: var(--ink-on-dark-2);
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}
.utility-bar .container-wide {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 40px;
}
.util-left   { grid-column: 1; }
.util-center { grid-column: 2; justify-self: center; min-width: 0; }
.util-right  { grid-column: 3; justify-self: end; }
.utility-bar a { color: var(--ink-on-dark-2); transition: color 160ms var(--ease); }
.utility-bar a:hover { color: #fff; }
.util-left  { display: flex; align-items: center; gap: 22px; grid-column: 1; }
.util-left a { display: inline-flex; align-items: center; gap: 8px; }
.util-left .sep { width: 1px; height: 14px; background: var(--line-dark-strong); }
.util-link-dark { color: var(--ink-on-dark) !important; font-weight: 500; }
.util-right { display: inline-flex; align-items: center; gap: 10px; }
.util-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(13,129,116,.16); color: var(--green);
  font-weight: 600; font-size: 12px;
}
.util-badge .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 4px rgba(13,129,116,.18);
  animation: pulseDot 2.4s infinite;
}
.util-arrow { display: inline-flex; align-items: center; gap: 4px; color: #fff; font-weight: 500; }

.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 72px;
}

/* Logo */
.logo-link { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-link img { height: 32px; width: auto; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1 1 auto; justify-content: center; min-width: 0; }
.main-nav a {
  font-size: 13.5px; font-weight: 500; padding: 10px 12px; border-radius: 7px;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap; position: relative;
  transition: background 160ms var(--ease);
}
.main-nav a:hover  { background: var(--bg-soft); }
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--green);
}

/* Right cluster */
.nav-right { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.auth-pill {
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 0 16px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-size: 13px; font-weight: 600;
  white-space: nowrap; height: 40px;
  transition: all 160ms var(--ease);
}
.auth-pill:hover { background: var(--bg-soft); border-color: var(--ink); }
.auth-pill .sep { width: 1px; height: 14px; background: var(--line); }
.auth-pill .accent { color: var(--green); }

.icon-btn {
  background: transparent; border: 0;
  width: 44px; height: 44px; border-radius: 10px;
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 160ms var(--ease);
  cursor: pointer;
}
.icon-btn:hover { background: var(--bg-soft); }
.icon-btn .ico { width: 20px; height: 20px; }
.bell-dot {
  position: absolute; top: 10px; right: 11px;
  width: 7px; height: 7px; border-radius: 999px; background: #ef4444;
  border: 2px solid #fff;
}

.cart-btn {
  background: var(--green); border: 0;
  height: 40px; padding: 0 16px 0 14px; border-radius: 999px;
  color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600;
  box-shadow: 0 4px 14px -4px rgba(13,129,116,.5);
  transition: all 160ms var(--ease);
}
.cart-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px -4px rgba(13,129,116,.6); }
.cart-count {
  min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px;
  background: rgba(255,255,255,.22); color: #fff;
  font-size: 11.5px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 2px;
}

/* Hamburger */
.mobile-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; color: var(--ink); }
@media (max-width: 1100px) {
  .main-nav, .auth-pill, .icon-btn { display: none !important; }
  .mobile-toggle { display: inline-flex; }
  .nav-right .cart-btn { display: inline-flex !important; }
}

/* Drawers / dropdowns */
.dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  width: 360px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-pop);
  z-index: 60; overflow: hidden;
}
.cart-wrap { position: relative; }
.cart-head {
  padding: 16px 18px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-head b { font-weight: 600; font-size: 15px; }
.cart-empty { padding: 40px 18px; text-align: center; }
.cart-empty-circ { width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 999px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; color: var(--ink-3); }
.cart-list { max-height: 280px; overflow-y: auto; }
.cart-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 8px 10px; padding: 9px 16px;
  border-bottom: 1px solid var(--line);
}
.cart-item-main { min-width: 0; }
.cart-item-title {
  display: inline-flex; align-items: center; gap: 7px;
  max-width: 100%; min-width: 0;
}
.cart-item .dom {
  flex: 0 1 auto; min-width: 0;
  font-weight: 600; margin-top: 0; font-size: 13px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-product-type {
  display: inline-flex;
  align-items: center;
  height: 22px;
  font-size: 11px;
  font-weight: 600;
  padding: 0 8px;
  line-height: 1;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item .rm {
  background: transparent;
  border: 0;
  padding: 0;
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s var(--ease);
}
.cart-item .rm:hover { color: #b91c1c; }
.cart-foot { padding: 18px; display: grid; gap: 12px; background: var(--bg-soft); }
.cart-foot .row { display: flex; justify-content: space-between; align-items: center; }
.cart-foot-total__lbl {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 62%;
}
.cart-foot-total__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.cart-foot-total__note {
  font-size: 10px;
  color: var(--ink-4);
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.cart-foot-total b {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; background: rgba(15,18,28,.5);
  z-index: 60;
  display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer aside {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 85%; max-width: 360px; background: #fff; padding: 20px 18px;
  overflow-y: auto;
}
.mobile-drawer .drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-drawer nav { display: grid; gap: 4px; }
.mobile-drawer nav a { padding: 14px 12px; border-radius: 8px; font-weight: 500; font-size: 16px; color: var(--ink); display: flex; align-items: center; gap: 10px; }

@media (max-width: 880px) {
  .util-center, .util-right { display: none; }
}
@media (max-width: 600px) {
  .utility-bar .sep, .utility-bar .util-left a:last-child { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 64px 0 40px;
  background: linear-gradient(180deg, #e4efeb 0%, #f1f6f5 60%, #ffffff 100%);
}
.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(13,129,116,.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(10,23,62,.12), transparent 65%);
}
.dotgrid {
  position: absolute; inset: 0; opacity: .35; z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15,18,28,.07) 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; text-align: center; }

.hero-pill {
  display: inline-flex; align-items: center; padding: 5px;
  border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-size: 13px; color: var(--ink-2); margin-bottom: 32px;
  box-shadow: var(--shadow-1);
}
.hero-pill .year {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--green); color: #fff; font-weight: 600; font-size: 12px;
}
.hero-pill .year .d { width: 6px; height: 6px; border-radius: 999px; background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.35); }
.hero-pill .txt { padding: 0 14px 0 12px; text-transform: uppercase; letter-spacing: .06em; font-size: 11.5px; font-weight: 600; }
.hero-pill .txt b { color: var(--ink); font-weight: 700; }

.hero h1 { font-weight: 600; margin-bottom: 22px; letter-spacing: -0.04em; }
.hero h1 .accent { color: var(--green); font-weight: 600; }
.hero-lede { font-size: 17px; color: var(--ink-3); max-width: 620px; margin: 0 auto; line-height: 1.55; }

/* Search bar */
.hero-search { margin-top: 32px; position: relative; width: 100%; max-width: 640px; margin-left: auto; margin-right: auto; }
.search-shell {
  display: flex; align-items: center;
  background: #fff; border: 1px solid var(--line-strong); border-radius: 14px; padding: 6px;
  box-shadow: 0 10px 28px -8px rgba(15,18,28,.08), 0 2px 6px rgba(15,18,28,.04);
}
.cat-btn {
  flex-shrink: 0; background: transparent; border: 0;
  padding: 0 14px; height: 44px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--ink);
  border-right: 1px solid var(--line); white-space: nowrap;
}
.search-input-wrap { flex: 1; min-width: 0; display: flex; align-items: center; padding-left: 14px; }
.search-input-wrap input {
  flex: 1; border: 0; outline: 0; height: 44px;
  font-size: 14px; color: var(--ink); background: transparent; padding-left: 10px; min-width: 0;
}
.search-go {
  flex-shrink: 0; height: 44px; padding: 0 22px;
  border: 0; border-radius: 10px;
  background: var(--green); color: #fff; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.cat-menu {
  position: absolute; left: 6px; top: calc(100% + 6px);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-pop); min-width: 240px; padding: 6px;
  z-index: 30; text-align: left; display: none;
}
.cat-menu.open { display: block; }
.cat-menu button {
  width: 100%; text-align: left;
  padding: 10px 12px; border-radius: 7px; border: 0;
  background: transparent; color: var(--ink); font-size: 14px; font-weight: 500;
}
.cat-menu button.active { background: var(--bg-soft); font-weight: 600; }

/* Popular chips */
.hero-popular {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.hero-popular .lbl {
  font-size: 12px; color: var(--ink-4); font-weight: 500;
  letter-spacing: .02em; text-transform: uppercase;
}

/* Trust bar */
.trust-bar {
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px;
  color: var(--ink-3); font-size: 13px;
}
.trust-bar span { display: inline-flex; align-items: center; gap: 8px; }
.trust-bar b { color: var(--ink); font-weight: 600; }
.trust-bar .bullet { width: 4px; height: 4px; border-radius: 999px; background: var(--line-strong); padding: 0; }

/* ===== Brand carousel (Footer Link section) ===== */
.brand-section { padding-top: 56px; padding-bottom: 56px; }
.brand-section h2 { margin: 0 auto; }
.brand-section .muted { margin-top: 14px; font-size: 15px; max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }
.brand-section .sec-head { text-align: center; }

.brand-rail { position: relative; }
.brand-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--bg-dark-2); color: #fff; border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-2); z-index: 2;
}
.brand-arrow:disabled { opacity: .35; cursor: not-allowed; }
.brand-arrow.l { left: -8px; }
.brand-arrow.r { right: -8px; }

.brand-scroller {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 28px; margin: 0 -4px;
  scrollbar-width: none;
}
.brand-scroller::-webkit-scrollbar { display: none; }

.brand-card {
  position: relative; flex: 0 0 auto;
  scroll-snap-align: start;
}
.brand-inner {
  background: #fff;
  border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; width: 190px;
  display: grid; gap: 10px;
  box-shadow: var(--shadow-1);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.brand-inner:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -6px rgba(11,14,22,.12); }
.brand-card.popular .brand-inner { border: 1.5px solid var(--ink); box-shadow: 0 8px 24px -8px rgba(11,14,22,.15); }
.brand-row { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 36px; height: 28px; border-radius: 5px;
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px; letter-spacing: .02em; flex-shrink: 0;
}
.brand-name { font-weight: 700; font-size: 13.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-buy { font-size: 11.5px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 3px; margin-top: 1px; }
.brand-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.brand-old { font-size: 11px; color: var(--ink-4); text-decoration: line-through; }
.brand-new { font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -0.02em; }
.brand-mo  { font-size: 11px; color: var(--ink-3); }
.popular-tag {
  position: absolute; left: 50%; bottom: -11px; transform: translateX(-50%);
  background: var(--bg-dark-2); color: #fff;
  padding: 3px 12px; border-radius: 999px;
  font-size: 10.5px; font-weight: 600; white-space: nowrap;
}

/* ===== Featured 3-column (İstatistiklere Göre Siteler) ===== */
.feat-section { padding-top: 40px; padding-bottom: 56px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1040px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .feat-grid { grid-template-columns: 1fr; } }

.feat-col {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
}
.feat-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.feat-head-l { display: flex; align-items: center; gap: 10px; }
.feat-head-l .ico-bg {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bg-soft); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.feat-head-l .ico-bg.discount { background: var(--green-soft); color: var(--green-ink); }
.feat-head h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.feat-all {
  font-size: 12.5px; color: var(--green-ink); background: var(--green-soft);
  padding: 6px 10px; border-radius: 6px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
}

.feat-list { list-style: none; margin: 0; padding: 0; flex: 1; }
.feat-list li {
  display: grid; grid-template-columns: 28px 1fr auto auto;
  gap: 12px; align-items: center; padding: 12px 20px;
  border-top: 1px solid var(--line);
}
.feat-list li:first-child { border-top: 0; }
.feat-rank {
  font-size: 11.5px; font-weight: 700; color: var(--ink-4);
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px; background: var(--bg-soft);
}
.feat-list li.top .feat-rank { color: var(--green); background: var(--green-soft); }
.feat-dom { font-size: 13.5px; color: var(--ink-2); font-weight: 500; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feat-price { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.feat-old { font-size: 11px; color: var(--ink-4); text-decoration: line-through; }
.feat-new { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.feat-new.deal { color: var(--green-ink); }
.feat-add {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--green); border: 0;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px -2px rgba(13,129,116,.5);
  transition: all 160ms var(--ease);
}
.feat-add:hover { background: var(--green-2); transform: translateY(-1px); box-shadow: 0 4px 10px -2px rgba(13,129,116,.6); }
.feat-add svg { width: 14px; height: 14px; stroke-width: 2.5; }

/* ===== Story rail ===== */
.story-section { padding: 56px 0; background: var(--bg-soft); position: relative; }
.story-section .sec-head { margin-bottom: 24px; }
.story-section .sec-head h3 { font-size: 22px; letter-spacing: -0.02em; margin: 0; }

.story-rail { position: relative; }
.story-grid { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.story-item {
  flex: 0 0 auto; width: 90px; padding: 6px 0;
  background: transparent; border: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.story-ring {
  width: 76px; height: 76px; border-radius: 999px;
  padding: 3px; position: relative;
  -webkit-mask-image: radial-gradient(circle, transparent 35px, #000 36px);
          mask-image: radial-gradient(circle, transparent 35px, #000 36px);
}
.story-content-wrap {
  position: absolute; inset: 3px;
  border-radius: 999px; background: #fff; padding: 2px;
  display: flex; align-items: center; justify-content: center;
}
.story-content {
  width: 100%; height: 100%; border-radius: 999px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 10px; letter-spacing: -0.01em;
  padding: 0 6px; text-align: center; line-height: 1.05; overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.story-name {
  font-size: 12px; color: var(--ink-2); font-weight: 500;
  text-align: center; max-width: 84px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===== Stats ===== */
.stats-section { background: var(--bg-soft); }
.stats-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 8px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stat-col {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.stat-col:last-child { border-right: none; }
.stat-ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.stat-n { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
.stat-l { color: var(--ink-3); font-size: 13px; margin-top: 4px; }
@media (max-width: 760px) {
  .stat-col { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-col:last-child { border-bottom: none; }
}

/* ===== HowItWorks ===== */
.how-section { background: #fff; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; background: #fff;
}
.how-step {
  padding: 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.how-step:last-child { border-right: none; }
.how-step .step-n {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-3); font-weight: 600; font-size: 12px;
  letter-spacing: .06em; margin-bottom: 24px;
}
.how-step .step-n .line { flex: 1; height: 1px; background: var(--line); }
.how-step .step-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.how-step h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.015em; }
.how-step p  { color: var(--ink-3); font-size: 14px; line-height: 1.55; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-soft); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px;
}
.faq-col { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 4px; background: transparent; border: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q span { font-weight: 500; font-size: 16px; color: var(--ink); letter-spacing: -0.01em; text-wrap: balance; }
.faq-q .chev { color: var(--ink-3); flex-shrink: 0; transition: transform 220ms var(--ease); display: inline-flex; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a {
  padding: 0 4px 22px; color: var(--ink-3); font-size: 14.5px; line-height: 1.65;
  display: none;
}
.faq-item.open .faq-a { display: block; }
@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-col + .faq-col { border-top: none; }
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark-2);
  color: var(--ink-on-dark);
  margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
  padding: 48px 24px 40px;
}
.footer-grid .logo-link { margin-bottom: 18px; display: inline-flex; }
.footer-grid .logo-link img { height: 32px; width: auto; }
@media (max-width: 1040px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (max-width: 680px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }

.col-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink-on-dark);
  margin: 0 0 18px;
}
.col-title::before {
  content: ""; width: 3px; height: 14px; border-radius: 2px; background: var(--green);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a {
  color: var(--ink-on-dark-2); font-size: 13.5px;
  transition: color 160ms var(--ease);
}
.footer ul a:hover { color: #fff; }
.contact-row {
  display: flex; align-items: center; gap: 10px;
  padding: 2px 0;
  margin-bottom: 8px;
}
.contact-circ {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.06); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-circ svg { width: 14px; height: 14px; }
.contact-circ.green { background: var(--green); }
.contact-label { font-size: 11px; color: var(--ink-on-dark-3); line-height: 1.2; }
.contact-val { font-weight: 600; font-size: 13px; color: var(--ink-on-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.25; margin-top: 1px; }
.footer-desc { color: var(--ink-on-dark-2); font-size: 13px; line-height: 1.55; max-width: 260px; margin-bottom: 20px; }

.footer-bottom {
  background: var(--bg-dark); border-top: 1px solid var(--line-dark);
}
.footer-bottom .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom .copy  { color: var(--ink-on-dark-3); font-size: 13px; }
.footer-bottom .copy b { color: var(--ink-on-dark-2); font-weight: 500; }
.footer-bottom .links { display: flex; gap: 22px; font-size: 13px; }
.footer-bottom .links a { color: var(--ink-on-dark-3); transition: color 160ms var(--ease); }
.footer-bottom .links a:hover { color: #fff; }

/* ===== Auth (auth.html) ===== */
.auth-wrap {
  padding: 48px 0 64px;
  background: var(--bg-soft);
  min-height: 70vh;
  display: flex; align-items: flex-start; justify-content: center;
}
.auth-card {
  width: 100%; max-width: 460px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-2);
}
.auth-head {
  padding: 24px 26px 18px; text-align: center;
}
.auth-head .brand-circle {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.auth-head h1 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.025em;
}
.auth-head p {
  font-size: 13.5px; color: var(--ink-3); margin-top: 6px; line-height: 1.55;
}

.auth-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.auth-tabs button {
  height: 48px; border: 0; background: transparent;
  font-size: 14px; font-weight: 600; color: var(--ink-3);
  position: relative; cursor: pointer;
  transition: color 160ms var(--ease);
}
.auth-tabs button:hover { color: var(--ink); }
.auth-tabs button.active { color: var(--green-ink); background: #fff; }
.auth-tabs button.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--green);
}

.auth-pane { display: none; padding: 22px 26px 18px; }
.auth-pane.open { display: grid; gap: 14px; }

.auth-divider {
  display: flex; align-items: center; gap: 12px;
  font-size: 10.5px; color: var(--ink-4);
  letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  margin: 2px 0;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

.ico-brand { width: 18px; height: 18px; flex-shrink: 0; }

.btn-google {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line-strong);
  font-weight: 500;
}
.btn-google:hover {
  background: var(--bg-soft); border-color: var(--ink-3);
}
.auth-pane .row-between {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
}
.auth-pane .forgot-link {
  color: var(--green-ink); font-weight: 600;
  transition: color 160ms var(--ease);
}
.auth-pane .forgot-link:hover { color: var(--green-2); }

.auth-foot {
  padding: 14px 26px 22px;
  text-align: center;
  font-size: 12px; color: var(--ink-4);
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.auth-foot a { color: var(--green-ink); font-weight: 600; }

/* Bildirim dropdown (çan ikonu) */
.notify-wrap { position: relative; }
.notify-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  width: 360px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-pop);
  z-index: 60;
  display: none; overflow: hidden;
}
.notify-dropdown.open { display: block; }
.notify-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.notify-head h4 { font-size: 14px; font-weight: 600; }
.notify-head .clear {
  background: transparent; border: 0; cursor: pointer;
  font-size: 12px; color: var(--green-ink); font-weight: 600;
  padding: 4px 6px; border-radius: 6px;
  transition: background 160ms var(--ease);
}
.notify-head .clear:hover { background: var(--bg-soft); }
.notify-list { max-height: 380px; overflow-y: auto; padding: 4px; }
.notify-item {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 12px; padding: 10px 12px;
  border-radius: 9px;
  transition: background 160ms var(--ease);
  position: relative;
}
.notify-item:hover { background: var(--bg-soft); }
.notify-item.unread { background: rgba(13,129,116,.06); }
.notify-item.unread:hover { background: rgba(13,129,116,.10); }
.notify-item.unread::before {
  content: ""; position: absolute; top: 50%; right: 10px;
  transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(13,129,116,.18);
}
.notify-item .nfy-ico {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--bg-soft); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notify-item .nfy-meta { min-width: 0; padding-right: 14px; }
.notify-item .nfy-title {
  font-size: 13px; font-weight: 600; color: var(--ink);
  line-height: 1.4;
}
.notify-item .nfy-desc {
  font-size: 12px; color: var(--ink-3); line-height: 1.5;
  margin-top: 2px;
}
.notify-item .nfy-desc b { color: var(--ink-2); font-weight: 600; }
.notify-item .nfy-time {
  font-size: 11px; color: var(--ink-4); margin-top: 4px;
}
.notify-empty {
  padding: 36px 18px; text-align: center;
}
.notify-empty .empty-ico {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border-radius: 999px; background: var(--bg-soft); color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
}
.notify-empty .em-title { font-weight: 600; font-size: 14px; color: var(--ink); }
.notify-empty .em-desc { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
.notify-foot {
  padding: 10px 14px; text-align: center;
  border-top: 1px solid var(--line); background: var(--bg-soft);
}
.notify-foot a {
  font-size: 12.5px; color: var(--green-ink); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}

/* Header search dropdown */
.search-wrap { position: relative; }
.search-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  width: 420px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-pop);
  z-index: 60;
  display: none; overflow: hidden;
}
.search-dropdown.open { display: block; }
.search-form {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.search-form > svg {
  width: 18px; height: 18px;
  stroke: currentColor; stroke-width: 1.6; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  color: var(--ink-3); flex-shrink: 0;
}
.search-form input {
  flex: 1; min-width: 0;
  border: 0; outline: 0; background: transparent;
  height: 36px; font-size: 14px; color: var(--ink);
}
.search-form button { height: 36px; padding: 0 14px; flex-shrink: 0; }

.search-pop { padding: 14px 12px 16px; }
.search-pop-head {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  color: var(--ink-4); text-transform: uppercase;
  margin: 0 0 10px; padding: 0 4px;
}
.search-pop-chips { display: flex; flex-wrap: wrap; gap: 6px; }

@media (max-width: 520px) {
  .search-dropdown { width: calc(100vw - 32px); max-width: 380px; right: -10px; }
}

/* Müşteri paneli pill (util-bar) */
.util-customer {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--green); color: #fff !important;
  font-size: 12.5px; font-weight: 600;
  transition: background 160ms var(--ease);
}
.util-customer:hover { background: var(--green-2); }
.util-customer svg { width: 13px; height: 13px; }

/* ===== Bakiye paketleri (bakiye.html) ===== */
.bakiye-hero {
  background: linear-gradient(180deg, #e4efeb 0%, #f1f6f5 60%, #ffffff 100%);
  padding: 56px 0 36px;
  position: relative; overflow: hidden;
}
.bakiye-hero .container { position: relative; z-index: 1; }
.bakiye-hero-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.bakiye-hero h1 {
  font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.03em;
  line-height: 1.1; margin-top: 14px;
}
.bakiye-hero h1 .accent { color: var(--green); }
.bakiye-hero p {
  color: var(--ink-3); font-size: 16px; line-height: 1.55;
  margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto;
}

.bakiye-section { padding: 32px 0 56px; }
.pkg-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 18px 18px;
  display: grid; gap: 14px; justify-items: center; align-content: start;
  text-align: center;
  transition: border-color 160ms var(--ease), transform 200ms var(--ease), box-shadow 160ms var(--ease);
}
.pkg-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -8px rgba(15,18,28,0.12);
}
.pkg-card .pkg-amount {
  font-size: 34px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pkg-card .pkg-amount .ccy {
  font-size: 18px; color: var(--ink-3); margin-right: 4px;
  font-weight: 600;
}
.pkg-card .pkg-perks {
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; width: 100%;
}
.pkg-card .pkg-bonus {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-ink);
  font-size: 12.5px; font-weight: 700; letter-spacing: -0.005em;
  white-space: nowrap;
}
.pkg-card .pkg-bonus--money {
  background: #fef3c7;
  color: #92400e;
}
.pkg-card .pkg-bonus svg { width: 12px; height: 12px; }
.pkg-card .pkg-note {
  font-size: 11.5px; color: var(--ink-4);
}
.pkg-card .btn { width: 100%; }

/* Popüler ribbon */
.pkg-card.popular {
  border-color: var(--green); border-width: 2px;
  box-shadow: 0 8px 24px -6px rgba(13,129,116,0.20);
}
.pkg-card.best {
  border-color: #fbbf24; border-width: 2px;
  box-shadow: 0 8px 24px -6px rgba(251,191,36,0.30);
}
.pkg-card .ribbon {
  position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--green); color: #fff;
  padding: 4px 14px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 2px 6px -2px rgba(13,129,116,.4);
}
.pkg-card.best .ribbon { background: #fbbf24; color: #78350f; }

/* Bakiye how-it-works */
.bakiye-how {
  background: var(--bg-soft); padding: 56px 0;
}
.bakiye-how .sec-head { margin-bottom: 32px; }
.bakiye-steps {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 720px) { .bakiye-steps { grid-template-columns: 1fr; } }
.bakiye-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 22px 24px;
  display: grid; gap: 12px;
}
.bakiye-step .step-num {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.bakiye-step h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; }
.bakiye-step p { color: var(--ink-3); font-size: 13.5px; line-height: 1.6; }

/* ===== Selection ===== */
::selection { background: rgba(13,129,116,.25); color: var(--ink); }

/* ===== Dashboard / Panel ===== */
.panel-wrap { background: var(--bg-soft); padding: 28px 0 56px; min-height: 70vh; }
.panel-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 22px;
  align-items: start;
}
@media (max-width: 960px) { .panel-layout { grid-template-columns: 1fr; } }

/* Sidebar */
.panel-side {
  position: sticky; top: 96px;
  display: grid; gap: 14px;
}
@media (max-width: 960px) { .panel-side { position: static; } }

.user-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.user-card-top {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px 12px;
}
.user-card .avatar {
  width: 42px; height: 42px; border-radius: 999px;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  flex-shrink: 0;
}
.user-card .u-name { font-weight: 600; font-size: 14px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-card .u-mail { font-size: 12px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-card-balance {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  display: grid; gap: 10px;
}
.user-card-balance .bk-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px;
}
.user-card-balance .bk-label {
  font-size: 12px; font-weight: 600;
  color: var(--ink-3);
}
.user-card-balance .bk-val {
  font-size: 16px; font-weight: 700; letter-spacing: -0.015em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.user-card-balance .bk-val.neg { color: #dc2626; }
.user-card-balance .btn { width: 100%; height: 32px; font-size: 12px; }

.side-nav {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 8px; display: grid; gap: 2px;
}
.side-nav a,
.side-nav button.logout {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.side-nav form { display: block; margin: 0; }
.side-nav button.logout {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.side-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.side-nav a.active {
  background: var(--green-soft); color: var(--green-ink); font-weight: 600;
}
.side-nav a.active svg { color: var(--green); }
.side-nav a .count {
  margin-left: auto; min-width: 22px; height: 20px; padding: 0 7px;
  border-radius: 999px; background: var(--bg-soft); color: var(--ink-3);
  font-size: 11.5px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.side-nav a.active .count { background: var(--green); color: #fff; }
.side-nav .divider { height: 1px; background: var(--line); margin: 6px 4px; }

.side-nav a.logout,
.side-nav button.logout { color: var(--ink-3); }
.side-nav a.logout svg,
.side-nav button.logout svg { color: var(--ink-4); }
.side-nav a.logout:hover,
.side-nav button.logout:hover { background: #fee2e2; color: #b91c1c; }
.side-nav a.logout:hover svg,
.side-nav button.logout:hover svg { color: #b91c1c; }

.side-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.side-card-head {
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  color: var(--ink-3); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.side-card-head .dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 3px rgba(13,129,116,.18);
  animation: pulseDot 2.4s infinite;
}
.announcements { list-style: none; margin: 0; padding: 6px; display: grid; gap: 2px; }
.announcements li a {
  display: flex; align-items: flex-start;
  gap: 10px;
  padding: 9px 10px; border-radius: 8px;
  transition: background 160ms var(--ease);
}
.announcements li a:hover { background: var(--bg-soft); }
.ann-ico {
  width: 30px; height: 30px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ann-body { min-width: 0; flex: 1; }
.ann-title {
  font-weight: 600; font-size: 12.5px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.35;
}
.ann-sub {
  font-size: 11px; color: var(--ink-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.4; margin-top: 2px;
}
.ann-foot {
  padding: 8px 14px;
  border-top: 1px solid var(--line);
}
.ann-foot a {
  font-size: 12px; font-weight: 600; color: var(--green-ink);
  display: inline-flex; align-items: center; gap: 4px;
}

/* Duyuru şeridi — dashboard ana alanı (yatay 3 kart) */
.ann-strip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 14px 16px 16px;
  display: grid; gap: 12px;
}
.ann-strip-head {
  display: flex; justify-content: space-between; align-items: center;
}
.ann-strip-head h3 {
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  color: var(--ink-3); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.ann-strip-head .dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 3px rgba(13,129,116,.18);
  animation: pulseDot 2.4s infinite;
  display: inline-block;
}
.ann-strip-head .all-link {
  font-size: 12.5px; font-weight: 600; color: var(--green-ink);
  display: inline-flex; align-items: center; gap: 4px;
}
.ann-strip-list {
  display: grid; gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .ann-strip-list { grid-template-columns: 1fr; } }

.ann-strip-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--bg-soft); border-radius: 9px;
  transition: background 160ms var(--ease);
  min-width: 0;
}
.ann-strip-item:hover { background: rgba(13,129,116,.06); }
.ann-strip-item .ann-ico {
  width: 30px; height: 30px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ann-strip-item .asi-body { min-width: 0; flex: 1; }
.ann-strip-item .asi-title {
  font-weight: 600; font-size: 12.5px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.ann-strip-item .asi-sub {
  font-size: 11px; color: var(--ink-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 1px;
}

/* Main */
.panel-main { display: grid; gap: 16px; min-width: 0; }

/* Doğrulama uyarıları (panel geneli) */
.panel-alerts {
  display: grid;
  gap: 10px;
}
.panel-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  line-height: 1.55;
}
.panel-alert--danger {
  background: #fef2f2;
  border: 1px solid rgba(220, 38, 38, .28);
  color: #991b1b;
}
.panel-alert__ico {
  flex-shrink: 0;
  margin-top: 1px;
  color: #dc2626;
}
.panel-alert__text {
  margin: 0;
  font-weight: 500;
}
.panel-alert__text a {
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
  color: #b91c1c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.panel-alert__text a:hover {
  color: #7f1d1d;
}

/* Telefon doğrulama (panel) */
.tel-verify-card {
  max-width: 520px;
  box-shadow: var(--shadow-1);
}
.tel-verify-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--green-soft) 0%, #fff 100%);
}
.tel-verify-top-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.tel-verify-step {
  display: inline-flex;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(13, 129, 116, .12);
  color: var(--green-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tel-verify-heading {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.tel-verify-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.tel-verify-lead {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
}
.tel-verify-lead strong {
  color: var(--ink);
  font-weight: 600;
}
.tel-verify-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(13, 129, 116, .18);
  background: #fff;
  color: var(--green-ink);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-1);
}
.tel-verify-body {
  display: grid;
  gap: 18px;
  padding: 22px;
}
.tel-verify-body--center {
  justify-items: center;
  text-align: center;
  padding: 32px 24px;
}
.tel-verify-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tel-verify-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
}
.tel-verify-info .ico {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
}
.tel-verify-info a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.tel-verify-info a:hover {
  text-decoration: underline;
}
.tel-verify-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
}
.tel-verify-timer strong {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.tel-verify-timer--expired {
  background: #fef2f2;
  border-color: rgba(220, 38, 38, .22);
  color: #991b1b;
}
.tel-verify-timer--expired strong {
  color: #b91c1c;
}
.tel-verify-form {
  display: grid;
  gap: 16px;
}
.tel-verify-submit {
  width: 100%;
  min-height: 46px;
  font-size: 14px;
  font-weight: 600;
}
.tel-verify-submit:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.otp-group {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.otp-cell {
  width: 46px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  caret-color: var(--green);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}
.otp-cell:hover {
  border-color: #b8bcc9;
}
.otp-cell:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 129, 116, .14);
  background: #fff;
}
.otp-group--error .otp-cell {
  border-color: #f87171;
  background: #fffafb;
}
.otp-group--error .otp-cell:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}
.tel-verify-error {
  margin: -6px 0 0;
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: #dc2626;
}
.tel-verify-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}
.tel-verify-foot-sep {
  width: 1px;
  height: 14px;
  background: var(--line-strong);
}
.tel-verify-link-btn,
.tel-verify-foot-link {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  cursor: pointer;
}
.tel-verify-link-btn:hover,
.tel-verify-foot-link:hover {
  color: var(--green-2);
  text-decoration: underline;
}
@media (max-width: 560px) {
  .tel-verify-top {
    flex-direction: column;
    align-items: stretch;
  }
  .tel-verify-phone-badge {
    justify-content: center;
  }
  .otp-cell {
    width: 42px;
    height: 50px;
    font-size: 20px;
  }
  .otp-group {
    gap: 6px;
  }
}

/* Sayfa başlığı (panel iç sayfaları) */
.panel-head { display: grid; gap: 4px; }
.panel-head h1 { font-size: 22px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; }
.panel-head p  { color: var(--ink-3); font-size: 14px; }

/* Üyelik tipi — segmented radio (panel formları) */
.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 4px;
  width: 100%;
  height: 44px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: transparent;
}
.segmented--full { max-width: none; }
.field--uyelik-tipi > label,
.field--uyelik-tipi > span:first-child {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .01em;
}
.segmented__option {
  position: relative;
  display: flex;
  margin: 0;
  min-width: 0;
  min-height: 0;
  height: 100%;
  cursor: pointer;
}
.segmented__option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.segmented__option span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 0;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.segmented__option:hover span {
  color: var(--ink);
}
.segmented__option input:checked + span {
  background: var(--green-soft);
  color: var(--green-ink);
  border-color: rgba(13, 129, 116, .22);
  box-shadow: none;
}
.segmented__option:hover input:checked + span {
  color: var(--green-ink);
  background: var(--green-soft);
}
.segmented__option input:focus-visible + span {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 129, 116, .12);
}
.segmented__option input:checked:focus-visible + span {
  background: var(--green-soft);
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 129, 116, .12);
}

/* Üyelik tipi alt alanları form-grid ile aynı dikey aralıkta */
.uyelik-tip-fields:not([hidden]) {
  display: contents;
}

/* iOS-style toggle */
.toggle {
  display: inline-flex; align-items: center; gap: 12px;
  cursor: pointer; user-select: none;
}
.toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle .switch {
  width: 40px; height: 24px; border-radius: 999px;
  background: var(--line-strong);
  position: relative; flex-shrink: 0;
  transition: background 200ms var(--ease);
}
.toggle .switch::after {
  content: ""; position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px; border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15,18,28,.18), 0 1px 2px rgba(15,18,28,.10);
  transition: transform 200ms var(--ease);
}
.toggle input:checked + .switch { background: var(--green); }
.toggle input:checked + .switch::after { transform: translateX(16px); }
.toggle input:focus-visible + .switch { box-shadow: 0 0 0 3px rgba(13,129,116,.18); }
.toggle .t-label { display: grid; gap: 2px; }
.toggle .t-label .t-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.toggle .t-label .t-hint { font-size: 12.5px; color: var(--ink-3); }

/* Form action bar (alt kaydet/iptal) */
.form-actions {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 10px; flex-wrap: wrap;
  padding: 16px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
}
.form-actions .spacer { flex: 1; }
.form-actions .saved {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--green-ink); font-weight: 600;
}

/* Form gönder (kart dışı, tam genişlik) */
.form-submit {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.form-submit .saved {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12.5px; color: var(--green-ink); font-weight: 600;
}
.form-submit .btn { width: 100%; }

/* Form uyarı rozeti (şifre vb.) */
.hint-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: #fef3c7;
  border: 1px solid rgba(245, 158, 11, .28);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: #92400e;
}
.hint-badge .ico {
  flex-shrink: 0;
  margin-top: 1px;
  color: #b45309;
}

.field label .req { color: #dc2626; }
.field-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-ink);
  font-size: 11px;
  font-weight: 600;
  vertical-align: middle;
}
.field-verified-badge .ico { color: var(--green); }
.field-verified-hint {
  margin: 0;
  font-size: 12px;
  color: var(--ink-4);
}
.input--locked,
.input--locked:focus {
  background: var(--bg-soft);
  border-color: var(--line);
  color: var(--ink-2);
  cursor: not-allowed;
  box-shadow: none;
}
.hint.hint--error { color: #dc2626; margin-top: 6px; }

/* Destek talebi oluşturma formu */
.destek-form-card__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.destek-form-card__title .ico { color: var(--green); }
.destek-form-card__sub { font-size: 12.5px; }
.destek-form-card__actions {
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  background: transparent;
  border-top: 1px solid var(--line);
}
@media (max-width: 640px) {
  .destek-form-card .cart-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .destek-form-card__actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .destek-form-card__actions .btn { width: auto; }
}

/* Destek talebi detay — özet */
.destek-summary {
  padding: 16px 18px;
}
.destek-summary__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.destek-summary__head h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.destek-summary__konu {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.45;
}
.destek-summary__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.destek-summary__meta dt {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.destek-summary__meta dd {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 520px) {
  .destek-summary__meta { grid-template-columns: 1fr; }
}
.destek-timeline {
  max-height: 520px;
  overflow-y: auto;
}
.destek-timeline__item {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--line-strong);
  background: #fff;
}
.destek-timeline__item:first-child {
  border-top: 0;
}
.destek-timeline__item--staff {
  border-left-color: var(--green);
  background: color-mix(in srgb, var(--green-soft) 42%, #fff);
}
.destek-timeline__item--customer {
  border-left-color: var(--ink-4);
}
.destek-timeline__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.destek-timeline__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.destek-timeline__meta time {
  font-size: 12px;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}
.destek-timeline__content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  word-break: break-word;
}
.destek-reply-card__actions {
  justify-content: flex-end;
}

/* Email doğrulama uyarı banner'ı — sitenin yeşil paletine uygun */
.warn-banner {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-left: 3px solid #f59e0b;
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--shadow-1);
}
.warn-banner .w-ico {
  width: 34px; height: 34px; border-radius: 8px;
  background: #fef3c7; color: #92400e;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.warn-banner .w-text { font-size: 13px; color: var(--ink-2); flex: 1; min-width: 0; }
.warn-banner .w-text b { color: var(--ink); font-weight: 600; }
.warn-banner a.w-act { color: var(--green-ink); font-weight: 600; text-decoration: underline; }

/* Stat grid (4 sütun KPI kartları) */
.stat-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .stat-grid { grid-template-columns: 1fr; } }

/* KPI kartı — sade, banking-app stili */
.kpi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px 0;
  display: grid; gap: 12px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.kpi-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-1); }

.kpi-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; min-height: 22px;
}
.kpi-label {
  font-size: 11.5px; font-weight: 700;
  color: var(--ink-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0;
}
.kpi-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .02em;
  background: var(--bg-soft); color: var(--ink-3);
  white-space: nowrap;
}
.kpi-chip.green { background: var(--green-soft); color: var(--green-ink); }
.kpi-chip.red   { background: #fee2e2; color: #b91c1c; }
.kpi-chip.gold  { background: #fef3c7; color: #92400e; }
.kpi-chip.blue  { background: #dbeafe; color: #1e40af; }

.kpi-value {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kpi-value.neg { color: #dc2626; }

.kpi-foot {
  margin: 4px -18px 0;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
}
.kpi-action {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  transition: color 160ms var(--ease);
}
.kpi-action:hover { color: var(--green-ink); }
.kpi-action svg { color: var(--ink-4); transition: transform 160ms var(--ease), color 160ms var(--ease); }
.kpi-action:hover svg { transform: translateX(3px); color: var(--green-ink); }
.kpi-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: var(--ink-4);
}
.kpi-meta b { color: var(--ink); font-weight: 600; }

/* Eski .stat-tile (cark.html'de hâlâ kullanılıyor) */
.stat-tile {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px; display: grid; gap: 6px;
  overflow: hidden;
}
.stat-tile .s-head {
  display: flex; align-items: center; gap: 10px;
}
.stat-tile .s-ico {
  width: 36px; height: 36px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-tile .s-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--ink-3); text-transform: uppercase;
}
.stat-tile .s-val {
  font-size: 22px; font-weight: 700; letter-spacing: -0.025em; color: var(--ink);
  line-height: 1.1; margin-top: 4px;
}
.stat-tile .s-val.neg { color: #dc2626; }
.stat-tile .s-sub { font-size: 11.5px; color: var(--ink-4); }
.stat-tile .s-cta {
  margin-top: 6px;
  font-size: 12px; font-weight: 600; color: var(--green-ink);
  display: inline-flex; align-items: center; gap: 4px;
}

/* Hızlı arama kartı */
.quick-search {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 14px 16px;
}
.quick-search h3 {
  font-size: 14px; font-weight: 600; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.quick-search h3 .badge-cta {
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
  padding: 2px 7px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-ink);
}
.quick-search .search-shell {
  box-shadow: none;
  padding: 4px;
  border-color: var(--line);
}
.quick-search .search-shell .search-input-wrap input {
  height: 36px; font-size: 13.5px;
}
.quick-search .search-shell .search-input-wrap > svg { width: 16px; height: 16px; }
.quick-search .search-shell .search-go {
  height: 36px; padding: 0 16px; font-size: 13px;
  border-radius: 8px;
}

/* Orders table card */
.table-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.table-card .tc-head {
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.table-card .tc-head h3 { font-size: 16px; font-weight: 600; }
.table-card .tc-head .total { color: var(--ink-3); font-size: 13px; }
.table-card .tc-head .total b { color: var(--ink); }
.table-card .tc-tools { display: flex; align-items: center; gap: 8px; }
.table-card .tc-search {
  display: flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 10px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px;
}
.table-card .tc-search input {
  border: 0; background: transparent; outline: 0;
  font-size: 13px; color: var(--ink); min-width: 180px;
}

.orders-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
}
.orders-table thead th {
  text-align: left; padding: 12px 16px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  color: var(--ink-3); text-transform: uppercase;
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.orders-table tbody td {
  padding: 14px 16px; border-bottom: 1px solid var(--line);
  color: var(--ink-2); vertical-align: middle;
}
.orders-table tbody tr:last-child td { border-bottom: 0; }
.orders-table tbody tr:hover { background: var(--bg-soft); }
.orders-table tbody tr.orders-row--iptal td {
  background: color-mix(in srgb, #b91c1c 6%, #fff);
}
.orders-table tbody tr.orders-row--iptal:hover td {
  background: color-mix(in srgb, #b91c1c 10%, #fff);
}
.orders-table tbody tr.orders-row--iptal .ord-id,
.orders-table tbody tr.orders-row--iptal .ord-price {
  color: #b91c1c;
}
.orders-table .ord-id { font-weight: 700; color: var(--ink); }
.orders-table .ord-price { font-weight: 700; color: var(--ink); white-space: nowrap; text-align: right; }
.orders-table .ord-date { color: var(--ink-3); white-space: nowrap; font-variant-numeric: tabular-nums; }
.orders-table .td-status { text-align: right; white-space: nowrap; }

/* Progress (yüzde sütunu) */
.progress {
  display: flex; align-items: center; gap: 8px;
  min-width: 110px;
}
.progress .bar {
  flex: 1; height: 6px; border-radius: 999px;
  background: var(--line); overflow: hidden;
}
.progress .bar > span {
  display: block; height: 100%;
  background: var(--green);
  border-radius: 999px;
}
.progress .pct { font-size: 11.5px; font-weight: 700; color: var(--ink); min-width: 30px; }
.progress.pending .bar > span { background: #f59e0b; }
.progress.pending .pct { color: #92400e; }
.progress.cancelled .bar > span { background: #dc2626; width: 0 !important; }
.progress.cancelled .pct { color: #b91c1c; }

/* Status badge */
.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 4px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600;
  background: var(--bg-soft); color: var(--ink-3);
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
}
.status-badge__ico {
  width: 20px; height: 20px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(15, 18, 28, 0.06);
}
.status-badge__ico .ico {
  width: 11px; height: 11px;
  stroke-width: 2;
}
.status-badge.ok {
  background: var(--green-soft); color: var(--green-ink);
  border-color: rgba(13, 129, 116, 0.12);
}
.status-badge.ok .status-badge__ico { background: rgba(13, 129, 116, 0.16); color: var(--green-ink); }
.status-badge.warn {
  background: #fef3c7; color: #92400e;
  border-color: rgba(146, 64, 14, 0.12);
}
.status-badge.warn .status-badge__ico { background: rgba(146, 64, 14, 0.12); color: #92400e; }
.status-badge.fail {
  background: #fee2e2; color: #b91c1c;
  border-color: rgba(185, 28, 28, 0.12);
}
.status-badge.fail .status-badge__ico { background: rgba(185, 28, 28, 0.12); color: #b91c1c; }
.status-badge.info {
  background: #dbeafe; color: #1e40af;
  border-color: rgba(30, 64, 175, 0.12);
}
.status-badge.info .status-badge__ico { background: rgba(30, 64, 175, 0.12); color: #1e40af; }
.status-badge.info .status-badge__ico .ico { animation: statusSpin 2.4s linear infinite; }
@keyframes statusSpin { to { transform: rotate(360deg); } }

.row-actions { display: inline-flex; gap: 4px; }
.row-actions button,
.row-actions a {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 160ms var(--ease);
  text-decoration: none;
}
.row-actions button:hover,
.row-actions a:hover { background: #fff; border-color: var(--line-strong); color: var(--ink); }

@media (max-width: 720px) {
  .orders-table thead { display: none; }
  .orders-table tbody td { padding: 10px 14px; }
  .orders-table tbody td.col-pct { display: none; }
}

/* ===== Çarkıfelek (cark.html) ===== */
.cark-hero {
  display: grid; grid-template-columns: 1fr 320px; gap: 16px;
  align-items: start;
}
@media (max-width: 880px) { .cark-hero { grid-template-columns: 1fr; } }

.cark-wheel-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  position: relative;
}

/* Pointer (üstte indicator) */
.cark-pointer {
  position: absolute; top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.cark-pointer svg { width: 22px; height: 28px; filter: drop-shadow(0 2px 4px rgba(15,18,28,.25)); }

/* Wheel SVG */
.cark-wheel {
  position: relative;
  width: 100%; max-width: 380px;
  aspect-ratio: 1;
}
.cark-wheel svg {
  width: 100%; height: 100%; display: block;
  filter: drop-shadow(0 14px 28px rgba(13,129,116,0.22)) drop-shadow(0 4px 8px rgba(15,18,28,0.10));
}
.wheel-rotor {
  transform-origin: 200px 200px;
  transition: transform 4.5s cubic-bezier(0.17, 0.67, 0.16, 1);
}
.wedge-label {
  font-family: var(--font);
  font-weight: 800; font-size: 17px;
  fill: var(--ink); letter-spacing: -0.01em;
  pointer-events: none;
}
.wedge-label.t-green  { fill: var(--green-ink); }
.wedge-label.t-blue   { fill: #1e40af; }
.wedge-label.t-pink   { fill: #9d174d; }
.wedge-label.t-yellow { fill: #92400e; }
.wedge-label.t-gold   { fill: #78350f; font-size: 19px; }

/* Decorative outer light dots */
.cark-dots circle {
  transform-origin: center;
  animation: cark-dot-chase 1.8s linear infinite;
  animation-delay: calc(var(--i, 0) * -0.075s);
}
@keyframes cark-dot-chase {
  0%, 100% { opacity: 0.35; }
  18%      { opacity: 1; }
}

/* Center spin button */
.cark-spin-btn {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border: 0; border-radius: 50%;
  background: var(--green); color: #fff;
  font-weight: 800; font-size: 14px; letter-spacing: .14em;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px -6px rgba(13,129,116,.55),
              inset 0 0 0 5px rgba(255,255,255,.18),
              inset 0 -3px 0 rgba(0,0,0,.12);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  z-index: 2;
}
.cark-spin-btn:hover { transform: translate(-50%, -50%) scale(1.05); }
.cark-spin-btn:active { transform: translate(-50%, -50%) scale(0.96); }
.cark-spin-btn:disabled { opacity: .55; cursor: not-allowed; }

/* Result banner */
.cark-result {
  margin-top: 4px;
  padding: 10px 18px;
  background: var(--green-soft); color: var(--green-ink);
  border-radius: 999px; font-weight: 700; font-size: 14px;
  display: none;
  align-items: center; gap: 8px;
  animation: cark-pop 400ms var(--ease);
}
.cark-result.show { display: inline-flex; }
.cark-result.gold { background: #fef3c7; color: #92400e; }
@keyframes cark-pop {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

.cark-hint {
  font-size: 12.5px; color: var(--ink-4); text-align: center;
}

/* Right column */
.cark-side { display: grid; gap: 12px; }

/* Çark altındaki stats sırası (2 sütun) */
.cark-stats-row {
  width: 100%; align-self: stretch;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 4px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.cark-stats-row .stat-tile {
  border: 0; background: var(--bg-soft);
  padding: 14px;
}
.cark-stats-row .stat-tile .s-val { font-size: 22px; }
@media (max-width: 480px) {
  .cark-stats-row { grid-template-columns: 1fr; }
}

.cark-bulk {
  width: 100%;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.cark-bulk__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  text-align: center;
}
.cark-bulk__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.cark-bulk__desc {
  font-size: 12.5px;
  color: var(--ink-3);
}
.cark-bulk__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.cark-bulk__btn {
  min-width: 108px;
  font-weight: 600;
}
.cark-bulk__btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.cark-bulk__progress {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.cark-bulk__progress-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.cark-bulk__progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #34d399);
  transition: width 280ms var(--ease);
}
.cark-bulk__progress-text {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
}
.cark-bulk__summary {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--green-soft);
  border: 1px solid rgba(13, 129, 116, 0.14);
}
.cark-bulk__summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.cark-bulk__summary-head strong {
  font-size: 14px;
  color: var(--green-ink);
}
.cark-bulk__summary-total {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-ink);
  white-space: nowrap;
}
.cark-bulk__summary-list {
  list-style: none;
  margin: 0;
  padding: 0 4px 0 0;
  display: grid;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 129, 116, 0.35) transparent;
}
.cark-bulk__summary-list::-webkit-scrollbar {
  width: 5px;
}
.cark-bulk__summary-list::-webkit-scrollbar-track {
  background: transparent;
  margin: 4px 0;
}
.cark-bulk__summary-list::-webkit-scrollbar-thumb {
  background: rgba(13, 129, 116, 0.28);
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.cark-bulk__summary-list::-webkit-scrollbar-thumb:hover {
  background: rgba(13, 129, 116, 0.48);
  background-clip: padding-box;
}
.cark-bulk__summary-list::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}
.cark-bulk__summary-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}
.cark-bulk__summary-list li strong {
  font-size: 12.5px;
  color: var(--ink);
  white-space: nowrap;
}

/* Tier list — bakiye yükleme → hak tablosu */
.tier-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden;
}
.tier-card .tc-head {
  padding: 14px 16px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.tier-card .tc-head svg { color: var(--green); }
.tier-card .tc-head h4 { font-size: 13px; font-weight: 600; }
.tier-list {
  list-style: none; margin: 0; padding: 0;
}
.tier-list li {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 8px; padding: 9px 16px;
  font-size: 13px;
  border-top: 1px solid var(--line);
}
.tier-list li:first-child { border-top: 0; }
.tier-list li .amt {
  color: var(--ink); font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.tier-list li .arr {
  color: var(--ink-4);
  display: inline-flex; align-items: center;
}
.tier-list li .arr svg { width: 12px; height: 12px; }
.tier-list li .rights {
  color: var(--green-ink); font-weight: 700;
  text-align: right; font-variant-numeric: tabular-nums;
}
.tier-list li.featured {
  background: var(--green-soft);
}
.tier-list li.featured .amt { color: var(--green-ink); }
.tier-list li.featured .arr { color: var(--green); }
.tier-card .tc-foot {
  padding: 12px 16px; border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.tier-card .tc-foot .btn { width: 100%; }

/* Rules card */
.cark-rules {
  list-style: none; margin: 0; padding: 18px 20px;
  display: grid; gap: 12px;
}
.cark-rules li {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.6;
}
.cark-rules .num {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; flex-shrink: 0;
}
.cark-rules b { color: var(--ink); font-weight: 600; }

/* ===== Product Detail (urun.html) ===== */
.pd-wrap { padding: 24px 0 64px; background: var(--bg-soft); }

.pd-breadcrumb {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-3); margin-bottom: 18px;
}
.pd-breadcrumb a { color: var(--ink-3); transition: color 160ms var(--ease); }
.pd-breadcrumb a:hover { color: var(--ink); }
.pd-breadcrumb svg { width: 12px; height: 12px; opacity: .55; }
.pd-breadcrumb .current { color: var(--ink); font-weight: 500; }

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

.pd-main { display: grid; gap: 16px; min-width: 0; }

/* Hero */
.pd-hero {
  padding: 22px 24px;
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--line);
}
.pd-logo {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px; letter-spacing: -0.02em;
  flex-shrink: 0;
}
.pd-meta { min-width: 0; }
.pd-meta h1 {
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.025em; line-height: 1.1; font-weight: 600;
  word-break: break-all;
}
.pd-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.pd-desc {
  padding: 18px 24px;
  font-size: 14px; color: var(--ink-3); line-height: 1.65;
}
.pd-desc b { color: var(--ink); font-weight: 600; }

/* Stats card head with action */
.pd-stat-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  gap: 12px; flex-wrap: wrap;
}
.pd-stat-head h3 { font-size: 16px; font-weight: 600; }
.pd-stat-head .sync-info { font-size: 12px; color: var(--ink-4); }
.pd-stat-head .sync-info b { color: var(--ink-2); }
.pd-stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
}
.pd-stat-grid--five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.pd-stat-grid--five > div:nth-child(-n+3) { grid-column: span 2; }
.pd-stat-grid--five > div:nth-child(n+4) { grid-column: span 3; }
.pd-stat-grid > div {
  background: #fff; padding: 16px;
  display: grid; gap: 4px;
}
@media (max-width: 720px) { .pd-stat-grid:not(.pd-stat-grid--five) { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) {
  .pd-stat-grid { grid-template-columns: 1fr; }
  .pd-stat-grid--five > div { grid-column: auto; }
}
.pd-stat-grid .k {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  color: var(--ink-4); text-transform: uppercase;
}
.pd-stat-grid .v {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
  line-height: 1.1;
}
.pd-stat-grid .v.green { color: var(--green-ink); }
.pd-stat-grid .delta {
  font-size: 11px; font-weight: 600; color: var(--green-ink);
  display: inline-flex; align-items: center; gap: 3px;
}
.pd-stat-grid .delta.down { color: #dc2626; }

/* Sipariş şartları */
.pd-rules {
  list-style: none; margin: 0; padding: 18px 24px;
  display: grid; gap: 10px;
}
.pd-rules li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.55;
}
.pd-rules li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* Sidebar buy card */
.pd-side { display: grid; gap: 14px; position: sticky; top: 96px; }
@media (max-width: 960px) { .pd-side { position: static; } }

.pd-buy { padding: 20px; }
.pd-buy .price-old {
  font-size: 14px; color: var(--ink-4); text-decoration: line-through;
}
.pd-buy .price-row {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-top: 4px;
}
.pd-buy .price-new {
  font-size: 32px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink); line-height: 1;
}
.pd-buy .price-tag {
  display: inline-flex; align-items: center;
  padding: 4px 9px; border-radius: 6px;
  background: var(--green-soft); color: var(--green-ink);
  font-size: 12px; font-weight: 700; letter-spacing: .01em;
}
.pd-buy .price-vat { font-size: 12px; color: var(--ink-4); margin-top: 6px; }
.pd-buy .buy-actions {
  margin-top: 16px; display: grid; gap: 8px;
}
.pd-buy .guarantee {
  margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line);
  display: grid; gap: 8px;
}
.pd-buy .guarantee div {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-3);
}
.pd-buy .guarantee div svg { color: var(--green); }
.pd-buy .guarantee div b { color: var(--ink); font-weight: 600; }
.pd-buy .product-code {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-4);
}
.pd-buy .product-code b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

/* Story ürün detay */
.pd-hero--story { align-items: center; gap: 10px; }
.pd-hero--story .sm-avatar-ring,
.pd-story-avatar-ring { width: 85px; height: 85px; padding: 3px; }
.pd-story-avatar { width: 100%; height: 100%; }
.pd-story-avatar .sm-avatar-inner { font-size: 24px; }
.pd-stat-grid--story { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 420px) { .pd-stat-grid--story { grid-template-columns: 1fr; } }
.pd-buy--story { padding: 20px; }
.pd-buy-title { font-size: 16px; font-weight: 600; margin: 0 0 6px; }
.pd-buy-lead { font-size: 13px; margin: 0 0 14px; line-height: 1.5; }
.pd-offer { display: grid; gap: 12px; }
.pd-offer--sep { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.pd-offer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.pd-offer-type { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.pd-offer-desc { display: block; font-size: 12px; margin-top: 2px; }
.pd-offer-price {
  font-size: 24px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink); white-space: nowrap; line-height: 1;
}
.pd-offer-btn { width: 100%; justify-content: center; }
.pd-offer-empty {
  font-size: 13px; line-height: 1.55; padding: 12px 14px;
  background: var(--bg-soft); border-radius: var(--r-sm);
}
.sim-card--story .sim-story-ring { width: 42px; height: 42px; padding: 2px; flex-shrink: 0; }
.sim-stats--story { grid-template-columns: repeat(3, 1fr); }
.sim-buy--link {
  text-decoration: none; color: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}

/* KV list (quick info card) */
.kv-list { list-style: none; margin: 0; padding: 6px 0; display: grid; }
.kv-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; gap: 12px;
  font-size: 13px;
  border-top: 1px solid var(--line);
}
.kv-list li:first-child { border-top: 0; }
.kv-list li .k { color: var(--ink-3); }
.kv-list li .v { color: var(--ink); font-weight: 600; text-align: right; }
.kv-list li .v.link { color: var(--green-ink); }

/* Similar siteler */
.pd-similar { margin-top: 36px; }
.pd-similar > .sec-head { text-align: left; margin-bottom: 18px; }
.pd-similar > .sec-head h2 { font-size: 22px; }
.similar-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .similar-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .similar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .similar-grid { grid-template-columns: 1fr; } }

.sim-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 14px; display: grid; gap: 10px;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), border-color 160ms var(--ease);
}
.sim-card:hover { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.sim-card .sim-top { display: flex; align-items: center; gap: 10px; }
.sim-card .sim-logo {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.sim-card .sim-dom { font-weight: 600; font-size: 13.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sim-card .sim-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.sim-card .sim-meta .chip { height: 22px; font-size: 11px; padding: 0 7px; }
.sim-card .sim-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 8px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
}
.sim-card .sim-stats div { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--ink-3); }
.sim-card .sim-stats div b { color: var(--ink); font-weight: 700; }
.sim-card .sim-foot { display: grid; gap: 10px; }
.sim-card .sim-prices { display: flex; align-items: baseline; gap: 8px; }
.sim-card .sim-old { font-size: 11px; color: var(--ink-4); text-decoration: line-through; }
.sim-card .sim-new { font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -0.025em; }
.sim-card .sim-new::after { content: ""; }
.sim-card .sim-save {
  margin-left: auto;
  font-size: 10.5px; font-weight: 700; letter-spacing: .02em;
  padding: 2px 7px; border-radius: 5px;
  background: var(--green-soft); color: var(--green-ink);
}
.sim-card .sim-buy {
  width: 100%; height: 38px; border-radius: 9px;
  background: var(--green); border: 0;
  color: #fff; font-weight: 600; font-size: 13.5px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  cursor: pointer;
  box-shadow: 0 4px 12px -4px rgba(13,129,116,.55);
  transition: all 160ms var(--ease);
}
.sim-card .sim-buy:hover { background: var(--green-2); transform: translateY(-1px); box-shadow: 0 6px 16px -4px rgba(13,129,116,.65); }
.sim-card .sim-buy svg { width: 14px; height: 14px; stroke-width: 2.5; }

/* Favori kalp butonu (sim-card üzerine) */
.sim-card { position: relative; }
.fav-btn {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 160ms var(--ease);
  z-index: 1;
}
.fav-btn .ico { width: 14px; height: 14px; stroke-width: 2; }
.fav-btn:hover { color: #dc2626; border-color: #fecaca; }
.fav-btn.active { color: #dc2626; border-color: #fecaca; background: #fee2e2; }
.fav-btn.active .ico { fill: currentColor; stroke: currentColor; }

.btn-favori.is-favori {
  color: #dc2626;
  border-color: #fecaca;
  background: #fee2e2;
}
.btn-favori.is-favori .ico {
  fill: currentColor;
  stroke: currentColor;
}

/* Panel — Favori ürünler */
.fav-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.fav-page-count {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-ink);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}
.fav-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .fav-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .fav-grid { grid-template-columns: 1fr; }
}
.fav-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 1px 2px rgba(15, 18, 28, 0.04);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}
.fav-card:hover {
  border-color: rgba(13, 129, 116, 0.22);
  box-shadow: 0 12px 28px -16px rgba(13, 129, 116, 0.35);
  transform: translateY(-2px);
}
.fav-card__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fav-card__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.fav-card__identity:hover .fav-card__title {
  color: var(--green);
}
.fav-card__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.fav-card__avatar-ring {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  padding: 2px;
  flex-shrink: 0;
  display: inline-flex;
}
.fav-card__avatar-img,
.fav-card__avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.fav-card__title-wrap {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.fav-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 160ms var(--ease);
}
.fav-card__subtitle {
  font-size: 12px;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fav-card__heart {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 160ms var(--ease);
}
.fav-card__heart .ico {
  width: 15px;
  height: 15px;
}
.fav-card__heart:hover {
  color: #dc2626;
  border-color: #fecaca;
  background: #fff5f5;
}
.fav-card__heart.active {
  color: #dc2626;
  border-color: #fecaca;
  background: #fee2e2;
}
.fav-card__heart.active .ico {
  fill: currentColor;
  stroke: currentColor;
}
.fav-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 24px;
}
.fav-card__tags .chip {
  height: 24px;
  font-size: 11px;
  padding: 0 8px;
}
.fav-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid rgba(15, 18, 28, 0.04);
}
.fav-card__stats--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 480px) {
  .fav-card__stats--three { grid-template-columns: 1fr; }
}
.fav-stat {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.fav-stat__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.fav-stat__value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fav-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.fav-card__foot--actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  align-items: stretch;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.fav-card__foot--actions .fav-card__cta {
  width: 100%;
  min-width: 0;
  flex: unset;
  justify-content: center;
}
.fav-card__foot--actions .fav-card__cta:only-child {
  grid-column: 1 / -1;
}
.fav-card__cta.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.fav-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}
.fav-card__price-old {
  font-size: 12px;
  color: var(--ink-4);
  text-decoration: line-through;
}
.fav-card__price-new {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.fav-card__price-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green-ink);
}
.fav-card__cta {
  flex-shrink: 0;
  min-width: 128px;
}
@media (max-width: 640px) {
  .fav-card__foot--actions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .fav-card__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .fav-card__cta {
    width: 100%;
    min-width: 0;
  }
}
.fav-empty__inner {
  text-align: center;
  padding: 56px 24px;
}
.fav-empty__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fav-empty__icon .ico {
  width: 26px;
  height: 26px;
}
.fav-empty h2 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--ink);
}
.fav-empty p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ink-3);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Banka hesap satırı */
.bank-row {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}
.bank-row:first-child { border-top: 0; }
.bank-logo {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--bg-soft); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; letter-spacing: .02em;
  flex-shrink: 0;
}
.bank-meta { min-width: 0; display: grid; gap: 3px; }
.bank-name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.bank-iban {
  font-family: ui-monospace, SFMono-Regular, "Roboto Mono", monospace;
  font-size: 12.5px; color: var(--ink-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.copy-btn {
  height: 32px; padding: 0 12px; border-radius: 7px;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--ink-2); cursor: pointer;
  font-size: 12.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 160ms var(--ease);
  flex-shrink: 0;
}
.copy-btn:hover { background: #fff; border-color: var(--line-strong); color: var(--ink); }
.copy-btn.copied { background: var(--green); border-color: var(--green); color: #fff; }

/* Project pills (proje filtresi — sipariş listesi) */
.project-pills {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.project-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  cursor: pointer;
  transition: all 160ms var(--ease);
  white-space: nowrap;
}
a.project-pill { text-decoration: none; color: var(--ink-2); }
a.project-pill.active { color: #fff; }
.project-pill:hover { border-color: var(--line-strong); background: var(--bg-soft); color: var(--ink); }
.project-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.project-pill .pp-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--ink-4); flex-shrink: 0;
}
.project-pill.active .pp-dot { background: rgba(255,255,255,.7); }
.project-pill .pp-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 18px; padding: 0 6px;
  border-radius: 999px;
  background: var(--bg-soft); color: var(--ink-3);
  font-size: 10.5px; font-weight: 700;
}
.project-pill.active .pp-count { background: rgba(255,255,255,.18); color: #fff; }
.project-pill.new-project {
  background: transparent; border-style: dashed; border-color: var(--green);
  color: var(--green-ink);
}
.project-pill.new-project:hover { background: var(--green-soft); color: var(--green-ink); }
.project-pill.new-project svg { color: var(--green); }

/* Proje atama modalı (sipariş listesi) */
.panel-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.panel-modal.open { display: flex; }
.panel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .45);
}
.panel-modal-card {
  position: relative;
  width: min(420px, 100%);
  max-height: min(80vh, 560px);
  margin: 0;
  z-index: 1;
  overflow: hidden;
}
.panel-modal-sub {
  margin: 0;
  padding: 0 20px 12px;
  font-size: 13px;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.proje-picker-list {
  padding: 8px;
  overflow-y: auto;
  max-height: min(52vh, 380px);
  display: grid;
  gap: 4px;
}
.proje-picker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 160ms var(--ease);
}
.proje-picker-item:hover {
  background: var(--bg-soft);
  border-color: var(--line);
}
.proje-picker-item.active {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green-ink);
}
.proje-picker-item--none {
  color: var(--ink-3);
  font-weight: 500;
}
.proje-picker-empty {
  padding: 18px 20px;
  color: var(--ink-4);
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}
.panel-modal-foot {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
}

/* Sipariş proje etiketi */
.proje-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  line-height: 1.2;
}
.proje-tag .status-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
}
.ord-id-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  margin-top: 2px;
}
.ord-id-sub .proje-tag {
  font-size: inherit;
}
.kv-grid .ord-id-sub {
  font-size: inherit;
  margin-top: 0;
}
.ord-id-sep {
  color: var(--ink-4);
}

/* Content chip — sipariş satırı yanı (X/Y içerik durumu) */
.content-chip {
  display: inline-flex; align-items: center;
  margin-left: 8px; padding: 2px 8px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .02em;
  background: var(--bg-soft); color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.content-chip.ok   { background: var(--green-soft); color: var(--green-ink); }
.content-chip.warn { background: #fef3c7; color: #92400e; }
.content-chip.fail { background: #fee2e2; color: #b91c1c; }

/* Order row inline actions */
.ord-actions {
  display: inline-flex; align-items: center; gap: 6px; flex-wrap: nowrap;
}
.ord-actions .btn { height: 28px; padding: 0 10px; font-size: 12px; }
.ord-actions .btn-sm { height: 28px; padding: 0 10px; font-size: 12px; }

/* Kompakt ikon butonu (Detay / Rapor / Ata / Sil) */
.ord-act-ico {
  width: 28px; height: 28px; border-radius: 7px;
  background: transparent; border: 1px solid var(--line-strong);
  color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: all 160ms var(--ease);
}
.ord-act-ico:hover { background: var(--bg-soft); border-color: var(--ink-4); color: var(--ink); }
.ord-act-ico.danger:hover { background: #fee2e2; border-color: #fecaca; color: #b91c1c; }
.ord-act-ico .ico { width: 14px; height: 14px; }

/* Social proof notify (sol alt köşe — aktivite akışı) */
.proof-notify {
  position: fixed; bottom: 64px; left: 20px;
  width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: 14px;
  box-shadow: 0 16px 40px -8px rgba(13,129,116,0.20), 0 4px 12px rgba(15,18,28,0.10);
  padding: 13px 16px;
  display: none;
  align-items: center; gap: 14px;
  z-index: 90;
  transform: translateX(-32px); opacity: 0;
  transition: transform 420ms cubic-bezier(0.34, 1.40, 0.64, 1), opacity 280ms var(--ease);
}
.proof-notify.show {
  display: flex;
  transform: translateX(0); opacity: 1;
}
.proof-notify .pn-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13.5px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px -2px rgba(15,18,28,.14);
}
.proof-notify .pn-text {
  font-size: 12.5px; color: var(--ink-2);
  line-height: 1.4;
  min-width: 0; flex: 1;
}
.proof-notify .pn-text b { color: var(--ink); font-weight: 600; }
.proof-notify .pn-meta {
  display: flex; align-items: center; gap: 5px;
  margin-top: 2px;
  font-size: 11px; color: var(--ink-4);
}
.proof-notify .pn-meta .live-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(13,129,116,.18);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}
.proof-notify .pn-meta b {
  color: var(--ink-2); font-weight: 600;
  font-family: ui-monospace, monospace;
}
.proof-notify .pn-close {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px;
  border: 0; background: transparent;
  color: var(--ink-4); cursor: pointer;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
}
.proof-notify .pn-close:hover { background: var(--bg-soft); color: var(--ink-2); }
.proof-notify .pn-close svg { width: 12px; height: 12px; }

@media (max-width: 480px) {
  .proof-notify { left: 12px; right: 12px; width: auto; bottom: 16px; }
}

/* ===== Frontend toaster (toaster.js — üst orta) ===== */
@keyframes toastInTop {
  from { opacity: 0; transform: translateY(-14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastOutTop {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}
@keyframes toastErrorGlow {
  0%, 100% { box-shadow: 0 10px 40px rgba(220, 38, 38, 0.28), 0 4px 14px rgba(15, 23, 42, 0.12); }
  50% { box-shadow: 0 12px 44px rgba(220, 38, 38, 0.38), 0 4px 18px rgba(185, 28, 28, 0.2); }
}

.toaster {
  position: fixed;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  pointer-events: none;
}
.toaster--tc {
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  align-items: stretch;
  width: min(440px, calc(100vw - 24px));
  padding: 0 12px;
}

.toast2 {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 20px 1fr 28px;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  border-left-width: 4px;
  border-left-style: solid;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-3);
  animation: toastInTop 0.28s var(--ease);
}
.toast2--out { animation: toastOutTop 0.22s var(--ease) forwards; }

.toast2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.toast2__icon svg { width: 18px; height: 18px; flex-shrink: 0; }

.toast2__msg {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
}

.toast2__close {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  border: none;
  background: transparent;
  color: var(--ink-4);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.toast2__close:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.toast2__close svg { width: 16px; height: 16px; }

.toast2--success {
  border-color: #86efac;
  border-left-color: var(--green);
  background: linear-gradient(135deg, #ecfdf5 0%, var(--green-soft) 100%);
}
.toast2--success .toast2__icon svg { color: var(--green-ink); }

.toast2--warning {
  border-color: #fcd34d;
  border-left-color: #d97706;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}
.toast2--warning .toast2__icon svg { color: #b45309; }

.toast2--error {
  border: 2px solid #fca5a5;
  border-left: 5px solid #dc2626;
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 55%, #fecdd3 100%);
  animation: toastInTop 0.28s var(--ease), toastErrorGlow 2.4s ease-in-out 0.35s 2;
}
.toast2--error .toast2__msg {
  font-weight: 600;
  color: #991b1b;
}
.toast2--error .toast2__icon svg { color: #b91c1c; }

.toast2--info {
  border-color: #7dd3fc;
  border-left-color: #0284c7;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.toast2--info .toast2__icon svg { color: #0369a1; }

/* Eski panel toast (script.js — geriye dönük) */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 11px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
  z-index: 1000;
  box-shadow: var(--shadow-pop);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast svg { width: 14px; height: 14px; color: var(--green); }
.toast.warn svg { color: #f59e0b; }
.toast.fail svg { color: #fb7185; }

/* Sipariş raporu satır helper'ları */
.rpt-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--bg-soft); color: var(--ink-3);
  font-size: 11.5px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.rpt-site { display: grid; gap: 2px; min-width: 0; }
.rpt-site b { color: var(--ink); font-size: 13.5px; font-weight: 600; }
.rpt-price { font-size: 11.5px; color: var(--ink-4); font-variant-numeric: tabular-nums; }
.rpt-link {
  display: inline-flex; align-items: center; gap: 5px;
  max-width: 460px;
  font-size: 12.5px; color: var(--ink-2);
  font-family: ui-monospace, SFMono-Regular, "Roboto Mono", monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 160ms var(--ease);
}
.rpt-link svg { color: var(--ink-4); flex-shrink: 0; }
.rpt-link:hover { color: var(--green-ink); }
.rpt-link:hover svg { color: var(--green); }

/* Pagination */
.pagination {
  display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.pg-btn, .pg-num {
  min-width: 32px; height: 32px; padding: 0 8px;
  border: 1px solid var(--line); border-radius: 7px;
  background: #fff; color: var(--ink-2);
  font-size: 12.5px; font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 160ms var(--ease);
  text-decoration: none;
}
.pg-btn:hover, .pg-num:hover {
  background: var(--bg-soft); border-color: var(--line-strong); color: var(--ink);
}
.pg-num.active {
  background: var(--green); color: #fff; border-color: var(--green);
  pointer-events: none;
}
.pg-btn:disabled { opacity: .45; cursor: not-allowed; }
.pg-btn:disabled:hover { background: #fff; border-color: var(--line); color: var(--ink-2); }
.pg-dots { padding: 0 6px; color: var(--ink-4); font-weight: 700; }
.pg-info { font-size: 12.5px; color: var(--ink-4); }

/* Referral link kutusu */
.referral-box {
  display: grid; grid-template-columns: 1fr auto;
  gap: 10px; align-items: center;
  padding: 12px 14px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.referral-link {
  font-family: ui-monospace, SFMono-Regular, "Roboto Mono", monospace;
  font-size: 13px; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Empty state */
.empty-state {
  padding: 56px 24px; text-align: center;
}
.empty-state .empty-ico {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--bg-soft); color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
}
.empty-state h3 { font-size: 16px; font-weight: 600; color: var(--ink); }
.empty-state p { color: var(--ink-3); margin-top: 6px; font-size: 14px; max-width: 360px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.empty-state .btn { margin-top: 18px; }

/* ===== Sub-page hero (kompakt — sadece adımlar) ===== */
.page-hero {
  position: relative; overflow: hidden;
  padding: 14px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { position: relative; z-index: 1; }

.steps {
  display: flex; align-items: center; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 5px; box-shadow: var(--shadow-1);
  max-width: 520px; margin: 0 auto;
}
.steps .step {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 34px; border-radius: 7px;
  font-size: 12.5px; font-weight: 500; color: var(--ink-3);
}
.steps .step .num {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--bg-soft); color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.steps .step.active { background: var(--green-soft); color: var(--green-ink); }
.steps .step.active .num { background: var(--green); color: #fff; }
.steps .step.done { color: var(--ink); }
.steps .step.done .num { background: var(--ink); color: #fff; }
.steps a.step { text-decoration: none; transition: background 160ms var(--ease); }
.steps a.step:hover { background: var(--bg-soft); }
.steps a.step.done:hover { background: var(--bg-soft); }
.steps .sep { width: 14px; height: 1px; background: var(--line); }
@media (max-width: 640px) {
  .steps .step { font-size: 12px; gap: 6px; }
  .steps .step .num { width: 20px; height: 20px; font-size: 11px; }
}

/* ===== Cart page layout ===== */
.cart-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 24px;
  align-items: start;
}
@media (max-width: 960px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.cart-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.cart-card-head h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }

/* Cart row (full-page) */
.cart-line { border-top: 1px solid var(--line); }
.cart-line:first-child { border-top: 0; }
.cart-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto 28px;
  gap: 10px 12px;
  align-items: center;
  padding: 10px 16px;
}
.cart-line .cart-row { padding-bottom: 6px; }
/* eski selector (compact mod, ödeme sayfası) */
#cart-page-list:not([data-rich]) .cart-row { border-top: 1px solid var(--line); }
#cart-page-list:not([data-rich]) .cart-row:first-child { border-top: 0; }
.cart-row .row-logo {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
  flex-shrink: 0;
}
.cart-row .row-meta { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.cart-row .row-title {
  display: inline-flex; align-items: center; gap: 8px;
  max-width: 100%; min-width: 0;
}
.cart-row .row-dom {
  flex: 0 1 auto; min-width: 0;
  font-weight: 600; font-size: 13.5px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-row .cart-product-type {
  flex-shrink: 0;
  height: 20px;
  padding: 0 6px;
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 5px;
}
.cart-row .row-price-wrap {
  text-align: right;
  white-space: nowrap;
}
.cart-row .row-price {
  font-weight: 700; font-size: 14px; color: var(--ink);
  letter-spacing: -0.01em; white-space: nowrap;
}
.cart-row .row-rm {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 160ms var(--ease);
}
.cart-row .row-rm:hover { background: #fee2e2; border-color: #fecaca; color: #dc2626; }
.cart-row .row-fee {
  font-size: 11px; font-weight: 500; color: var(--ink-3);
  margin-top: 2px; white-space: nowrap;
}
@media (max-width: 560px) {
  .cart-row {
    grid-template-columns: 32px minmax(0, 1fr) auto 28px;
    gap: 8px 10px;
    padding: 10px 12px;
  }
  .cart-row .row-logo { width: 32px; height: 32px; font-size: 10px; }
  .cart-row .row-title { flex-wrap: wrap; gap: 4px 6px; }
  .cart-row .row-dom { font-size: 13px; }
  .cart-row .row-price { font-size: 13px; }
}

/* Cart-row içerik paneli (dosya/makale seçimi) */
.cart-content { padding: 0 16px 12px; }
@media (max-width: 560px) { .cart-content { padding: 0 12px 10px; } }

.cart-content-toggle {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 9px 12px;
  font-size: 13px; color: var(--ink-2); font-weight: 600;
  cursor: pointer;
  transition: background 160ms var(--ease), border-color 160ms var(--ease);
}
.cart-content-toggle:hover { background: #eef0f6; border-color: var(--line-strong); color: var(--ink); }
.cart-content-toggle .chev {
  width: 14px; height: 14px; margin-left: auto;
  stroke: currentColor; stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 200ms var(--ease);
  color: var(--ink-3);
}
.cart-content-toggle.open .chev { transform: rotate(180deg); }
.cart-content-toggle .badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .01em;
  background: #fef3c7; color: #92400e;
}
.cart-content-toggle .badge.ok { background: var(--green-soft); color: var(--green-ink); }
.cart-content-toggle .badge.pending { background: #fef3c7; color: #92400e; }
.cart-content-toggle .badge svg {
  width: 11px; height: 11px;
  stroke: currentColor; stroke-width: 2.2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.cart-content-panel {
  display: none;
  margin-top: 10px;
  padding: 14px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--bg-soft);
}
.cart-content-panel.open { display: block; }

.cart-content-tabs {
  display: inline-flex; padding: 4px; gap: 2px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  margin-bottom: 12px;
}
.cart-content-tabs button {
  height: 32px; padding: 0 12px; border-radius: 6px;
  border: 0; background: transparent;
  font-size: 12.5px; font-weight: 600; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.cart-content-tabs button.active { background: var(--green); color: #fff; }
.cart-content-tabs .fee {
  font-size: 10.5px; font-weight: 700;
  padding: 1px 6px; border-radius: 4px;
  background: rgba(255,255,255,.18);
}
.cart-content-tabs button:not(.active) .fee { background: var(--green-soft); color: var(--green-ink); }

.cart-content-pane { display: none; }
.cart-content-pane.open { display: grid; gap: 12px; }

.cart-content-actions {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
}

.file-input {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border: 1px dashed var(--line-strong); border-radius: var(--r-sm);
  background: #fff; cursor: pointer;
  transition: all 160ms var(--ease);
}
.file-input:hover { border-color: var(--ink-4); }
.file-input input[type=file] { display: none; }
.file-input .file-ico {
  width: 32px; height: 32px; border-radius: 7px; background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-3); flex-shrink: 0;
}
.file-input .file-meta { display: grid; gap: 1px; min-width: 0; flex: 1; }
.file-input .file-label { font-weight: 600; font-size: 13px; color: var(--ink); }
.file-input .file-label .req { color: #dc2626; margin-left: 2px; }
.file-input .file-hint { font-size: 11.5px; color: var(--ink-4); }
.file-input .file-name { font-size: 12px; color: var(--green-ink); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-input.has-file { border-style: solid; border-color: var(--green); background: var(--green-soft); }
.file-input.has-file .file-ico { background: var(--green); color: #fff; }

.cart-empty-page {
  padding: 56px 20px; text-align: center;
}
.cart-empty-page .cart-empty-circ { width: 72px; height: 72px; }
.cart-empty-page h3 { margin-top: 14px; font-size: 18px; }
.cart-empty-page p { color: var(--ink-3); margin-top: 6px; font-size: 14px; }
.cart-empty-page .btn { margin-top: 20px; }

/* ===== Summary card (sidebar) ===== */
.summary-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky; top: 96px;
}
.summary-card .cart-card-head { padding: 16px 18px; }
.summary-body { padding: 18px; display: grid; gap: 12px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--ink-2); }
.summary-row .muted { font-size: 13px; }
.summary-row .deal { color: var(--green-ink); font-weight: 600; }
.summary-divider { height: 1px; background: var(--line); margin: 4px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; }
.summary-total .lbl { font-size: 14px; color: var(--ink-3); }
.summary-total .val { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; color: var(--ink); }
.summary-card .cart-foot { border-top: 1px solid var(--line); }

/* Coupon */
.coupon {
  display: flex; gap: 8px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 6px;
}
.coupon input {
  flex: 1; border: 0; outline: 0; background: transparent;
  height: 36px; padding: 0 8px; font-size: 13.5px; color: var(--ink);
}
.coupon button {
  height: 36px; padding: 0 14px; border-radius: 7px;
  border: 0; background: var(--ink); color: #fff;
  font-weight: 600; font-size: 13px;
}
.coupon button:hover { background: #000; }

/* Trust list (sepet/ödeme yan kart altı) */
.trust-list {
  list-style: none; margin: 14px 0 0; padding: 0;
  display: grid; gap: 10px;
}
.trust-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-3);
}
.trust-list li svg { color: var(--green); }
.trust-list li b { color: var(--ink); font-weight: 600; }

/* ===== Forms (ödeme sayfası) ===== */
.field { display: grid; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); letter-spacing: .01em; }
.field .hint { font-size: 12px; color: var(--ink-4); }
.input, .select, .textarea {
  width: 100%; height: 44px; padding: 0 14px;
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  font-size: 14px; color: var(--ink); font-family: inherit;
  outline: 0; transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13,129,116,.12);
}
.textarea { height: auto; padding: 12px 14px; min-height: 96px; resize: vertical; line-height: 1.5; }
.field-row {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.field-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.field-row .field-file {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.field-row .field-file .file-input {
  flex: 1;
  min-height: 74px;
  align-items: center;
}
@media (max-width: 640px) {
  .field-row, .field-row.cols-3 { grid-template-columns: 1fr; }
  .field-row .field-file .file-input { min-height: auto; }
}

.form-grid { padding: 20px; display: grid; gap: 14px; }
.form-section + .form-section { margin-top: 16px; }

/* Tabs (fatura tipi vb.) */
.tabs {
  display: inline-flex; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 4px;
}
.tabs button {
  display: inline-flex; align-items: center; gap: 7px;
  height: 34px; padding: 0 14px; border-radius: 6px;
  border: 0; background: transparent;
  font-size: 13px; font-weight: 600; color: var(--ink-3);
  cursor: pointer;
}
.tabs button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-1); }

/* Renkli durum noktası (filter tabs ve diğer yerlerde) */
.status-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--ink-4); flex-shrink: 0;
}
.status-dot.ok   { background: var(--green); }
.status-dot.warn { background: #f59e0b; }
.status-dot.info { background: #3b82f6; }
.status-dot.fail { background: #dc2626; }

/* Tab içindeki sayı chip'i */
.tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 18px; padding: 0 7px;
  border-radius: 999px;
  background: rgba(15,18,28,.08); color: var(--ink-2);
  font-size: 10.5px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.tabs button.active .tab-count { background: var(--green); color: #fff; }

@media (max-width: 640px) {
  .tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 4px;
    box-sizing: border-box;
  }
  .tabs button {
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0 10px;
    font-size: 12.5px;
  }
}

@media (max-width: 380px) {
  .tabs button {
    padding: 0 8px;
    font-size: 12px;
    gap: 5px;
  }
  .tabs .tab-count {
    min-width: 18px;
    height: 16px;
    padding: 0 5px;
    font-size: 10px;
  }
}

/* Payment method radio cards */
.pay-list {
  display: grid; gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 720px) { .pay-list { grid-template-columns: 1fr; } }

.pay-method {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  background: #fff; cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.pay-method:hover { border-color: var(--ink-4); }
.pay-method input {
  position: absolute; top: 12px; right: 12px;
  accent-color: var(--green); width: 16px; height: 16px;
}
.pay-method .pm-ico {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-soft); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay-method .pm-meta { display: grid; gap: 2px; }
.pay-method .pm-name { font-weight: 600; font-size: 14px; color: var(--ink); padding-right: 22px; }
.pay-method .pm-desc { font-size: 12.5px; color: var(--ink-3); line-height: 1.45; }
.pay-method.selected {
  border-color: var(--green); background: var(--green-soft);
}
.pay-method.selected .pm-ico { background: var(--green); color: #fff; }

.pay-extra {
  display: none;
  padding: 18px 20px 22px; border-top: 1px dashed var(--line);
  margin-top: 4px;
}
.pay-extra.open { display: block; }

/* PayTR iframe slot (gerçek entegrasyonda <iframe src="..."> ile değiştirilecek) */
.pay-iframe-slot {
  margin-top: 14px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--bg-soft);
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pay-iframe-slot iframe {
  width: 100%; height: 520px; border: 0; display: block; background: #fff;
}
.pay-iframe-placeholder {
  text-align: center; padding: 32px 20px; max-width: 380px;
}
.pay-iframe-placeholder .pi-circ {
  width: 56px; height: 56px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--green);
  box-shadow: var(--shadow-1);
}
.pay-iframe-placeholder .pi-title { font-weight: 600; font-size: 15px; color: var(--ink); }
.pay-iframe-placeholder .pi-desc {
  margin-top: 6px; color: var(--ink-3); font-size: 13px; line-height: 1.6;
}
.pay-iframe-placeholder .pi-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 5px 10px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 11.5px; font-weight: 600; color: var(--ink-2); letter-spacing: .04em;
}

/* Bakiye ile ödeme kutusu */
.bakiye-pay-box {
  margin-top: 14px; padding: 22px 24px;
  border: 1px solid var(--green-soft); border-radius: var(--r-md);
  background: var(--green-soft);
  text-align: center;
}
.bakiye-pay-text {
  margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--ink-2);
}
.bakiye-pay-text b { color: var(--green-ink); }
.bakiye-pay-amount {
  margin: 12px 0 0; font-size: 16px; font-weight: 700; color: var(--ink);
}
.bakiye-pay-amount span { color: var(--green-ink); }
.bakiye-pay-limit { margin: 8px 0 0; font-size: 12px; }
.bakiye-pay-warning {
  margin-top: 14px; padding: 12px 14px; border-radius: var(--r-md);
  background: #fdecec; border: 1px solid #f6c7c7;
  color: #b42318; font-size: 13px; line-height: 1.6;
}

/* Checkbox / radio rows */
.check-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-2);
}
.check-row input { accent-color: var(--green); width: 16px; height: 16px; }
.check-row a { color: var(--green-ink); text-decoration: underline; }

/* ===== Success page ===== */
.success-wrap {
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.success-top {
  padding: 48px 28px 32px;
  text-align: center;
  background: linear-gradient(180deg, #f0f6f4 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.success-circle {
  width: 80px; height: 80px; border-radius: 999px;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px -8px rgba(13,129,116,.55);
}
.success-circle svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-top h1 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.025em; }
.success-top p { color: var(--ink-3); margin-top: 10px; font-size: 15px; }
.success-order {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
}
.success-order b { color: var(--ink); }

.success-body { padding: 24px 28px; display: grid; gap: 20px; }
.kv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
}
@media (max-width: 560px) { .kv-grid { grid-template-columns: 1fr; } }
.kv-grid .k { font-size: 12.5px; color: var(--ink-4); }
.kv-grid .v { font-size: 14px; color: var(--ink); font-weight: 500; margin-top: 2px; }

.success-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 18px 28px 28px;
  border-top: 1px solid var(--line);
}
.success-actions .btn { flex: 1 1 0; min-width: 180px; }

/* Hatırlatma callout (içerik yüklenmemiş siparişler için) */
.reminder {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: var(--r-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-1);
}
.reminder-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reminder-title { font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.reminder-desc { font-size: 13.5px; color: var(--ink-3); margin: 6px 0 14px; line-height: 1.6; }
.reminder-desc b { color: var(--ink); font-weight: 600; }

/* Next steps callout */
.next-steps {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 18px;
  display: grid; gap: 10px;
}
.next-steps h4 { font-size: 14px; font-weight: 600; }
.next-steps ol { margin: 0; padding-left: 18px; color: var(--ink-3); font-size: 13.5px; line-height: 1.7; }
.next-steps ol b { color: var(--ink); font-weight: 600; }

/* ============================================================
   Tüm Siteler (tum_siteler.html)
   ============================================================ */

/* ----- Hero ----- */
.ts-hero {
  background: linear-gradient(180deg, #e4efeb 0%, #f1f6f5 60%, #ffffff 100%);
  padding: 48px 0 32px;
  position: relative; overflow: hidden;
}
.ts-hero .container { position: relative; z-index: 1; }
.ts-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.ts-hero h1 {
  font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.03em;
  line-height: 1.1; margin-top: 14px;
}
.ts-hero h1 .accent { color: var(--green); }
.ts-hero p {
  color: var(--ink-3); font-size: 16px; line-height: 1.55;
  margin-top: 16px; max-width: 580px; margin-left: auto; margin-right: auto;
}
.ts-hero .trust {
  margin-top: 22px;
  display: inline-flex; flex-wrap: wrap; gap: 18px; justify-content: center;
  color: var(--ink-3); font-size: 13px;
}
.ts-hero .trust span { display: inline-flex; align-items: center; gap: 8px; }
.ts-hero .trust b { color: var(--ink); font-weight: 600; }

.ts-section { padding: 32px 0 64px; }

/* ----- Filtre paneli ----- */
.ts-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px; box-shadow: var(--shadow-1);
  margin-bottom: 16px;
}
.ts-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px; flex-wrap: wrap;
}
.ts-panel-head h2 { font-size: 18px; letter-spacing: -0.015em; margin: 0; color: var(--ink); }
.ts-count { font-size: 13px; color: var(--ink-3); }
.ts-count b { color: var(--green-ink); font-weight: 600; }

.ts-filters {
  display: grid; gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.ts-filters .ts-search { grid-column: 1 / -1; }

.ts-field { position: relative; }
.ts-field select,
.ts-field input[type="text"] {
  width: 100%; height: 42px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink);
  font: inherit; font-size: 14px;
  appearance: none; -webkit-appearance: none;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.ts-field input[type="text"] { padding: 0 14px 0 40px; }
.ts-field select:focus,
.ts-field input[type="text"]:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13,129,116,.12);
}
.ts-field .ts-ico-r,
.ts-field .ts-ico-l {
  position: absolute; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--ink-3);
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.ts-field .ts-ico-r { right: 14px; }
.ts-field .ts-ico-l { left: 14px; }

.ts-actions {
  display: flex; gap: 10px; margin-top: 14px;
  align-items: center; justify-content: flex-end; flex-wrap: wrap;
}

/* ----- Site adı ve logo ----- */
.ts-site {
  display: flex; align-items: center; gap: 10px;
  min-width: 0;
}
.ts-site-logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.ts-site-name {
  font-weight: 600; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
a.ts-site-name:hover { color: var(--green-ink); }

/* ----- Tablo (masaüstü) ----- */
.ts-table-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-1); overflow: hidden;
}
.ts-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.ts-table thead th {
  text-align: left;
  padding: 14px 12px;
  background: #f9fafc;
  border-bottom: 1px solid var(--line);
  font-size: 11px; font-weight: 600; color: var(--ink-3);
  letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
}
.ts-table thead th.center { text-align: center; }
.ts-table thead th.right  { text-align: right; }
.ts-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2); vertical-align: middle;
}
.ts-table tbody tr:last-child td { border-bottom: 0; }
.ts-table tbody tr:hover td { background: #fafbfd; }
.ts-table td.center { text-align: center; }
.ts-table td.right  { text-align: right; }
.ts-table tr.is-hidden { display: none; }

.ts-num   { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
.ts-age   { color: var(--ink-2); white-space: nowrap; font-size: 13px; }
.ts-price { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* İndirimli fiyat — eski/yeni */
.ts-price-wrap {
  display: inline-flex; flex-direction: column;
  align-items: flex-end; line-height: 1.15; gap: 2px;
}
.ts-price-old {
  font-size: 11.5px; color: var(--ink-4);
  font-variant-numeric: tabular-nums; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.ts-price-old s { text-decoration: line-through; }
.ts-price-new {
  font-weight: 700; color: var(--green-ink);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.ts-price-badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700; color: #b91c1c;
  background: #fee2e2; border-radius: 999px;
  padding: 1px 6px; letter-spacing: .02em;
}

/* ----- Boş durum ----- */
.ts-empty {
  padding: 56px 24px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  margin-top: 16px;
}
.ts-empty-ico {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.ts-empty-ico svg {
  width: 26px; height: 26px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.ts-empty h3 { font-size: 16px; margin: 0 0 6px; color: var(--ink); }
.ts-empty p  { font-size: 14px; color: var(--ink-3); margin: 0; }

/* ----- Sayfalama ----- */
.ts-pager {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 14px 16px;
  border-top: 1px solid var(--line); background: #fafbfd;
  flex-wrap: wrap;
}
.ts-pager-info { font-size: 13px; color: var(--ink-3); }
.ts-pager-info b { color: var(--ink); font-weight: 600; }
.ts-pager-nav { display: inline-flex; gap: 6px; }
.ts-pager-btn {
  min-width: 34px; height: 34px; padding: 0 10px;
  border: 1px solid var(--line); background: #fff; border-radius: 8px;
  font: inherit; font-size: 13px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: all 160ms var(--ease);
}
.ts-pager-btn:hover:not(:disabled):not(.active) { border-color: var(--green); color: var(--green-ink); }
.ts-pager-btn.active { background: var(--green); border-color: var(--green); color: #fff; }
.ts-pager-btn:disabled { opacity: .45; cursor: not-allowed; }

/* ----- Responsive: tablet ----- */
@media (max-width: 880px) {
  .ts-filters { grid-template-columns: repeat(2, 1fr); }
}

/* ----- Responsive: mobil — tablo → kart dönüşümü (CSS-only) ----- */
@media (max-width: 720px) {
  .ts-panel { padding: 14px; }
  .ts-actions { justify-content: stretch; }
  .ts-actions > .btn { flex: 1; justify-content: center; }

  /* Tablo wrapper sadeleştir */
  .ts-table-card {
    background: transparent; border: 0; box-shadow: none; border-radius: 0;
    overflow: visible;
  }
  /* Pagination kendi kutusunda dursun */
  .ts-pager {
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    margin-top: 8px;
  }
  /* Thead tamamen gizle */
  .ts-table thead { display: none; }
  .ts-table, .ts-table tbody { display: block; width: 100%; }

  /* Her satır bir kart */
  .ts-table tbody tr {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: #fff; border: 1px solid var(--line);
    border-radius: 10px; padding: 10px 12px;
    margin-bottom: 8px;
  }
  .ts-table tbody tr:hover td { background: transparent; }

  /* Tüm hücreler: etiket sol, değer sağ */
  .ts-table tbody td {
    padding: 5px 0; border-bottom: 1px dashed var(--line);
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; min-width: 0; text-align: left;
  }
  .ts-table tbody td::before {
    content: attr(data-label);
    font-size: 10.5px; font-weight: 600; color: var(--ink-3);
    text-transform: uppercase; letter-spacing: .04em;
    flex-shrink: 0;
  }

  /* 1. hücre — Site adı: tam genişlik, kart başlığı */
  .ts-table tbody td:nth-child(1) {
    grid-column: 1 / -1; grid-row: 1;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px; margin-bottom: 4px;
  }
  .ts-table tbody td:nth-child(1)::before { display: none; }

  /* 2-3. hücreler — Dofollow | News (Row 2) */
  .ts-table tbody td:nth-child(2) {
    grid-row: 2; grid-column: 1; padding-right: 12px;
  }
  .ts-table tbody td:nth-child(3) {
    grid-row: 2; grid-column: 2; padding-left: 12px;
    border-left: 1px dashed var(--line);
  }

  /* 5-6. hücreler — DA | PA (Row 3, mobilde Yaş'tan önce) */
  .ts-table tbody td:nth-child(5) {
    grid-row: 3; grid-column: 1; padding-right: 12px;
  }
  .ts-table tbody td:nth-child(6) {
    grid-row: 3; grid-column: 2; padding-left: 12px;
    border-left: 1px dashed var(--line);
  }

  /* 4. hücre — Yaş: tam genişlik (Row 4) */
  .ts-table tbody td:nth-child(4) {
    grid-row: 4; grid-column: 1 / -1;
    border-bottom: 0;
  }

  /* 7-8. hücreler — Fiyat | Aksiyon (Row 5, kart altlığı) */
  .ts-table tbody td:nth-child(7) {
    grid-row: 5; grid-column: 1;
    border-top: 1px solid var(--line); border-bottom: 0;
    padding-top: 10px; margin-top: 4px;
  }
  .ts-table tbody td:nth-child(7)::before { display: none; }
  .ts-table tbody td:nth-child(7) .ts-price-wrap { align-items: flex-start; }
  .ts-table tbody td:nth-child(8) {
    grid-row: 5; grid-column: 2;
    border-top: 1px solid var(--line); border-bottom: 0;
    padding-top: 10px; margin-top: 4px;
    justify-content: flex-end;
  }
  .ts-table tbody td:nth-child(8)::before { display: none; }
}

@media (max-width: 480px) {
  .ts-filters { grid-template-columns: 1fr; }
}

/* ============================================================
   Story Satış (story_satis.html) — sosyal medya hesapları
   ============================================================ */

/* Hesap hücresi: ring + avatar + isim/username */
.sm-account {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
}
.sm-avatar-ring {
  width: 44px; height: 44px; border-radius: 999px;
  padding: 2px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--line-strong);
}
/* Platform ring/badge renkleri StoryPlatform üzerinden inline style ile gelir; sınıflar yapı için korunur */

.sm-avatar {
  width: 100%; height: 100%; border-radius: 999px;
  background: #fff; padding: 2px;
  display: flex; align-items: center; justify-content: center;
}
.sm-avatar-inner {
  width: 100%; height: 100%; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
}

.sm-account-meta { min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.sm-name {
  font-weight: 600; color: var(--ink); font-size: 14px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sm-username {
  font-size: 12px; color: var(--ink-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Platform rozeti */
.sm-platform {
  display: inline-flex; align-items: center; gap: 6px;
  height: 26px; padding: 0 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: #fff; white-space: nowrap;
}
.sm-platform svg { width: 12px; height: 12px; fill: currentColor; stroke: none; flex-shrink: 0; }
.sm-platform--pi svg { width: 16px; height: 16px; fill: none; }

/* Takipçi sayısı */
.sm-followers {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-variant-numeric: tabular-nums;
}
.sm-followers b { font-weight: 700; color: var(--ink); font-size: 14px; }
.sm-followers span { color: var(--ink-3); font-size: 12px; }

/* ----- Responsive: mobil (6 kolon — sm-table) ----- */
@media (max-width: 720px) {
  /* Sosyal Medya Adı — tam genişlik kart başlığı */
  .sm-table tbody td:nth-child(1) {
    grid-column: 1 / -1; grid-row: 1;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px; margin-bottom: 4px;
  }
  .sm-table tbody td:nth-child(1)::before { display: none; }

  /* Takipçi | Platform (Row 2) */
  .sm-table tbody td:nth-child(2) { grid-row: 2; grid-column: 1; padding-right: 12px; }
  .sm-table tbody td:nth-child(5) {
    grid-row: 2; grid-column: 2; padding-left: 12px;
    border-left: 1px dashed var(--line);
  }

  /* Post Fiyatı | Story Fiyatı (Row 3) */
  .sm-table tbody td:nth-child(3) { grid-row: 3; grid-column: 1; padding-right: 12px; }
  .sm-table tbody td:nth-child(4) {
    grid-row: 3; grid-column: 2; padding-left: 12px;
    border-left: 1px dashed var(--line);
  }

  /* İncele — tam genişlik altlık */
  .sm-table tbody td:nth-child(6) {
    grid-row: 4; grid-column: 1 / -1;
    border-top: 1px solid var(--line); border-bottom: 0;
    padding-top: 10px; margin-top: 4px;
    justify-content: flex-end;
  }
  .sm-table tbody td:nth-child(6)::before { display: none; }
}

/* ===== Tanıtım Paketleri ===== */
.tp-hero {
  background: linear-gradient(180deg, #e4efeb 0%, #f1f6f5 60%, #ffffff 100%);
  padding: 48px 0 32px;
  position: relative; overflow: hidden;
}
.tp-hero .container { position: relative; z-index: 1; }
.tp-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.tp-hero h1 {
  font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.03em;
  line-height: 1.1; margin-top: 14px;
}
.tp-hero h1 .accent { color: var(--green); }
.tp-hero p {
  color: var(--ink-3); font-size: 16px; line-height: 1.55;
  margin-top: 16px; max-width: 580px; margin-left: auto; margin-right: auto;
}
.tp-hero .trust {
  margin-top: 22px;
  display: inline-flex; flex-wrap: wrap; gap: 18px; justify-content: center;
  color: var(--ink-3); font-size: 13px;
}
.tp-hero .trust span { display: inline-flex; align-items: center; gap: 8px; }
.tp-hero .trust b { color: var(--ink); font-weight: 600; }

.tp-section { padding: 32px 0 64px; }

.tp-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}
@media (max-width: 1040px) { .tp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .tp-grid { grid-template-columns: 1fr; } }

.tp-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 160ms var(--ease), transform 200ms var(--ease), box-shadow 160ms var(--ease);
}

.tp-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px;
}
.tp-title {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink); line-height: 1.35;
  min-width: 0; flex: 1;
}
.tp-fav {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green); color: #fff; border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer;
  transition: background 160ms var(--ease), transform 160ms var(--ease);
}
.tp-fav:hover { background: var(--green-2); transform: scale(1.05); }
.tp-fav svg { width: 14px; height: 14px; fill: currentColor; stroke: none; }
.tp-fav.active { background: #fbbf24; }

.tp-table-wrap {
  position: relative;
  min-height: 222px;
  max-height: 222px;
  overflow-y: hidden;
  transition: max-height 320ms var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.tp-table-wrap.has-more { overflow-y: auto; }
.tp-table-wrap::-webkit-scrollbar { width: 6px; }
.tp-table-wrap::-webkit-scrollbar-track { background: transparent; }
.tp-table-wrap::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
.tp-table-wrap::-webkit-scrollbar-thumb:hover { background: var(--ink-4); }
.tp-table-wrap.expanded { max-height: 1200px; }
.tp-table-wrap.expanded::after { display: none; }
.tp-table-wrap.has-more:not(.expanded)::after {
  content: ""; position: sticky; bottom: 0; left: 0; right: 0;
  display: block; height: 28px; margin-top: -28px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
}

.tp-table {
  width: 100%; border-collapse: collapse;
  font-size: 12.5px;
}
.tp-table thead th {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 11px; font-weight: 600; color: var(--ink-3);
  letter-spacing: .04em; text-transform: uppercase;
  background: #fff;
  position: sticky; top: 0; z-index: 1;
}
.tp-table thead th:not(:first-child) { text-align: center; }
.tp-table tbody td {
  padding: 9px 6px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-2);
}
.tp-table tbody tr:last-child td { border-bottom: 0; }
.tp-table tbody td:first-child {
  font-weight: 500; color: var(--ink-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 0; width: 50%;
}
.tp-table tbody td:not(:first-child) { text-align: center; font-variant-numeric: tabular-nums; }
.tp-table .news-yes { color: var(--green-ink); font-weight: 600; }
.tp-table .news-no  { color: var(--ink-4); }

.tp-expand {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 6px 0 0;
  color: var(--ink-3); font-size: 12px;
  text-align: center;
  background: transparent; border: 0; cursor: pointer;
  transition: color 160ms var(--ease);
  text-decoration: none;
  width: 100%;
}
.tp-expand:hover { color: var(--green-ink); }
.tp-expand .chev-down {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  animation: tpBounce 1.6s infinite;
}
.tp-expand svg { width: 16px; height: 16px; }
@keyframes tpBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

.tp-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.tp-price-wrap { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tp-price-old {
  font-size: 12px; color: var(--ink-4); font-variant-numeric: tabular-nums;
}
.tp-price {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.tp-add {
  height: 34px; padding: 0 14px;
  border-radius: 8px;
  background: var(--green); color: #fff;
  border: 1px solid var(--green);
  font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px -2px rgba(13,129,116,.5);
  transition: all 160ms var(--ease);
  flex-shrink: 0;
}
.tp-add:hover {
  background: var(--green-2); border-color: var(--green-2);
  transform: translateY(-1px);
}
.tp-add svg { width: 14px; height: 14px; }

/* Frontend SweetAlert (sepet — giriş gerekli) */
.frontend-swal.swal2-popup {
  border-radius: 16px;
  padding: 24px 22px 18px;
  font-family: Inter, system-ui, sans-serif;
}
.frontend-swal .swal2-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.frontend-swal .swal2-html-container {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}
.frontend-swal .swal2-actions {
  gap: 10px;
  margin-top: 18px;
}
.frontend-swal .swal2-styled {
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  box-shadow: none !important;
}
.frontend-swal .frontend-swal__confirm {
  background: var(--green) !important;
  color: #fff !important;
}
.frontend-swal .frontend-swal__confirm:hover {
  background: var(--green-2) !important;
}
.frontend-swal .frontend-swal__cancel {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid var(--line-strong) !important;
}
