:root {
	--ink: #101828;
	--muted: #667085;
	--soft: #f4f7fb;
	--panel: #ffffff;
	--line: #dfe6ef;
	--blue: #0c419a;
	--blue-2: #1857c4;
	--green: #3f8f29;
	--green-2: #eef8eb;
	--amber: #b7791f;
	--amber-2: #fff7e6;
	--red: #c33131;
	--red-2: #fff0f0;
	--violet: #5b4bb7;
	--mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	--font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; overflow-x: hidden; }
body {
	margin: 0;
	background: var(--soft);
	color: var(--ink);
	font-family: var(--font);
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}
body.nav-open, body.drawer-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: default; opacity: .55; }
a { color: inherit; text-decoration: none; }

.app-boot {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 24px;
}
.boot-card {
	display: flex;
	gap: 14px;
	align-items: center;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 18px 20px;
}
.boot-card span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.mark {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: var(--blue);
	color: #fff;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 700;
}

.login-wrap {
	min-height: 100vh;
	display: grid;
	grid-template-columns: minmax(300px, 430px) minmax(320px, 1fr);
}
.login-panel {
	background: var(--panel);
	border-right: 1px solid var(--line);
	padding: 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.login-panel h1 { margin: 22px 0 8px; font-size: 28px; line-height: 1.1; }
.login-panel p { color: var(--muted); margin: 0 0 26px; font-size: 14px; }
.login-art {
	padding: 44px;
	display: grid;
	align-content: center;
	gap: 16px;
	background: #eef3f9;
}
.process-card {
	max-width: 560px;
	border: 1px solid #cbd6e5;
	background: #fff;
	border-radius: 8px;
	padding: 18px;
}
.process-row {
	display: grid;
	grid-template-columns: 34px 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid var(--line);
}
.process-row:first-child { border-top: 0; }
.step-no { font-family: var(--mono); color: var(--blue); font-size: 12px; font-weight: 700; }
.process-row b { display: block; font-size: 14px; }
.process-row span { color: var(--muted); font-size: 12px; }

.btn-google {
	width: 100%;
	border-radius: 8px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	padding: 9px 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	min-height: 38px;
	margin-bottom: 14px;
}
.btn-google:hover { border-color: #b5c2d4; background: #f8fafc; }
.login-or {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-size: 12px;
	margin-bottom: 14px;
}
.login-or:before, .login-or:after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
}

.shell {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 248px minmax(0, 1fr);
}
.mob-bar, .dock, .nav-scrim { display: none; }
.sidebar {
	position: sticky;
	top: 0;
	overflow: hidden;
	height: 100vh;
	background: var(--panel);
	border-right: 1px solid var(--line);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px 4px 14px;
	border-bottom: 1px solid var(--line);
}
.brand strong { display: block; line-height: 1; }
.brand span { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.nav { display: grid; gap: 2px; flex: 1; min-height: 0; overflow-y: auto; padding-right: 2px; }
.nav-group { display: grid; gap: 2px; margin-bottom: 10px; }
.nav-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 6px 11px 4px;
}
.nav-btn {
	border: 0;
	background: transparent;
	color: #344054;
	border-radius: 8px;
	padding: 10px 11px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 650;
	text-align: left;
}
.nav-btn:hover { background: #f2f6fb; }
.nav-btn.active { background: #eaf1fb; color: var(--blue); }
.nav-ico {
	width: 18px;
	height: 18px;
	display: inline-grid;
	place-items: center;
	color: currentColor;
}
.nav-ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.sidebar-foot {
	margin-top: auto;
	border-top: 1px solid var(--line);
	padding-top: 14px;
	display: grid;
	gap: 10px;
}
.user-card { min-width: 0; }
.user-card strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.user-card span { display: block; color: var(--muted); font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.main { min-width: 0; padding: 26px; }
.topbar {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 22px;
}
.eyebrow {
	font-family: var(--mono);
	color: var(--blue);
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 6px;
}
h1 { margin: 0; font-size: 26px; line-height: 1.15; }
.subcopy { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }

.grid { display: grid; gap: 14px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.span-2 { grid-column: span 2; }
.hub-sections { margin-top: 14px; }
.hub-grid { display: grid; gap: 8px; }
.hub-tile {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--line);
	background: var(--soft);
	border-radius: 8px;
	padding: 12px 14px;
	text-align: left;
	width: 100%;
}
.hub-tile:hover { border-color: #b5c2d4; background: #fff; }
.hub-tile b { display: block; font-size: 14px; }
.hub-tile span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.hub-tile strong { font-family: var(--mono); font-size: 18px; color: var(--blue); flex: 0 0 auto; }
.card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 8px;
	min-width: 0;
}
.card-pad { padding: 16px; }
.metric { padding: 16px; }
.metric label { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.metric strong { display: block; font-size: 26px; margin-top: 8px; }
.metric small { color: var(--muted); font-size: 12px; }
.panel-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--line);
}
.panel-head h2 { margin: 0; font-size: 16px; }

.btn, .btn-soft, .btn-ghost, .btn-danger, .btn-green {
	border-radius: 8px;
	border: 1px solid transparent;
	padding: 9px 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	min-height: 38px;
	white-space: nowrap;
}
.btn { background: var(--blue); color: #fff; }
.btn:hover { background: #09377f; }
.btn-soft { background: #eaf1fb; color: var(--blue); }
.btn-ghost { background: var(--panel); border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: #b5c2d4; background: #f8fafc; }
.btn-danger { background: var(--red-2); border-color: #ffd0d0; color: var(--red); }
.btn-green { background: var(--green); color: #fff; }
.btn-sm { min-height: 30px; padding: 6px 9px; font-size: 12px; }

.input, select, textarea {
	width: 100%;
	background: #fff;
	border: 1px solid var(--line);
	color: var(--ink);
	border-radius: 8px;
	padding: 9px 10px;
	outline: none;
	min-height: 38px;
}
textarea { min-height: 88px; resize: vertical; }
.input:focus, select:focus, textarea:focus { border-color: var(--blue); }
.field { display: grid; gap: 6px; }
.field label { color: var(--muted); font-size: 12px; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.toolbar {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 14px;
}
.toolbar .input { max-width: 320px; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; }
th {
	text-align: left;
	color: var(--muted);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: 11px 12px;
	background: #f8fafc;
	border-bottom: 1px solid var(--line);
	white-space: nowrap;
}
td {
	padding: 12px;
	border-bottom: 1px solid var(--line);
	font-size: 13px;
	vertical-align: middle;
}
tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #fbfdff; }
.num { font-family: var(--mono); }
.muted { color: var(--muted); }
.empty { color: var(--muted); text-align: center; padding: 32px 12px; }

.chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: 999px;
	padding: 4px 9px;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}
.chip-blue { color: var(--blue); background: #eaf1fb; }
.chip-green { color: var(--green); background: var(--green-2); }
.chip-amber { color: var(--amber); background: var(--amber-2); }
.chip-red { color: var(--red); background: var(--red-2); }
.chip-gray { color: #475467; background: #eef2f6; }
.dot { width: 7px; height: 7px; border-radius: 999px; background: currentColor; }

.queue-card {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 8px;
	padding: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	text-align: left;
}
.queue-card:hover { border-color: #b8c6d9; }
.queue-card b { display: block; font-size: 15px; }
.queue-card span { color: var(--muted); font-size: 12px; }
.queue-card strong { font-family: var(--mono); font-size: 24px; color: var(--blue); }

.drawer { position: fixed; inset: 0; z-index: 50; display: none; }
.drawer.open { display: block; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(16, 24, 40, .42); }
.drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(920px, 100%);
	height: 100%;
	background: var(--soft);
	border-left: 1px solid #cbd6e5;
	overflow-y: auto;
	container-type: inline-size;
	container-name: drawer;
}
.drawer-head {
	position: sticky;
	top: 0;
	z-index: 2;
	background: #f4f7fb;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 18px;
	border-bottom: 1px solid var(--line);
}
.drawer-body { padding: 18px; display: grid; gap: 14px; }
.kv { display: grid; grid-template-columns: 130px 1fr; gap: 10px; padding: 7px 0; font-size: 13px; min-width: 0; }
.kv span { color: var(--muted); overflow-wrap: anywhere; }
.kv b { overflow-wrap: anywhere; }
.ship-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.preset-row { display: flex; gap: 8px; flex-wrap: wrap; }
.preset {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 8px;
	padding: 8px 10px;
	font-size: 12px;
	font-weight: 700;
}
.preset:hover { border-color: var(--blue); color: var(--blue); }

.toast-stack {
	position: fixed;
	left: 50%;
	bottom: max(20px, env(safe-area-inset-bottom));
	transform: translateX(-50%);
	z-index: 80;
	display: grid;
	gap: 8px;
	width: min(420px, calc(100vw - 24px));
	pointer-events: none;
}
.toast {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 11px 14px;
	font-size: 13px;
	font-weight: 700;
}
.toast.success { border-color: #bfe3b7; color: var(--green); }
.toast.danger { border-color: #ffd0d0; color: var(--red); }

.settings-list { display: grid; gap: 10px; }
.settings-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}
.settings-row b { display: block; font-size: 14px; }
.settings-row span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

@media (max-width: 980px) {
	.grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.grid-3, .hub-sections { grid-template-columns: 1fr; }
	.span-2 { grid-column: auto; }
	.login-wrap { grid-template-columns: 1fr; }
	.login-art { display: none; }
	.login-panel { padding: 28px 20px; min-height: 100dvh; }
}

@media (max-width: 900px) {
	.shell {
		grid-template-columns: 1fr;
		padding-top: calc(56px + env(safe-area-inset-top));
		padding-bottom: calc(64px + env(safe-area-inset-bottom));
	}
	.mob-bar {
		display: flex;
		align-items: center;
		gap: 10px;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 40;
		height: calc(56px + env(safe-area-inset-top));
		padding: env(safe-area-inset-top) 10px 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
	}
	.mob-title { min-width: 0; flex: 1; }
	.mob-title strong { display: block; font-size: 15px; line-height: 1.1; }
	.mob-title span { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }
	.mob-icon {
		width: 42px;
		height: 42px;
		border: 0;
		background: transparent;
		border-radius: 8px;
		display: grid;
		place-items: center;
		color: var(--ink);
		flex: 0 0 auto;
	}
	.mob-icon .nav-ico, .mob-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
	.nav-scrim {
		display: none;
		position: fixed;
		inset: 0;
		z-index: 45;
		background: rgba(16, 24, 40, .42);
	}
	.shell.nav-open .nav-scrim { display: block; }
	.sidebar {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 46;
		width: min(300px, 86vw);
		height: 100dvh;
		transform: translateX(-105%);
		transition: transform .2s ease;
		padding-top: calc(18px + env(safe-area-inset-top));
		padding-bottom: calc(18px + env(safe-area-inset-bottom));
		overflow-y: auto;
	}
	.shell.nav-open .sidebar { transform: translateX(0); }
	.nav { grid-template-columns: 1fr; }
	.nav-btn { min-height: 44px; }
	.nav-btn span:last-child { display: inline; }
	.dock {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 40;
		background: #fff;
		border-top: 1px solid var(--line);
		padding: 4px 4px calc(4px + env(safe-area-inset-bottom));
	}
	.dock-btn {
		border: 0;
		background: transparent;
		color: #475467;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2px;
		min-height: 52px;
		font-size: 10px;
		font-weight: 700;
		position: relative;
		padding: 4px 2px;
		text-decoration: none;
	}
	.dock-btn.active { color: var(--blue); }
	.dock-btn .nav-badge { position: absolute; top: 4px; right: 12px; margin: 0; }
	.main { padding: 16px 14px 20px; }
	.eyebrow { display: none; }
	.topbar { display: grid; gap: 12px; }
	.actions { justify-content: stretch; }
	.actions > * { flex: 1 1 auto; }
	.toolbar { align-items: stretch; }
	.toolbar .input, .toolbar select { max-width: none; flex: 1 1 160px; }
	.form-grid, .ship-grid, .grid-2 { grid-template-columns: 1fr; }
	.kv { grid-template-columns: 1fr; gap: 2px; }
	.queue-card { flex-wrap: wrap; }
	.btn, .btn-soft, .btn-ghost, .btn-danger, .btn-green { white-space: normal; text-align: center; }
	.input, select, textarea { font-size: 16px; }
	.price-in, .stock-in, .num-in, .bulk-in { width: 100% !important; max-width: 160px; }
	.prod-meta b { max-width: none; white-space: normal; }
	.seo-title, .seo-meta { min-width: 0; }
	.drawer-panel { width: 100%; border-left: 0; }
	.drawer-head { padding: 14px 14px calc(14px); padding-top: calc(14px + env(safe-area-inset-top)); }
	.drawer-head h1 { font-size: 20px; min-width: 0; overflow-wrap: anywhere; }
	.drawer-body { padding: 14px 14px calc(18px + env(safe-area-inset-bottom)); }
	.drawer-body .toolbar > * { flex: 1 1 140px; }
	.toast-stack { bottom: calc(76px + env(safe-area-inset-bottom)); }
	h1 { font-size: 22px; }
	.metric strong { font-size: 22px; }
	.table-cards thead { display: none; }
	.table-cards tbody { display: block; }
	.table-cards tr {
		display: block;
		border: 1px solid var(--line);
		border-radius: 8px;
		margin: 0 0 10px;
		padding: 10px 12px;
		background: #fff;
	}
	.table-cards td {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 12px;
		border: 0;
		padding: 7px 0;
		white-space: normal;
	}
	.table-cards td::before {
		content: attr(data-label);
		flex: 0 0 34%;
		color: var(--muted);
		font-size: 11px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: .03em;
		padding-top: 2px;
	}
	.table-cards td[data-label=""] { display: flex; justify-content: flex-end; padding-top: 10px; }
	.table-cards td[data-label=""]::before { display: none; }
	.table-cards .w-check { display: none; }
	.table-cards .compare-actions, .table-cards .row-actions { flex-wrap: wrap; }
	.table-cards .compare-actions .btn-sm, .table-cards .row-actions .btn-sm { flex: 1 1 46%; }
	.ship-compare .compare-col { min-width: 0; }
	.panel-head { flex-wrap: wrap; }
	.settings-row { flex-wrap: wrap; }
}

@media (max-width: 640px) {
	.grid-4 { grid-template-columns: 1fr; }
	.main { padding: 14px 12px 18px; }
}

.parcel-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.parcel-head .muted { font-size: 12px; font-weight: 700; }
.preset-add { border-style: dashed; color: var(--muted); }
.preset-add:hover { border-color: var(--green); color: var(--green); }
.preset[disabled] { opacity: .5; cursor: not-allowed; }

.bulk-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	background: #eaf1fb;
	border: 1px solid #cfe0f7;
	border-radius: 10px;
	padding: 10px 12px;
	margin-bottom: 12px;
}
.bulk-bar b { font-size: 13px; color: var(--blue); margin-right: 2px; }

.w-check { width: 34px; text-align: center; }
.row-actions { display: flex; gap: 6px; justify-content: flex-end; }
.star {
	border: 0;
	background: none;
	cursor: pointer;
	font-size: 17px;
	line-height: 1;
	color: var(--muted);
	padding: 2px 4px;
}
.star:hover, .star.on { color: var(--amber); }

.pack-table th, .pack-table td { padding: 6px 8px; vertical-align: middle; }
.pack-table .input { min-width: 0; }
.num-in { width: 84px; font-family: var(--mono); }
.btn-ghost.danger { color: var(--red); }
.btn-ghost.danger:hover { border-color: var(--red); color: var(--red); }

.cod-banner {
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: var(--amber-2);
	border: 1px solid var(--amber);
	border-radius: 10px;
	padding: 10px 12px;
	margin-bottom: 12px;
}
.cod-banner b { color: var(--amber); font-size: 13px; }
.cod-banner span { color: var(--ink); font-size: 12px; }
.cod-banner span b { color: var(--ink); font-family: var(--mono); }
.cod-amt { color: var(--amber); font-family: var(--mono); }
.rto-banner { background: var(--red-2); border-color: var(--red); }
.rto-banner b { color: var(--red); }

.sr-error {
	display: flex;
	flex-direction: column;
	gap: 3px;
	background: var(--red-2);
	border: 1px solid var(--red);
	border-radius: 10px;
	padding: 10px 12px;
	margin-bottom: 12px;
}
.sr-error b { color: var(--red); font-size: 13px; }
.sr-error span { color: var(--ink); font-size: 12px; }
.sr-error a { color: var(--blue); font-weight: 700; }

.grid > *, .drawer-body > * { min-width: 0; }

@container drawer (max-width: 700px) {
	.drawer-body .grid-2,
	.drawer-body .grid-3,
	.drawer-body .grid-4 { grid-template-columns: 1fr; }
	.drawer-body .span-2 { grid-column: auto; }
	.drawer-body .ship-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@container drawer (max-width: 480px) {
	.drawer-body .kv { grid-template-columns: 1fr; gap: 2px; padding: 5px 0; }
	.drawer-body .ship-grid,
	.drawer-body .form-grid { grid-template-columns: 1fr; }
	.drawer-body .toolbar { flex-wrap: wrap; }
	.drawer-body .toolbar > * { flex: 1 1 auto; }
}
.drawer-body .table-wrap { max-width: 100%; overflow-x: auto; }
.rated-for { font-weight: 600; color: var(--muted); font-size: 11px; text-transform: none; letter-spacing: 0; }

.prod-cell { display: flex; align-items: center; gap: 10px; min-width: 0; }
.prod-meta { display: grid; gap: 1px; min-width: 0; }
.prod-meta b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 220px; }
.prod-meta .muted { font-size: 12px; }
.thumb {
	flex: 0 0 auto;
	width: 40px; height: 40px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	padding: 0;
	overflow: hidden;
	cursor: pointer;
	display: grid;
	place-items: center;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb:hover { border-color: var(--blue); }
.thumb-empty { border-style: dashed; color: var(--muted); }
.thumb-empty span { font-size: 18px; line-height: 1; }
.thumb-empty:hover { color: var(--blue); }

.nav-badge {
	margin-left: auto;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 9px;
	background: var(--red);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 18px;
	text-align: center;
}

.seo-title { min-width: 220px; }
.seo-meta { min-width: 260px; }

.carrier-card .metric { min-height: 0; }
.carrier-card .table-wrap { max-height: 420px; overflow: auto; }

.ship-compare .compare-col { min-width: 140px; }
.ship-compare .compare-actions { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
