/* izgate.com — müşteri alanı, kimlik, sepet ve ödeme ekranları.
   site.css token'larını kullanır (--brand, --accent, --line, --shadow …); yalnız bu sayfalarda yüklenir. */

/* ── Temel form öğeleri ─────────────────────────────── */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { display: grid; gap: 7px; min-width: 0; }
.field > label, .field-label { font: 600 .86rem/1.3 var(--font); color: var(--ink); }
.field .opt { color: var(--muted); font-weight: 500; }
.input, .field input[type=text], .field input[type=email], .field input[type=password], .field input[type=tel],
.field input[type=number], .field input[type=date], .field select, .field textarea {
  width: 100%; font: 500 .96rem/1.4 var(--font); color: var(--ink); background: #fff;
  border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 14px; transition: border-color .15s, box-shadow .15s; appearance: none; -webkit-appearance: none;
}
.field select { background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364778b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 12px center / 16px no-repeat; padding-right: 38px; }
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .input:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 16%, transparent); }
.field input[disabled], .field input[readonly] { background: var(--bg-soft); color: var(--muted); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #dc2626; }
.field .err { color: #dc2626; font-size: .82rem; font-weight: 550; }
.field .hint { color: var(--muted); font-size: .8rem; }
.input-prefix { display: flex; align-items: stretch; }
.input-prefix span { display: grid; place-items: center; padding: 0 12px; border: 1px solid var(--line-2); border-right: 0; border-radius: 12px 0 0 12px; background: var(--bg-soft); color: var(--muted); font: 600 .9rem/1 var(--font); }
.input-prefix input { border-radius: 0 12px 12px 0 !important; }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 46px !important; }
.pw-toggle { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border: 0; background: none; border-radius: 9px; color: var(--muted); cursor: pointer; display: grid; place-items: center; }
.pw-toggle:hover { background: var(--bg-tint); color: var(--ink); }
.pw-toggle svg { width: 18px; height: 18px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--ink-2); cursor: pointer; line-height: 1.5; }
.check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--brand-600); flex: none; }
.seg { display: inline-grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px; padding: 4px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; border-radius: 10px; font: 600 .9rem/1 var(--font); color: var(--muted); transition: background .15s, color .15s, box-shadow .15s; white-space: nowrap; }
.seg span svg { width: 16px; height: 16px; }
.seg input:checked + span { background: #fff; color: var(--brand-700); box-shadow: var(--shadow-sm); }
.seg input:focus-visible + span { outline: 3px solid color-mix(in srgb, var(--brand) 45%, transparent); }
.otp-input { letter-spacing: .5em; text-align: center; font: 700 1.5rem/1 var(--mono) !important; padding: 14px 10px !important; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }
.btn-danger-ghost { background: #fff; color: #b91c1c; border-color: #f3c9c9; }
.btn-danger-ghost:hover { background: #fdecec; color: #991b1b; border-color: #e9a3a3; }
.btn-xs { padding: 7px 11px; font-size: .82rem; border-radius: 9px; }
.btn-xs svg { width: 15px; height: 15px; }
.link-btn { background: none; border: 0; padding: 0; color: var(--brand); font: 600 .9rem/1.4 var(--font); cursor: pointer; }
.link-btn:hover { color: var(--brand-600); text-decoration: underline; }
.link-btn[disabled] { color: var(--muted); cursor: default; text-decoration: none; }

/* ── Uyarılar ───────────────────────────────────────── */
.alert { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; border: 1px solid; font-size: .93rem; line-height: 1.55; }
.alert svg { flex: none; width: 20px; height: 20px; margin-top: 1px; }
.alert.ok { background: var(--ok-50); border-color: #c9ecd5; color: #14532d; }
.alert.error { background: #fdecec; border-color: #f5c2c2; color: #7f1d1d; }
.alert.warn { background: #fff7e8; border-color: #f8dcae; color: #7c4a03; }
.alert.info { background: var(--brand-50); border-color: var(--brand-100); color: var(--brand-700); }
.alert ul { margin: 4px 0 0; padding-left: 18px; }
.alerts { display: grid; gap: 10px; margin-bottom: 22px; }

/* ── Kimlik: bölünmüş ekran ─────────────────────────── */
.auth-shell { min-height: 100vh; min-height: 100dvh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); background: var(--bg); }
.auth-brand { position: relative; overflow: hidden; isolation: isolate; color: #c9d8e8; padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; background: linear-gradient(160deg, #0f2236 0%, #133a5d 55%, #1f67a1 100%); }
.auth-brand::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 45% at 100% 100%, rgba(235, 92, 40, .38), transparent 70%), radial-gradient(45% 40% at 0% 0%, rgba(90, 170, 230, .28), transparent 70%); }
.auth-brand::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(70% 70% at 30% 40%, #000, transparent 80%); -webkit-mask-image: radial-gradient(70% 70% at 30% 40%, #000, transparent 80%); }
.auth-brand .logo-chip { display: inline-flex; align-items: center; background: #fff; border-radius: 14px; padding: 8px 14px; align-self: flex-start; box-shadow: 0 10px 30px -10px rgba(0,0,0,.4); }
.auth-brand .logo-chip img { height: 32px; width: auto; }
.auth-brand-body { margin: auto 0; padding: 48px 0; max-width: 520px; }
.auth-brand h2 { color: #fff; font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.5rem); margin-bottom: 14px; }
.auth-brand p.lead { color: #b9cadb; font-size: 1.05rem; margin-bottom: 30px; }
.auth-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.auth-points li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 14px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(6px); }
.auth-points .pi { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #8cc8f2; }
.auth-points li:nth-child(2) .pi { color: #ffb08a; }
.auth-points li:nth-child(3) .pi { color: #7fd49b; }
.auth-points .pi svg { width: 21px; height: 21px; }
.auth-points strong { display: block; color: #fff; font-size: .98rem; margin-bottom: 2px; }
.auth-points span { font-size: .88rem; color: #aabdd0; line-height: 1.5; }
.auth-brand-foot { font-size: .82rem; color: #8ea5bb; display: flex; gap: 18px; flex-wrap: wrap; }
.auth-brand-foot a { color: #c9d8e8; }
.auth-main { display: flex; flex-direction: column; padding: clamp(24px, 3vw, 40px); background: radial-gradient(60% 40% at 100% 0%, rgba(58,144,206,.08), transparent 70%), var(--bg-soft); }
.auth-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: .9rem; color: var(--muted); }
.auth-top .back { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); font-weight: 600; }
.auth-top .back svg { width: 16px; height: 16px; }
.auth-top .mobile-logo { display: none; }
.auth-card-wrap { margin: auto; width: 100%; max-width: 480px; padding: 40px 0; }
.auth-card-wrap.wide { max-width: 720px; }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); padding: clamp(24px, 3vw, 40px); }
.auth-card h1 { font-size: clamp(1.55rem, 1.3rem + .9vw, 2rem); margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); margin-bottom: 26px; font-size: .98rem; }
.auth-card .sub strong { color: var(--ink); }
.auth-alt { text-align: center; margin-top: 22px; font-size: .92rem; color: var(--muted); }
.auth-alt a { font-weight: 650; }
.auth-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .88rem; }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .8rem; margin: 4px 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.form-section-title { font: 700 .78rem/1 var(--font); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-top: 6px; display: flex; align-items: center; gap: 10px; }
.form-section-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.verify-block { border: 1px solid var(--line); border-radius: 18px; padding: 18px; display: grid; gap: 12px; background: var(--bg-soft); }
.verify-block.done { background: var(--ok-50); border-color: #c9ecd5; }
.verify-head { display: flex; align-items: center; gap: 12px; }
.verify-head strong { display: block; font-size: .98rem; }
.verify-head small { color: var(--muted); font-size: .84rem; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .8rem; color: var(--muted); margin-top: 18px; }
.secure-note svg { width: 15px; height: 15px; color: var(--ok); }

/* ── Uygulama kabuğu (müşteri alanı) ────────────────── */
body.app-body { background: var(--bg-soft); }
.app-shell { display: grid; grid-template-columns: 272px minmax(0, 1fr); min-height: 100vh; min-height: 100dvh; }
.side { position: sticky; top: 0; height: 100vh; height: 100dvh; background: #fff; border-right: 1px solid var(--line); display: flex; flex-direction: column; padding: 20px 16px; z-index: 40; }
.side-logo { display: flex; align-items: center; padding: 4px 10px 22px; }
.side-logo img { height: 36px; width: auto; }
.side-group { font: 700 .7rem/1 var(--font); text-transform: uppercase; letter-spacing: .12em; color: #93a3b4; padding: 16px 12px 8px; }
.side-nav { display: grid; gap: 2px; }
.side-nav a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 11px; color: var(--ink-2); font: 550 .93rem/1.2 var(--font); transition: background .15s, color .15s; }
.side-nav a svg { width: 19px; height: 19px; flex: none; color: #8497ab; transition: color .15s; }
.side-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.side-nav a:hover svg { color: var(--brand-600); }
.side-nav a.on { background: var(--brand-50); color: var(--brand-700); font-weight: 650; }
.side-nav a.on svg { color: var(--brand-600); }
.side-nav a .badge-n { margin-left: auto; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--accent); color: #fff; font: 700 .72rem/22px var(--font); text-align: center; }
.side-panel { margin-top: auto; padding: 16px; border-radius: 18px; background: linear-gradient(150deg, #133a5d, #1f67a1); color: #cfe0f0; position: relative; overflow: hidden; }
.side-panel::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(235,92,40,.5), transparent 70%); }
.side-panel strong { display: block; color: #fff; font: 700 .98rem/1.3 var(--font-display); margin-bottom: 4px; }
.side-panel p { font-size: .8rem; line-height: 1.45; margin: 0 0 12px; color: #b7cce0; }
.side-panel .btn { position: relative; z-index: 1; background: #fff; color: var(--brand-700); padding: 9px 14px; font-size: .84rem; }
.side-panel .btn:hover { color: var(--brand-700); transform: translateY(-1px); }
.app-main { min-width: 0; display: flex; flex-direction: column; }
.topbar { position: sticky; top: 0; z-index: 30; height: 68px; display: flex; align-items: center; gap: 14px; padding: 0 clamp(16px, 3vw, 36px); background: rgba(246, 249, 252, .85); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
.topbar .side-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; place-items: center; color: var(--ink); }
.topbar .side-toggle svg { width: 20px; height: 20px; }
.topbar-title { font: 700 1.02rem/1.2 var(--font-display); color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.topbar .icon-btn { position: relative; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; color: var(--ink-2); }
.topbar .icon-btn:hover { border-color: var(--brand); color: var(--brand-600); }
.topbar .icon-btn svg { width: 19px; height: 19px; }
.topbar .icon-btn .cart-count { top: -5px; right: -5px; }
.user-menu { position: relative; }
.user-menu > button { display: flex; align-items: center; gap: 10px; padding: 5px 12px 5px 5px; border-radius: 14px; border: 1px solid var(--line); background: #fff; cursor: pointer; font: 600 .9rem/1.2 var(--font); color: var(--ink); max-width: 260px; }
.user-menu > button:hover { border-color: var(--line-2); }
.avatar { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: var(--grad); color: #fff; font: 800 .85rem/1 var(--font-display); flex: none; }
.user-menu .um-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-menu .um-drop { position: absolute; right: 0; top: calc(100% + 8px); width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 8px; display: none; }
.user-menu.open .um-drop { display: block; }
.um-drop .um-head { padding: 10px 12px 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.um-drop .um-head strong { display: block; font-size: .92rem; overflow: hidden; text-overflow: ellipsis; }
.um-drop .um-head small { color: var(--muted); font-size: .8rem; display: block; overflow: hidden; text-overflow: ellipsis; }
.um-drop a, .um-drop button { display: flex; width: 100%; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; color: var(--ink-2); font: 550 .9rem/1.2 var(--font); background: none; border: 0; cursor: pointer; text-align: left; }
.um-drop a:hover, .um-drop button:hover { background: var(--bg-soft); color: var(--ink); }
.um-drop svg { width: 17px; height: 17px; color: var(--muted); }
.content { padding: clamp(20px, 3vw, 36px); width: 100%; max-width: 1240px; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.page-head h1 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin: 0; }
.page-head p { color: var(--muted); margin: 6px 0 0; font-size: .96rem; }
.page-head .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0 0 10px; font-size: .84rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line-2); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.side-scrim { display: none; }

/* ── Paneller, döşemeler ────────────────────────────── */
.panel { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); min-width: 0; }
.panel + .panel { margin-top: 22px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.panel-head h2, .panel-head h3 { font-size: 1.06rem; margin: 0; display: flex; align-items: center; gap: 10px; }
.panel-head h2 .ico, .panel-head h3 .ico { width: 34px; height: 34px; border-radius: 10px; }
.panel-head h2 .ico svg, .panel-head h3 .ico svg { width: 17px; height: 17px; }
.panel-head .more { font-size: .88rem; font-weight: 600; }
.panel-body { padding: 22px; }
.panel-body.flush { padding: 0; }
.grid-main { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 22px; align-items: start; }
.stack { display: grid; gap: 22px; min-width: 0; }
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px 20px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.tile::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--brand), transparent); }
.tile.accent::before { background: linear-gradient(90deg, var(--accent), transparent); }
.tile.ok::before { background: linear-gradient(90deg, var(--ok), transparent); }
.tile.violet::before { background: linear-gradient(90deg, var(--violet), transparent); }
.tile small { display: block; font: 650 .74rem/1.2 var(--font); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.tile strong { display: block; font: 800 1.6rem/1.1 var(--font-display); color: var(--ink); letter-spacing: -.02em; }
.tile span { display: block; font-size: .84rem; color: var(--muted); margin-top: 6px; }
.tile a { font-weight: 600; font-size: .84rem; }
.kv { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.kv > div { padding: 14px 18px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); min-width: 0; }
.kv > div:nth-child(2n) { border-right: 0; }
.kv > div:nth-last-child(-n+2):nth-child(odd), .kv > div:last-child { border-bottom: 0; }
.kv dt { font: 650 .74rem/1.3 var(--font); text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 4px; }
.kv dd { margin: 0; color: var(--ink); font-weight: 600; word-break: break-word; }
.kv.one { grid-template-columns: 1fr; }
.kv.one > div { border-right: 0; }
.kv.one > div:last-child { border-bottom: 0; }

/* ── Durum rozeti ───────────────────────────────────── */
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; font: 650 .76rem/1 var(--font); white-space: nowrap; border: 1px solid transparent; }
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip.ok { background: var(--ok-50); color: #15803d; border-color: #c9ecd5; }
.chip.warn { background: #fff5e6; color: #b45309; border-color: #f8dcae; }
.chip.danger { background: #fdecec; color: #b91c1c; border-color: #f5c2c2; }
.chip.info { background: var(--brand-50); color: var(--brand-600); border-color: var(--brand-100); }
.chip.muted { background: #f1f4f7; color: #64748b; border-color: #e2e8f0; }
.chip.live::before { animation: pulse 1.6s infinite; }
.tag-type { display: inline-flex; align-items: center; gap: 6px; font: 650 .74rem/1 var(--font); padding: 5px 9px; border-radius: 8px; background: var(--violet-50); color: var(--violet); }
.tag-type.cloud { background: var(--accent-50); color: var(--accent-600); }

/* ── Veri tablosu (mobilde kart) ───────────────────── */
.dt-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.dt { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.dt th { text-align: left; padding: 12px 18px; font: 650 .74rem/1.3 var(--font); text-transform: uppercase; letter-spacing: .07em; color: var(--muted); background: var(--bg-soft); border-bottom: 1px solid var(--line); white-space: nowrap; }
table.dt td { padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: middle; color: var(--ink-2); }
table.dt tbody tr:last-child td { border-bottom: 0; }
table.dt tbody tr { transition: background .15s; }
table.dt tbody tr:hover { background: #fafcfe; }
table.dt .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
table.dt td.strong, table.dt td .strong { color: var(--ink); font-weight: 650; }
table.dt td small { display: block; color: var(--muted); font-size: .8rem; margin-top: 2px; }
table.dt .row-actions { text-align: right; white-space: nowrap; }
table.dt .sel { width: 44px; }
table.dt input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--brand-600); }
table.dt tfoot td { background: var(--bg-soft); font-weight: 650; color: var(--ink); }
.mono-id { font-family: var(--mono); font-size: .86rem; color: var(--ink); font-weight: 600; }

/* ── Boş durum ─────────────────────────────────────── */
.empty { text-align: center; padding: 48px 24px; }
.empty .ico { margin: 0 auto 16px; width: 60px; height: 60px; border-radius: 18px; }
.empty .ico svg { width: 26px; height: 26px; }
.empty h3 { font-size: 1.12rem; margin-bottom: 6px; }
.empty p { color: var(--muted); max-width: 420px; margin: 0 auto 20px; font-size: .95rem; }
.empty.sm { padding: 28px 18px; }
.empty.sm .ico { width: 48px; height: 48px; margin-bottom: 12px; }
.empty.sm p { margin-bottom: 14px; }

/* ── Hizmet kartları ───────────────────────────────── */
.svc-list { display: grid; gap: 14px; }
.svc { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 16px; align-items: center; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: border-color .15s, box-shadow .15s, transform .15s; color: inherit; }
a.svc:hover { border-color: var(--brand-100); box-shadow: var(--shadow); transform: translateY(-1px); color: inherit; }
.svc h3 { font-size: 1.02rem; margin: 0 0 4px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.svc .meta { display: flex; gap: 6px 16px; flex-wrap: wrap; font-size: .85rem; color: var(--muted); }
.svc .meta b { color: var(--ink-2); font-weight: 600; }
.svc .side-r { display: flex; align-items: center; gap: 10px; }
.svc .chev { width: 20px; height: 20px; color: #9aabbd; }

/* Panel geçiş kartı */
.panel-cta { position: relative; overflow: hidden; isolation: isolate; border-radius: 24px; padding: 26px; color: #d7e5f2; background: linear-gradient(145deg, #0f2236 0%, #16446c 55%, #1f67a1 100%); box-shadow: var(--shadow); }
.panel-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(55% 60% at 100% 100%, rgba(235,92,40,.5), transparent 70%), radial-gradient(40% 50% at 0% 0%, rgba(120,190,240,.25), transparent 70%); }
.panel-cta .pc-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; margin-bottom: 16px; }
.panel-cta .pc-ico svg { width: 24px; height: 24px; }
.panel-cta h2 { color: #fff; font-size: 1.35rem; margin-bottom: 8px; }
.panel-cta p { margin: 0 0 18px; font-size: .93rem; color: #bcd0e3; }
.panel-cta .btn-white { background: #fff; color: var(--brand-700); box-shadow: 0 10px 24px -10px rgba(0,0,0,.45); }
.panel-cta .btn-white:hover { color: var(--brand-700); transform: translateY(-1px); }
.panel-cta .pc-foot { margin-top: 14px; font-size: .8rem; color: #9fb7cd; display: flex; align-items: center; gap: 6px; }
.panel-cta .pc-foot svg { width: 14px; height: 14px; }
.panel-cta.muted { background: linear-gradient(145deg, #1b2e42, #2a4763); }

/* Ödeme bekleyen kutusu */
.due-box { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border-radius: 18px; background: linear-gradient(135deg, #fff7f2, #fff); border: 1px solid #fadccc; flex-wrap: wrap; }
.due-box strong { font: 800 1.45rem/1.1 var(--font-display); color: var(--ink); display: block; }
.due-box small { color: var(--muted); font-size: .84rem; }

/* Lisans anahtarı / kopyalama */
.copy-field { display: flex; align-items: center; gap: 8px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 6px 6px 6px 14px; min-width: 0; }
.copy-field code { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 600 .92rem/1.4 var(--mono); color: var(--ink); }
.copy-field .btn { flex: none; }
.progress { height: 8px; border-radius: 999px; background: var(--bg-tint); overflow: hidden; }
.progress > i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--brand), #6aaede); }
.progress.warn > i { background: linear-gradient(90deg, var(--warn), #f5b04a); }
.progress.danger > i { background: linear-gradient(90deg, #dc2626, #f87171); }
.usage { display: grid; gap: 8px; }
.usage-top { display: flex; justify-content: space-between; font-size: .88rem; color: var(--muted); }
.usage-top b { color: var(--ink); }
.steps-mini { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; gap: 12px; }
.steps-mini li { counter-increment: s; display: grid; grid-template-columns: 30px 1fr; gap: 12px; font-size: .92rem; }
.steps-mini li::before { content: counter(s); width: 30px; height: 30px; border-radius: 9px; background: var(--brand-50); color: var(--brand-600); font: 800 .85rem/30px var(--font-display); text-align: center; border: 1px solid var(--brand-100); }

/* ── Filtre sekmeleri, sayfalama ───────────────────── */
.filters { display: flex; gap: 6px; flex-wrap: wrap; }
.filters a { padding: 8px 14px; border-radius: 10px; font: 600 .86rem/1 var(--font); color: var(--muted); border: 1px solid transparent; }
.filters a:hover { color: var(--ink); background: var(--bg-soft); }
.filters a.on { color: var(--brand-700); background: var(--brand-50); border-color: var(--brand-100); }
.pager { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; border-top: 1px solid var(--line); font-size: .86rem; color: var(--muted); }
.pager .pg { display: flex; gap: 6px; }
.pager a, .pager span.cur { min-width: 36px; height: 36px; display: grid; place-items: center; padding: 0 10px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink-2); font-weight: 600; }
.pager span.cur { background: var(--brand-50); color: var(--brand-700); border-color: var(--brand-100); }
.pager a:hover { border-color: var(--brand); }
.pay-bar { position: sticky; bottom: 16px; z-index: 5; margin-top: 16px; display: none; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; border-radius: 18px; background: #0f2236; color: #d7e5f2; box-shadow: var(--shadow-lg); }
.pay-bar.show { display: flex; }
.pay-bar strong { color: #fff; }

/* ── Belge (sipariş/fatura detay) ──────────────────── */
.doc-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: start; }
.doc-total { display: grid; gap: 8px; margin-left: auto; width: 100%; max-width: 360px; padding: 18px 20px; border-top: 1px solid var(--line); }
.doc-total div { display: flex; justify-content: space-between; gap: 16px; font-size: .93rem; }
.doc-total div.grand { font: 750 1.1rem/1.3 var(--font-display); color: var(--ink); padding-top: 10px; border-top: 1px dashed var(--line-2); }

/* ── Satın alma yapılandırıcı ──────────────────────── */
.buy-hero { padding: clamp(40px, 5vw, 72px) 0 clamp(28px, 3vw, 40px); }
.buy-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 28px; align-items: start; }
.plan-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.plan-tab { position: relative; cursor: pointer; display: block; }
.plan-tab input { position: absolute; opacity: 0; pointer-events: none; }
.plan-tab .pt { display: grid; gap: 6px; padding: 18px 20px 18px 56px; border-radius: 20px; background: #fff; border: 1.5px solid var(--line); transition: border-color .15s, box-shadow .15s; height: 100%; }
.plan-tab .pt::before { content: ""; position: absolute; left: 20px; top: 22px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-2); background: #fff; transition: border-color .15s, box-shadow .15s; }
.plan-tab input:checked + .pt { border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 12%, transparent), var(--shadow); }
.plan-tab input:checked + .pt::before { border-color: var(--brand); box-shadow: inset 0 0 0 5px var(--brand); }
.plan-tab input:focus-visible + .pt { outline: 3px solid color-mix(in srgb, var(--brand) 45%, transparent); }
.plan-tab strong { font: 750 1.08rem/1.25 var(--font-display); color: var(--ink); }
.plan-tab small { color: var(--muted); font-size: .86rem; line-height: 1.45; }
.plan-tab .pt-from { font: 650 .84rem/1.2 var(--font); color: var(--brand-600); }
.plan-tab .pt-badge { position: absolute; top: -10px; right: 16px; font: 700 .7rem/1 var(--font); padding: 5px 9px; border-radius: 999px; background: var(--accent); color: #fff; box-shadow: 0 6px 14px -6px rgba(207,72,22,.6); }
.plan-tab.disabled .pt { opacity: .55; cursor: not-allowed; }
.cfg-block { display: grid; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.cfg-block + .cfg-block { margin-top: 16px; }
.cfg-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.cfg-top strong { display: block; font-size: 1rem; color: var(--ink); }
.cfg-top small { color: var(--muted); font-size: .84rem; }
.cfg-qty { display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; background: #fff; flex: none; }
.cfg-qty button { width: 40px; height: 44px; border: 0; background: var(--bg-soft); color: var(--ink); font: 700 1.1rem/1 var(--font); cursor: pointer; }
.cfg-qty button:hover { background: var(--bg-tint); color: var(--brand-600); }
.cfg-qty input { width: 96px; height: 44px; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; font: 700 1rem/1 var(--font); color: var(--ink); -moz-appearance: textfield; }
.cfg-qty input::-webkit-outer-spin-button, .cfg-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cfg-qty input:focus { outline: 0; background: var(--brand-50); }
.cfg-qty .unit { padding: 0 12px; font-size: .84rem; color: var(--muted); font-weight: 600; }
input[type=range].range { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--brand) var(--p, 0%), var(--bg-tint) var(--p, 0%)); outline: 0; }
input[type=range].range::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); box-shadow: 0 4px 10px -2px rgba(31,103,161,.5); cursor: pointer; }
input[type=range].range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); cursor: pointer; }
input[type=range].range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 6px color-mix(in srgb, var(--brand) 20%, transparent); }
.range-scale { display: flex; justify-content: space-between; font-size: .76rem; color: var(--muted); }
.cfg-line { font-size: .86rem; color: var(--muted); display: flex; justify-content: space-between; gap: 12px; }
.cfg-line b { color: var(--ink); }
.period-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)); gap: 10px; }
.period { position: relative; cursor: pointer; }
.period input { position: absolute; opacity: 0; pointer-events: none; }
.period span { display: grid; gap: 3px; text-align: center; padding: 12px 10px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; transition: border-color .15s, background .15s; }
.period b { font: 700 .92rem/1.2 var(--font); color: var(--ink); }
.period em { font-style: normal; font: 700 .74rem/1 var(--font); color: var(--ok); }
.period em.none { color: var(--muted); font-weight: 550; }
.period input:checked + span { border-color: var(--brand); background: var(--brand-50); }
.period input:focus-visible + span { outline: 3px solid color-mix(in srgb, var(--brand) 45%, transparent); }
.summary { position: sticky; top: calc(var(--header-h) + 20px); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.summary-head { padding: 20px 22px; background: linear-gradient(135deg, var(--brand-50), #fff 70%); border-bottom: 1px solid var(--line); }
.summary-head small { font: 650 .74rem/1 var(--font); text-transform: uppercase; letter-spacing: .1em; color: var(--brand-600); }
.summary-head h3 { margin: 8px 0 0; font-size: 1.2rem; }
.summary-body { padding: 18px 22px; display: grid; gap: 10px; }
.sum-line { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; color: var(--ink-2); }
.sum-line span:last-child { font-weight: 600; color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.sum-line.disc span:last-child { color: var(--ok); }
.sum-line.muted { color: var(--muted); font-size: .84rem; }
.sum-line.muted span:last-child { color: var(--muted); font-weight: 550; }
.sum-total { padding: 18px 22px; border-top: 1px dashed var(--line-2); display: grid; gap: 4px; }
.sum-total .big { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.sum-total .big span:first-child { font-weight: 650; color: var(--ink); }
.sum-total .big strong { font: 800 1.75rem/1.1 var(--font-display); color: var(--ink); letter-spacing: -.02em; }
.sum-total small { color: var(--muted); font-size: .82rem; text-align: right; }
.summary-foot { padding: 0 22px 22px; display: grid; gap: 10px; }
.trust { display: grid; gap: 8px; list-style: none; padding: 0; margin: 4px 0 0; }
.trust li { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--muted); }
.trust svg { width: 16px; height: 16px; color: var(--ok); flex: none; }
.plan-features { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.plan-features li { display: flex; gap: 10px; font-size: .9rem; align-items: flex-start; }
.plan-features li::before { content: ""; flex: none; margin-top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f67a1' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/10px no-repeat; }

/* ── Sepet / sipariş özeti ─────────────────────────── */
.shop-page { padding: clamp(32px, 4vw, 56px) 0 clamp(64px, 6vw, 96px); background: linear-gradient(180deg, var(--bg-soft), #fff 60%); min-height: 60vh; }
.shop-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 26px; align-items: start; }
.cart-item { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 16px; padding: 20px 22px; border-bottom: 1px solid var(--line); align-items: start; }
.cart-item:last-child { border-bottom: 0; }
.cart-item h3 { font-size: 1.02rem; margin: 0 0 6px; }
.cart-item ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 3px; font-size: .86rem; color: var(--muted); }
.cart-item .price { text-align: right; }
.cart-item .price strong { display: block; font: 750 1.08rem/1.2 var(--font-display); color: var(--ink); }
.cart-item .price small { color: var(--muted); font-size: .8rem; }
.cart-item .price form { margin-top: 10px; }
.steps-bar { display: flex; gap: 8px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; font-size: .86rem; }
.steps-bar span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; }
.steps-bar span i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font: 800 .78rem/1 var(--font); font-style: normal; background: #fff; border: 1px solid var(--line-2); }
.steps-bar span.on { color: var(--ink); }
.steps-bar span.on i { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.steps-bar span.done i { background: var(--ok-50); border-color: #c9ecd5; color: var(--ok); }
.steps-bar .sep { width: 28px; height: 2px; background: var(--line-2); border-radius: 2px; }

/* ── Ödeme ─────────────────────────────────────────── */
.pay-methods { display: grid; gap: 14px; }
.pay-method { border: 1.5px solid var(--line); border-radius: 20px; background: #fff; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.pay-method[open] { border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 10%, transparent); }
.pay-method > summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 18px 20px; }
.pay-method > summary::-webkit-details-marker { display: none; }
.pay-method > summary strong { display: block; color: var(--ink); font-size: 1rem; }
.pay-method > summary small { color: var(--muted); font-size: .85rem; }
.pay-method > summary .chev { width: 20px; height: 20px; color: var(--muted); transition: transform .2s; }
.pay-method[open] > summary .chev { transform: rotate(180deg); }
.pay-method .pm-body { padding: 0 20px 20px; display: grid; gap: 16px; }
.saved-cards { display: grid; gap: 10px; }
.saved-card { position: relative; cursor: pointer; }
.saved-card input { position: absolute; opacity: 0; pointer-events: none; }
.saved-card span { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; border: 1.5px solid var(--line); }
.saved-card input:checked + span { border-color: var(--brand); background: var(--brand-50); }
.card-glyph { width: 46px; height: 32px; border-radius: 7px; background: linear-gradient(135deg, #1f67a1, #6d5fd6); display: grid; place-items: center; color: #fff; font: 800 .62rem/1 var(--font); letter-spacing: .04em; flex: none; }
.bank-list { display: grid; gap: 12px; }
.bank { border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; background: var(--bg-soft); display: grid; gap: 6px; }
.bank strong { color: var(--ink); }
.bank .iban-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bank code { font: 600 .9rem/1.4 var(--mono); color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 4px 8px; word-break: break-all; }
.card-visual { position: relative; border-radius: 20px; padding: 22px; min-height: 190px; color: #fff; background: linear-gradient(135deg, #133a5d 0%, #1f67a1 55%, #eb5c28 130%); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.card-visual::after { content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.08); }
.card-visual .cv-top { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; opacity: .9; }
.card-visual .chip-g { width: 40px; height: 30px; border-radius: 7px; background: linear-gradient(135deg, #f3d27a, #c9a14a); }
.card-visual .cv-no { font: 600 1.22rem/1.2 var(--mono); letter-spacing: .08em; }
.card-visual .cv-bot { display: flex; justify-content: space-between; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; opacity: .9; gap: 12px; }
.card-visual .cv-bot b { display: block; font-size: .9rem; letter-spacing: .04em; }
.card-info { display: none; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; background: var(--brand-50); border: 1px solid var(--brand-100); font-size: .86rem; color: var(--brand-700); }
.card-info.show { display: flex; }
.result { max-width: 640px; margin: 0 auto; text-align: center; }
.result .r-ico { width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 26px; display: grid; place-items: center; }
.result .r-ico svg { width: 40px; height: 40px; }
.result .r-ico.ok { background: var(--ok-50); color: var(--ok); border: 1px solid #c9ecd5; box-shadow: 0 0 0 10px rgba(22,163,74,.06); }
.result .r-ico.err { background: #fdecec; color: #dc2626; border: 1px solid #f5c2c2; box-shadow: 0 0 0 10px rgba(220,38,38,.05); }
.result .r-ico.pend { background: #fff5e6; color: var(--warn); border: 1px solid #f8dcae; box-shadow: 0 0 0 10px rgba(217,119,6,.06); }
.result h1 { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.4rem); }
.result p { color: var(--muted); font-size: 1.04rem; }
.result .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ── Duyarlı ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-main, .shop-grid, .buy-grid { grid-template-columns: minmax(0, 1fr); }
  .summary { position: static; }
}
@media (max-width: 980px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
  .auth-top .mobile-logo { display: inline-flex; }
  .auth-top .mobile-logo img { height: 32px; width: auto; }
  .app-shell { grid-template-columns: minmax(0, 1fr); }
  .side { position: fixed; left: 0; top: 0; bottom: 0; width: 284px; transform: translateX(-102%); transition: transform .25s ease; box-shadow: var(--shadow-lg); overflow-y: auto; }
  body.side-open .side { transform: none; }
  body.side-open .side-scrim { display: block; position: fixed; inset: 0; background: rgba(12, 26, 42, .45); z-index: 35; }
  body.side-open { overflow: hidden; }
  .topbar .side-toggle { display: grid; }
  .user-menu .um-name { display: none; }
  .user-menu > button { padding: 5px; }
}
@media (max-width: 720px) {
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tile { padding: 14px 16px; }
  .tile strong { font-size: 1.3rem; }
  .kv { grid-template-columns: 1fr; }
  .kv > div { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .kv > div:last-child { border-bottom: 0 !important; }
  .plan-tabs { grid-template-columns: 1fr; }
  .plan-features { grid-template-columns: 1fr; }
  .svc { grid-template-columns: minmax(0, 1fr) auto; }
  .svc > .ico { display: none; }
  .cart-item { grid-template-columns: minmax(0, 1fr); }
  .cart-item > .ico { display: none; }
  .cart-item .price { text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .cart-item .price form { margin: 0; }
  .doc-head { grid-template-columns: 1fr; }
  .auth-card { border-radius: 22px; }
  .seg { display: grid; width: 100%; }
  .seg span { padding: 10px 8px; }
  .cfg-top { flex-direction: column; }
  .page-head .actions .btn { flex: 1; }
  /* Tablo → kart */
  table.dt.stack-sm thead { display: none; }
  table.dt.stack-sm, table.dt.stack-sm tbody, table.dt.stack-sm tr, table.dt.stack-sm td { display: block; width: 100%; }
  table.dt.stack-sm tr { padding: 14px 16px; border-bottom: 1px solid var(--line); position: relative; }
  table.dt.stack-sm tbody tr:last-child { border-bottom: 0; }
  table.dt.stack-sm td { border: 0; padding: 4px 0; display: flex; justify-content: space-between; gap: 12px; text-align: right; }
  table.dt.stack-sm td::before { content: attr(data-label); font: 650 .72rem/1.6 var(--font); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); text-align: left; flex: none; }
  table.dt.stack-sm td.sel { position: absolute; left: auto; right: 14px; top: 14px; width: auto; padding: 0; }
  table.dt.stack-sm td.sel::before { content: none; }
  table.dt.stack-sm td.row-actions { justify-content: flex-end; padding-top: 10px; }
  table.dt.stack-sm td.row-actions::before { content: none; }
  table.dt.stack-sm td.primary { font-weight: 700; color: var(--ink); padding-right: 40px; }
  table.dt.stack-sm tfoot { display: block; }
  table.dt.stack-sm tfoot tr, table.dt.stack-sm tfoot td { display: flex; justify-content: space-between; }
  .pay-bar { flex-direction: column; align-items: stretch; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .side { transition: none; }
  .chip.live::before { animation: none; }
}
