.hfo-dap-app {
	--hfo-accent: #2563eb;
	--hfo-accent-contrast: #fff;
	--hfo-bg: #f4f5f7;
	--hfo-surface: #fff;
	--hfo-surface-2: #f8f8fa;
	--hfo-text: #17181b;
	--hfo-muted: #626772;
	--hfo-line: #dfe2e7;
	--hfo-shadow: 0 12px 35px rgba(15, 20, 30, 0.08);
	--hfo-result-text: #17181b;
	color: var(--hfo-text);
	container: hfo-dap / inline-size;
	font-family: inherit;
	line-height: 1.5;
	margin: 32px 0;
	position: relative;
}

.hfo-dap-app *,
.hfo-dap-app *::before,
.hfo-dap-app *::after {
	box-sizing: border-box;
}

.hfo-dap-app button,
.hfo-dap-app input,
.hfo-dap-app select {
	font: inherit;
}

.hfo-dap-app button,
.hfo-dap-app select,
.hfo-dap-app input {
	border-radius: 7px;
}

.hfo-dap-hero {
	align-items: center;
	background:
		radial-gradient(circle at 87% 10%, color-mix(in srgb, var(--hfo-accent) 25%, transparent), transparent 35%),
		linear-gradient(135deg, #151619, #292c32);
	border-radius: 16px;
	color: #fff;
	display: flex;
	gap: 36px;
	justify-content: space-between;
	overflow: hidden;
	padding: clamp(28px, 5vw, 58px);
}

.hfo-dap-hero > div:first-child {
	max-width: 760px;
}

.hfo-dap-eyebrow {
	color: var(--hfo-accent);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.hfo-dap-hero h2 {
	color: inherit;
	font-size: clamp(2rem, 5vw, 3.6rem);
	letter-spacing: -0.045em;
	line-height: 1;
	margin: 0 0 18px;
	max-width: 720px;
}

.hfo-dap-hero p:not(.hfo-dap-eyebrow) {
	color: #d7d9de;
	font-size: 1.05rem;
	margin: 0;
}

.hfo-dap-hero-side {
	align-items: center;
	display: flex;
	flex: 0 0 170px;
	flex-direction: column;
}

.hfo-dap-hero-stat {
	align-items: center;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	display: flex;
	width: 100%;
	flex-direction: column;
	padding: 24px 20px;
	text-align: center;
}

.hfo-dap-hero-stat strong {
	color: #fff;
	font-size: 2.6rem;
	line-height: 1;
}

.hfo-dap-hero-stat span {
	color: #d7d9de;
	font-size: 0.82rem;
	margin-top: 8px;
}

.hfo-dap-search-row {
	align-items: center;
	display: flex;
	gap: 12px;
	margin: 22px 0;
}

.hfo-dap-search {
	align-items: center;
	background: var(--hfo-surface);
	border: 1px solid var(--hfo-line);
	border-radius: 10px;
	display: flex;
	flex: 1;
	gap: 11px;
	padding: 0 16px;
}

.hfo-dap-search:focus-within {
	border-color: var(--hfo-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--hfo-accent) 17%, transparent);
}

.hfo-dap-search svg {
	fill: none;
	flex: 0 0 20px;
	height: 20px;
	stroke: var(--hfo-muted);
	stroke-linecap: round;
	stroke-width: 2;
	width: 20px;
}

.hfo-dap-search input {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: var(--hfo-text);
	font-size: 1rem;
	min-width: 0;
	outline: 0;
	padding: 14px 0;
	width: 100%;
}

.hfo-dap-button,
.hfo-dap-load-more,
.hfo-dap-details-button {
	background: var(--hfo-accent);
	border: 1px solid var(--hfo-accent);
	color: var(--hfo-accent-contrast);
	cursor: pointer;
	font-weight: 750;
	padding: 10px 16px;
	text-decoration: none;
	transition: filter 150ms ease, transform 150ms ease;
}

.hfo-dap-button:hover,
.hfo-dap-load-more:hover,
.hfo-dap-details-button:hover {
	color: var(--hfo-accent-contrast);
	filter: brightness(0.92);
	text-decoration: none;
	transform: translateY(-1px);
}

.hfo-dap-button--secondary {
	background: transparent;
	color: var(--hfo-accent);
}

.hfo-dap-button--secondary:hover {
	color: var(--hfo-accent);
}

.hfo-dap-filter-toggle {
	display: none;
	white-space: nowrap;
}

.hfo-dap-filter-toggle span {
	align-items: center;
	background: #fff;
	border-radius: 999px;
	color: var(--hfo-accent);
	display: inline-flex;
	font-size: 0.72rem;
	height: 20px;
	justify-content: center;
	margin-left: 5px;
	min-width: 20px;
}

.hfo-dap-layout {
	align-items: start;
	display: grid;
	gap: 26px;
	grid-template-columns: 250px minmax(0, 1fr);
}

.hfo-dap-filters {
	background: var(--hfo-surface);
	border: 1px solid var(--hfo-line);
	border-radius: 12px;
	overflow: visible;
	padding: 16px;
	position: static;
}

.hfo-dap-filter-heading {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.hfo-dap-filter-heading h3 {
	color: var(--hfo-text);
	font-size: 1rem;
	margin: 0;
}

.hfo-dap-filter-heading button {
	background: transparent;
	border: 0;
	color: var(--hfo-muted);
	cursor: pointer;
	display: none;
	font-size: 1.7rem;
	line-height: 1;
	padding: 0;
}

.hfo-dap-filter-group {
	border: 0;
	border-top: 1px solid var(--hfo-line);
	margin: 0;
	padding: 16px 0 0;
}

.hfo-dap-filter-group + .hfo-dap-filter-group {
	margin-top: 16px;
}

.hfo-dap-filter-group > label,
.hfo-dap-filter-group > legend,
.hfo-dap-filter-label,
.hfo-dap-checks-heading {
	color: var(--hfo-text);
	display: block;
	font-size: 0.79rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
	padding: 0;
	text-transform: uppercase;
}

.hfo-dap-filter-group:not(.hfo-dap-checks) > label:first-child,
.hfo-dap-filter-group > legend,
.hfo-dap-filter-label,
.hfo-dap-checks-heading {
	background: color-mix(in srgb, var(--hfo-accent) 6%, var(--hfo-surface));
	border: 1px solid color-mix(in srgb, var(--hfo-accent) 34%, var(--hfo-line));
	border-radius: 5px;
	display: inline-flex;
	line-height: 1.2;
	max-width: 100%;
	padding: 4px 7px;
	width: fit-content;
}

.hfo-dap-filter-group select,
.hfo-dap-filter-group input[type="number"],
.hfo-dap-toolbar select,
.hfo-dap-multiselect-toggle {
	appearance: auto;
	background-color: var(--hfo-surface);
	border: 1px solid var(--hfo-line);
	color: var(--hfo-text);
	min-height: 42px;
	padding: 8px 10px;
	width: 100%;
}

.hfo-dap-multiselect {
	position: relative;
}

.hfo-dap-multiselect-toggle {
	appearance: none;
	cursor: pointer;
	display: flex;
	font-size: 0.86rem;
	justify-content: space-between;
	padding-right: 32px;
	position: relative;
	text-align: left;
}

.hfo-dap-multiselect-toggle::after {
	border: solid currentColor;
	border-width: 0 1px 1px 0;
	content: "";
	height: 7px;
	position: absolute;
	right: 13px;
	top: 15px;
	transform: rotate(45deg);
	transition: transform 140ms ease;
	width: 7px;
}

.hfo-dap-multiselect-toggle[aria-expanded="true"] {
	border-color: var(--hfo-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--hfo-accent) 14%, transparent);
}

.hfo-dap-multiselect-toggle[aria-expanded="true"]::after {
	top: 18px;
	transform: rotate(225deg);
}

.hfo-dap-multiselect-panel {
	background: var(--hfo-surface);
	border: 1px solid var(--hfo-line);
	border-radius: 9px;
	box-shadow: var(--hfo-shadow);
	left: 0;
	max-height: 240px;
	overflow-y: auto;
	padding: 8px;
	position: absolute;
	right: 0;
	scrollbar-color: color-mix(in srgb, var(--hfo-muted) 55%, transparent) transparent;
	scrollbar-width: thin;
	top: calc(100% + 6px);
	z-index: 70;
}

.hfo-dap-multiselect-panel[hidden] {
	display: none;
}

.hfo-dap-multiselect-options {
	display: grid;
	gap: 2px;
}

.hfo-dap-multiselect-options label {
	align-items: flex-start;
	border-radius: 6px;
	color: var(--hfo-text);
	cursor: pointer;
	display: flex;
	font-size: 0.82rem;
	gap: 8px;
	line-height: 1.3;
	margin: 0;
	padding: 7px 6px;
	text-transform: none;
}

.hfo-dap-multiselect-options label:hover {
	background: var(--hfo-surface-2);
}

.hfo-dap-multiselect-options input {
	accent-color: var(--hfo-accent);
	flex: 0 0 auto;
	margin: 2px 0 0;
}

.hfo-dap-range {
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 1fr;
}

.hfo-dap-range label span {
	color: var(--hfo-muted);
	display: block;
	font-size: 0.73rem;
	margin-bottom: 4px;
}

.hfo-dap-checks {
	display: grid;
	gap: 9px;
}

.hfo-dap-checks legend,
.hfo-dap-checks-heading {
	margin-bottom: 10px;
}

.hfo-dap-checks label {
	align-items: flex-start;
	color: var(--hfo-text);
	cursor: pointer;
	display: flex;
	font-size: 0.88rem;
	gap: 8px;
	line-height: 1.3;
	margin: 0;
	text-transform: none;
}

.hfo-dap-checks input {
	accent-color: var(--hfo-accent);
	flex: 0 0 auto;
	margin: 2px 0 0;
}

.hfo-dap-reset {
	background: var(--hfo-surface-2);
	border: 1px solid var(--hfo-line);
	color: var(--hfo-accent);
	cursor: pointer;
	font-size: 0.85rem;
	font-weight: 700;
	margin: 0 0 12px;
	padding: 8px 10px;
	text-decoration: none;
	width: 100%;
}

.hfo-dap-main {
	min-width: 0;
}

.hfo-dap-toolbar {
	align-items: flex-start;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 18px;
}

.hfo-dap-toolbar > div:first-child {
	min-width: 0;
}

.hfo-dap-toolbar strong {
	color: var(--hfo-text);
	font-size: 0.95rem;
}

[data-hfo-result-count] {
	-webkit-background-clip: border-box !important;
	-webkit-text-fill-color: var(--hfo-result-text) !important;
	background: none !important;
	background-clip: border-box !important;
	color: var(--hfo-result-text) !important;
	filter: none !important;
	mix-blend-mode: normal !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.hfo-dap-toolbar-controls {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 10px;
}

.hfo-dap-toolbar-controls > label {
	align-items: center;
	display: flex;
	margin: 0;
}

.hfo-dap-toolbar select {
	height: 42px;
	min-width: 170px;
}

.hfo-dap-share-button {
	font-size: 0.7rem;
	height: 34px;
	padding: 6px 9px;
	white-space: nowrap;
}

.hfo-dap-shared-notice {
	align-items: center;
	background: color-mix(in srgb, var(--hfo-accent) 8%, var(--hfo-surface));
	border: 1px solid color-mix(in srgb, var(--hfo-accent) 30%, var(--hfo-line));
	border-radius: 10px;
	color: var(--hfo-text);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin: -4px 0 18px;
	padding: 11px 13px;
}

.hfo-dap-shared-notice[hidden] {
	display: none;
}

.hfo-dap-shared-notice > div {
	display: grid;
	gap: 2px;
}

.hfo-dap-shared-notice strong {
	color: var(--hfo-text);
	font-size: 0.8rem;
}

.hfo-dap-shared-notice span {
	color: var(--hfo-muted);
	font-size: 0.72rem;
}

.hfo-dap-shared-notice button {
	background: transparent;
	border: 0;
	color: var(--hfo-accent);
	cursor: pointer;
	flex: 0 0 auto;
	font-size: 0.72rem;
	font-weight: 750;
	padding: 6px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hfo-dap-share-popup-backdrop {
	background: rgba(8, 9, 11, 0.58);
	inset: 0;
	position: fixed;
	z-index: 99997;
}

.hfo-dap-share-popup-backdrop[hidden] {
	display: none;
}

.hfo-dap-share-popup {
	animation: hfo-dap-share-popup-in 160ms ease-out;
	background: var(--hfo-surface);
	border: 1px solid color-mix(in srgb, var(--hfo-accent) 35%, var(--hfo-line));
	border-radius: 12px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
	color: var(--hfo-text);
	left: 50%;
	max-height: calc(100vh - 30px);
	max-width: calc(100vw - 30px);
	overflow-y: auto;
	padding: 15px;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 440px;
	z-index: 99998;
}

.hfo-dap-share-popup[hidden] {
	display: none;
}

.hfo-dap-share-popup > strong {
	color: var(--hfo-text);
	display: block;
	font-size: 0.88rem;
	padding-right: 28px;
}

.hfo-dap-share-popup p {
	color: var(--hfo-muted);
	font-size: 0.72rem;
	margin: 3px 28px 11px 0;
}

.hfo-dap-share-popup p.is-error {
	color: #c2410c;
}

.hfo-dap-share-popup-close {
	background: transparent;
	border: 0;
	color: var(--hfo-muted);
	cursor: pointer;
	font-size: 1.2rem;
	line-height: 1;
	padding: 5px;
	position: absolute;
	right: 8px;
	top: 7px;
}

.hfo-dap-share-popup-row {
	align-items: stretch;
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.hfo-dap-share-popup-row input {
	background: var(--hfo-surface-2);
	border: 1px solid var(--hfo-line);
	color: var(--hfo-text);
	font-size: 0.68rem;
	min-width: 0;
	padding: 8px 9px;
	width: 100%;
}

.hfo-dap-share-popup-row .hfo-dap-button {
	font-size: 0.7rem;
	padding: 7px 11px;
}

@keyframes hfo-dap-share-popup-in {
	from {
		opacity: 0;
		transform: translate(-50%, calc(-50% - 8px)) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

.hfo-dap-columns {
	position: relative;
}

.hfo-dap-columns[hidden],
.hfo-dap-columns-panel[hidden] {
	display: none;
}

.hfo-dap-columns-toggle {
	background: var(--hfo-surface);
	border: 1px solid var(--hfo-line);
	color: var(--hfo-text);
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 750;
	min-height: 42px;
	padding: 8px 12px;
	white-space: nowrap;
}

.hfo-dap-columns-toggle::after {
	border: solid currentColor;
	border-width: 0 1px 1px 0;
	content: "";
	display: inline-block;
	height: 6px;
	margin: 0 2px 3px 8px;
	transform: rotate(45deg);
	width: 6px;
}

.hfo-dap-columns-toggle[aria-expanded="true"] {
	border-color: var(--hfo-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--hfo-accent) 14%, transparent);
}

.hfo-dap-columns-toggle[aria-expanded="true"]::after {
	margin-bottom: 0;
	transform: rotate(225deg);
}

.hfo-dap-columns-panel {
	background: var(--hfo-surface);
	border: 1px solid var(--hfo-line);
	border-radius: 10px;
	box-shadow: var(--hfo-shadow);
	color: var(--hfo-text);
	max-height: min(480px, 70vh);
	overflow-y: auto;
	padding: 16px;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	width: min(360px, calc(100vw - 32px));
	z-index: 50;
}

.hfo-dap-columns-heading {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 13px;
}

.hfo-dap-columns-heading strong {
	color: var(--hfo-text);
	font-size: 0.84rem;
}

.hfo-dap-columns-heading button {
	background: transparent;
	border: 0;
	color: var(--hfo-accent);
	cursor: pointer;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 3px 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hfo-dap-columns-options {
	display: grid;
	gap: 8px 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hfo-dap-columns-options label {
	align-items: flex-start;
	color: var(--hfo-text);
	cursor: pointer;
	display: flex;
	font-size: 0.78rem;
	gap: 7px;
	line-height: 1.25;
	margin: 0;
	text-transform: none;
}

.hfo-dap-columns-options label.is-locked {
	cursor: default;
}

.hfo-dap-columns-options input {
	accent-color: var(--hfo-accent);
	flex: 0 0 auto;
	margin: 2px 0 0;
}

.hfo-dap-columns-options small {
	color: var(--hfo-muted);
	display: block;
	font-size: 0.62rem;
	margin-top: 2px;
}

.hfo-dap-view-toggle {
	align-items: stretch;
	background: var(--hfo-surface-2);
	border: 1px solid var(--hfo-line);
	border-radius: 8px;
	display: flex;
	height: 42px;
	padding: 3px;
}

.hfo-dap-view-toggle button {
	background: transparent;
	border: 0;
	color: var(--hfo-muted);
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	padding: 7px 9px;
}

.hfo-dap-view-toggle button.is-active {
	background: var(--hfo-surface);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	color: var(--hfo-text);
}

.hfo-dap-active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 7px;
}

.hfo-dap-active-filters:empty {
	display: none;
}

.hfo-dap-feedback-link {
	color: var(--hfo-accent, #2563eb);
	font-size: 0.78rem;
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hfo-dap-feedback-link:hover,
.hfo-dap-feedback-link:focus-visible {
	color: color-mix(in srgb, var(--hfo-accent, #2563eb) 76%, #000);
	text-decoration-thickness: 2px;
}

.hfo-dap-suggest-link {
	display: inline-block;
	margin-top: 9px;
}

.hfo-dap-hero-side .hfo-dap-suggest-link {
	color: #bfdbfe;
	text-align: center;
}

.hfo-dap-hero-side .hfo-dap-suggest-link:hover,
.hfo-dap-hero-side .hfo-dap-suggest-link:focus-visible {
	color: #fff;
}

.hfo-dap-active-filters button {
	background: color-mix(in srgb, var(--hfo-accent) 10%, var(--hfo-surface));
	border: 1px solid color-mix(in srgb, var(--hfo-accent) 25%, var(--hfo-line));
	color: var(--hfo-text);
	cursor: pointer;
	font-size: 0.72rem;
	padding: 4px 7px;
}

.hfo-dap-active-filters button span[aria-hidden="true"] {
	color: var(--hfo-accent);
	font-size: 1rem;
	font-weight: 700;
	margin-left: 4px;
}

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

.hfo-dap-card {
	background: var(--hfo-surface);
	border: 1px solid var(--hfo-line);
	border-radius: 12px;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.hfo-dap-card:hover {
	box-shadow: var(--hfo-shadow);
	transform: translateY(-3px);
}

.hfo-dap-card.is-discontinued .hfo-dap-card-image img {
	filter: saturate(0.6);
	opacity: 0.85;
}

.hfo-dap-card-image {
	align-items: center;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(145deg, color-mix(in srgb, var(--hfo-accent) 5%, var(--hfo-surface-2)), var(--hfo-surface-2));
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 18px;
	position: relative;
}

button.hfo-dap-card-image {
	border: 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	width: 100%;
}

.hfo-dap-card-image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.hfo-dap-image-placeholder {
	align-items: center;
	background: color-mix(in srgb, var(--hfo-accent) 10%, var(--hfo-surface));
	border-radius: 50%;
	color: var(--hfo-accent);
	display: flex;
	font-size: 2rem;
	height: 80px;
	justify-content: center;
	width: 80px;
}

.hfo-dap-status {
	background: rgba(18, 19, 22, 0.82);
	border-radius: 999px;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 5px 8px;
	position: absolute;
	right: 10px;
	text-transform: uppercase;
	top: 10px;
}

.hfo-dap-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.hfo-dap-card-kicker {
	color: var(--hfo-muted);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.hfo-dap-card h3 {
	color: var(--hfo-text);
	font-size: 1.12rem;
	line-height: 1.2;
	margin: 0 0 5px;
}

.hfo-dap-name-button {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	font-weight: inherit;
	line-height: inherit;
	padding: 0;
	text-align: left;
}

.hfo-dap-name-button:hover {
	color: var(--hfo-accent);
}

.hfo-dap-price {
	color: var(--hfo-text);
	font-size: 1rem;
	font-weight: 800;
}

.hfo-dap-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 12px 0;
}

.hfo-dap-badge {
	background: var(--hfo-surface-2);
	border: 1px solid var(--hfo-line);
	border-radius: 999px;
	color: var(--hfo-muted);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 4px 7px;
	text-transform: uppercase;
}

.hfo-dap-badge--accent {
	background: color-mix(in srgb, var(--hfo-accent) 11%, var(--hfo-surface));
	border-color: color-mix(in srgb, var(--hfo-accent) 30%, var(--hfo-line));
	color: var(--hfo-accent);
}

.hfo-dap-verdict {
	color: var(--hfo-muted);
	display: -webkit-box;
	font-size: 0.84rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	margin: 0 0 14px;
	overflow: hidden;
}

.hfo-dap-key-specs {
	border-top: 1px solid var(--hfo-line);
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 1fr;
	margin: auto 0 0;
	padding-top: 13px;
}

.hfo-dap-key-specs div {
	min-width: 0;
}

.hfo-dap-key-specs dt {
	color: var(--hfo-muted);
	font-size: 0.65rem;
	margin: 0;
	text-transform: uppercase;
}

.hfo-dap-key-specs dd {
	color: var(--hfo-text);
	font-size: 0.78rem;
	font-weight: 700;
	margin: 1px 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hfo-dap-card-actions {
	align-items: center;
	border-top: 1px solid var(--hfo-line);
	display: flex;
	justify-content: space-between;
	padding: 12px 14px;
}

.hfo-dap-details-button {
	font-size: 0.76rem;
	padding: 8px 11px;
}

.hfo-dap-compare-check {
	align-items: center;
	color: var(--hfo-muted);
	cursor: pointer;
	display: flex;
	font-size: 0.75rem;
	gap: 5px;
}

.hfo-dap-compare-check input {
	accent-color: var(--hfo-accent);
	margin: 0;
}

.hfo-dap-table-scroll-shell {
	min-width: 0;
}

.hfo-dap-table-scroll-top,
.hfo-dap-table-wrap {
	scrollbar-color:
		color-mix(in srgb, var(--hfo-muted) 62%, transparent)
		color-mix(in srgb, var(--hfo-line) 58%, transparent);
	scrollbar-width: thin;
}

.hfo-dap-table-scroll-top {
	background: color-mix(in srgb, var(--hfo-surface-2) 75%, transparent);
	border: 1px solid var(--hfo-line);
	border-radius: 7px;
	height: 14px;
	margin-bottom: 8px;
	overflow-x: auto;
	overflow-y: hidden;
}

.hfo-dap-table-scroll-top[hidden] {
	display: none;
}

.hfo-dap-table-scroll-top > div {
	height: 1px;
}

.hfo-dap-table-wrap {
	background: var(--hfo-surface);
	border: 1px solid var(--hfo-line);
	border-radius: 12px;
	overflow-x: auto;
}

.hfo-dap-table-scroll-top::-webkit-scrollbar,
.hfo-dap-table-wrap::-webkit-scrollbar {
	height: 10px;
}

.hfo-dap-multiselect-panel::-webkit-scrollbar,
.hfo-dap-filters::-webkit-scrollbar {
	width: 8px;
}

.hfo-dap-table-scroll-top::-webkit-scrollbar-track,
.hfo-dap-table-wrap::-webkit-scrollbar-track,
.hfo-dap-multiselect-panel::-webkit-scrollbar-track,
.hfo-dap-filters::-webkit-scrollbar-track {
	background: color-mix(in srgb, var(--hfo-line) 45%, transparent);
	border-radius: 999px;
}

.hfo-dap-table-scroll-top::-webkit-scrollbar-thumb,
.hfo-dap-table-wrap::-webkit-scrollbar-thumb,
.hfo-dap-multiselect-panel::-webkit-scrollbar-thumb,
.hfo-dap-filters::-webkit-scrollbar-thumb {
	background: color-mix(in srgb, var(--hfo-muted) 65%, var(--hfo-surface));
	border: 2px solid transparent;
	border-radius: 999px;
	background-clip: padding-box;
}

.hfo-dap-table-scroll-top::-webkit-scrollbar-thumb:hover,
.hfo-dap-table-wrap::-webkit-scrollbar-thumb:hover,
.hfo-dap-multiselect-panel::-webkit-scrollbar-thumb:hover,
.hfo-dap-filters::-webkit-scrollbar-thumb:hover {
	background: color-mix(in srgb, var(--hfo-accent) 70%, var(--hfo-muted));
	background-clip: padding-box;
}

.hfo-dap-table {
	border: 0;
	border-collapse: collapse;
	color: var(--hfo-text);
	font-size: 0.78rem;
	margin: 0;
	min-width: 100%;
	width: max-content;
}

.hfo-dap-table th,
.hfo-dap-table td {
	border: 0;
	border-bottom: 1px solid var(--hfo-line);
	padding: 12px 10px;
	text-align: left;
	vertical-align: middle;
}

.hfo-dap-table thead th {
	background: var(--hfo-surface-2);
	color: var(--hfo-muted);
	font-size: 0.67rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.hfo-dap-table tbody tr:last-child td {
	border-bottom: 0;
}

.hfo-dap-table-player {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: 40px minmax(0, 1fr);
	min-width: 205px;
}

button.hfo-dap-table-player {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	padding: 0;
	text-align: left;
}

button.hfo-dap-card-image:focus-visible,
.hfo-dap-name-button:focus-visible,
button.hfo-dap-table-player:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--hfo-accent) 55%, transparent);
	outline-offset: 2px;
}

.hfo-dap-table-player img,
.hfo-dap-table-player .hfo-dap-image-placeholder {
	background: var(--hfo-surface-2);
	border-radius: 6px;
	box-sizing: border-box;
	display: block;
	height: 40px;
	max-height: 40px;
	max-width: 40px;
	min-height: 40px;
	min-width: 40px;
	object-fit: contain;
	width: 40px;
}

.hfo-dap-table-player .hfo-dap-image-placeholder {
	align-items: center;
	display: grid;
	font-size: 1rem;
	justify-content: center;
}

.hfo-dap-table-player > div:not(.hfo-dap-image-placeholder) {
	display: grid;
	min-width: 0;
}

.hfo-dap-table-player small {
	color: var(--hfo-muted);
	font-size: 0.65rem;
}

.hfo-dap-table-player strong {
	color: var(--hfo-text);
}

.hfo-dap-table-player span {
	color: var(--hfo-accent);
	font-size: 0.65rem;
	font-weight: 800;
}

.hfo-dap-table-actions {
	align-items: center;
	display: flex;
	gap: 8px;
}

.hfo-dap-table-actions button {
	background: transparent;
	border: 0;
	color: var(--hfo-accent);
	cursor: pointer;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 3px;
	white-space: nowrap;
}

.hfo-dap-table-actions input {
	accent-color: var(--hfo-accent);
}

.hfo-dap-empty {
	background: var(--hfo-surface);
	border: 1px dashed var(--hfo-line);
	border-radius: 12px;
	padding: 54px 20px;
	text-align: center;
}

.hfo-dap-empty h3 {
	color: var(--hfo-text);
	margin: 0 0 8px;
}

.hfo-dap-empty p {
	color: var(--hfo-muted);
	margin: 0 auto 20px;
	max-width: 470px;
}

.hfo-dap-load-more {
	display: block;
	margin: 24px auto 0;
}

.hfo-dap-overlay {
	background: rgba(8, 9, 11, 0.7);
	inset: 0;
	position: fixed;
	z-index: 99997;
}

.hfo-dap-compare-tray {
	align-items: center;
	background: #17181b;
	border: 1px solid #33363c;
	border-radius: 12px;
	bottom: 18px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
	color: #fff;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	left: 50%;
	max-width: min(740px, calc(100vw - 30px));
	padding: 13px 15px;
	position: fixed;
	transform: translateX(-50%);
	width: 100%;
	z-index: 9996;
}

.hfo-dap-compare-tray > div:first-child {
	min-width: 0;
}

.hfo-dap-compare-tray > div:last-child {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 9px;
}

.hfo-dap-compare-tray strong {
	color: #fff;
	font-size: 0.76rem;
}

.hfo-dap-compare-tray [data-hfo-compare-names] {
	display: flex;
	gap: 5px;
	margin-top: 4px;
	overflow: hidden;
}

.hfo-dap-compare-tray [data-hfo-compare-names] span {
	background: #2b2d32;
	border-radius: 999px;
	color: #d8dadd;
	font-size: 0.65rem;
	max-width: 130px;
	overflow: hidden;
	padding: 3px 7px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hfo-dap-compare-tray button {
	background: transparent;
	border: 0;
	color: #d8dadd;
	cursor: pointer;
	font-size: 0.74rem;
}

.hfo-dap-compare-tray .hfo-dap-button {
	background: var(--hfo-accent);
	color: #fff;
	padding: 9px 12px;
}

.hfo-dap-compare-tray .hfo-dap-button:disabled {
	cursor: not-allowed;
	opacity: 0.45;
	transform: none;
}

.hfo-dap-dialog {
	inset: 0;
	overflow-y: auto;
	padding: 28px;
	position: fixed;
	z-index: 99999;
}

.hfo-dap-dialog-panel {
	background: var(--hfo-surface);
	border-radius: 14px;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
	color: var(--hfo-text);
	margin: 0 auto;
	max-width: 980px;
	min-height: 200px;
	padding: clamp(24px, 4vw, 44px);
	position: relative;
}

.hfo-dap-dialog-close {
	align-items: center;
	background: var(--hfo-surface-2);
	border: 1px solid var(--hfo-line);
	color: var(--hfo-muted);
	cursor: pointer;
	display: flex;
	font-size: 1.7rem;
	height: 38px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 3px;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 38px;
	z-index: 2;
}

.hfo-dap-detail-header {
	align-items: center;
	display: grid;
	gap: clamp(22px, 5vw, 48px);
	grid-template-columns: minmax(190px, 38%) 1fr;
	padding-right: 28px;
}

.hfo-dap-detail-image {
	align-items: center;
	aspect-ratio: 1 / 1;
	background: var(--hfo-surface-2);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	padding: 24px;
}

.hfo-dap-detail-image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.hfo-dap-detail h2,
.hfo-dap-comparison h2 {
	color: var(--hfo-text);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	letter-spacing: -0.035em;
	line-height: 1.05;
	margin: 0 0 8px;
}

.hfo-dap-detail-verdict {
	color: var(--hfo-muted);
	font-size: 1rem;
	margin: 14px 0 0;
}

.hfo-dap-detail-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.hfo-dap-text-link {
	color: var(--hfo-accent);
	font-size: 0.82rem;
	font-weight: 700;
	margin-left: 5px;
	text-decoration: none;
}

.hfo-dap-full-page-link {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--hfo-accent) !important;
	margin-left: 5px;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hfo-dap-full-page-link:hover,
.hfo-dap-full-page-link:focus-visible {
	background: transparent;
	color: color-mix(in srgb, var(--hfo-accent) 78%, #000) !important;
	text-decoration-thickness: 2px;
}

.hfo-dap-detail-section {
	border-top: 1px solid var(--hfo-line);
	margin-top: 30px;
	padding-top: 24px;
}

.hfo-dap-detail-section h3 {
	color: var(--hfo-text);
	font-size: 1.1rem;
	margin: 0 0 14px;
}

.hfo-dap-detail-section > p {
	color: var(--hfo-muted);
	margin: 0;
	white-space: pre-line;
}

.hfo-dap-detail-specs {
	display: grid;
	gap: 0 24px;
	grid-template-columns: 1fr 1fr;
}

.hfo-dap-detail-specs > div {
	border-bottom: 1px solid var(--hfo-line);
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(110px, 42%) 1fr;
	padding: 10px 0;
}

.hfo-dap-detail-specs dt {
	color: var(--hfo-muted);
	font-size: 0.78rem;
}

.hfo-dap-detail-specs dd {
	color: var(--hfo-text);
	font-size: 0.8rem;
	font-weight: 650;
	margin: 0;
	text-align: right;
}

.hfo-dap-issues {
	background: color-mix(in srgb, var(--hfo-accent) 6%, var(--hfo-surface));
	border: 1px solid color-mix(in srgb, var(--hfo-accent) 18%, var(--hfo-line));
	border-radius: 10px;
	padding: 18px 20px;
}

.hfo-dap-issues ul {
	margin: 0;
	padding-left: 20px;
}

.hfo-dap-issues li {
	color: var(--hfo-muted);
	margin: 5px 0;
}

.hfo-dap-feedback-actions {
	border-top: 1px solid var(--hfo-line);
	margin-top: 24px;
	padding-top: 18px;
	text-align: right;
}

.hfo-dap-buy-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 0;
}

.hfo-dap-buy-links a {
	align-items: center;
	background: var(--hfo-accent);
	border-radius: 7px;
	color: #fff;
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 750;
	gap: 8px;
	padding: 9px 13px;
	text-decoration: none;
}

.hfo-dap-store-icon {
	border-radius: 6px;
	box-shadow: 0 1px 2px rgb(0 0 0 / 18%);
	flex: 0 0 24px;
	height: 24px;
	width: 24px;
}

.hfo-dap-official-product a,
.hfo-single-official-product a {
	color: var(--hfo-accent, #2563eb);
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hfo-dap-comparison-scroll {
	margin-top: 24px;
	overflow-x: auto;
}

.hfo-dap-comparison table {
	border-collapse: collapse;
	color: var(--hfo-text);
	font-size: 0.8rem;
	margin: 0;
	min-width: 680px;
	width: 100%;
}

.hfo-dap-comparison th,
.hfo-dap-comparison td {
	border: 1px solid var(--hfo-line);
	padding: 10px;
	text-align: center;
	vertical-align: middle;
}

.hfo-dap-comparison tbody th {
	background: var(--hfo-surface-2);
	color: var(--hfo-muted);
	text-align: left;
	width: 150px;
}

.hfo-dap-comparison thead th:first-child {
	text-align: left;
}

.hfo-dap-comparison thead img,
.hfo-dap-comparison thead .hfo-dap-image-placeholder {
	height: 90px;
	margin: 0 auto 8px;
	object-fit: contain;
	width: 90px;
}

.hfo-dap-comparison thead .hfo-dap-image-placeholder {
	font-size: 1.4rem;
}

.hfo-dap-comparison thead strong {
	color: var(--hfo-text);
	display: block;
}

.hfo-dap-comparison-details {
	background: var(--hfo-accent);
	border: 1px solid var(--hfo-accent);
	border-radius: 6px;
	color: #fff !important;
	display: inline-flex;
	font-size: 0.7rem;
	font-weight: 750;
	justify-content: center;
	margin-top: 8px;
	padding: 6px 9px;
	text-decoration: none;
}

.hfo-dap-comparison-details:hover,
.hfo-dap-comparison-details:focus-visible {
	color: #fff !important;
	filter: brightness(0.92);
	text-decoration: none;
}

.hfo-dap-comparison thead button {
	background: transparent;
	border: 0;
	color: var(--hfo-accent);
	cursor: pointer;
	font-size: 0.67rem;
	padding: 5px 0 0;
}

html.hfo-dap-modal-open {
	overflow: hidden;
}

.hfo-single-specs {
	--hfo-accent: #2563eb;
	margin-top: 38px;
}

.hfo-single-product-figure {
	align-items: center;
	background: #f6f7f9;
	border: 1px solid #e0e4eb;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	margin: 0 auto 30px;
	max-width: 640px;
	padding: clamp(18px, 4vw, 34px);
}

.hfo-single-product-figure .hfo-single-product-image {
	display: block;
	height: auto;
	margin: 0;
	max-height: 520px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.hfo-single-purchase-links {
	margin: 30px 0;
}

.hfo-single-purchase-links h2 {
	margin-bottom: 14px;
}

.hfo-single-buy-links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.hfo-single-buy-links a {
	align-items: center;
	background: var(--hfo-accent);
	border-radius: 7px;
	color: #fff;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 750;
	gap: 8px;
	padding: 10px 14px;
	text-decoration: none;
}

.hfo-single-buy-links a:hover,
.hfo-single-buy-links a:focus-visible {
	color: #fff;
	filter: brightness(0.92);
	text-decoration: none;
}

.hfo-single-verdict {
	background: #f6f6f7;
	border-left: 4px solid var(--hfo-accent);
	color: #17181b;
	margin-bottom: 30px;
	padding: 18px 20px;
}

.hfo-single-verdict strong,
.hfo-single-verdict p {
	color: inherit;
}

.hfo-single-verdict p {
	margin: 6px 0 0;
}

.hfo-single-spec-table {
	border: 1px solid #e0e0e2;
	border-radius: 8px;
	overflow: hidden;
}

.hfo-single-notes {
	background: #f6f7f9;
	border: 1px solid #e0e4eb;
	border-radius: 10px;
	color: #303744;
	margin-top: 30px;
	padding: 20px 22px;
}

.hfo-single-notes h2 {
	color: #17181b;
	font-size: 1.25rem;
	margin: 0 0 12px;
}

.hfo-single-notes ul {
	margin: 0;
	padding-left: 21px;
}

.hfo-single-notes li {
	margin: 6px 0;
}

.hfo-single-feedback {
	margin-top: 20px;
	text-align: right;
}

.hfo-single-spec-table > div {
	border-bottom: 1px solid #e0e0e2;
	display: grid;
	gap: 20px;
	grid-template-columns: minmax(150px, 35%) 1fr;
	padding: 10px 14px;
}

.hfo-single-spec-table > div:last-child {
	border-bottom: 0;
}

@media (prefers-color-scheme: dark) {
	.hfo-dap-app {
		--hfo-bg: #121316;
		--hfo-surface: #1b1d21;
		--hfo-surface-2: #24262b;
		--hfo-text: #f2f3f5;
		--hfo-muted: #aeb2bb;
		--hfo-line: #363941;
		--hfo-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
		--hfo-result-text: #f2f3f5;
	}

	.hfo-single-verdict {
		background: #24262b;
		color: #f2f3f5;
	}

	.hfo-single-verdict strong,
	.hfo-single-verdict p {
		color: #f2f3f5;
	}

	.hfo-single-product-figure {
		background: #24262b;
		border-color: #363941;
	}

	.hfo-single-notes {
		background: #24262b;
		border-color: #363941;
		color: #d7dae0;
	}

	.hfo-single-notes h2 {
		color: #f2f3f5;
	}
}

body.dark .hfo-dap-app,
body[data-theme="dark"] .hfo-dap-app,
body[data-scheme="dark"] .hfo-dap-app,
body[data-site-scheme="dark"] .hfo-dap-app,
.dark-mode .hfo-dap-app {
	--hfo-bg: #121316;
	--hfo-surface: #1b1d21;
	--hfo-surface-2: #24262b;
	--hfo-text: #f2f3f5;
	--hfo-muted: #aeb2bb;
	--hfo-line: #363941;
	--hfo-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
	--hfo-result-text: #f2f3f5;
}

body.dark .hfo-single-verdict,
body[data-theme="dark"] .hfo-single-verdict,
body[data-scheme="dark"] .hfo-single-verdict,
body[data-site-scheme="dark"] .hfo-single-verdict,
.dark-mode .hfo-single-verdict {
	background: #24262b;
	color: #f2f3f5;
}

body.dark .hfo-single-product-figure,
body[data-theme="dark"] .hfo-single-product-figure,
body[data-scheme="dark"] .hfo-single-product-figure,
body[data-site-scheme="dark"] .hfo-single-product-figure,
.dark-mode .hfo-single-product-figure {
	background: #24262b;
	border-color: #363941;
}

body.dark .hfo-single-notes,
body[data-theme="dark"] .hfo-single-notes,
body[data-scheme="dark"] .hfo-single-notes,
body[data-site-scheme="dark"] .hfo-single-notes,
.dark-mode .hfo-single-notes {
	background: #24262b;
	border-color: #363941;
	color: #d7dae0;
}

body.dark .hfo-single-notes h2,
body[data-theme="dark"] .hfo-single-notes h2,
body[data-scheme="dark"] .hfo-single-notes h2,
body[data-site-scheme="dark"] .hfo-single-notes h2,
.dark-mode .hfo-single-notes h2 {
	color: #f2f3f5;
}

body.dark .hfo-single-verdict strong,
body.dark .hfo-single-verdict p,
body[data-theme="dark"] .hfo-single-verdict strong,
body[data-theme="dark"] .hfo-single-verdict p,
body[data-scheme="dark"] .hfo-single-verdict strong,
body[data-scheme="dark"] .hfo-single-verdict p,
body[data-site-scheme="dark"] .hfo-single-verdict strong,
body[data-site-scheme="dark"] .hfo-single-verdict p,
.dark-mode .hfo-single-verdict strong,
.dark-mode .hfo-single-verdict p {
	color: #f2f3f5;
}

body[data-scheme="default"] .hfo-dap-app,
body[data-site-scheme="default"] .hfo-dap-app {
	--hfo-bg: #f4f5f7;
	--hfo-surface: #fff;
	--hfo-surface-2: #f8f8fa;
	--hfo-text: #17181b;
	--hfo-muted: #626772;
	--hfo-line: #dfe2e7;
	--hfo-shadow: 0 12px 35px rgba(15, 20, 30, 0.08);
	--hfo-result-text: #17181b;
}

body[data-scheme="default"] .hfo-single-verdict,
body[data-site-scheme="default"] .hfo-single-verdict {
	background: #f6f6f7;
	color: #17181b;
}

body[data-scheme="default"] .hfo-single-verdict strong,
body[data-scheme="default"] .hfo-single-verdict p,
body[data-site-scheme="default"] .hfo-single-verdict strong,
body[data-site-scheme="default"] .hfo-single-verdict p {
	color: #17181b;
}

@container hfo-dap (max-width: 1200px) {
	.hfo-dap-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@container hfo-dap (max-width: 880px) {
	.hfo-dap-filter-toggle {
		display: inline-flex;
	}

	.hfo-dap-layout {
		display: block;
	}

	.hfo-dap-filters {
		border-radius: 0;
		bottom: 0;
		left: 0;
		max-height: none;
		max-width: 360px;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: 22px;
		position: fixed;
		scrollbar-color: color-mix(in srgb, var(--hfo-muted) 55%, transparent) transparent;
		scrollbar-gutter: auto;
		scrollbar-width: thin;
		top: 0;
		transform: translateX(-105%);
		transition: transform 180ms ease;
		width: min(88vw, 360px);
		z-index: 99998;
	}

	.hfo-dap-app.has-open-filters .hfo-dap-filters {
		transform: translateX(0);
	}

	.hfo-dap-filter-heading button {
		display: block;
	}

	.hfo-dap-detail-specs {
		grid-template-columns: 1fr;
	}
}

@container hfo-dap (max-width: 640px) {
	.hfo-dap-hero {
		align-items: flex-start;
		border-radius: 12px;
		flex-direction: column;
		gap: 24px;
	}

	.hfo-dap-hero-side {
		align-items: flex-start;
		flex-basis: auto;
		width: 100%;
	}

	.hfo-dap-hero-stat {
		align-items: baseline;
		flex: initial;
		flex-direction: row;
		gap: 8px;
		padding: 13px 16px;
		width: 100%;
	}

	.hfo-dap-hero-stat strong {
		font-size: 1.6rem;
	}

	.hfo-dap-hero-stat span {
		margin: 0;
	}

	.hfo-dap-toolbar {
		display: grid;
	}

	.hfo-dap-toolbar-controls {
		justify-content: space-between;
		width: 100%;
	}

	.hfo-dap-toolbar-controls label {
		flex: 1;
	}

	.hfo-dap-toolbar select {
		min-width: 0;
	}

	.hfo-dap-shared-notice {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.hfo-dap-shared-notice button {
		padding-left: 0;
	}

	.hfo-dap-grid {
		grid-template-columns: 1fr;
	}

	.hfo-dap-card-image {
		aspect-ratio: 16 / 10;
	}

	.hfo-dap-dialog {
		padding: 0;
	}

	.hfo-dap-dialog-panel {
		border-radius: 0;
		min-height: 100%;
		padding: 64px 18px 30px;
	}

	.hfo-dap-detail-header {
		display: block;
		padding: 0;
	}

	.hfo-dap-detail-image {
		aspect-ratio: 16 / 10;
		margin-bottom: 22px;
	}

	.hfo-dap-detail-specs > div {
		grid-template-columns: 1fr 1fr;
	}

	.hfo-dap-compare-tray {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
	}

	.hfo-dap-compare-tray [data-hfo-compare-names] {
		display: none;
	}

	.hfo-dap-compare-tray > div:last-child {
		justify-content: space-between;
	}
}

@container hfo-dap (max-width: 420px) {
	.hfo-dap-search-row {
		align-items: stretch;
		flex-direction: column;
	}

	.hfo-dap-filter-toggle {
		justify-content: center;
	}

	.hfo-dap-view-toggle {
		display: none;
	}

	.hfo-dap-columns-options {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.hfo-single-spec-table > div {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}
