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

:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.04);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.06);
  --shadow-hover: 0 12px 32px rgba(15,23,42,0.1);
  --radius: 12px;
  --nav-height: 72px;
  --max-w: 1200px;
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing:border-box; margin:0; padding:0; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Starfield canvas overlay - Kurumsal ağ efekti arka planda kalacak */
.starfield {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.5;
}

/* LAYOUT */
.wrap { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 100vh; }
.main { flex: 1; padding-top: var(--nav-height); }
.mainInner { max-width: var(--max-w); margin: 0 auto; padding: 40px 24px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
}
.navInner {
  width: 100%; max-width: var(--max-w);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.badgeLogo { width: 36px; height: 36px; border-radius: 8px; overflow: hidden; }
.badgeLogo img { width: 100%; height: 100%; object-fit: cover; }
.brandText .title { font-weight: 800; font-size: 18px; letter-spacing: -0.5px; }
.brandText .title span:last-child { color: var(--accent); }
.brandText .sub { display: none; } /* Sadeliği korumak için alt başlığı gizledik */

.menu { display: flex; align-items: center; gap: 28px; }
.menu a { font-size: 14px; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.menu a:hover, .menu a.active { color: var(--text-main); }

.ctaNav {
  background: var(--accent); color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 600; transition: background 0.2s;
}
.ctaNav:hover { background: var(--accent-hover); }

/* MAIN HERO (Centered) */
.heroShowcase {
  text-align: center;
  padding: 100px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 24px; padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08); border-radius: 99px;
}
.heroTitle {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text-main);
}
.heroDesc {
  font-size: 18px; color: var(--text-muted);
  max-width: 600px; margin: 0 auto 40px;
  line-height: 1.6;
}
.heroActions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn {
  padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 15px;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn.primary { background: var(--text-main); color: #fff; box-shadow: var(--shadow-sm); }
.btn.primary:hover { background: #000; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn.outlineBtn { background: #fff; color: var(--text-main); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.btn.outlineBtn:hover { border-color: var(--text-muted); transform: translateY(-1px); }

/* FEATURES GRID (Home Services) */
.homeServices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 20px;
}
.sCard {
  background: var(--bg-card);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  text-align: left;
}
.sCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(37,99,235,0.3); }
.sIcon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(37,99,235,0.08); display: grid; place-items: center; margin-bottom: 24px;
}
.sIcon svg { width: 24px; height: 24px; color: var(--accent); stroke-width: 2px; }
.sCard h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.sCard p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.btnLink { font-weight: 600; font-size: 14px; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; }
.btnLink:hover { color: var(--accent-hover); }

/* SCOPE SECTION (Hizmet Kapsamım) */
.scopeSection {
  margin-top: 60px;
}
.scopeSection h2 {
  font-size: 24px; font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 24px; color: var(--text-main);
}
.scopeGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.scopeItem {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.scopeItem:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.3);
}
.scopeIcon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(37,99,235,0.08);
  color: var(--accent);
  display: grid; place-items: center;
  border-radius: 8px; font-size: 18px;
}
.scopeText h4 {
  font-size: 14px; font-weight: 700; color: var(--text-main); margin-bottom: 2px;
}
.scopeText p {
  font-size: 13px; color: var(--text-muted); line-height: 1.4;
}


/* PAGE TITLES */
.pageHeader { margin-bottom: 40px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.pageTitle h1 { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; color: var(--text-main); }
.pageTitle p { font-size: 16px; color: var(--text-muted); }

/* PRODUCTS GRID */
.productsGrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.prodCard {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s;
}
.prodCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.prodTop { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.iconWrap { font-size: 28px; width: 56px; height: 56px; border-radius: 12px; background: rgba(37,99,235,0.05); display: grid; place-items: center; }
.tag { font-size: 12px; font-weight: 600; color: var(--accent); background: rgba(37,99,235,0.1); padding: 4px 12px; border-radius: 20px; }
.prodBody { flex: 1; margin-bottom: 24px; }
.prodBody h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.prodBody p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.prodBody ul { font-size: 13px; color: var(--text-muted); padding-left: 20px; list-style: disc; }
.prodBody ul li { margin-bottom: 6px; }
.prodFoot { padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.priceBox .price { font-weight: 700; font-size: 15px; color: var(--text-main); }
.priceBox .mini { font-size: 12px; color: var(--text-light); margin-top: 2px;}
.btnSmall { padding: 8px 16px; background: var(--bg-main); border: 1px solid var(--border); color: var(--text-main); font-size: 13px; font-weight: 600; border-radius: 8px; transition: background 0.2s; }
.btnSmall:hover { background: var(--border); }

/* CONTACT PAGE */
.contactWrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.cForm { background: var(--bg-card); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.cForm h2 { margin-bottom: 24px; font-size: 24px; font-weight: 800; letter-spacing: -0.5px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); }
.field input, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; transition: border-color 0.2s; background: #fff; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.cForm button { width: 100%; justify-content: center; margin-top: 10px; }

.cInfo { padding: 40px 0; }
.infoItem { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.iIcon { width: 44px; height: 44px; background: rgba(37,99,235,0.08); border-radius: 10px; display: grid; place-items: center; color: var(--accent); flex-shrink: 0;}
.iIcon svg { width: 20px; height: 20px; }
.iText h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text-main); }
.iText p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 32px 24px; margin-top: auto; background: var(--bg-card); }
.footerInner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--text-muted); flex-wrap: wrap; gap: 16px; }
.fBrand { font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.fLinks { display: flex; gap: 16px; }

/* TRANSITION LOADER (Minimalist) */
.transition {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-main);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.transition.show { opacity: 1; pointer-events: all; }
.loaderBox { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loaderSpinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border); border-top-color: var(--accent);
  border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* PAGE ENTRANCE */
[data-animate="in"] { animation: fadeUp 0.6s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .homeServices { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .sCard { padding: 16px 12px; }
  .sCard h3 { font-size: 13px; margin-bottom: 8px; letter-spacing: -0.5px; }
  .sCard p { font-size: 11px; margin-bottom: 12px; line-height: 1.4; }
  .sIcon { width: 36px; height: 36px; margin-bottom: 16px; }
  .sIcon svg { width: 16px; height: 16px; }
  .btnLink { font-size: 11px; }
  .scopeGrid { grid-template-columns: 1fr; }
  .contactWrap { grid-template-columns: 1fr; }
  .heroTitle { font-size: 40px; }
  .menu { display: none; }
  .productsGrid { grid-template-columns: 1fr; }
}

/* Geniş demo kataloğu düzeni */
.productsGrid { align-items: stretch; }
.prodCard { min-height: 390px; }
.prodTop { gap: 12px; }
.tag { text-align: right; max-width: 160px; line-height: 1.25; }
.prodBody h3 { line-height: 1.25; }
.prodBody p { min-height: 66px; }
@media (max-width: 640px) {
  .prodCard { min-height: auto; }
  .prodBody p { min-height: auto; }
  .tag { max-width: 150px; }
}


/* Proje kartı ödeme düzeni */
.prodFoot.projectFoot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-top: 14px;
}
.projectPrice {
  width: 100%;
  text-align: center;
  color: #dc2626;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin: 0 auto 2px;
}
.prodActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.prodActions .btnSmall {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  text-align: center;
}
.prodActions .demoBtn {
  background: #fff;
  color: var(--text-main);
}
.prodActions .buyBtn {
  background: var(--text-main);
  border-color: var(--text-main);
  color: #fff;
}
.prodActions .buyBtn:hover {
  background: #000;
}

/* Admin panel düzeltmeleri */
.page-admin {
  background: #f4f7fb;
}
.page-admin .starfield { opacity: .28; }
.adminMain {
  padding-top: 32px;
}
.adminHero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.adminHero, .adminPanelCard {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.adminHero { padding: 28px; }
.adminKicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(37,99,235,.10);
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}
.adminHero h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}
.adminHero p { color: var(--text-muted); max-width: 720px; }
.adminLoginBox {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.adminLoginBox label, .paytrField span {
  display:block;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.adminLoginBox small { display:block; color: var(--text-light); margin-top: 8px; font-size: 12px; }
.adminTokenRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.adminTokenRow input, .paytrField input, .paytrField select, .adminPriceInput {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  background: #fff;
  font: inherit;
  color: var(--text-main);
}
.adminTokenRow input:focus, .paytrField input:focus, .paytrField select:focus, .adminPriceInput:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.14);
}
.adminAlert {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-weight: 700;
}
.adminAlert.show { display:block; }
.adminAlert.ok { background:#ecfdf5; color:#047857; border:1px solid #bbf7d0; }
.adminAlert.warn { background:#fff7ed; color:#c2410c; border:1px solid #fed7aa; }
.adminAlert.err { background:#fef2f2; color:#b91c1c; border:1px solid #fecaca; }
.adminPanelCard {
  padding: 24px;
  margin-bottom: 24px;
}
.adminPanelHead {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.adminPanelHead h2 {
  font-size: 24px;
  letter-spacing: -.5px;
  margin-bottom: 4px;
}
.adminPanelHead p { color: var(--text-muted); max-width: 760px; }
.adminActions {
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.adminActions.right { justify-content:flex-end; margin-top: 16px; }
.btn.success {
  background: #16a34a;
  color: #fff;
}
.btn.success:hover { background:#15803d; }
.adminTableWrap {
  width: 100%;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.adminTable {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background:#fff;
}
.adminTable th {
  background:#0f172a;
  color:#fff;
  text-align:left;
  font-size: 13px;
  padding: 14px 16px;
}
.adminTable td {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-muted);
}
.adminProjectTitle {
  color: var(--text-main);
  font-weight: 800;
}
.adminPriceCell {
  display:flex;
  align-items:center;
  gap: 8px;
  max-width: 180px;
}
.adminPriceCell span {
  font-weight: 900;
  color:#dc2626;
}
.paytrGrid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.paytrField { display:block; }
.paytrInfoBox {
  margin-top: 16px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-muted);
  font-size: 14px;
}
.securePill {
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background:#ecfdf5;
  color:#047857;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}
.checkoutLayout, .cartLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 24px;
  align-items: start;
}
.checkoutCard, .checkoutSummaryCard, .cartSummaryCard, .cartItems {
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px;
  box-shadow: var(--shadow-sm);
}
.checkoutCard h2, .checkoutSummaryCard h2 { margin-bottom: 16px; }
.secureBox {
  display:flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background:#ecfdf5;
  border: 1px solid #bbf7d0;
  color:#047857;
  margin-bottom: 18px;
}
.formGrid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.field.full { grid-column: 1 / -1; }
.checkoutHint { margin-top: 12px; font-size: 13px; color: var(--text-light); text-align:center; }
.summaryLine {
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom:1px solid var(--border);
  color: var(--text-muted);
}
.summaryLine strong { color: var(--text-main); }
.summaryTotal {
  text-align:center;
  color:#dc2626;
  font-size: 30px;
  font-weight: 900;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .adminHero, .checkoutLayout, .cartLayout { grid-template-columns: 1fr; }
  .adminPanelHead { flex-direction: column; align-items: stretch; }
  .paytrGrid { grid-template-columns: 1fr; }
  .formGrid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .prodActions { grid-template-columns: 1fr; }
  .adminHero, .adminPanelCard { padding: 18px; }
  .adminTokenRow { grid-template-columns: 1fr; }
}

/* Üst sağ Sepetim alanı */
.navActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 150px;
}
.cartNav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, border-color .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.cartNav:hover {
  transform: translateY(-1px);
  border-color: rgba(37,99,235,.45);
  box-shadow: var(--shadow-md);
  background: rgba(37,99,235,.04);
}
.cartIcon { font-size: 16px; line-height: 1; }
.cartCount {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}
.cartNav[data-cart-has-items="false"] .cartCount { background: #94a3b8; }

.cartItem {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cartItem:last-child { border-bottom: 0; }
.cartItemIcon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37,99,235,.08);
  font-size: 24px;
}
.cartItemTitle { font-weight: 900; color: var(--text-main); margin-bottom: 4px; }
.cartItemMeta { color: var(--text-muted); font-size: 13px; line-height: 1.45; }
.cartItemPrice { color: #dc2626; font-weight: 900; font-size: 20px; text-align: right; }
.cartEmpty {
  text-align: center;
  padding: 34px 18px;
  color: var(--text-muted);
}
.cartEmptyIcon { font-size: 42px; margin-bottom: 10px; }
.cartEmpty h2 { color: var(--text-main); margin-bottom: 8px; }
.cartSummaryCard h2 { margin-bottom: 16px; }
.cartSummaryActions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.cartSummaryActions .btn { justify-content: center; }

@media (max-width: 900px) {
  .navActions { min-width: auto; }
  .cartNav { padding: 9px 12px; }
}
@media (max-width: 480px) {
  .cartNav span:nth-child(2) { display: none; }
  .cartNav { gap: 6px; }
  .cartItem { grid-template-columns: auto 1fr; }
  .cartItemPrice { grid-column: 1 / -1; text-align: left; }
}



/* Admin panel son görünüm güvenlik/düzen katmanı */
body.page-admin .adminDashboard{display:grid;gap:22px;}
body.page-admin .adminHeroNew, body.page-admin .adminPanelCard{box-shadow:0 14px 42px rgba(15,23,42,.07);}
body.page-admin .adminHeroNew{border-radius:24px;}
body.page-admin .adminGridNew{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(350px,.9fr);gap:22px;align-items:start;}
body.page-admin .adminSideStack{display:grid;gap:22px;}
body.page-admin .adminStatsNew{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:22px;}
body.page-admin .adminStatNew{background:#fff;border:1px solid var(--border);border-radius:18px;padding:15px 16px;box-shadow:var(--shadow-sm);}
body.page-admin .adminStatNew span{display:block;color:var(--text-muted);font-size:12px;font-weight:800;margin-bottom:6px;}
body.page-admin .adminStatNew strong{display:block;color:var(--text-main);font-size:22px;line-height:1;font-weight:900;}
body.page-admin .adminHelpList{display:grid;gap:12px;margin-top:12px;}
body.page-admin .adminHelpItem{display:flex;gap:12px;align-items:flex-start;background:#f8fafc;border:1px solid var(--border);border-radius:16px;padding:14px;}
body.page-admin .adminHelpIcon{width:36px;height:36px;display:grid;place-items:center;border-radius:12px;background:#eff6ff;color:var(--accent);font-weight:900;flex:0 0 auto;}
body.page-admin .adminHelpItem strong{display:block;color:var(--text-main);margin-bottom:2px;}
body.page-admin .adminHelpItem span{display:block;color:var(--text-muted);font-size:13px;line-height:1.45;}
@media(max-width:980px){body.page-admin .adminGridNew{grid-template-columns:1fr;}body.page-admin .adminStatsNew{grid-template-columns:1fr 1fr 1fr;}}
@media(max-width:640px){body.page-admin .adminStatsNew{grid-template-columns:1fr;}}


/* Ödeme servis mesajları */
.checkoutMessage {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}
.checkoutMessage.show { display: block; }
.checkoutMessage.ok { background: #ecfdf5; color: #047857; border: 1px solid #bbf7d0; }
.checkoutMessage.warn { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.checkoutMessage.err { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.resultReasonBox {
  display: block;
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
  font-weight: 800;
  word-break: break-word;
}
.resultReasonBox:empty { display: none; }
button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: .72;
}
