@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --ink: #0e0f12;
  --ink-2: #1a1f28;
  --color-1: var(--ink);
  --color-2: #1e2430;
  --color-3: #ff9028;
  --color-4: #ffb366;
  --color-5: #fff4eb;
  --page-bg: #f5f3f0;
  --surface: #ffffff;
  --text: var(--color-1);
  --text-muted: rgba(14, 15, 18, 0.58);
  --border-subtle: rgba(14, 15, 18, 0.1);
  --border-strong: rgba(14, 15, 18, 0.2);
  --on-dark: #faf9f7;
  --on-dark-muted: rgba(250, 249, 247, 0.88);
  --shadow-deep: rgba(8, 10, 14, 0.16);
  --shadow-soft: rgba(8, 10, 14, 0.07);
  --accent-gradient: #ff9028;
  --hero-gradient: #161b22;
  --hero-glow-a: rgba(255, 144, 40, 0.38);
  --hero-glow-b: rgba(255, 120, 40, 0.22);
  --brand-primary: #ff9028;
  --brand-primary-dark: #d97706;
  --brand-primary-soft: #fff4eb;
  --brand-teal: #ff9028;
  --brand-teal-soft: #fff4eb;
  --brand-orange: #ff9028;
  --brand-orange-soft: #fff4eb;
  --corp-navy: #0a0c0f;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ——— Kurumsal üst bar (açık zemin, canlı vurgular) ——— */
.public-header--corp {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  color: var(--color-1);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(14, 15, 18, 0.06), 0 12px 40px rgba(8, 10, 14, 0.06);
}

.public-header--corp .public-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(200px, max-content);
  align-items: center;
  gap: 16px 24px;
}

.public-header-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.public-logo-link--corp {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ff9028;
}

.public-header-tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.public-nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
}

.public-nav-main a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-2);
  transition: background 0.15s ease, color 0.15s ease;
}

.public-nav-main a:hover {
  background: var(--brand-teal-soft);
  color: var(--brand-teal);
}

.public-nav-main a.active {
  background: rgba(255, 144, 40, 0.12);
  color: #ff9028;
  box-shadow: inset 0 0 0 1px rgba(255, 144, 40, 0.28);
}

.public-header-aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.public-header-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: var(--brand-teal-soft);
  color: var(--brand-teal);
  border: 1px solid rgba(255, 144, 40, 0.22);
  white-space: nowrap;
}

.public-header-pill:hover {
  background: #d8f2f5;
}

.public-nav-user--corp {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-header-ghost {
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-3);
  border: 1px solid var(--border-subtle);
  background: var(--surface);
}

.public-header-ghost:hover {
  border-color: var(--color-3);
}

.public-header-cta {
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: #ff9028;
  box-shadow: 0 6px 20px rgba(255, 144, 40, 0.3);
}

.public-header-cta:hover {
  background: #e07018;
}

@media (max-width: 960px) {
  .public-header--corp .public-header-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .public-nav-main {
    justify-content: center;
  }

  .public-header-aside {
    justify-content: center;
  }
}

.public-logo-link {
  color: inherit;
  text-decoration: none;
}

.sidebar .logo .public-logo-link:hover {
  opacity: 0.92;
}

.auth-page-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}

.public-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

/* Müşteri paneli: sepet ile aynı blink-landing-body arka planı (sidebar kaldırıldı) */

.sidebar {
  width: 240px;
  background: var(--color-2);
  color: var(--on-dark);
  padding: 24px 16px;
}

.admin-sidebar {
  background: linear-gradient(180deg, #0a0c0f, var(--color-2));
}

.customer-sidebar {
  background: linear-gradient(180deg, var(--color-2), #0e1116);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 8px 0 32px rgba(8, 10, 14, 0.2);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-4);
  margin-bottom: 0;
}

.logo small {
  display: block;
  font-size: 12px;
  color: var(--on-dark-muted);
  margin-top: 4px;
  font-weight: 600;
}

.public-footer--corp {
  margin-top: 0;
  padding-top: 48px;
  background: #12161c;
  color: var(--on-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.public-footer--corp .public-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px 8px;
}

.public-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
  gap: 28px 32px;
  padding: 28px 24px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(2, 6, 18, 0.45);
}

.public-footer-logo {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-lead {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(232, 240, 255, 0.82);
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  color: rgba(232, 240, 255, 0.55);
}

.footer-arrow-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-arrow-list li {
  margin-bottom: 8px;
}

.footer-arrow-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(232, 240, 255, 0.88);
  font-weight: 600;
}

.footer-arrow-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--brand-teal);
  border-bottom: 2px solid var(--brand-teal);
  transform: rotate(-45deg);
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-arrow-list a:hover {
  color: #fff;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(232, 240, 255, 0.86);
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(240, 107, 45, 0.2);
  color: #ffb89a;
  font-size: 12px;
}

.footer-col--contact a {
  color: rgba(161, 230, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.accepted-row--corp {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.menu a:hover,
.menu a.active {
  background: rgba(45, 52, 62, 0.45);
}

.sidebar-subhead {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 180, 120, 0.85);
  margin: 12px 12px 6px;
  font-weight: 700;
}

.main {
  flex: 1;
  padding: 22px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.balance {
  display: flex;
  gap: 10px;
}

.pill {
  background: #ff9028;
  color: #ffffff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 14px;
}

.pill.green {
  background: #ff9028;
  color: #ffffff;
}

.pill.green:hover,
.pill:hover {
  background: #e07018;
  color: #ffffff;
}

.hero {
  background: var(--hero-gradient);
  border-radius: 14px;
  color: var(--on-dark);
  padding: 36px 30px;
  margin-bottom: 14px;
}

.hero-glow {
  position: relative;
  overflow: hidden;
  background: #1a1f28;
}

.hero-kicker {
  display: inline-block;
  background: rgba(255, 180, 120, 0.2);
  border: 1px solid rgba(255, 244, 235, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  margin-bottom: 12px;
}

.hero-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.hero-cta-row .pill {
  width: auto;
}

.hero-trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: var(--on-dark-muted);
  font-size: 13px;
}

.hero h1 {
  margin: 0 0 8px 0;
  font-size: 38px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.stats-cards {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--surface);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}

.card strong {
  font-size: 28px;
}

.card.highlight {
  background: rgba(255, 144, 40, 0.12);
  border-color: rgba(255, 144, 40, 0.35);
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin: 25px 0 18px;
}

.tutorials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tutorial {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.tutorial h4 {
  margin: 0;
  background: #ff9028;
  color: #ffffff;
  padding: 8px 10px;
}

.video-placeholder {
  height: 170px;
  background: linear-gradient(45deg, var(--color-5), #f0ebe6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-2);
  font-weight: 700;
}

.panel {
  background: var(--surface);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 16px;
  border: 1px solid var(--border-subtle);
}

.spotlight-panel {
  background: linear-gradient(180deg, var(--surface), rgba(255, 244, 235, 0.55));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.why-card {
  background: linear-gradient(180deg, var(--surface), rgba(255, 244, 235, 0.4));
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 16px;
}

.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 180, 120, 0.35);
  color: var(--color-2);
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card h4 {
  margin: 0 0 8px 0;
  color: var(--color-2);
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px;
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.category-card strong {
  display: block;
  color: var(--color-2);
  margin-bottom: 4px;
}

.category-card span {
  color: var(--text-muted);
  font-size: 13px;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px var(--shadow-soft);
  border-color: rgba(255, 180, 120, 0.55);
}

.cta-banner {
  text-align: center;
  background: #1e2430;
  color: #faf9f7;
}

.cta-banner p {
  color: var(--on-dark-muted);
}

.catalog-table th {
  text-align: center;
}

.catalog-table td {
  vertical-align: middle;
  text-align: center;
}

.catalog-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.catalog-table {
  min-width: 860px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: var(--text-muted);
}

input,
select,
textarea,
button {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
}

select[multiple] {
  min-height: 90px;
}

button {
  background: #ff9028;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

button:hover:not(:disabled) {
  background: #e07018;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 8px;
  font-size: 14px;
  text-align: left;
}

th {
  color: var(--color-2);
  background: rgba(255, 244, 235, 0.45);
}

.table-actions {
  display: flex;
  gap: 8px;
}

.table-actions button {
  width: auto;
  padding: 6px 12px;
}

button.wishlist-toggle {
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  color: var(--color-3);
  border-radius: 999px;
  width: 36px;
  height: 32px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

button.wishlist-toggle.on {
  color: #e0245e;
  border-color: #f5c3d4;
  background: #fff5f8;
}

.bonus-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.bonus-tier {
  background: rgba(255, 244, 235, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.footer {
  background: var(--color-2);
  color: var(--on-dark);
  border-radius: 10px;
  padding: 14px;
  margin-top: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.deposit-shell {
  background: rgba(255, 244, 235, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 18px;
}

.deposit-header h2 {
  margin: 0 0 6px 0;
  font-size: 28px;
}

.deposit-header p {
  margin: 0 0 14px 0;
  color: var(--text-muted);
}

.deposit-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.payment-card {
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  border-radius: 12px;
  text-align: left;
  color: var(--text);
  padding: 14px;
}

.payment-card strong {
  display: block;
  margin-bottom: 6px;
}

.payment-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}

.payment-fallback-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 180, 120, 0.25);
  color: var(--color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 8px;
}

.payment-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.payment-card.active {
  border-color: var(--color-4);
  box-shadow: 0 0 0 2px rgba(255, 180, 120, 0.35);
}

.payment-card.disabled {
  opacity: 0.5;
}

.invoice-box {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 14px;
}

.line-item {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--text-muted);
}

.line-item.total {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 16px;
}

.pay-btn {
  display: block;
  margin-top: 14px;
  background: #ff9028;
  color: #ffffff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  width: 100%;
  cursor: pointer;
}

.pay-btn:hover:not([disabled]) {
  background: #e07018;
}

.pay-btn[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.small-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 7, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483000;
}

.modal-card {
  width: min(520px, 92vw);
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px var(--shadow-deep);
  border: 1px solid var(--border-subtle);
}

.modal-card h3 {
  margin: 0 0 8px 0;
}

/* Banka havalesi — ödeme bilgisi popup */
.modal-overlay--bank-wire {
  padding: 20px 16px;
  align-items: center;
  justify-content: center;
}

.bank-wire-modal {
  width: min(480px, 94vw);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 48px rgba(20, 15, 7, 0.18);
}

.bank-wire-modal__head {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, #f8fafc 0%, var(--surface) 100%);
  border-radius: 16px 16px 0 0;
}

.bank-wire-modal__head h3 {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #1a2236;
}

.bank-wire-modal__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4a5568;
}

.bank-wire-modal__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 20px;
  background: #f1f5f9;
}

.bank-wire-modal__pill {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.bank-wire-modal__pill--accent {
  border-color: rgba(255, 144, 40, 0.35);
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
}

.bank-wire-modal__pill-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.bank-wire-modal__pill-val {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.bank-wire-modal__details {
  padding: 16px 20px 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bank-wire-modal__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 14px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
}

.bank-wire-modal__row:last-of-type {
  border-bottom: none;
}

.bank-wire-modal__label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-top: 2px;
}

.bank-wire-modal__value {
  font-size: 15px;
  line-height: 1.45;
  color: #1e293b;
  word-break: break-word;
}

.bank-wire-modal__value--iban {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.bank-wire-modal__value--strong {
  font-weight: 800;
  color: #0f172a;
}

.bank-wire-modal__warn {
  margin: 4px 16px 16px;
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 10px;
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fbbf24;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.bank-wire-modal__warn-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f59e0b;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.bank-wire-modal__warn-body {
  flex: 1;
  min-width: 0;
}

.bank-wire-modal__warn-body strong {
  display: block;
  font-size: 13px;
  color: #92400e;
  margin-bottom: 6px;
}

.bank-wire-modal__warn-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #78350f;
}

.bank-wire-modal__warn-body em {
  font-style: normal;
  font-weight: 600;
  color: #b45309;
}

.bank-wire-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px 20px;
  justify-content: flex-end;
}

.bank-wire-modal__btn {
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.bank-wire-modal__btn--primary {
  background: #ff9028;
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 144, 40, 0.35);
}

.bank-wire-modal__btn--primary:hover {
  background: #e07018;
}

.bank-wire-modal__btn--ghost {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.bank-wire-modal__btn--ghost:hover {
  background: #e2e8f0;
}

@media (max-width: 420px) {
  .bank-wire-modal__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.sepet-tanitim-modal-card {
  width: min(640px, 94vw);
  max-height: min(90vh, 720px);
  overflow: auto;
}

.sepet-modal-total {
  margin: 12px 0 0 0;
  font-size: 14px;
}

/* PayTR ödeme iframe — popup: geniş dikdörtgen (global button{width:100%} burada kapatılır) */
.modal-overlay--paytr {
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay--paytr > .modal-card.modal-card--paytr {
  width: min(1040px, calc(100vw - 40px));
  max-width: 1040px;
  max-height: min(92vh, calc(100vh - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}

.paytr-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-shrink: 0;
  margin-bottom: 12px;
  flex-wrap: nowrap;
}

.paytr-modal-header-text {
  flex: 1 1 auto;
  min-width: 0;
}

.paytr-modal-header-text h3 {
  margin: 0 0 6px 0;
}

.paytr-modal-header-text .small-note {
  margin: 0;
  max-width: none;
}

.paytr-modal-close-btn {
  flex: 0 0 auto;
  flex-shrink: 0;
  width: auto;
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  border: 0;
  background: #6b7a99;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
}

.paytr-modal-close-btn:hover {
  filter: brightness(1.06);
}

.modal-card--paytr .paytr-iframe-wrap {
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(92vh - 168px);
}

.modal-card--paytr .paytr-iframe-wrap iframe {
  min-height: 420px;
  height: clamp(400px, 62vh, calc(92vh - 200px));
  max-height: calc(92vh - 188px);
  /* iframeResizer / içerik dar genişlik gönderirse yine kartı doldur */
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  box-sizing: border-box;
}

.paytr-iframe-wrap {
  flex: 1 1 auto;
  min-height: 320px;
  max-height: calc(100vh - 200px);
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: #fff;
}

.paytr-iframe-wrap iframe {
  width: 100%;
  max-width: 100%;
  /* İçerik uzun olduğunda iframe içinde kaydırma çubuğu (cross-origin) */
  min-height: 520px;
  height: clamp(480px, 72vh, calc(100vh - 190px));
  max-height: calc(100vh - 180px);
  border: 0;
  display: block;
}

.paytr-modal-actions {
  flex-shrink: 0;
  margin-top: 12px;
}

@media (max-width: 600px) {
  .modal-overlay--paytr > .modal-card.modal-card--paytr {
    width: min(100%, calc(100vw - 20px));
    max-width: none;
    max-height: min(94vh, calc(100vh - 24px));
  }

  .paytr-modal-header {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .paytr-modal-close-btn {
    align-self: flex-end;
    width: auto;
  }

  .paytr-iframe-wrap {
    max-height: calc(100vh - 200px);
  }

  .paytr-iframe-wrap iframe {
    min-height: 60vh;
    height: calc(100vh - 200px);
    max-height: calc(100vh - 170px);
  }
}

.auth-split-modal-card {
  width: min(920px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
}

.auth-split-lead {
  margin: 0 0 14px;
}

.auth-split-panel h4 {
  margin: 0 0 8px;
  font-size: 15px;
}

.auth-split-close {
  margin-top: 14px;
  width: 100%;
}

.auth-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 24px;
}

.auth-panel {
  width: 100%;
  max-width: 560px;
  margin: 18px auto;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: 0 14px 36px var(--shadow-soft);
  background: linear-gradient(180deg, var(--surface), rgba(255, 244, 235, 0.45));
}

.auth-panel h2 {
  margin-bottom: 6px;
}

.auth-form {
  margin-top: 12px;
}

.auth-form button {
  margin-top: 10px;
}

.auth-links {
  margin-top: 12px;
  color: var(--text-muted);
}

.auth-links a {
  color: var(--color-3);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .filters {
    grid-template-columns: repeat(2, 1fr);
  }
  .tutorials {
    grid-template-columns: 1fr;
  }
  .bonus-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .deposit-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .layout {
    display: block;
  }
  .sidebar {
    width: 100%;
  }
  .grid-2,
  .cards {
    grid-template-columns: 1fr;
  }
  .stats-cards {
    grid-template-columns: 1fr;
  }
  .category-cards {
    grid-template-columns: 1fr;
  }
  .public-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .public-nav {
    width: 100%;
    gap: 8px;
    justify-content: flex-start;
  }
  .public-nav a {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(255, 244, 235, 0.22);
    border-radius: 999px;
    background: rgba(255, 180, 120, 0.12);
  }
  .public-nav--authed {
    flex-wrap: wrap;
  }
  .public-nav--authed .public-nav-user {
    max-width: 100%;
    padding: 6px 0;
  }
  .public-header .pill-header-balance {
    width: auto;
  }
  .hero h1 {
    font-size: 30px;
  }
}

/* Projects page */
.main.projects-page {
  max-width: 980px;
}

.projects-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 20px;
  margin: 0 0 18px 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 244, 235, 0.65) 0%, #faf8f6 50%, #f0ebe6 100%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px var(--shadow-soft);
}

.projects-hero-kicker {
  margin: 0 0 6px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-3);
}

.projects-hero-title {
  margin: 0 0 8px 0;
  font-size: 1.65rem;
  color: var(--color-2);
}

.projects-hero-lead {
  margin: 0;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.projects-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.projects-create-panel {
  border: 1px solid var(--border-subtle);
  box-shadow: 0 6px 18px var(--shadow-soft);
}

.projects-create-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.projects-create-head h3 {
  margin: 0 0 4px 0;
  color: var(--color-2);
}

.projects-step {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ff9028;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.projects-form-actions {
  margin-top: 14px;
}

.btn-primary {
  background: #ff9028;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 144, 40, 0.35);
}

.btn-primary:hover {
  background: #e07018;
}

.projects-list-panel h3 {
  margin: 0 0 4px 0;
  color: var(--color-2);
}

.projects-list-head {
  margin-bottom: 14px;
}

.projects-empty {
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 244, 235, 0.4);
  border: 1px dashed var(--border-strong);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.projects-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.project-card {
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.project-card:hover {
  border-color: rgba(255, 180, 120, 0.55);
  box-shadow: 0 8px 20px var(--shadow-soft);
}

.project-card-id {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-3);
  letter-spacing: 0.04em;
}

.project-card h4 {
  margin: 4px 0 6px 0;
  font-size: 1rem;
  color: var(--color-2);
}

.project-card-url {
  font-size: 12px;
  color: var(--color-3);
  word-break: break-all;
  text-decoration: none;
}

.project-card-url:hover {
  text-decoration: underline;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-muted);
}

.project-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.project-card-actions form {
  margin: 0;
  display: inline-flex;
}

.btn-danger-small {
  width: auto !important;
  background: #dc3545 !important;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

.btn-danger-small:hover {
  background: #bb2d3b !important;
}

.project-card-actions .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
}

.alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.alert-success {
  background: #ecf9f1;
  border: 1px solid #9fd9b5;
  color: #0b5c2e;
}

.alert-error {
  background: #fdeff0;
  border: 1px solid #e8a8ad;
  color: #8c1f28;
}

.table-actions .inline-cart-form {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.table-actions .inline-cart-form button {
  margin: 0;
}

.listing-detail-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.listing-detail-actions #listingDetailActionsSlot {
  flex: 1;
}

.listing-detail-actions .listing-detail-cart-form {
  margin: 0;
}

.listing-detail-actions .listing-detail-cart-form button,
.listing-detail-actions #listingDetailClose {
  width: 100%;
}

@media (max-width: 640px) {
  .listing-detail-actions {
    flex-direction: column;
  }
}

.order-notify-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-notify-list li {
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: rgba(255, 244, 235, 0.25);
}

.admin-order-complete-form {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}

.admin-order-complete-form input[type="url"] {
  flex: 1;
  min-width: 200px;
}

.ticket-message-body {
  background: rgba(255, 244, 235, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 10px 0 18px;
  line-height: 1.5;
}

.admin-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.admin-manual-balance-form label {
  display: block;
  margin-top: 8px;
}

.admin-orders-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.admin-status-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-status-filters a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 244, 235, 0.55);
  color: var(--color-2);
  font-size: 13px;
  font-weight: 700;
}

.admin-status-filters a.active {
  background: var(--color-3);
  color: var(--on-dark);
}

.admin-orders-table-wrap {
  overflow-x: auto;
}

.admin-orders-table td {
  vertical-align: top;
  white-space: nowrap;
}

.admin-orders-table td:nth-child(3),
.admin-orders-table td:nth-child(4),
.admin-orders-table td:nth-child(6),
.admin-orders-table td:nth-child(7),
.admin-orders-table td:nth-child(9) {
  white-space: normal;
}

.admin-muted {
  color: var(--text-muted);
  font-size: 12px;
}

.status-chip {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status-awaiting_admin {
  background: #fff4db;
  color: #966100;
}

.status-processing {
  background: rgba(255, 180, 120, 0.22);
  color: var(--color-2);
}

.status-completed {
  background: #e9f8ef;
  color: #17683d;
}

.status-cancelled {
  background: #feeef0;
  color: #9a2631;
}

.status-unknown {
  background: rgba(255, 244, 235, 0.55);
  color: var(--text-muted);
}

.admin-doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-doc-links a {
  padding: 4px 8px;
  border-radius: 7px;
  background: rgba(255, 180, 120, 0.18);
  color: var(--color-2);
  font-size: 12px;
  font-weight: 700;
}

.admin-order-row-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.admin-order-row-actions {
  display: flex;
  gap: 6px;
}

.admin-order-row-actions button {
  width: auto;
  padding: 7px 10px;
  font-size: 12px;
}

.admin-order-row-actions .btn-complete {
  background: #0c8d55;
}

.how-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.how-grid--onecol {
  grid-template-columns: 1fr;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.how-step {
  padding: 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: rgba(255, 244, 235, 0.45);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.how-step strong {
  color: var(--color-3);
  font-size: 18px;
  line-height: 1;
}

.how-side-card {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(180deg, var(--surface), var(--color-5));
}

.how-side-card ul {
  margin: 0;
  padding-left: 18px;
}

.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.testimonials-viewport {
  overflow: hidden;
  min-width: 0;
  container-type: inline-size;
  container-name: testimonial-vp;
}

.testimonials-track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
}

.testimonials-carousel .testimonials-track .testimonial-card {
  box-sizing: border-box;
  flex: 0 0 calc((100cqi - 24px) / 3);
  min-width: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px;
  background: var(--surface);
}

.testimonial-card {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px;
  background: var(--surface);
}

.testimonial-stars {
  color: #f2ae12;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.testimonial-meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
}

.testimonial-nav {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--color-2);
  font-size: 20px;
  line-height: 1;
  padding: 0;
}

.testimonial-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-reviews-live .testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 244, 235, 0.35) 100%);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(30, 42, 69, 0.08);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: rgba(255, 244, 235, 0.4);
  padding: 10px 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-2);
}

.faq-list p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.public-footer--corp .footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.accepted-row {
  max-width: 1320px;
  margin: 14px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 15px 22px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.accepted-label {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 12px;
}

.accepted-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.accepted-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.accepted-icons img:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .how-grid,
  .public-footer-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .public-footer-grid {
    padding: 20px 16px 16px;
    border-radius: 16px;
  }

  .accepted-row {
    padding: 12px 14px 20px;
    justify-content: flex-start;
  }

  .testimonials-carousel .testimonials-track .testimonial-card {
    flex: 0 0 100cqi;
  }

  .reviews-list > .testimonial-card {
    flex-basis: 100%;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }
}

/* Kurumsal / yasal sayfalar */
.corporate-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px 48px;
}

.corporate-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin: 14px 0 10px;
}

.corporate-breadcrumb a {
  color: var(--color-3);
  text-decoration: none;
  font-weight: 600;
}

.corporate-breadcrumb a:hover {
  text-decoration: underline;
}

.corporate-bc-sep {
  margin: 0 8px;
  opacity: 0.55;
}

.corporate-hero {
  position: relative;
  border-radius: 20px;
  padding: 28px 26px 30px;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--hero-gradient);
  color: var(--on-dark);
  box-shadow: 0 18px 44px var(--shadow-deep);
  border: 1px solid rgba(255, 180, 120, 0.25);
}

.corporate-hero::after {
  content: none;
}

.corporate-hero-kicker,
.corporate-hero-title,
.corporate-hero-meta {
  position: relative;
  z-index: 1;
}

.corporate-hero-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  font-weight: 700;
}

.corporate-hero-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  font-weight: 800;
}

.corporate-hero-meta {
  margin: 0;
  font-size: 14px;
  color: var(--on-dark-muted);
}

.corporate-layout {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr) minmax(0, 280px);
  gap: 22px;
  align-items: start;
}

.corporate-layout--no-toc {
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
}

.corporate-toc-wrap {
  position: sticky;
  top: 18px;
}

.corporate-toc-card {
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, rgba(255, 244, 235, 0.55), var(--surface));
  box-shadow: 0 10px 28px var(--shadow-soft);
}

.corporate-toc-head {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.corporate-toc {
  list-style: none;
  margin: 0;
  padding: 0;
}

.corporate-toc li {
  margin: 0 0 8px;
}

.corporate-toc li.corporate-toc-h3 {
  padding-left: 10px;
  border-left: 2px solid rgba(45, 52, 62, 0.35);
  margin-left: 2px;
}

.corporate-toc li.corporate-toc-h3 a {
  font-size: 12px;
  font-weight: 600;
}

.corporate-toc a {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-2);
  text-decoration: none;
  line-height: 1.35;
  display: inline-block;
}

.corporate-toc a:hover {
  color: var(--color-3);
  text-decoration: underline;
}

.corporate-prose-wrap {
  min-width: 0;
}

.corporate-prose {
  padding: 22px 24px 26px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  box-shadow: 0 14px 36px var(--shadow-soft);
}

.corporate-prose h1.corporate-prose-h1 {
  margin: 0 0 14px;
  font-size: 26px;
  color: var(--color-2);
}

.corporate-prose h2 {
  margin: 28px 0 12px;
  font-size: 20px;
  color: var(--color-2);
  scroll-margin-top: 88px;
}

.corporate-prose h2:first-of-type {
  margin-top: 0;
}

.corporate-prose h3 {
  margin: 22px 0 10px;
  font-size: 17px;
  color: var(--color-3);
  scroll-margin-top: 88px;
}

.corporate-prose h4 {
  margin: 18px 0 8px;
  font-size: 15px;
  color: var(--color-2);
}

.corporate-prose p,
.corporate-prose li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.corporate-prose p {
  margin: 0 0 12px;
}

.corporate-prose ul {
  margin: 0 0 14px 18px;
  padding: 0;
}

.corporate-prose li {
  margin-bottom: 8px;
}

.corporate-prose li.corporate-li-nested {
  margin-left: 8px;
  list-style: circle;
}

.corporate-prose a {
  color: var(--color-3);
  font-weight: 600;
}

.corporate-prose-hr {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 22px 0;
}

.corporate-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.corporate-contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, var(--surface), rgba(255, 244, 235, 0.35));
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.corporate-contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-4);
  box-shadow: 0 10px 26px var(--shadow-soft);
}

.corporate-contact-card--static {
  cursor: default;
}

.corporate-contact-card strong {
  font-size: 14px;
  color: var(--color-2);
}

.corporate-contact-card span:last-child {
  font-size: 14px;
  color: var(--text-muted);
}

.corporate-contact-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}

.corporate-aside-wrap {
  position: sticky;
  top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.corporate-aside-card,
.corporate-aside-links {
  padding: 16px;
  border-radius: 14px;
}

.corporate-aside-title {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.corporate-aside-subtitle {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.corporate-aside-line {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.corporate-aside-line a {
  color: var(--color-3);
  font-weight: 600;
  text-decoration: none;
}

.corporate-aside-line a:hover {
  text-decoration: underline;
}

.corporate-aside-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.corporate-aside-ul li {
  margin: 0 0 8px;
}

.corporate-aside-ul a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-2);
  text-decoration: none;
}

.corporate-aside-ul a:hover {
  color: var(--color-3);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .corporate-layout,
  .corporate-layout--no-toc {
    grid-template-columns: 1fr;
  }

  .corporate-toc-wrap,
  .corporate-aside-wrap {
    position: static;
  }

  .corporate-toc {
    columns: 2;
    column-gap: 18px;
  }

  .corporate-toc li {
    break-inside: avoid;
  }
}

@media (max-width: 600px) {
  .corporate-toc {
    columns: 1;
  }

  .corporate-prose {
    padding: 16px;
  }
}

/* Palet yardımcıları (metin rengi) */
.color1 {
  color: var(--color-1);
}
.color2 {
  color: var(--color-2);
}
.color3 {
  color: var(--color-3);
}
.color4 {
  color: var(--color-4);
}
.color5 {
  color: var(--color-5);
}

/* ——— Backlink paketleri açılış sayfası ——— */
.blink-landing-body {
  background: var(--page-bg);
}

.blink-landing {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 56px;
}

.portal-shell {
  padding-bottom: 48px;
}

/* Panel alt şeridi (kurumsal header ile aynı dil) */
.blink-panel-subnav {
  background: #faf9f7;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 4px;
}

.blink-panel-subnav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 18px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.blink-subnav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.blink-subnav-link:hover {
  border-color: rgba(255, 144, 40, 0.28);
  background: rgba(255, 144, 40, 0.07);
}

.blink-subnav-link.active {
  background: rgba(255, 144, 40, 0.12);
  border-color: rgba(255, 144, 40, 0.35);
}

.blink-subnav-link--out {
  color: #9a4a4a;
}

.blink-subnav-link--out:hover {
  background: rgba(154, 74, 74, 0.08);
  border-color: rgba(154, 74, 74, 0.2);
}

.blink-panel-subnav-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.blink-panel-subnav-row--project {
  padding-top: 2px;
}

.blink-subnav-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  flex-shrink: 0;
}

.blink-subnav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blink-subnav-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  color: var(--color-2);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.blink-subnav-pill:hover {
  border-color: rgba(240, 107, 45, 0.35);
}

.blink-subnav-pill.is-active {
  border-color: rgba(240, 107, 45, 0.45);
  box-shadow: 0 4px 14px rgba(240, 107, 45, 0.12);
}

.blink-subnav-pill.active {
  border-color: rgba(255, 144, 40, 0.4);
  background: rgba(255, 144, 40, 0.08);
}

.blink-hero {
  padding: 36px 0 28px;
}

.blink-hero-inner {
  padding: 36px 32px 40px;
  border-radius: 24px;
  background: #1a1f28;
  color: #fff;
  box-shadow: 0 24px 60px rgba(8, 10, 14, 0.18);
}

.blink-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.blink-hero-inner h1 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.blink-hero-sub {
  margin: 0 0 26px;
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.blink-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  padding-top: 4px;
}

.blink-hero-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-size: clamp(0.9rem, 1.9vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .blink-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .blink-hero-inner {
    padding: 28px 20px 32px;
  }

  .blink-hero-stat {
    min-height: 4.75rem;
    padding: 14px 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .blink-hero-stats {
    grid-template-columns: 1fr;
  }
}

.blink-alert {
  max-width: 1180px;
  margin: 0 auto 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.blink-alert--err {
  background: #fff0f0;
  border: 1px solid #e8a0a0;
  color: #7a1e1e;
}

.blink-section {
  margin-top: 36px;
}

.blink-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.blink-section-head h2 {
  margin: 10px 0 8px;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-2);
}

.blink-section-head p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.blink-chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brand-orange-soft);
  color: #c24a12;
  border: 1px solid rgba(240, 107, 45, 0.25);
}

.blink-chip--dark {
  background: rgba(45, 52, 62, 0.12);
  color: var(--color-3);
  border-color: rgba(45, 52, 62, 0.2);
}

.blink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.blink-card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 40px var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.blink-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(40, 41, 72, 0.12);
}

.blink-card--featured {
  border-color: rgba(255, 144, 40, 0.35);
  box-shadow: 0 18px 48px rgba(255, 144, 40, 0.15);
}

.blink-ribbon {
  position: absolute;
  top: 18px;
  right: -36px;
  width: 140px;
  padding: 6px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #ff9028;
  transform: rotate(38deg);
  box-shadow: 0 4px 12px rgba(255, 144, 40, 0.35);
}

.blink-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: #fff4eb;
  border: 1px solid rgba(255, 144, 40, 0.25);
}

.blink-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-2);
}

.blink-card-sub {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.blink-price {
  margin-bottom: 16px;
}

.blink-price-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-1);
}

.blink-price-ccy {
  margin-left: 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-teal);
}

.blink-features {
  margin: 0 0 18px;
  padding: 0 0 0 20px;
  color: var(--text);
  line-height: 1.55;
  font-size: 14px;
}

.blink-features li {
  margin-bottom: 6px;
}

.blink-features li::marker {
  color: var(--brand-teal);
}

.blink-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blink-card-actions button {
  width: 100%;
}

.blink-card-foot {
  margin-top: 10px;
}

.blink-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.blink-btn--accent {
  color: #fff;
  background: #ff9028;
  box-shadow: 0 8px 22px rgba(255, 144, 40, 0.32);
}

.blink-btn--accent:hover {
  background: #e07018;
}

.blink-btn--primary {
  color: #fff;
  background: #ff9028;
  box-shadow: 0 8px 22px rgba(255, 144, 40, 0.28);
}

.blink-btn--primary:hover {
  background: #e07018;
}

.blink-btn--ghost {
  background: var(--surface);
  color: var(--color-2);
  border: 2px solid var(--border-strong);
}

.blink-btn--sm {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 10px;
}

.blink-empty {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
}

.blink-steps {
  margin-top: 48px;
  padding: 32px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 144, 40, 0.06), rgba(255, 244, 235, 0.35));
  border: 1px solid var(--border-subtle);
}

.blink-step-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  counter-reset: blinkstep;
}

.blink-step-list li {
  counter-increment: blinkstep;
  position: relative;
  padding: 18px 16px 18px 48px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px var(--shadow-soft);
}

.blink-step-list li::before {
  content: counter(blinkstep);
  position: absolute;
  left: 14px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: #ff9028;
}

.blink-step-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-2);
}

.blink-step-list span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.blink-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.blink-btn--hero-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.blink-btn--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}

.blink-mkt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.blink-mkt-benefit-card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 36px var(--shadow-soft);
  overflow: hidden;
}

.blink-mkt-benefit-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: #ff9028;
  opacity: 1;
}

.blink-mkt-benefit-icon {
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 10px;
}

.blink-mkt-benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--color-2);
}

.blink-mkt-benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.blink-mkt-why-panel {
  margin-top: 40px;
  padding: 28px 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(45, 52, 62, 0.08), rgba(255, 244, 235, 0.35));
  border: 1px solid var(--border-subtle);
}

.blink-mkt-testimonials {
  margin-top: 44px;
}

.blink-mkt-testimonials .reviews-list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blink-mkt-testimonials .testimonial-card {
  flex: none;
  min-width: 0;
}

.blink-mkt-testimonials-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.blink-mkt-testimonials-head h2 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-2);
}

.blink-mkt-testimonials-head p {
  margin: 6px 0 0;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.5;
}

.blink-mkt-faq {
  margin-top: 44px;
}

.blink-mkt-faq-cols {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blink-mkt-faq .faq-list {
  max-width: none;
  margin: 0;
}

@media (max-width: 900px) {
  .blink-mkt-faq-cols {
    grid-template-columns: 1fr;
  }
}

.blink-mkt-cta-bar {
  margin: 48px 0 8px;
  padding: 26px 24px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 144, 40, 0.08);
  border: 1px solid rgba(255, 144, 40, 0.22);
}

.blink-mkt-cta-bar h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-2);
}

.blink-mkt-cta-bar p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.55;
}

.blink-mkt-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Müşteri paneli — paket siparişleri */
.blink-flash {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 600;
}

.blink-flash--ok {
  background: var(--brand-teal-soft);
  border: 1px solid rgba(255, 144, 40, 0.25);
  color: #9a3412;
}

.blink-panel--soft {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 244, 235, 0.5) 100%);
}

.blink-h2 {
  margin-top: 0;
  color: var(--color-2);
}

.blink-lead {
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 70ch;
}

.blink-data-table thead {
  background: #1e2430;
  color: #fff;
}

.blink-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.blink-badge--wait {
  background: rgba(240, 107, 45, 0.12);
  color: #b45309;
  border: 1px solid rgba(240, 107, 45, 0.25);
}

/* ——— Ana sayfa (kurumsal dinamik) ——— */
.home-page .home-hero {
  margin-bottom: 8px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 960px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }
}

.home-hero-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 52ch;
  color: rgba(242, 236, 255, 0.92);
}

.home-hero-cta {
  flex-wrap: wrap;
}

.home-hero-side {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-hero-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-metric-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.home-metric-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.home-metric-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.home-hero-side-link {
  margin-top: 4px;
  font-weight: 700;
  font-size: 14px;
  color: #ffd4bf;
}

.home-hero-side-link:hover {
  color: #fff;
}

.home-stats .home-stat-card {
  text-align: center;
}

.home-stats .home-stat-card strong {
  display: block;
  font-size: 1.65rem;
  margin-bottom: 4px;
}

.home-stats .home-stat-card span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.home-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 8px;
}

@media (max-width: 900px) {
  .home-bento {
    grid-template-columns: 1fr;
  }
}

.home-bento-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 36px var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: inherit;
  text-decoration: none;
}

.home-bento-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(40, 41, 72, 0.12);
}

.home-bento-card--accent {
  background: rgba(255, 144, 40, 0.08);
  border-color: rgba(255, 144, 40, 0.28);
}

.home-bento-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-teal);
}

.home-bento-card strong {
  font-size: 1.15rem;
  color: var(--color-2);
}

.home-bento-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.home-bento-go {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-orange);
}

.home-catalog-title {
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0 0 8px;
  color: var(--color-2);
}

.home-catalog-sub {
  text-align: center;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* ——— Panel dashboard ——— */
.dash-main {
  max-width: 1100px;
}

.dash-welcome {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 26px 24px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(255, 144, 40, 0.08);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px var(--shadow-soft);
}

.dash-welcome-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-teal);
}

.dash-welcome-title {
  margin: 0 0 8px;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-2);
}

.dash-welcome-sub {
  margin: 0;
  max-width: 48ch;
  color: var(--text-muted);
  line-height: 1.55;
}

.dash-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dash-welcome-balance {
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
}

.dash-quick {
  margin-bottom: 18px;
}

.dash-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px var(--shadow-soft);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.dash-tile:hover {
  border-color: rgba(255, 144, 40, 0.35);
  transform: translateY(-2px);
}

.dash-tile strong {
  font-size: 1.05rem;
  color: var(--color-2);
}

.dash-tile span {
  font-size: 13px;
  color: var(--text-muted);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stat {
  padding: 16px 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.dash-stat-n {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-2);
}

.dash-stat-l {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.dash-stat--ok .dash-stat-n {
  color: #0d7a52;
}

.dash-stat--warn .dash-stat-n {
  color: #b45309;
}

.dash-stat--bad .dash-stat-n {
  color: #b91c1c;
}

.dash-stat--muted .dash-stat-n {
  color: var(--text-muted);
}

.dash-panel h3 {
  margin-top: 0;
}

.dash-home-hero {
  margin-bottom: 22px;
}

.dash-home-bento {
  margin-bottom: 22px;
}

.dash-home-stats.home-stats {
  margin-bottom: 22px;
}

.dash-home-stats .home-stat-card strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-2);
}

.dash-home-stats .dash-stat-card--muted strong {
  color: var(--text-muted);
}

.dash-home-stats .dash-stat-card--warn strong {
  color: #b45309;
}

.dash-home-stats .dash-stat-card--ok strong {
  color: #0d7a52;
}

.dash-home-stats .dash-stat-card--bad strong {
  color: #b91c1c;
}

/* ——— Birleşik sepet ——— */
.sepet-block {
  margin-bottom: 28px;
}

.sepet-block--bl {
  margin-top: 8px;
}

.sepet-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.sepet-block-head h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--color-2);
}

.sepet-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 144, 40, 0.12);
  color: #b45309;
}

.sepet-badge--orange {
  background: rgba(240, 107, 45, 0.12);
  color: #b45309;
}

.sepet-block-total {
  margin: 12px 0 0;
  font-size: 1.05rem;
}

.sepet-block-actions {
  margin-top: 16px;
}

.sepet-hint {
  margin-bottom: 20px;
}

.sepet-page .blink-section-head-desc strong {
  color: var(--color-2);
}

/* ——— Paket ödeme / sepet ——— */
.blink-checkout-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.2fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 860px) {
  .blink-checkout-grid {
    grid-template-columns: 1fr;
  }
}

.blink-checkout-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blink-checkout-lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}

.blink-checkout-total {
  margin: 14px 0 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.blink-checkout-form textarea {
  min-height: 140px;
}

.blink-checkout-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

.blink-cart-footer {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.blink-cart-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ——— Rapor görüntüleme (site içi) ——— */
.report-view-main {
  padding-bottom: 48px;
}

.report-view-card {
  max-width: 900px;
  margin: 24px auto;
}

.report-view-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--color-2);
}

.report-view-body {
  margin-top: 20px;
}

/* ——— Kurumsal header v2 + mega footer ——— */
.corp-header-v2 {
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(14, 15, 18, 0.05), 0 8px 28px rgba(8, 10, 14, 0.06);
}

.corp-header-v2__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 18px 10px;
}

.corp-header-v2__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  justify-content: space-between;
}

.corp-header-v2__menu-btn {
  display: none;
  width: auto;
  border: 1px solid var(--border-subtle);
  background: #f5f7fb;
  color: #2d3a55;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
}

.corp-header-v2__menu-panel {
  display: contents;
}

.corp-header-v2__logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: #1a2236;
  text-decoration: none;
}

.corp-header-v2__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.corp-header-v2__nav a {
  font-size: 14px;
  font-weight: 600;
  color: #2d3a55;
  text-decoration: none;
}

.corp-header-v2__nav a:hover {
  color: #ff9028;
}

.corp-header-v2__nav a.active {
  color: #ff9028;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.corp-header-v2__cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
  line-height: 1;
  text-decoration: none !important;
}

.corp-header-v2__cart-icon.active {
  text-decoration: none !important;
  background: rgba(255, 144, 40, 0.12);
}

.corp-header-v2__cart-ico {
  font-size: 18px;
  line-height: 1;
}

.corp-header-v2__cart-badge {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e85d4a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.corp-header-v2__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.corp-header-v2__cart-icon--cta {
  margin-left: 4px;
}

.corp-header-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.corp-header-v2__btn--navy {
  background: #1e2430;
  color: #fff;
}

.corp-header-v2__btn--red {
  background: #c41e3a;
  color: #fff;
}

.corp-header-v2__btn--ghost {
  background: #f3f4f8;
  color: #2d3a55;
}

.corp-header-v2__balance {
  font-weight: 800;
  font-size: 13px;
  color: #1a2236;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--brand-primary-soft);
  text-decoration: none;
}

.corp-header-v2__mini {
  font-size: 13px;
  font-weight: 600;
  color: #ff9028;
  text-decoration: none;
}

@media (max-width: 980px) {
  .corp-header-v2__top {
    align-items: center;
  }

  .corp-header-v2__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .corp-header-v2__menu-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 10px;
  }

  .corp-header-v2__menu-panel.is-open {
    display: flex;
  }

  .corp-header-v2__nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .corp-header-v2__cta {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .corp-header-v2__nav {
    flex-direction: column;
    align-items: stretch;
  }

  .corp-header-v2__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .corp-header-v2__btn,
  .corp-header-v2__balance,
  .corp-header-v2__cart-icon--cta {
    width: 100%;
    justify-content: center;
  }
}

.corp-footer-mega {
  background: #0e1116;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 48px;
  border-top: 3px solid #ff9028;
}

.corp-footer-mega__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 18px 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 22px;
}

@media (max-width: 1024px) {
  .corp-footer-mega__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .corp-footer-mega__grid {
    grid-template-columns: 1fr;
  }
}

.corp-footer-mega__logo {
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}

.corp-footer-mega__lead {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.corp-footer-mega__h {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.95);
}

.corp-footer-mega__list,
.corp-footer-mega__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.corp-footer-mega__list li,
.corp-footer-mega__contact li {
  margin-bottom: 8px;
}

.corp-footer-mega__list a,
.corp-footer-mega__contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
}

.corp-footer-mega__list a:hover,
.corp-footer-mega__contact a:hover {
  color: #ffb366;
}

.corp-footer-mega__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.corp-soc {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
}

.corp-soc--fb {
  background: #1877f2;
}

.corp-soc--ig {
  background: linear-gradient(45deg, #f09433, #bc1888);
}

.corp-soc--tw {
  background: #000;
}

.corp-footer-mega__bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.corp-footer-mega__wa-float {
  position: fixed;
  bottom: 22px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.support-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 900px) {
  .support-two-col {
    grid-template-columns: 1fr;
  }
}

.support-side-title {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--color-2);
}

.support-ticket-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.support-ticket-list > li {
  border-bottom: 1px solid var(--border-subtle);
}

.support-ticket-list > li:last-child {
  border-bottom: 0;
}

.support-ticket-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 12px 4px;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.support-ticket-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.support-ticket-item__main {
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-ticket-item__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.support-ticket-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.support-ticket-subj {
  font-weight: 600;
  color: var(--color-2);
}

.support-ticket-st {
  font-size: 12px;
  color: #0d7a52;
}

.support-ticket-go {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-1, #1a56c4);
  white-space: nowrap;
}

.payment-notice-modal {
  max-width: 460px;
  border-top: 4px solid #ff9028;
}

.payment-notice-modal--ok {
  border-top-color: #ff9028;
}

.payment-notice-modal--err {
  border-top-color: #b91c1c;
}

.support-ticket-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.support-conv {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.support-conv__row {
  display: flex;
}

.support-conv__row--user {
  justify-content: flex-end;
}

.support-conv__row--staff {
  justify-content: flex-start;
}

.support-conv__bubble {
  max-width: min(100%, 520px);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: var(--surface, #fff);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.support-conv__row--user .support-conv__bubble {
  background: rgba(26, 86, 196, 0.08);
  border-color: rgba(26, 86, 196, 0.2);
}

.support-conv__row--staff .support-conv__bubble {
  background: rgba(224, 112, 24, 0.07);
  border-color: rgba(224, 112, 24, 0.22);
}

.support-conv__who {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.support-conv__when {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.support-conv__text {
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.support-ticket-reply-form textarea {
  width: 100%;
  margin-bottom: 10px;
}

.sepet-line-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.sepet-line-status--ok {
  background: rgba(13, 122, 82, 0.15);
  color: #0d7a52;
}

.sepet-line-status--bad {
  background: rgba(185, 28, 28, 0.12);
  color: #b91c1c;
}

.orders-unified-wrap table {
  width: 100%;
}

.notifications-page .panel,
.notifications-page.spotlight-panel {
  border-radius: 16px;
}

/* Faturalarım — özet tablo */
.faturalarim-table-wrap {
  overflow-x: auto;
}

.faturalarim-table .fatura-th-sub {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: var(--text-muted, #64748b);
  margin-top: 2px;
  line-height: 1.3;
}

.faturalarim-table .fatura-cell-note {
  margin-top: 4px;
  font-size: 12px;
}

.faturalarim-table .fatura-invoice-cell {
  max-width: 220px;
}

.faturalarim-table .fatura-pending-msg {
  font-size: 13px;
  color: var(--text-muted, #64748b);
  line-height: 1.45;
}

/* Hesap paneli (Profil, Faturalar, Destek, Siparişler, Bakiye geçmişi) */
.account-dashboard-body .portal-shell.account-dashboard-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.account-dash {
  margin-top: 8px;
}

.account-dash-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 16px;
  background: #ff9028;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255, 144, 40, 0.28);
}

.account-dash-banner__kicker {
  margin: 0 0 4px;
  font-size: 13px;
  opacity: 0.92;
}

.account-dash-banner__title {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.account-dash-banner__sub {
  margin: 8px 0 0;
  font-size: 14px;
  opacity: 0.95;
  max-width: 520px;
  line-height: 1.45;
}

.account-dash-banner__avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.account-dash-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.account-dash-sidebar {
  flex: 0 0 280px;
  max-width: 100%;
  background: var(--surface, #fff);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.account-dash-usercard {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.account-dash-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ff9028;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
}

.account-dash-user-meta {
  min-width: 0;
}

.account-dash-name {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.account-dash-email {
  font-size: 12px;
  color: var(--text-muted);
  word-break: break-all;
}

.account-dash-balance-card {
  background: rgba(255, 144, 40, 0.1);
  border: 1px solid rgba(255, 144, 40, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.account-dash-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
}

.account-dash-balance-row strong {
  font-size: 15px;
}

.account-dash-balance-row--muted {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 144, 40, 0.25);
  color: var(--text-muted);
}

.account-dash-btn-load {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ff9028;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 16px;
}

.account-dash-btn-load:hover {
  background: #e07018;
}

.account-dash-side-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-dash-side-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text, #1e293b);
  text-decoration: none;
  border: 1px solid transparent;
}

.account-dash-side-link:hover {
  background: rgba(255, 144, 40, 0.08);
}

.account-dash-side-link.is-active {
  background: rgba(255, 144, 40, 0.14);
  border-color: rgba(255, 144, 40, 0.35);
  color: #d97706;
  font-weight: 700;
}

.account-dash-side-link--out {
  color: #b91c1c !important;
  margin-top: 8px;
}

.account-dash-side-foot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.account-dash-main {
  flex: 1;
  min-width: 0;
}

.account-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.account-dash-stat {
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.account-dash-stat__label {
  font-size: 12px;
  opacity: 0.92;
  margin-bottom: 6px;
}

.account-dash-stat__val {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.account-dash-stat--teal {
  background: #ff9028;
}

.account-dash-stat--green {
  background: #16a34a;
}

.account-dash-stat--blue {
  background: #2563eb;
}

.account-dash-stat--support {
  background: #059669;
}

.account-dash-content {
  background: var(--surface, #fff);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.account-dash-flash {
  margin-bottom: 12px;
}

.account-dash-page-head {
  margin-bottom: 18px;
}

.account-dash-page-head--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.account-dash-page-title {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.account-dash-page-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.account-dash-edit-btn {
  flex-shrink: 0;
}

.account-dash-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.account-dash-info-box {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(248, 250, 252, 0.8);
}

.account-dash-info-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.account-dash-subh {
  margin: 0 0 8px;
  font-size: 1rem;
}

.account-dash-invoice-summary {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.account-dash-invoice-summary li {
  margin-bottom: 8px;
}

.account-dash-invoice-summary span {
  display: inline-block;
  min-width: 140px;
  color: var(--text-muted);
  font-size: 13px;
}

.account-dash-panel {
  border: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.account-dash-form-block h4 {
  margin: 0 0 10px;
  font-size: 15px;
}

.account-dash-edit-modal {
  max-width: 720px;
  width: min(720px, 96vw);
  max-height: 90vh;
  overflow: auto;
}

.account-dash-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.account-dash-support-grid.support-two-col {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 960px) {
  .account-dash-layout {
    flex-direction: column;
  }

  .account-dash-sidebar {
    flex: none;
    width: 100%;
  }

  .account-dash-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-dash-support-grid.support-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .account-dash-stats {
    grid-template-columns: 1fr;
  }

  .account-dash-info-grid {
    grid-template-columns: 1fr;
  }

  .account-dash-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ——— Yönetim paneli (profilim ile aynı dil: teal, yeşil, beyaz kartlar) ——— */
body.account-dashboard-body:has(.admin-account-dash) {
  background: var(--page-bg);
}

.admin-account-dash {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px 48px;
  min-height: 100vh;
  box-sizing: border-box;
  background: var(--page-bg);
}

.admin-dash-banner.account-dash-banner {
  background: #ff9028;
}

.admin-shell-site-pill {
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 144, 40, 0.1);
  border: 1px solid rgba(255, 144, 40, 0.22);
  font-size: 12px;
  font-weight: 700;
  color: #d97706;
  text-align: center;
}

.admin-shell-site-pill span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-dash-sidebar .account-dash-side-link.is-active {
  color: #d97706;
}

.admin-dash-content .topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-dash-content .topbar strong {
  font-size: 1.1rem;
  color: #0f172a;
}

.admin-dash-content .panel {
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.04);
}

.admin-dash-content .panel h2,
.admin-dash-content .panel h3 {
  margin-top: 0;
  color: #0f172a;
}

.admin-dash-content .panel h3 {
  font-size: 1.05rem;
}

.admin-dash-content .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.admin-dash-content .cards .card {
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255, 144, 40, 0.08);
  border: 1px solid rgba(255, 144, 40, 0.22);
  color: #0f172a;
}

.admin-dash-content .cards .card strong {
  font-size: 1.25rem;
  color: #c2410c;
}

.admin-dash-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-dash-content table th {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 2px solid rgba(255, 144, 40, 0.25);
  color: #d97706;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.admin-dash-content table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-dash-content .btn-primary,
.admin-dash-content button[type="submit"]:not(.admin-order-row-actions button) {
  background: #ff9028;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}

.admin-dash-content .btn-primary:hover,
.admin-dash-content button[type="submit"]:not(.admin-order-row-actions button):hover {
  background: #e07018;
}

.admin-dash-content .pill {
  background: rgba(255, 144, 40, 0.12);
  color: #d97706;
  border: 1px solid rgba(255, 144, 40, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

.admin-dash-content .pill:hover {
  background: rgba(255, 144, 40, 0.2);
}

.admin-dash-content a {
  color: #d97706;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-dash-content input,
.admin-dash-content select,
.admin-dash-content textarea {
  border-radius: 10px;
  border: 1px solid #cbd5e1;
}

.admin-dash-content label {
  color: #334155;
  font-weight: 600;
  font-size: 13px;
}

.admin-side-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  border-radius: 999px;
  background: rgba(255, 144, 40, 0.22);
  color: #d97706;
  margin-left: 6px;
  vertical-align: middle;
}

.account-dash-side-link.is-active .admin-side-badge {
  background: #d97706;
  color: #fff;
}

.admin-bl-orders-heading {
  margin-top: 0;
}

.admin-bl-order-card {
  margin-top: 14px;
}

.admin-bl-order-title {
  margin-top: 0;
  font-size: 1.05rem;
}

.admin-bl-order-actions form.inline {
  display: inline-block;
  margin-right: 8px;
}

.admin-bl-report-form textarea {
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

.admin-status-filters a {
  color: #d97706 !important;
  border-color: rgba(255, 144, 40, 0.35) !important;
}

.admin-status-filters a.active {
  background: rgba(255, 144, 40, 0.18) !important;
  color: #9a3412 !important;
}

.admin-invoice-section-title {
  margin-top: 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.order-type-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.order-type-chip--guest {
  background: rgba(255, 144, 40, 0.14);
  color: #d97706;
}

.order-type-chip--bl {
  background: rgba(224, 112, 24, 0.12);
  color: #b45309;
  border: 1px solid rgba(255, 144, 40, 0.35);
}

.status-bl-awaiting {
  background: #fff4db;
  color: #966100;
}

.status-bl-processing {
  background: rgba(255, 144, 40, 0.18);
  color: #d97706;
}

.status-bl-completed {
  background: #e9f8ef;
  color: #17683d;
}

.admin-bl-actions-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.admin-bl-actions-cell form.inline {
  display: inline-block;
  margin: 0;
}

.admin-bl-report-modal {
  z-index: 10050;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-bl-report-modal__card {
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
}

.admin-bl-report-modal__ta {
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  min-height: 200px;
}

.admin-bl-report-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

.admin-orders-table--unified td {
  vertical-align: top;
}

/* ——— Admin kullanıcı profili ——— */
.admin-user-profile {
  max-width: 100%;
}

.admin-user-profile__back {
  margin: 0 0 16px;
}

.admin-user-profile__hero {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 144, 40, 0.06);
  border: 1px solid rgba(255, 144, 40, 0.22);
}

.admin-user-profile__avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #ff9028;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-user-profile__name {
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: #0f172a;
}

.admin-user-profile__email {
  margin: 0 0 12px;
  color: #475569;
  font-size: 14px;
}

.admin-user-profile__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-user-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(255, 144, 40, 0.35);
  color: #d97706;
}

.admin-user-profile__stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.admin-user-stat {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid var(--border-subtle);
}

.admin-user-stat__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 6px;
}

.admin-user-stat__val {
  font-size: 1.15rem;
  color: #0f172a;
}

.admin-user-stat__val--sm {
  font-size: 0.95rem;
  font-weight: 700;
}

.admin-user-profile__panel h3 {
  margin-top: 0;
  font-size: 1.05rem;
  color: #0f172a;
}

.admin-user-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px 20px;
}

.admin-user-table {
  font-size: 13px;
}

@media (max-width: 960px) {
  .admin-account-dash .account-dash-layout {
    flex-direction: column;
  }
}

/* —— #ff9028 marka: prose ve odak —— */
.corporate-prose a {
  color: var(--brand-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.corporate-prose a:hover {
  color: #ff9028;
}

:focus-visible {
  outline: 2px solid rgba(255, 144, 40, 0.55);
  outline-offset: 2px;
}

/* Sabit “Neden biz” — ana sayfa */
.fixed-why-home-head {
  margin-bottom: 16px;
}

.fixed-why-home-head h3 {
  margin-bottom: 6px;
}

.fixed-why-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fixed-why-home-card {
  position: relative;
  padding: 16px 16px 16px 52px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(255, 244, 235, 0.65) 0%, #ffffff 55%);
  box-shadow: 0 6px 20px rgba(30, 42, 69, 0.06);
}

.fixed-why-home-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--color-2);
}

.fixed-why-home-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.fixed-why-home-badge {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: #ff9028;
}

@media (max-width: 720px) {
  .fixed-why-home-grid {
    grid-template-columns: 1fr;
  }
}

/* Sabit “Neden biz” — backlink paketleri */
.fixed-why-blink-lead {
  max-width: 720px;
  margin: 0 auto;
}

.fixed-why-blink-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.fixed-why-blink-card {
  position: relative;
  padding: 20px 18px 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #0f172a;
  color: #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35);
}

.fixed-why-blink-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: #fff;
}

.fixed-why-blink-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
}

.fixed-why-blink-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
  background: #ff9028;
}

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

.blink-testimonials-carousel {
  max-width: 1180px;
  margin: 0 auto;
}

.blink-testimonials-carousel .testimonial-card {
  background: rgba(255, 255, 255, 0.96);
}
