/*
 * Opał Vintegro — arkusz główny.
 * Zasada: design system żyje w theme.json, tutaj tylko to, czego bloki nie potrafią same.
 */

:root {
	--ov-radius-sm: 4px;
	--ov-radius-md: 8px;
	--ov-radius-lg: 14px;
	--ov-line: #e2ded8;
	--ov-line-dark: #2b2f36;
	--ov-transition: 180ms cubic-bezier(.2, .6, .3, 1);
	--ov-header-height: 76px;
}

/* --- Podstawy ---------------------------------------------------------- */

html {
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	height: auto;
}

:where(a, button, input, select, textarea, summary, details):focus-visible {
	outline: 2px solid var(--wp--preset--color--amber);
	outline-offset: 2px;
	border-radius: var(--ov-radius-sm);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 999;
	width: auto;
	height: auto;
	clip: auto;
	padding: .8rem 1.2rem;
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--white);
	border-radius: var(--ov-radius-md);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}

/* --- Przyciski motywu (poza blokiem core/button) ------------------------ */

.ov-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .95rem 1.6rem;
	border: 1px solid transparent;
	border-radius: var(--ov-radius-md);
	background: var(--wp--preset--color--ember);
	color: var(--wp--preset--color--ink);
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background var(--ov-transition), color var(--ov-transition), border-color var(--ov-transition);
}

.ov-btn:hover,
.ov-btn:focus {
	background: var(--wp--preset--color--amber);
	color: var(--wp--preset--color--ink);
	text-decoration: none;
}

.ov-btn--outline {
	background: transparent;
	border-color: currentColor;
	color: inherit;
}

.ov-btn--outline:hover,
.ov-btn--outline:focus {
	background: var(--wp--preset--color--ember);
	border-color: var(--wp--preset--color--ember);
	color: var(--wp--preset--color--ink);
}

.ov-btn--small {
	padding: .6rem 1rem;
	font-size: var(--wp--preset--font-size--x-small);
}

/* --- Style bloków z rejestru ------------------------------------------- */

.is-style-ov-card {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--ov-line);
	border-radius: var(--ov-radius-lg);
	padding: clamp(1.25rem, 3vw, 2rem);
}

.is-style-ov-panel-dark {
	background: var(--wp--preset--color--graphite);
	color: var(--wp--preset--color--ash);
	border-radius: var(--ov-radius-lg);
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

.is-style-ov-panel-dark :where(h1, h2, h3, h4, h5, h6) {
	color: var(--wp--preset--color--white);
}

.wp-block-button.is-style-ov-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid currentColor;
	color: inherit;
}

.wp-block-button.is-style-ov-outline .wp-block-button__link:hover {
	background: var(--wp--preset--color--ember);
	border-color: var(--wp--preset--color--ember);
	color: var(--wp--preset--color--ink);
}

.wp-block-button.is-style-ov-quiet .wp-block-button__link {
	background: rgba(255, 255, 255, .08);
	color: inherit;
}

.is-style-ov-checks {
	list-style: none;
	padding-left: 0;
}

.is-style-ov-checks li {
	position: relative;
	padding-left: 1.9rem;
	margin-bottom: .6rem;
}

.is-style-ov-checks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .45em;
	width: 12px;
	height: 7px;
	border-left: 2px solid var(--wp--preset--color--ember);
	border-bottom: 2px solid var(--wp--preset--color--ember);
	transform: rotate(-45deg);
}

.is-style-ov-rule::after {
	content: "";
	display: block;
	width: 84px;
	height: 3px;
	margin-top: .85rem;
	border-radius: 2px;
	background: var(--wp--preset--gradient--ember-fire);
}

.is-style-ov-frame img {
	border-radius: var(--ov-radius-lg);
	border: 1px solid var(--ov-line);
}

/* --- Nagłówek ---------------------------------------------------------- */

.ov-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--ash);
	border-bottom: 1px solid var(--ov-line-dark);
}

.admin-bar .ov-header {
	top: 32px;
}

.ov-header a {
	color: inherit;
}

.ov-header .wp-block-site-logo img {
	max-height: 48px;
	width: auto;
}

.ov-header__bar {
	min-height: var(--ov-header-height);
}

.ov-header__utility a {
	text-decoration: none;
}

.ov-topbar {
	background: var(--wp--preset--color--graphite);
	color: var(--wp--preset--color--mute);
	font-size: var(--wp--preset--font-size--x-small);
}

.ov-topbar a {
	color: var(--wp--preset--color--ash);
	text-decoration: none;
}

.ov-topbar a:hover {
	color: var(--wp--preset--color--amber);
}

/* --- Wyszukiwarka ------------------------------------------------------ */

.ov-search {
	position: relative;
	width: 100%;
	max-width: 460px;
}

.ov-search__form {
	display: flex;
	align-items: center;
	gap: .25rem;
	background: rgba(255, 255, 255, .07);
	border: 1px solid var(--ov-line-dark);
	border-radius: var(--ov-radius-md);
	padding: .25rem .25rem .25rem .85rem;
}

.ov-search__input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: var(--wp--preset--font-size--small);
	padding: .6rem 0;
}

.ov-search__input::placeholder {
	color: var(--wp--preset--color--mute);
}

.ov-search__input:focus {
	outline: none;
}

.ov-search__form:focus-within {
	border-color: var(--wp--preset--color--ember);
}

.ov-search__submit {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: var(--ov-radius-sm);
	background: var(--wp--preset--color--ember);
	color: var(--wp--preset--color--ink);
	cursor: pointer;
}

.ov-search__results {
	position: absolute;
	inset-inline: 0;
	top: calc(100% + .5rem);
	z-index: 120;
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--graphite);
	border: 1px solid var(--ov-line);
	border-radius: var(--ov-radius-md);
	box-shadow: 0 24px 48px -24px rgba(11, 11, 12, .5);
	overflow: hidden;
}

.ov-search__result {
	display: flex;
	gap: .85rem;
	align-items: center;
	padding: .7rem .85rem;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid var(--ov-line);
}

.ov-search__result:last-child {
	border-bottom: 0;
}

.ov-search__result:hover,
.ov-search__result:focus,
.ov-search__result.is-active {
	background: #faf8f5;
}

.ov-search__result img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: var(--ov-radius-sm);
	background: var(--wp--preset--color--paper);
}

.ov-search__result-name {
	font-weight: 600;
	display: block;
	line-height: 1.3;
}

.ov-search__result-meta {
	font-size: var(--wp--preset--font-size--x-small);
	color: var(--wp--preset--color--mute);
}

.ov-search__empty {
	padding: .9rem;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--mute);
}

/* --- Hero -------------------------------------------------------------- */

.ov-hero {
	position: relative;
	overflow: hidden;
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--ash);
}

.ov-hero :where(h1, h2) {
	color: var(--wp--preset--color--white);
	max-width: 16ch;
}

.ov-hero__lead {
	max-width: 52ch;
	color: var(--wp--preset--color--ash);
}

.ov-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2.5rem;
	border-top: 1px solid var(--ov-line-dark);
	padding-top: 1.5rem;
	margin-top: 2rem;
	list-style: none;
}

.ov-hero__fact {
	max-width: 22ch;
}

.ov-hero__fact strong {
	display: block;
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--large);
	color: var(--wp--preset--color--white);
}

.ov-hero__fact span {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--mute);
}

/* --- Kategorie --------------------------------------------------------- */

.ov-cats__list,
.ov-suppliers__list {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 782px) {
	.ov-cols-3 .ov-cats__list,
	.ov-cols-3 .ov-suppliers__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ov-cols-4 .ov-cats__list,
	.ov-cols-4 .ov-suppliers__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.ov-cat {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--wp--preset--color--white);
	border: 1px solid var(--ov-line);
	border-radius: var(--ov-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: border-color var(--ov-transition), transform var(--ov-transition);
}

.ov-cat:hover {
	border-color: var(--wp--preset--color--ember);
	text-decoration: none;
}

.ov-cat__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: linear-gradient(180deg, #1b1e23, #0b0b0c);
	overflow: hidden;
}

.ov-cat__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms cubic-bezier(.2, .6, .3, 1);
}

.ov-cat:hover .ov-cat__media img {
	transform: scale(1.04);
}

.ov-cat__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(80% 60% at 50% 110%, rgba(255, 106, 23, .55), transparent 70%),
		linear-gradient(180deg, #1b1e23, #0b0b0c);
}

.ov-cat__body {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.1rem 1.15rem;
}

.ov-cat__name {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 700;
	font-size: var(--wp--preset--font-size--large);
	letter-spacing: -.02em;
}

.ov-cat__count {
	font-size: var(--wp--preset--font-size--x-small);
	color: var(--wp--preset--color--mute);
	white-space: nowrap;
}

/* --- Dostawcy ---------------------------------------------------------- */

.ov-supplier {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	background: var(--wp--preset--color--white);
	border: 1px solid var(--ov-line);
	border-radius: var(--ov-radius-lg);
	padding: 1.5rem;
}

.ov-supplier__logo {
	display: flex;
	align-items: center;
	min-height: 64px;
	margin-bottom: .4rem;
}

.ov-supplier__logo img {
	max-height: 64px;
	width: auto;
	object-fit: contain;
}

.ov-supplier__name {
	font-size: var(--wp--preset--font-size--large);
	margin: 0;
}

.ov-supplier__scope {
	margin: 0;
	font-size: var(--wp--preset--font-size--x-small);
	color: var(--wp--preset--color--mute);
}

.ov-supplier__text {
	margin: 0;
	font-size: var(--wp--preset--font-size--small);
}

.ov-supplier__link {
	margin-top: auto;
	padding-top: .75rem;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
}

/* --- FAQ --------------------------------------------------------------- */

.ov-faq__item {
	border-bottom: 1px solid var(--ov-line);
}

.ov-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 0;
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--large);
	font-weight: 600;
	letter-spacing: -.02em;
	cursor: pointer;
	list-style: none;
}

.ov-faq__question::-webkit-details-marker {
	display: none;
}

.ov-faq__question::after {
	content: "";
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--wp--preset--color--ember);
	border-bottom: 2px solid var(--wp--preset--color--ember);
	transform: rotate(45deg);
	transition: transform var(--ov-transition);
}

.ov-faq__item[open] .ov-faq__question::after {
	transform: rotate(-135deg);
}

.ov-faq__answer {
	padding-bottom: 1.35rem;
	max-width: 70ch;
}

.ov-faq__answer > :first-child {
	margin-top: 0;
}

/* --- Filtry sklepu ----------------------------------------------------- */

.ov-filters__head {
	display: none;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.ov-filters__close {
	border: 0;
	background: none;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	color: inherit;
}

.ov-filters__group {
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--ov-line);
}

.ov-filters__legend {
	font-size: var(--wp--preset--font-size--small);
	font-weight: 700;
	margin: 0 0 .65rem;
}

.ov-filters__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .35rem;
}

.ov-filters__link,
.ov-filters__toggle-link {
	display: flex;
	justify-content: space-between;
	gap: .75rem;
	padding: .35rem .5rem;
	margin-left: -.5rem;
	border-radius: var(--ov-radius-sm);
	color: inherit;
	text-decoration: none;
	font-size: var(--wp--preset--font-size--small);
}

.ov-filters__link:hover,
.ov-filters__toggle-link:hover {
	background: #efece7;
	text-decoration: none;
}

.ov-filters__link.is-active,
.ov-filters__toggle-link.is-active {
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--white);
}

.ov-filters__count {
	color: var(--wp--preset--color--mute);
	font-variant-numeric: tabular-nums;
}

.ov-filters__link.is-active .ov-filters__count {
	color: var(--wp--preset--color--amber);
}

.ov-filters__price {
	display: flex;
	align-items: center;
	gap: .4rem;
}

.ov-filters__price input {
	width: 100%;
	min-width: 0;
	padding: .5rem .6rem;
	border: 1px solid var(--ov-line);
	border-radius: var(--ov-radius-sm);
	background: var(--wp--preset--color--white);
	font-size: var(--wp--preset--font-size--small);
}

.ov-filters__reset {
	font-size: var(--wp--preset--font-size--small);
	padding-top: 1rem;
}

.ov-filters-trigger {
	display: none;
}

/* --- Parametry i skala żaru -------------------------------------------- */

.ov-specs__title {
	font-size: var(--wp--preset--font-size--x-large);
	margin-bottom: 1rem;
}

.ov-specs__list {
	margin: 0;
	border-top: 1px solid var(--ov-line);
}

.ov-specs__row {
	display: grid;
	grid-template-columns: minmax(9rem, 40%) 1fr;
	gap: 1rem;
	padding: .8rem 0;
	border-bottom: 1px solid var(--ov-line);
}

.ov-specs__row dt {
	color: var(--wp--preset--color--mute);
	font-size: var(--wp--preset--font-size--small);
}

.ov-specs__row dd {
	margin: 0;
	font-family: var(--wp--preset--font-family--numeric);
	font-size: var(--wp--preset--font-size--small);
	font-variant-numeric: tabular-nums;
}

.ov-heat {
	margin: 0 0 1.5rem;
	padding: 1.1rem 1.25rem 1.25rem;
	background: var(--wp--preset--color--ink);
	border-radius: var(--ov-radius-lg);
	color: var(--wp--preset--color--ash);
}

.ov-heat__meta {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: .7rem;
}

.ov-heat__label {
	font-size: var(--wp--preset--font-size--x-small);
	color: var(--wp--preset--color--mute);
}

.ov-heat__value {
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--large);
	font-weight: 700;
	color: var(--wp--preset--color--white);
}

.ov-heat__track {
	height: 8px;
	border-radius: 999px;
	background: #22262c;
	overflow: hidden;
}

.ov-heat__fill {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: var(--wp--preset--gradient--ember-fire);
}

.ov-heat__ticks {
	display: flex;
	justify-content: space-between;
	margin-top: .5rem;
	font-size: .75rem;
	color: var(--wp--preset--color--mute);
	font-variant-numeric: tabular-nums;
}

/* --- Kontakt i formularz ----------------------------------------------- */

.ov-contact__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
}

.ov-contact__item {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid var(--ov-line);
}

.ov-contact--inverted .ov-contact__item {
	border-color: var(--ov-line-dark);
}

.ov-contact__label {
	font-size: var(--wp--preset--font-size--x-small);
	color: var(--wp--preset--color--mute);
}

.ov-contact__value {
	color: inherit;
	text-decoration: none;
}

.ov-contact__value--strong {
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--x-large);
	font-weight: 700;
	letter-spacing: -.03em;
}

.ov-map {
	margin-top: 1.5rem;
}

.ov-map__note {
	font-size: var(--wp--preset--font-size--x-small);
	color: var(--wp--preset--color--mute);
	max-width: 46ch;
}

.ov-map iframe {
	width: 100%;
	height: 380px;
	border: 0;
	border-radius: var(--ov-radius-lg);
}

.ov-form__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ov-form__field {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	margin: 0;
}

.ov-form__field--wide {
	grid-column: 1 / -1;
}

.ov-form label {
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
}

.ov-form input[type="text"],
.ov-form input[type="email"],
.ov-form input[type="tel"],
.ov-form textarea {
	width: 100%;
	padding: .85rem 1rem;
	border: 1px solid var(--ov-line);
	border-radius: var(--ov-radius-md);
	background: var(--wp--preset--color--white);
	font: inherit;
	font-size: var(--wp--preset--font-size--small);
}

.ov-form input:focus,
.ov-form textarea:focus {
	border-color: var(--wp--preset--color--ember);
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 106, 23, .18);
}

.ov-form__consent {
	display: flex;
	gap: .6rem;
	margin: 1rem 0 0;
	font-size: var(--wp--preset--font-size--x-small);
	color: #5b6068;
}

.ov-form__consent label {
	display: flex;
	gap: .6rem;
	font-weight: 400;
	align-items: flex-start;
}

.ov-form__hp {
	position: absolute;
	left: -9999px;
}

.ov-form__status {
	margin-top: .85rem;
	font-size: var(--wp--preset--font-size--small);
	min-height: 1.4em;
}

.ov-form__status.is-error {
	color: var(--wp--preset--color--fire);
}

.ov-form__status.is-success {
	color: #1f7a3d;
}

.ov-form.is-busy {
	opacity: .7;
	pointer-events: none;
}

/* --- Stopka ------------------------------------------------------------ */

.ov-footer {
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--mute);
}

.ov-footer :where(h1, h2, h3, h4, h5, h6) {
	color: var(--wp--preset--color--white);
}

.ov-footer a {
	color: var(--wp--preset--color--ash);
	text-decoration: none;
}

.ov-footer a:hover {
	color: var(--wp--preset--color--amber);
	text-decoration: underline;
}

.ov-footer .wp-block-site-logo img {
	max-height: 72px;
	width: auto;
}

.ov-footer__bottom {
	border-top: 1px solid var(--ov-line-dark);
	font-size: var(--wp--preset--font-size--x-small);
}

/* --- Komunikat w edytorze ---------------------------------------------- */

.ov-editor-notice {
	padding: 1rem 1.15rem;
	border: 1px dashed var(--wp--preset--color--mute);
	border-radius: var(--ov-radius-md);
	color: #5b6068;
	font-size: var(--wp--preset--font-size--small);
}

/* --- Mobile ------------------------------------------------------------ */

@media (max-width: 781px) {
	.ov-form__grid {
		grid-template-columns: 1fr;
	}

	.ov-filters-trigger {
		display: inline-flex;
	}

	.ov-filters {
		position: fixed;
		inset: 0 0 0 auto;
		z-index: 200;
		width: min(88vw, 380px);
		padding: 1.25rem 1.25rem 4rem;
		background: var(--wp--preset--color--white);
		box-shadow: -24px 0 48px -24px rgba(11, 11, 12, .55);
		overflow-y: auto;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform var(--ov-transition), visibility var(--ov-transition);
	}

	.ov-filters.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.ov-filters__head {
		display: flex;
	}

	.ov-scrim {
		position: fixed;
		inset: 0;
		z-index: 150;
		background: rgba(11, 11, 12, .55);
		border: 0;
	}
}

/* --- Dopracowanie: fakty w hero ---------------------------------------- */

.ov-hero__fact > :first-child {
	margin: 0;
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--large);
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--wp--preset--color--white);
}

.ov-hero__fact > :last-child {
	margin: .25rem 0 0;
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--mute);
}

/* --- Dopracowanie: nagłówek na różnych szerokościach -------------------- */

.ov-header__mobile-search {
	display: none;
}

.ov-header__utility {
	flex: 1 1 auto;
	min-width: 0;
}

@media (max-width: 1023px) {
	.ov-header__utility .ov-search {
		display: none;
	}

	.ov-header__mobile-search {
		display: block;
	}

	.ov-header__cta {
		display: none;
	}
}

@media (max-width: 600px) {
	.ov-topbar {
		display: none;
	}

	.ov-header .wp-block-site-logo img {
		max-height: 40px;
	}
}

.ov-account a {
	font-size: var(--wp--preset--font-size--x-small);
	text-decoration: none;
	white-space: nowrap;
}

/* --- Dopracowanie: lista kroków i stopka ------------------------------- */

.ov-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 1rem;
}

.ov-steps li {
	padding: 1rem 1.15rem;
	border-left: 2px solid var(--wp--preset--color--ember);
	background: rgba(255, 255, 255, .04);
	border-radius: 0 var(--ov-radius-md) var(--ov-radius-md) 0;
}

.ov-steps li strong {
	font-family: var(--wp--preset--font-family--display);
}

.ov-footer__links {
	list-style: none;
	padding: 0;
	display: grid;
	gap: .5rem;
}

.ov-legal-note {
	padding: 1rem 1.15rem;
	border: 1px solid var(--ov-line);
	border-left: 3px solid var(--wp--preset--color--amber);
	border-radius: var(--ov-radius-md);
	background: var(--wp--preset--color--white);
	font-size: var(--wp--preset--font-size--small);
}

/* --- Dopracowanie: przycisk filtrów na telefonie ------------------------ */

.ov-filters-trigger {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 1.25rem;
	z-index: 90;
	transform: translateX(-50%);
	box-shadow: 0 12px 28px -12px rgba(11, 11, 12, .6);
}

@media (max-width: 1023px) {
	.ov-filters-trigger {
		display: inline-flex;
	}

	.ov-filters {
		position: fixed;
		inset: 0 0 0 auto;
		z-index: 200;
		width: min(88vw, 380px);
		padding: 1.25rem 1.25rem 4rem;
		background: var(--wp--preset--color--white);
		color: var(--wp--preset--color--graphite);
		box-shadow: -24px 0 48px -24px rgba(11, 11, 12, .55);
		overflow-y: auto;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform var(--ov-transition), visibility var(--ov-transition);
	}

	.ov-filters.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.ov-filters__head {
		display: flex;
	}
}
