/* ── Reset & Variables ── */
:root {
  --bg: #f4f6fb;
  --card: #ffffff;
  --ink: #0d1117;
  --muted: #5b6577;
  --line: #e3e8f0;
  --brand: #5c3cf4;
  --brand-dark: #4327d6;
  --brand-light: #ede9ff;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --green: #10b981;
  --green-light: #d1fae5;
  --red: #ef4444;
  --red-light: #fee2e2;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(16,23,40,.07);
  --shadow-lg: 0 12px 48px rgba(16,23,40,.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }
address { font-style: normal; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
main { min-height: 60vh; }

/* ── Header ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 12px rgba(16,23,40,.06);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 68px; }
.brand { font-weight: 900; font-size: 20px; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.main-nav { display: flex; gap: 2px; flex: 1; }
.main-nav a { color: var(--muted); font-weight: 600; font-size: 14px; padding: 6px 10px; border-radius: 8px; transition: color .15s, background .15s; white-space: nowrap; }
.main-nav a.active, .main-nav a:hover { color: var(--brand); background: var(--brand-light); text-decoration: none; }
.nav-auth { display: flex; align-items: center; gap: 8px; }
.nav-login { color: var(--muted); font-weight: 600; font-size: 14px; padding: 8px 14px; }
.nav-login:hover { color: var(--brand); text-decoration: none; }
.nav-cta { background: var(--brand); color: #fff !important; padding: 9px 18px; border-radius: 10px; font-weight: 700; font-size: 14px; }
.nav-cta:hover { background: var(--brand-dark); text-decoration: none; }
.nav-user { display: flex; align-items: center; gap: 10px; }
.nav-balance { background: var(--accent-light); color: var(--ink); font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: 999px; border: 1px solid #fde68a; }
.nav-balance:hover { text-decoration: none; }
.nav-account { font-weight: 600; font-size: 14px; color: var(--ink); }
.nav-logout { background: none; border: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 8px; cursor: pointer; font-family: inherit; }
.nav-logout:hover { border-color: var(--red); color: var(--red); }
.mobile-menu-btn { display: none; background: none; border: 1px solid var(--line); padding: 6px 10px; border-radius: 8px; cursor: pointer; font-size: 16px; margin-left: auto; }
.mobile-nav { display: none; flex-direction: column; padding: 12px 20px 16px; border-top: 1px solid var(--line); background: #fff; gap: 2px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--ink); font-weight: 600; padding: 10px 12px; border-radius: 8px; }
.mobile-nav a:hover { background: var(--bg); text-decoration: none; }
@media (max-width: 900px) { .main-nav { display: none; } }
@media (max-width: 640px) { .nav-auth, .nav-user { display: none; } .mobile-menu-btn { display: block; } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 24px; border-radius: 12px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  border: 0; font-family: inherit; transition: all .15s; line-height: 1;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(92,60,244,.35); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.22); text-decoration: none; }
.btn-ghost-dark { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost-dark:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.btn-full { width: 100%; justify-content: center; }

/* ── Hero ── */
.hero {
  padding: 72px 0 52px;
  background: linear-gradient(135deg, #0d1117 0%, #1a1040 50%, #0d1117 100%);
  color: #fff; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(92,60,244,.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; right: -5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(92,60,244,.25); border: 1px solid rgba(92,60,244,.4);
  color: #c4b5fd; font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(32px, 5.5vw, 58px); line-height: 1.08; margin-bottom: 16px; letter-spacing: -.03em; font-weight: 900; }
.hero-accent { color: #a78bfa; }
.hero .lead { font-size: 18px; color: rgba(255,255,255,.75); max-width: 600px; margin-bottom: 28px; line-height: 1.65; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust .item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 16px 18px; backdrop-filter: blur(8px); }
.trust .item b { display: block; font-size: 15px; margin-bottom: 4px; }
.trust .item span { color: rgba(255,255,255,.65); font-size: 13px; }
@media (max-width: 640px) { .trust { grid-template-columns: repeat(2, 1fr); } }

/* ── Stats ── */
.stats-bar { background: #fff; border-bottom: 1px solid var(--line); padding: 20px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 8px 16px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-num { display: block; font-size: 24px; font-weight: 900; color: var(--brand); letter-spacing: -.02em; }
.stat-num.small { font-size: 16px; line-height: 1.5; }
.stat-label { color: var(--muted); font-size: 13px; font-weight: 500; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: 0; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

/* ── Sections ── */
.section { padding: 56px 0; }
.section-header { margin-bottom: 36px; }
.section-header h2 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.sub { color: var(--muted); font-size: 15px; }
.sub a { color: var(--brand); }

/* ── Cards ── */
.platform-block { margin-bottom: 40px; }
.platform-block h3 { font-size: 20px; font-weight: 800; margin: 0 0 18px; display: flex; align-items: center; gap: 8px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: box-shadow .15s, transform .15s; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card h4 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.card .desc { color: var(--muted); font-size: 14px; margin: 0 0 16px; flex: 1; line-height: 1.55; }
.card .from { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.card .price { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.diamond-price { color: var(--brand); }
.card a.select { align-self: flex-start; padding: 10px 18px; font-size: 14px; }

/* ── Package grid ── */
.svc-head { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 24px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 18px 0 26px; }
@media (max-width: 560px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
.pkg { border: 2px solid var(--line); border-radius: var(--radius-sm); padding: 18px; cursor: pointer; background: #fff; text-align: center; transition: all .15s; position: relative; }
.pkg:hover { border-color: var(--brand); }
.pkg.selected { border-color: var(--brand); background: var(--brand-light); box-shadow: 0 0 0 3px rgba(92,60,244,.12); }
.pkg .q { font-size: 22px; font-weight: 900; }
.pkg .u { color: var(--muted); font-size: 12px; margin-bottom: 6px; }
.pkg .p { font-weight: 800; color: var(--brand); font-size: 15px; }
.pkg-insufficient { opacity: .6; }
.pkg-low { font-size: 11px; color: var(--red); margin-top: 4px; }

/* ── Balance / order bars ── */
.balance-bar { background: var(--accent-light); border: 1px solid #fde68a; border-radius: 10px; padding: 12px 16px; font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.balance-topup { font-weight: 700; color: var(--brand); margin-left: 6px; }
.order-summary-bar { display: flex; align-items: center; justify-content: space-between; background: var(--brand-light); border: 1px solid #ddd6fe; border-radius: 12px; padding: 16px 20px; margin-top: 24px; gap: 16px; flex-wrap: wrap; }
.order-price { color: var(--brand); font-size: 16px; }

/* ── Forms ── */
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); max-width: 640px; }
.panel.wide { max-width: 860px; }
.field { margin: 0 0 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 7px; font-size: 14px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 15px; font-family: inherit; background: #fff; transition: border-color .15s, box-shadow .15s; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(92,60,244,.1); }
.field .hint { color: var(--muted); font-size: 13px; margin-top: 6px; line-height: 1.45; }
.check { display: flex; gap: 10px; align-items: flex-start; margin: 0 0 14px; font-size: 14px; color: var(--muted); }
.check input { margin-top: 3px; accent-color: var(--brand); flex-shrink: 0; }
.login-prompt { text-align: center; }
.login-prompt p { margin-bottom: 16px; font-size: 16px; color: var(--muted); }

/* ── Elmas packages ── */
.elmas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 32px; }
@media (max-width: 1000px) { .elmas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .elmas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .elmas-grid { grid-template-columns: 1fr; } }
.elmas-pkg { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); padding: 24px 18px; text-align: center; cursor: pointer; transition: all .18s; display: flex; flex-direction: column; align-items: center; gap: 4px; position: relative; }
.elmas-pkg:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.elmas-pkg.selected { border-color: var(--brand); background: var(--brand-light); box-shadow: 0 0 0 3px rgba(92,60,244,.15); }
.elmas-pkg.pkg-popular { border-color: var(--brand); }
.elmas-pkg.pkg-best-value { border-color: var(--accent); }
.pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.elmas-icon { font-size: 36px; margin-bottom: 6px; }
.elmas-amount { font-size: 30px; font-weight: 900; color: var(--brand); letter-spacing: -.03em; }
.elmas-unit { font-size: 13px; color: var(--muted); font-weight: 600; }
.elmas-bonus { background: var(--green-light); color: var(--green); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.elmas-total { font-size: 12px; color: var(--muted); min-height: 18px; }
.elmas-price { font-size: 22px; font-weight: 800; color: var(--ink); margin-top: 6px; }
.elmas-desc { font-size: 12px; color: var(--muted); }
.elmas-order-summary { max-width: 480px; margin: 0 auto; }
.summary { background: var(--brand-light); border: 1px solid #ddd6fe; border-radius: 14px; padding: 18px 22px; margin-bottom: 16px; }
.summary .row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 14px; color: var(--muted); }
.summary .total { font-weight: 800; font-size: 18px; border-top: 1px dashed #c4b5fd; margin-top: 10px; padding-top: 12px; color: var(--ink); }
.pay-info { text-align: center; color: var(--muted); font-size: 13px; margin-top: 10px; }
.current-balance { background: var(--accent-light); border: 1px solid #fde68a; border-radius: 10px; padding: 10px 16px; font-size: 14px; display: inline-block; margin-bottom: 20px; }
.page-header { margin-bottom: 32px; }
.page-header h1 { font-size: 32px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 8px; }

/* ── Elmas promo section ── */
.elmas-promo { background: linear-gradient(135deg, #0d1117 0%, #1a1040 100%); padding: 64px 0; color: #fff; }
.promo-inner { display: flex; align-items: center; gap: 48px; }
.promo-text { flex: 1; }
.promo-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.promo-text p { color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 20px; }
.promo-list { margin-bottom: 28px; }
.promo-list li { padding: 6px 0; color: rgba(255,255,255,.85); font-size: 15px; }
.promo-diamond { font-size: 100px; flex-shrink: 0; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 640px) { .promo-inner { flex-direction: column; gap: 24px; } .promo-diamond { font-size: 64px; } }

/* ── How it works ── */
.how-it-works { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.step { flex: 1; min-width: 180px; text-align: center; }
.step-num { width: 52px; height: 52px; background: var(--brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; margin: 0 auto 14px; }
.step h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }
.step-arrow { font-size: 28px; color: var(--muted); margin-top: 14px; }
@media (max-width: 640px) { .step-arrow { display: none; } }

/* ── Auth pages ── */
.auth-section { min-height: calc(100vh - 160px); display: flex; align-items: center; padding: 48px 0; background: linear-gradient(135deg, #f4f6fb 0%, #ede9ff 100%); }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 40px 36px; box-shadow: var(--shadow-lg); max-width: 420px; width: 100%; margin: 0 auto; }
.auth-logo { font-size: 48px; text-align: center; margin-bottom: 12px; }
.auth-title { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-sub { color: var(--muted); text-align: center; font-size: 14px; margin-bottom: 24px; }
.auth-switch { text-align: center; color: var(--muted); font-size: 14px; margin-top: 20px; }

/* ── Dashboard ── */
.dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 36px; }
@media (max-width: 640px) { .dashboard-grid { grid-template-columns: 1fr; } }
.dash-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.balance-card { background: linear-gradient(135deg, var(--brand) 0%, #7c3aed 100%); color: #fff; text-align: center; }
.balance-icon { font-size: 48px; margin-bottom: 10px; }
.balance-label { font-size: 14px; opacity: .8; margin-bottom: 6px; }
.balance-amount { font-size: 48px; font-weight: 900; letter-spacing: -.03em; margin-bottom: 20px; }
.balance-card .btn-primary { background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.4); color: #fff; }
.balance-card .btn-primary:hover { background: rgba(255,255,255,.35); }
.info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.info-card p { color: var(--muted); font-size: 14px; padding: 5px 0; }
.info-card p strong { color: var(--ink); }
.orders-section h2 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.orders-table { width: 100%; border-collapse: collapse; background: var(--card); }
.orders-table th, .orders-table td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.orders-table th { background: var(--bg); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }
.orders-table tr:last-child td { border-bottom: 0; }
.empty-row { text-align: center; color: var(--muted); padding: 32px; }
.diamond-amount { color: var(--brand); font-weight: 700; }

/* ── Alerts & Badges ── */
.alert { padding: 14px 18px; border-radius: 10px; font-size: 14px; font-weight: 500; margin-bottom: 18px; }
.alert.err { background: var(--red-light); border: 1px solid #fca5a5; color: #991b1b; }
.alert.ok { background: var(--green-light); border: 1px solid #6ee7b7; color: #065f46; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge.paid { background: var(--green-light); color: #065f46; }
.badge.pending { background: var(--accent-light); color: #92400e; }
.badge.failed { background: var(--red-light); color: #991b1b; }
.badge.completed { background: #dbeafe; color: #1e40af; }

/* ── Content (legal) pages ── */
.content { max-width: 820px; margin: 0 auto; padding: 48px 20px; }
.content h1 { font-size: 34px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.02em; }
.content .updated { color: var(--muted); margin: 0 0 28px; font-size: 14px; }
.content h2 { font-size: 20px; font-weight: 700; margin: 32px 0 10px; }
.content p, .content li { color: #27324a; line-height: 1.75; margin-bottom: 10px; }
.content ul, .content ol { padding-left: 22px; }
.content ul { list-style: disc; }
.content ol { list-style: decimal; }
.content li::marker { color: var(--muted); }
.content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.content th, .content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; font-size: 14px; vertical-align: top; }
.content th { background: var(--bg); font-weight: 700; }
.callout { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; padding: 16px 20px; margin: 18px 0; }
.callout.warn { background: #fff7ed; border-color: #fed7aa; }

/* ── PayTR iframe ── */
.paytr-wrap { margin: 20px 0; border-radius: var(--radius); overflow: hidden; }

/* ── Footer ── */
.site-footer { background: #0d1117; color: rgba(255,255,255,.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-muted { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.site-footer h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { font-size: 13px; color: rgba(255,255,255,.6); }
.site-footer ul a:hover { color: #fff; text-decoration: none; }
.footer-contact p { font-size: 13px; margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: #fff; text-decoration: none; }
.pay-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; }
.pay-badges img { height: 34px; width: auto; display: block; border-radius: 6px; box-shadow: 0 1px 4px rgba(0,0,0,.18); }
.pay-badges a { display: block; line-height: 0; }
.pay-badges a:hover img { box-shadow: 0 2px 10px rgba(0,0,0,.28); }
/* Açık zeminde (hizmet/ödeme sayfaları) aynı rozet dizisi */
.pay-badges-light { justify-content: center; margin: 28px auto 0; padding-top: 22px; border-top: 1px solid var(--line); }
.pay-badges-light img { box-shadow: none; border: 1px solid var(--line); }
.footer-note { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.6; margin-top: 32px; }
.footer-bottom { margin-top: 20px; border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.4); }

/* ── Çerez bandı ── */
.cookie-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 28px rgba(16,23,40,.14); }
.cookie-bar.show { display: block; }
.cookie-inner { max-width: 1140px; margin: 0 auto; padding: 16px 20px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { font-size: 13.5px; color: var(--muted); flex: 1; min-width: 260px; line-height: 1.6; margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 14px; }

/* ── TL fiyat gösterimi (KDV dâhil şeffaflık) ── */
.price-tl { font-size: 14px; font-weight: 700; color: var(--ink); margin: -10px 0 16px; }
.price-tl span { font-weight: 500; color: var(--muted); font-size: 12px; }
.pkg .p-tl { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.order-price-tl { display: block; font-size: 13px; color: var(--muted); font-weight: 600; }
.balance-tl { color: #92400e; }
.balance-sub { font-size: 13px; opacity: .85; margin: -14px 0 18px; }
.elmas-vat { font-size: 11px; color: var(--muted); margin-top: -4px; }
.cayma-note { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 4px 0 14px; }
.pick-hint { color: var(--muted); font-size: 14px; text-align: center; margin-top: 8px; }
.opt { font-weight: 400; color: var(--muted); font-size: 13px; }

/* ── Hizmet sayfası bilgi listesi ── */
.svc-facts { margin: 14px 0 22px; display: grid; gap: 6px; }
.svc-facts li { color: var(--muted); font-size: 14px; padding-left: 20px; position: relative; }
.svc-facts li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.svc-facts strong { color: var(--ink); }
