.wtd-widget {
	--wtd-surface: #ffffff;
	--wtd-surface-soft: #f4f7f8;
	--wtd-text: #121619;
	--wtd-muted: #64707a;
	--wtd-line: #dce3e6;
	--wtd-accent: #c91526;
	--wtd-accent-soft: #fff1f2;
	--wtd-ok: #126b47;
	--wtd-shadow: 0 18px 45px rgba(18, 22, 25, 0.08);
	color: var(--wtd-text);
	font-family: inherit;
}

.wtd-widget * {
	box-sizing: border-box;
}

.wtd-shell {
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 100%);
	border: 1px solid var(--wtd-line);
	border-radius: 8px;
	box-shadow: var(--wtd-shadow);
	padding: clamp(18px, 3vw, 28px);
}

.wtd-header {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 18px;
}

.wtd-kicker {
	color: var(--wtd-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.wtd-title {
	color: var(--wtd-text);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 750;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0;
}

.wtd-subtitle {
	color: var(--wtd-muted);
	font-size: 14px;
	line-height: 1.55;
	margin: 10px 0 0;
	max-width: 680px;
}

.wtd-live-pill {
	align-items: center;
	background: var(--wtd-surface-soft);
	border: 1px solid var(--wtd-line);
	border-radius: 999px;
	color: var(--wtd-muted);
	display: inline-flex;
	font-size: 12px;
	font-weight: 650;
	min-height: 32px;
	padding: 6px 10px;
	white-space: nowrap;
}

.wtd-tabs {
	background: var(--wtd-surface-soft);
	border: 1px solid var(--wtd-line);
	border-radius: 8px;
	display: grid;
	gap: 4px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 18px;
	padding: 4px;
}

.wtd-tab {
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: var(--wtd-muted);
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	min-height: 44px;
	padding: 10px 14px;
	transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.wtd-tab:hover,
.wtd-tab:focus-visible {
	color: var(--wtd-text);
	outline: none;
}

.wtd-tab:focus-visible {
	box-shadow: 0 0 0 3px rgba(201, 21, 38, 0.18);
}

.wtd-tab.is-active {
	background: var(--wtd-surface);
	box-shadow: 0 1px 8px rgba(18, 22, 25, 0.08);
	color: var(--wtd-text);
}

.wtd-panel {
	display: none;
}

.wtd-panel.is-active {
	display: block;
}

.wtd-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wtd-card {
	background: var(--wtd-surface);
	border: 1px solid var(--wtd-line);
	border-radius: 8px;
	min-height: 178px;
	padding: 16px;
	position: relative;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.wtd-card:hover {
	border-color: rgba(201, 21, 38, 0.35);
	box-shadow: 0 12px 28px rgba(18, 22, 25, 0.08);
	transform: translateY(-1px);
}

.wtd-card-top {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	margin-bottom: 22px;
}

.wtd-model {
	color: var(--wtd-muted);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.3;
	margin: 0 0 4px;
}

.wtd-trim {
	color: var(--wtd-text);
	font-size: 18px;
	font-weight: 760;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
}

.wtd-delivery {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wtd-label {
	color: var(--wtd-muted);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.35;
}

.wtd-delivery strong {
	color: var(--wtd-text);
	font-size: clamp(23px, 3vw, 34px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.05;
	overflow-wrap: anywhere;
}

.wtd-updated {
	border-top: 1px solid var(--wtd-line);
	color: var(--wtd-muted);
	font-size: 12px;
	line-height: 1.4;
	margin: 16px 0 0;
	padding-top: 12px;
}

.wtd-empty {
	background: var(--wtd-accent-soft);
	border: 1px solid rgba(201, 21, 38, 0.2);
	border-radius: 8px;
	color: var(--wtd-text);
	margin: 0;
	padding: 14px 16px;
}

@media (max-width: 820px) {
	.wtd-grid {
		grid-template-columns: 1fr;
	}

	.wtd-header {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wtd-tab,
	.wtd-card {
		transition: none;
	}

	.wtd-card:hover {
		transform: none;
	}
}
