:root {
    color-scheme: light;
    --ink: #0f1923;
    --ink2: #2d3a45;
    --muted: #64748b;
    --line: #e2e8f0;
    --line2: #cbd5e1;
    --bg: #f8fafc;
    --panel: #ffffff;
    --accent: #0d9488;
    --accent-dark: #0f766e;
    --accent-light: #ccfbf1;
    --accent-xlight: #f0fdfa;
    --hero-bg: #0b1d2a;
    --hero-bg2: #0d2535;
    --r: 10px;

    /* ─── tb-v5 design tokens ─── */
    --tb-bg-hero: #061321;
    --tb-bg-hero-2: #0d2236;
    --tb-bg-hero-grad: linear-gradient(180deg, #061321 0%, #0a1c2e 100%);
    --tb-bg-app: #f6f7f9;
    --tb-bg-subtle: #eef0f3;
    --tb-surface: #ffffff;
    --tb-surface-2: #fbfbfc;
    --tb-border: #e4e7eb;
    --tb-border-strong: #cdd2d8;
    --tb-border-dark: rgba(255,255,255,0.08);

    --tb-text: #0b1626;
    --tb-text-2: #5a6776;
    --tb-text-3: #8a94a3;
    --tb-text-on-dark: #ffffff;
    --tb-text-on-dark-2: rgba(255,255,255,0.66);
    --tb-text-on-dark-3: rgba(255,255,255,0.42);

    --tb-accent: #14b8a6;
    --tb-accent-bright: #2dd4bf;
    --tb-accent-dark: #0f9888;
    --tb-accent-soft: rgba(20,184,166,0.12);
    --tb-accent-soft-2: rgba(20,184,166,0.22);

    --tb-good: #16a34a;
    --tb-good-soft: rgba(22,163,74,0.12);
    --tb-warn: #f59e0b;
    --tb-warn-soft: rgba(245,158,11,0.14);
    --tb-bad: #dc2626;
    --tb-bad-soft: rgba(220,38,38,0.12);

    --tb-t-aa: #2dd4bf;
    --tb-t-aaa: #60a5fa;
    --tb-t-nimh: #a78bfa;
    --tb-t-9v: #f59e0b;
    --tb-t-cr: #64748b;
    --tb-t-lipo: #34d399;

    --tb-font-display: 'Manrope', system-ui, -apple-system, sans-serif;
    --tb-font-body: 'Manrope', system-ui, -apple-system, sans-serif;
    --tb-font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    --tb-r-sm: 8px;
    --tb-r: 12px;
    --tb-r-lg: 16px;
    --tb-r-xl: 24px;
    --tb-r-2xl: 32px;

    --tb-shadow-sm: 0 1px 2px rgba(11,22,38,0.05), 0 1px 1px rgba(11,22,38,0.04);
    --tb-shadow: 0 2px 6px rgba(11,22,38,0.06), 0 8px 24px rgba(11,22,38,0.06);
    --tb-shadow-lg: 0 6px 18px rgba(11,22,38,0.08), 0 20px 50px rgba(11,22,38,0.10);
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--sans, system-ui, sans-serif); color: var(--ink); background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── A11Y ── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
.skip-to-content { position: absolute; left: -9999px; top: 8px; z-index: 9999; padding: 8px 16px; background: var(--accent); color: #fff; font-weight: 700; font-size: 14px; border-radius: 6px; text-decoration: none; }
.skip-to-content:focus { left: 8px; }

/* ── NAV ── */
.topbar { background: var(--panel); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(8px); }
.wrap { width: min(1400px, calc(100% - 40px)); margin: 0 auto; }
.nav { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.admin-search-wrap { position: relative; flex-shrink: 0; margin-left: auto; margin-right: 12px; }
.admin-search-input { height: 32px; padding: 0 12px 0 32px; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; background: rgba(0,0,0,.06); color: var(--ink); font-size: 13px; font-family: inherit; width: 200px; outline: none; transition: background .15s, border-color .15s, width .2s; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: 10px center; }
.admin-search-input::placeholder { color: var(--muted); }
.admin-search-input:focus { background-color: rgba(0,0,0,.09); border-color: var(--accent); width: 260px; }
.admin-search-dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; min-width: 320px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.15); z-index: 9000; overflow: hidden; }
.admin-search-dropdown.open { display: block; }
.admin-search-result { display: flex; align-items: center; gap: 10px; padding: 10px 14px; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line); transition: background .1s; }
.admin-search-result:last-child { border-bottom: 0; }
.admin-search-result:hover, .admin-search-result:focus { background: #f1f5f9; outline: none; }
.admin-search-result-name { font-size: 13px; font-weight: 600; }
.admin-search-result-meta { font-size: 11px; color: var(--muted); margin-top: 1px; }
.admin-search-empty { padding: 12px 14px; font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .admin-search-wrap { display: none; } }
.brand { font-weight: 800; font-size: 16px; color: var(--ink); letter-spacing: -.3px; display: flex; align-items: center; gap: 8px; }
.brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.navlinks { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; font-size: 14px; font-weight: 500; }
.navlinks a { color: var(--muted); padding: 6px 10px; border-radius: 6px; transition: color .15s, background .15s; }
.navlinks a:hover { color: var(--ink); background: var(--bg); text-decoration: none; }
.navlinks a.nav-admin { color: var(--muted); font-size: 13px; }
.navlinks a.nav-support { background: var(--accent); color: #fff; padding: 6px 14px; font-size: 13px; font-weight: 600; letter-spacing: .2px; }
.navlinks a.nav-support:hover { background: var(--accent-dark); color: #fff; }
@media (max-width: 900px) {
    .navlinks a.nav-support { margin: 8px 20px; border-radius: 8px; text-align: center; }
}
.nav-toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); background: var(--panel); border-radius: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle:hover { background: var(--bg); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ── DROPDOWN ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-btn { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); padding: 6px 10px; border-radius: 6px; font-size: 14px; font-weight: 500; background: none; border: none; cursor: pointer; font-family: inherit; transition: color .15s, background .15s; line-height: 1.4; }
.nav-dropdown-btn:hover { color: var(--ink); background: var(--bg); }
.nav-dropdown-btn svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-dropdown.open .nav-dropdown-btn { color: var(--ink); background: var(--bg); }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 6px); left: 0; min-width: 180px; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.10); padding: 6px; z-index: 200; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; color: var(--muted); padding: 8px 12px; border-radius: 7px; font-size: 14px; font-weight: 500; transition: color .15s, background .15s; white-space: nowrap; }
.nav-dropdown-menu a:hover { color: var(--ink); background: var(--bg); text-decoration: none; }
.admin-navlinks { gap: 2px; }
.admin-navlinks a,
.admin-navlinks button {
    display: inline-flex; align-items: center; min-height: 34px; padding: 6px 9px;
    border: 0; border-radius: 7px; background: transparent; color: var(--muted);
    font: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
}
.admin-navlinks a:hover,
.admin-navlinks button:hover { background: var(--bg); color: var(--ink); text-decoration: none; }
.admin-navlinks a.is-active { background: var(--accent-xlight); color: var(--accent-dark); }
.admin-navlinks form { margin: 0; }

/* ── BREADCRUMBS ── */
.breadcrumbs { background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 0; font-size: 13px; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.breadcrumbs li + li::before { content: '›'; color: var(--muted); }
.breadcrumbs li:last-child { color: var(--ink); font-weight: 600; }
.breadcrumbs a { color: var(--accent-dark); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span[aria-current] { color: var(--ink); font-weight: 600; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, #0b1d2a 0%, #0d2535 60%, #0f3347 100%); color: #fff; padding: 44px 0 36px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(13,148,136,.18) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { position: relative; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #5eead4; background: rgba(13,148,136,.12); border: 1px solid rgba(13,148,136,.25); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; letter-spacing: -.5px; line-height: 1.15; margin: 0 0 10px; color: #fff; }
.page-hero .lead { font-size: 15px; color: rgba(255,255,255,.65); margin: 0; max-width: 520px; line-height: 1.6; }

/* ── GENERIC ── */
.hero { padding: 48px 0 28px; }
.hero h1 { max-width: 780px; margin: 0 0 12px; font-size: clamp(32px, 5vw, 56px); line-height: 1.02; }
.lead { max-width: 780px; color: var(--muted); font-size: 18px; margin: 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.section { padding: 32px 0; }
.section-title { margin: 0 0 24px; font-size: 22px; font-weight: 700; letter-spacing: -.3px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.card h2, .card h3 { margin-top: 0; }
.muted { color: var(--muted); }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; min-height: 22px; margin-left: 8px; padding: 2px 8px; border: 1px solid var(--line); border-radius: 999px; background: #f8fafc; color: #334155; font-size: 11px; font-weight: 700; white-space: nowrap; letter-spacing: .02em; }
.badge-alkaline { border-color: #86efac; background: #f0fdf4; color: #166534; }
.badge-zinc-carbon { border-color: #fca5a5; background: #fff1f2; color: #991b1b; }
.badge-li-ion { border-color: #93c5fd; background: #eff6ff; color: #1e40af; }

/* ── BUTTONS ── */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 40px; padding: 0 18px; border-radius: 8px; background: var(--accent); color: #fff; font-weight: 600; font-size: 14px; transition: background .15s, box-shadow .15s, transform .1s; }
.button:hover { background: var(--accent-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,148,136,.25); }
.button:active { transform: none; }
.button.secondary { border: 1px solid var(--line2); background: var(--panel); color: var(--ink2); }
.button.secondary:hover { background: var(--bg); color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.button.ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.button.ghost:hover { background: rgba(255,255,255,.2); color: #fff; box-shadow: none; }

/* ── TOOLBAR ── */
.toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.toolbar-label { color: var(--muted); font-size: 14px; font-weight: 600; }
.toolbar-count { margin-left: auto; color: var(--muted); font-size: 14px; font-weight: 600; }
.search-form { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.search-form input[type="search"] { width: 220px; min-height: 40px; }
.segmented { display: inline-flex; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.segmented a { min-width: 72px; padding: 9px 13px; border-right: 1px solid var(--line); color: var(--ink); font-weight: 600; text-align: center; font-size: 14px; }
.segmented a:last-child { border-right: 0; }
.segmented a:hover { background: var(--bg); text-decoration: none; }
.segmented a.active { background: var(--accent); color: #fff; }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); }
table { width: 100%; border-collapse: collapse; min-width: 1100px; }
th, td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f1f5f9; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }

/* ── ADMIN ── */
tbody tr.admin-row:hover { background: var(--accent-xlight); }
.status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; line-height: 1.4; white-space: nowrap; }
.status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-badge.is-on  { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.status-badge.is-off { background: #f1f5f9; color: #64748b; border: 1px solid var(--line2); }
.status-badge.is-warn{ background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
th.sortable { cursor: pointer; user-select: none; position: relative; padding-right: 24px; }
th.sortable:hover { background: #e2e8f0; color: var(--ink2); }
th.sortable::after { content: '↕'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); opacity: .35; font-size: 11px; }
th.sortable.sort-asc::after  { content: '▲'; opacity: 1; color: var(--accent-dark); }
th.sortable.sort-desc::after { content: '▼'; opacity: 1; color: var(--accent-dark); }
.admin-search-bar { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.admin-search-bar input[type="search"] { flex: 1; min-width: 220px; padding: 9px 12px; border: 1px solid var(--line2); border-radius: 8px; font-size: 14px; }
.admin-search-bar input[type="search"]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(13,148,136,.15); }
.admin-search-bar .visible-count { font-size: 12px; color: var(--muted); white-space: nowrap; }
.admin-toast-wrap { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.admin-toast { pointer-events: auto; min-width: 240px; max-width: 360px; padding: 12px 16px; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.15); font-size: 14px; font-weight: 500; opacity: 0; transform: translateY(-8px); transition: opacity .2s, transform .2s; background: #fff; }
.admin-toast.show { opacity: 1; transform: translateY(0); }
.admin-toast.success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.admin-toast.error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.admin-toast.info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.field-error { display: block; margin-top: 4px; font-size: 12px; color: #b91c1c; font-weight: 500; }
.field input.has-error, .field select.has-error, .field textarea.has-error { border-color: #b91c1c !important; box-shadow: 0 0 0 3px rgba(185,28,28,.10); }
.quick-publish-toggle { cursor: pointer; }
.quick-publish-toggle:disabled { opacity: .5; cursor: wait; }

/* ── RANKING ── */
.ranking-toolbar-sticky { position: sticky; top: 60px; z-index: 50; background: var(--bg); padding: 10px 0; margin: -10px 0 4px; }
.rank-medal { font-size: 18px; line-height: 1; display: inline-block; }
.rank-position-num { font-weight: 700; color: var(--muted); font-size: 14px; }
.metric-bar-wrap { margin-top: 4px; height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; }
.metric-bar-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width .2s; }
.offer-cta-stack { display: flex; flex-direction: column; gap: 4px; align-items: stretch; }
.offer-cta-stack .button { background: #ea580c; min-height: 36px; }
.offer-cta-stack .button:hover { background: #c2410c; box-shadow: 0 4px 12px rgba(234,88,12,.30); }
.offer-cta-price { font-size: 12px; font-weight: 700; color: var(--ink2); text-align: center; }
.offer-cta-price.muted { color: var(--muted); font-weight: 500; }

.ranking-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 12px 0 4px; padding: 10px 14px; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; }
.ranking-filters > label { font-size: 13px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.ranking-filters select, .ranking-filters input[type="number"] { width: auto; min-width: 110px; min-height: 36px; padding: 6px 10px; font-size: 13px; }
.ranking-filters .filter-clear { font-size: 12px; color: var(--accent-dark); cursor: pointer; background: none; border: 0; padding: 4px 8px; font-weight: 600; }
.ranking-filters .filter-clear:hover { text-decoration: underline; }

.ranking-cards { display: none; }
.ranking-card { display: grid; grid-template-columns: 112px 1fr auto; gap: 12px; align-items: start; padding: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; }
.ranking-card.rank-top-1 { border-color: #fbbf24; }
.ranking-card.rank-top-2 { border-color: #cbd5e1; }
.ranking-card.rank-top-3 { border-color: #fde68a; }
.ranking-card-thumb { width: 112px; height: 112px; object-fit: cover; border-radius: 8px; overflow: hidden; }
.ranking-card-thumb-empty { width: 112px; height: 112px; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; }
.ranking-card-rank { position: absolute; }
.ranking-card-body { min-width: 0; }
.ranking-card-pos { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 2px; }
.ranking-card-pos .rank-medal { margin-right: 4px; }
.ranking-card-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; word-break: break-word; }
.ranking-card-name a { color: var(--ink); }
.ranking-card-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.ranking-card-stats { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 13px; }
.ranking-card-stats .stat-key { color: var(--muted); margin-right: 4px; }
.ranking-card-side { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
.ranking-card-side .button { background: #ea580c; min-height: 36px; padding: 0 14px; font-size: 13px; justify-content: center; }
.ranking-card-side .button:hover { background: #c2410c; box-shadow: 0 4px 12px rgba(234,88,12,.30); }
.ranking-card-side .offer-cta-wrap { min-height: auto; }
.ranking-card-side .compare-add-btn { margin-top: 0; }
.sheet-table { min-width: 1180px; }
.sheet-table input[type="number"] { width: 96px; }
.sheet-table input[type="text"], .sheet-table input:not([type]) { min-width: 130px; }
.offer-sheet-table { min-width: 1500px; }
.offer-sheet-table .url-input { width: 360px; }
.new-offer-row td { background: #fbfcfd; }
.empty-offer-row td { background: #fffbeb; }
.checkbox-label { display: inline-flex; align-items: center; gap: 6px; font-weight: 400; white-space: nowrap; }
.checkbox-label input { width: auto; }
th.sorted-column { background: #e0f2f1; color: var(--accent-dark); }
td.sorted-column { background: #f0fdfa; box-shadow: inset 3px 0 0 var(--accent); }
tr:last-child td { border-bottom: 0; }
.score { font-weight: 800; }
.notice { margin-top: 20px; padding: 14px 18px; border-left: 4px solid var(--accent); background: var(--accent-xlight); color: #134e4a; border-radius: 0 8px 8px 0; }

/* ── FORMS ── */
.form { display: grid; gap: 14px; max-width: 760px; }
.field { display: grid; gap: 6px; }
label { font-weight: 600; font-size: 14px; }
input, select, textarea { width: 100%; border: 1px solid var(--line2); border-radius: 7px; padding: 10px 12px; font: inherit; background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(13,148,136,.15); }
textarea { min-height: 120px; resize: vertical; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.status { margin-bottom: 16px; padding: 12px 16px; border-radius: 8px; background: var(--accent-xlight); color: #134e4a; border: 1px solid #99f6e4; }
.error-list { margin-bottom: 16px; padding: 12px 16px; border-radius: 8px; background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }

/* ── FEEDBACK ── */
.feedback-fab { position: fixed; right: 18px; bottom: 18px; z-index: 9000; min-height: 44px; padding: 0 16px; border: 0; border-radius: 999px; background: #ef6f6c; color: #fff; font: inherit; font-weight: 800; box-shadow: 0 10px 24px rgba(239,111,108,.30); cursor: pointer; }
.feedback-fab:hover { background: #dc5f5c; }
.feedback-modal { display: none; position: fixed; inset: 0; z-index: 9100; padding: 18px; background: rgba(15,25,35,.48); align-items: flex-end; justify-content: flex-end; }
.feedback-modal.open { display: flex; }
.feedback-box { width: min(440px, 100%); background: var(--panel); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.22); padding: 18px; }
.feedback-head { display: flex; align-items: start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.feedback-head h2 { margin: 0; font-size: 20px; }
.feedback-head p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.feedback-close { border: 0; background: var(--bg); color: var(--ink); width: 34px; height: 34px; border-radius: 999px; cursor: pointer; font-size: 20px; line-height: 1; }
.feedback-form { display: grid; gap: 10px; }
.feedback-form textarea { min-height: 150px; }
.feedback-status { display: none; padding: 10px 12px; border-radius: 8px; font-size: 13px; }
.feedback-status.show { display: block; }
.feedback-status.success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.feedback-status.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.feedback-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── FOOTER ── */
.footer { margin-top: 60px; padding: 40px 0 32px; border-top: 1px solid var(--line); background: var(--panel); color: var(--muted); font-size: 13px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink2); margin: 0 0 12px; }
.footer-accordion { position: relative; }
.footer-accordion summary { display: block; padding: 2px 0; list-style: none; cursor: pointer; color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer-accordion summary::-webkit-details-marker { display: none; }
.footer-accordion-trigger { display: inline; font-size: inherit; font-weight: inherit; color: inherit; }
.footer-accordion-arrow { display: inline-block; font-size: 10px; transition: transform .2s; margin-left: 3px; }
.footer-accordion[open] .footer-accordion-arrow { transform: rotate(180deg); }
.footer-accordion-body { position: absolute; top: calc(100% + 6px); left: 0; width: 280px; padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.10); z-index: 10; line-height: 1.6; color: var(--muted); font-size: 13px; }
.footer-accordion-body p { margin: 0; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; line-height: 1.4; }
.footer-nav a:hover { color: var(--accent); text-decoration: none; }
.footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 140px; height: 40px; padding: 0; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.footer-social a:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.15); text-decoration: none; }
.footer-social svg { width: 18px; height: 18px; flex: 0 0 auto; }
.footer-social a[href*="facebook"] { background: #1877f2; color: #fff; }
.footer-social a[href*="facebook"]:hover { background: #166fe5; }
.footer-social a[href*="youtube"] { background: #ff0000; color: #fff; }
.footer-social a[href*="youtube"]:hover { background: #e60000; }

/* ── REKLAMY ── */
.ad-slot { width: 100%; margin: 20px 0; }
.ad-slot--card { margin: 0; }
.ad-card { display: grid; align-items: center; gap: 14px; min-height: 96px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); color: var(--ink); text-decoration: none; box-shadow: 0 1px 2px rgba(15, 25, 35, .04); }
.ad-card:hover { border-color: #99f6e4; text-decoration: none; box-shadow: 0 8px 22px rgba(15, 25, 35, .08); }
.ad-card--wide { grid-template-columns: auto 76px minmax(0, 1fr) auto; }
.ad-card--compact { grid-template-columns: auto minmax(0, 1fr) auto; }
.ad-card--card { grid-template-columns: 1fr; align-items: start; min-height: 220px; height: 100%; }
.ad-label { align-self: start; display: inline-flex; min-height: 22px; padding: 3px 8px; border: 1px solid #e2e8f0; border-radius: 999px; background: #f8fafc; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.ad-label--image { position: absolute; top: 8px; left: 8px; z-index: 2; background: rgba(248,250,252,.94); backdrop-filter: blur(6px); }
.ad-media { display: flex; align-items: center; justify-content: center; width: 76px; height: 64px; border-radius: 8px; background: #ecfeff; }
.ad-media img, .ad-media svg { width: 76px; height: 56px; }
.ad-copy { min-width: 0; }
.ad-copy strong { display: block; color: var(--ink); font-size: 16px; line-height: 1.25; }
.ad-copy small { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.ad-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 0 13px; border-radius: 8px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 800; white-space: nowrap; }
@media (max-width: 720px) {
    .ad-card, .ad-card--wide, .ad-card--compact { grid-template-columns: 1fr; align-items: start; }
    .ad-media { display: none; }
    .ad-cta { width: 100%; }
}

/* ── LIGHTBOX ── */
#lb-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.82); backdrop-filter: blur(4px); align-items: center; justify-content: center; }
#lb-overlay.open { display: flex; }
#lb-box { position: relative; max-width: min(1040px, 96vw); width: 100%; background: #111; border-radius: 12px; overflow: hidden; }
#lb-img-wrap { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; }
#lb-img { display: block; max-width: 100%; max-height: 82vh; object-fit: contain; }
#lb-close { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,.55); border: none; color: #fff; font-size: 22px; line-height: 1; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; z-index: 2; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); border: none; color: #fff; font-size: 32px; line-height: 1; padding: 8px 14px; cursor: pointer; z-index: 2; border-radius: 6px; }
#lb-prev { left: 8px; }
#lb-next { right: 8px; }
#lb-footer { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; background: rgba(0,0,0,.7); color: #fff; font-size: 13px; }
#lb-dots { display: flex; gap: 6px; }
#lb-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: background .15s; }
#lb-dots span.active { background: #fff; }

/* ── TOP 5 ── */
.top5-block { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 20px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.top5-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: linear-gradient(135deg, #0b4f4b 0%, #0d9488 60%, #14b8a6 100%); }
.top5-header-text { flex: 1; min-width: 0; }
.top5-title { margin: 0 0 4px; font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -.1px; }
.top5-desc { margin: 0; font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.45; }
.top5-scroll-link { flex-shrink: 0; font-size: 13px; color: rgba(255,255,255,.85); text-decoration: underline; white-space: nowrap; }
.top5-scroll-link:hover { color: #fff; }
.top5-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--line); }
.top5-card { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 14px 16px; border-right: 1px solid var(--line); text-align: center; background: #fff; transition: background .15s; }
.top5-card:last-child { border-right: none; }
.top5-card:hover { background: var(--accent-xlight); }
.top5-card--first { background: linear-gradient(160deg, #f0fdfa 0%, #fff 80%); }
.top5-card--first:hover { background: linear-gradient(160deg, #ccfbf1 0%, var(--accent-xlight) 80%); }
.top5-card-medal { font-size: 22px; line-height: 1; }
.top5-card-img { width: 112px; height: 112px; object-fit: cover; border-radius: 8px; overflow: hidden; }
.top5-card-img-empty { width: 112px; height: 112px; border-radius: 8px; background: var(--bg); border: 1px solid var(--line); }
.top5-card-body { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.top5-card-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--accent-dark); }
.top5-card-name { font-size: 13px; font-weight: 700; line-height: 1.35; }
.top5-card-name a { color: var(--ink); }
.top5-card-name a:hover { color: var(--accent-dark); }
.top5-card-stats { display: flex; flex-direction: column; gap: 1px; font-size: 12px; color: var(--muted); margin-top: 4px; }
.top5-card-stats span:first-child { font-size: 14px; font-weight: 700; color: var(--ink); }
.top5-card-cta { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-top: auto; padding-top: 10px; width: 100%; }
.top5-card-cta .button { font-size: 12px; min-height: 32px; padding: 0 12px; width: 100%; text-align: center; justify-content: center; }
.top5-card-price { font-size: 11px; color: var(--muted); }
.top5-channel-bar { display: flex; gap: 8px; padding: 12px 22px; border-bottom: 1px solid var(--line); background: var(--bg); }
.top5-channel-btn { padding: 7px 14px; border-radius: 8px; border: 1px solid var(--line2); background: var(--panel); color: var(--ink2); font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.top5-channel-btn:hover { border-color: var(--accent); color: var(--accent-dark); }
.top5-channel-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── STRONA PRODUKTU ── */
.product-hero { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.product-hero-text { flex: 1; min-width: 0; }
.product-hero-brand { margin: 0 0 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--accent); }
.product-hero-image { flex-shrink: 0; width: 260px; }
.product-hero-image > img { width: 100%; max-height: 260px; object-fit: contain; border-radius: 12px; border: 1px solid var(--line); background: #fff; padding: 12px; }

/* ── HOME HERO ── */
.home-hero { padding: 80px 0 72px; background: var(--hero-bg); position: relative; overflow: hidden; }
.home-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(13,148,136,.18) 0%, transparent 70%); pointer-events: none; }
.home-hero-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.home-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #5eead4; }
.home-hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: #5eead4; border-radius: 1px; }
.home-hero h1 { max-width: 680px; margin: 0 0 18px; font-size: clamp(30px, 4.5vw, 54px); line-height: 1.05; font-weight: 900; letter-spacing: -.5px; color: #f8fafc; }
.home-hero h1 em { font-style: normal; color: #5eead4; }
.home-hero .lead { max-width: 560px; margin: 0 0 32px; color: #94a3b8; font-size: 17px; line-height: 1.65; }
.home-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.home-hero-data { width: min(430px, 42vw); padding: 24px; border: 1px solid rgba(148,163,184,.22); border-radius: 18px; background: linear-gradient(160deg, rgba(15,35,50,.88), rgba(13,148,136,.16)); box-shadow: 0 24px 70px rgba(0,0,0,.24); color: #f8fafc; }
.home-hero-data-main { display: grid; gap: 3px; padding-bottom: 18px; margin-bottom: 16px; border-bottom: 1px solid rgba(148,163,184,.18); }
.home-hero-data-kicker { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #5eead4; }
.home-hero-data-main strong { font-size: 56px; line-height: 1; font-weight: 900; color: #fff; letter-spacing: 0; }
.home-hero-data-main span:last-child { color: #94a3b8; font-size: 13px; font-weight: 600; }
.home-hero-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 18px; }
.home-hero-stat-grid div { min-width: 0; padding: 12px 10px; border: 1px solid rgba(148,163,184,.16); border-radius: 10px; background: rgba(255,255,255,.05); }
.home-hero-stat-grid strong { display: block; margin-bottom: 2px; font-size: 24px; line-height: 1.1; color: #5eead4; }
.home-hero-stat-grid span { display: block; color: #94a3b8; font-size: 11px; line-height: 1.3; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.home-hero-bars { display: grid; gap: 10px; }
.home-hero-bar { display: grid; gap: 6px; color: #f8fafc; }
.home-hero-bar:hover { text-decoration: none; color: #fff; }
.home-hero-bar-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 12px; font-weight: 700; }
.home-hero-bar-top strong { color: #99f6e4; font-size: 12px; white-space: nowrap; }
.home-hero-bar-track { height: 8px; overflow: hidden; border-radius: 999px; background: rgba(148,163,184,.18); }
.home-hero-bar-track span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #5eead4, #14b8a6); }

/* ── HOME SEARCH ── */
.home-search-bar { background: linear-gradient(135deg, #0b4f4b 0%, #0d9488 60%, #14b8a6 100%); padding: 40px 0; text-align: center; }
.home-search-bar h2 { margin: 0 0 6px; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.2px; }
.home-search-bar p { margin: 0 0 20px; font-size: 14px; color: rgba(255,255,255,.75); }
.home-search-form { display: flex; align-items: center; gap: 0; max-width: 640px; margin: 0 auto; background: #fff; border-radius: 10px; box-shadow: 0 4px 24px rgba(0,0,0,.18); overflow: hidden; text-align: left; }
.home-search-form svg { flex-shrink: 0; color: var(--muted); margin-left: 16px; }
.home-search-form input[type="search"] { flex: 1; min-height: 52px; font-size: 16px; border: none; border-radius: 0; box-shadow: none; padding-left: 10px; }
.home-search-form input[type="search"]:focus { border: none; box-shadow: none; }
.home-search-form .button { flex-shrink: 0; min-height: 52px; border-radius: 0; padding: 0 24px; font-size: 15px; background: #0b1d2a; color: #fff; }
.home-search-form .button:hover { background: #0f2d40; box-shadow: none; transform: none; }

/* ── HOME RANKINGI ── */
.home-ranking-section { padding: 56px 0; }
.home-ranking-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.home-ranking-divider { grid-column: 1 / -1; margin: 12px 0 4px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: #f8fafc; display: grid; gap: 4px; }
.home-ranking-divider span { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink2); }
.home-ranking-divider p { margin: 0; max-width: 860px; color: var(--muted); font-size: 14px; }
.home-ranking-card { grid-column: span 2; display: flex; flex-direction: column; min-height: 292px; padding: 28px 24px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; color: var(--ink); transition: border-color .2s, box-shadow .2s, transform .15s; }
.home-ranking-card--featured { grid-column: span 3; min-height: 318px; border-color: #99f6e4; background: linear-gradient(180deg, #f0fdfa 0%, #fff 58%); }
.home-ranking-card--rechargeable { border-color: #dbeafe; background: linear-gradient(180deg, #eff6ff 0%, #fff 54%); }
.home-ranking-card:hover { border-color: var(--accent); box-shadow: 0 10px 28px rgba(13,148,136,.12); transform: translateY(-3px); text-decoration: none; }
.home-ranking-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.home-ranking-badge { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 14px; background: #ecfeff; border: 1px solid #99f6e4; color: var(--accent-dark); }
.home-ranking-card--featured .home-ranking-badge { width: 66px; height: 66px; background: #ccfbf1; }
.home-ranking-card--rechargeable .home-ranking-badge { background: #dbeafe; border-color: #bfdbfe; color: #1d4ed8; }
.home-ranking-badge svg { width: 34px; height: 34px; }
.home-ranking-count { font-size: 12px; font-weight: 800; color: var(--ink2); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; box-shadow: 0 1px 2px rgba(15,25,35,.04); }
.home-ranking-card h3 { margin: 0 0 9px; font-size: 21px; font-weight: 800; letter-spacing: 0; }
.home-ranking-card--featured h3 { font-size: 26px; }
.home-ranking-card p { margin: 0 0 18px; font-size: 14px; color: var(--muted); line-height: 1.55; flex: 1; }
.home-ranking-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0 0 18px; }
.home-ranking-metrics span { min-height: 44px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: #f8fafc; color: var(--muted); font-size: 12px; line-height: 1.2; }
.home-ranking-metrics strong { display: block; color: var(--ink); font-size: 16px; line-height: 1; margin-bottom: 4px; }
.home-ranking-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 800; color: var(--accent-dark); }
.home-ranking-link svg { width: 14px; height: 14px; transition: transform .15s; }
.home-ranking-card:hover .home-ranking-link svg { transform: translateX(3px); }

/* ── MEDIA ── */
@media (max-width: 720px) {
    .ad-card, .ad-card--wide, .ad-card--compact { grid-template-columns: 1fr; align-items: start; }
    .ad-media { display: none; }
    .ad-cta { width: 100%; }
}
@media (max-width: 900px) {
    .home-ranking-grid { grid-template-columns: repeat(2, 1fr); }
    .home-hero-inner { grid-template-columns: 1fr; }
    .home-hero-data { width: 100%; }
}
@media (max-width: 600px) {
    .home-ranking-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
    .top5-cards { grid-template-columns: repeat(3, 1fr); }
    .top5-card:nth-child(3) { border-right: none; }
    .top5-card:nth-child(4) { border-top: 1px solid var(--line); }
    .top5-card:nth-child(5) { border-top: 1px solid var(--line); border-right: none; }
}
@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .navlinks { display: none; position: absolute; top: 60px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 8px 0; background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(0,0,0,.08); max-height: calc(100vh - 60px); overflow-y: auto; }
    .navlinks.open { display: flex; }
    .navlinks a { padding: 12px 20px; border-radius: 0; font-size: 15px; }
    .navlinks a:hover { background: var(--accent-xlight); }
    .topbar { position: relative; }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-btn { width: 100%; justify-content: space-between; padding: 12px 20px; border-radius: 0; font-size: 15px; }
    .nav-dropdown-btn:hover { background: var(--accent-xlight); }
    .nav-dropdown-menu { display: none; position: static; box-shadow: none; border: none; border-radius: 0; padding: 0; background: var(--bg); }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a { padding: 10px 20px 10px 36px; border-radius: 0; font-size: 14px; }
    .nav-dropdown-menu a:hover { background: var(--accent-xlight); }
    .home-ranking-grid { grid-template-columns: repeat(2, 1fr); }
    .home-ranking-card,
    .home-ranking-card--featured { grid-column: span 1; }
}
@media (max-width: 760px) {
    .grid { grid-template-columns: 1fr; }
    .toolbar-count { margin-left: 0; }
    .top5-cards { grid-template-columns: 1fr 1fr; }
    .top5-card { border-right: 1px solid var(--line) !important; border-top: 1px solid var(--line); }
    .top5-card:nth-child(odd) { border-right: 1px solid var(--line) !important; }
    .top5-card:nth-child(even) { border-right: none !important; }
    .home-hero { padding: 56px 0 48px; }
    .home-hero-cta { flex-direction: column; align-items: flex-start; }
    .footer-cols { grid-template-columns: 1fr; gap: 28px; }
    .footer-social { flex-direction: row; flex-wrap: wrap; }
    .ranking-table-wrap { display: none; }
    .ranking-cards { display: block; }
    .ranking-toolbar-sticky { top: 0; }
}
@media (max-width: 640px) {
    .product-hero { flex-direction: column-reverse; }
    .product-hero-image { width: 100%; max-width: 260px; }
    .feedback-modal { align-items: flex-end; padding: 10px; }
    .feedback-fab { right: 12px; bottom: 12px; }
    .home-ranking-grid { grid-template-columns: 1fr; }
    .home-ranking-card,
    .home-ranking-card--featured { grid-column: 1; min-height: auto; }
    .home-ranking-metrics { grid-template-columns: 1fr; }
}

/* ── Najczęściej porównywane (home-v5) ── */
.tbv5-top-compare { padding: 48px 0; }
.tbv5-tc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: flex-start; }
.tbv5-tc-list { display: flex; flex-direction: column; gap: 8px; }
.tbv5-tc-row {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 12px; border-radius: 8px;
    background: var(--surface); border: 1px solid var(--line);
    text-decoration: none; color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
.tbv5-tc-row:hover { border-color: var(--accent); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.tbv5-tc-num {
    flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
    background: var(--accent); color: #fff;
    font-size: .7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.tbv5-tc-vs { display: flex; align-items: center; gap: 6px; flex: 1; flex-wrap: wrap; min-width: 0; }
.tbv5-tc-badge {
    font-size: .65rem; font-weight: 700; color: var(--muted);
    text-transform: uppercase; letter-spacing: .04em; flex-shrink: 0;
}
.tbv5-tc-name { display: flex; align-items: center; gap: 5px; font-size: .8rem; min-width: 0; }
.tbv5-tc-name > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tbv5-tc-thumb { width: 24px; height: 24px; object-fit: contain; border-radius: 3px; flex-shrink: 0; }
.tbv5-tc-brand { font-weight: 600; }
.tbv5-tc-arrow { flex-shrink: 0; color: var(--muted); margin-left: auto; }
@media (max-width: 900px) {
    .tbv5-tc-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
    .tbv5-tc-name { font-size: .75rem; }
}
