:root {
	--stk-black: #111;
	--stk-red: #e52b16;
	--stk-paper: #f7f5f0;
	--stk-white: #fff;
	--stk-grey: #6d6a66;
	--stk-line: #d7d3cc;
	--stk-soft: #ece9e3;
	--stk-shell: min(94vw, 1480px);
	--stk-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	--stk-sans: Arial, Helvetica, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: 8rem;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--stk-paper);
	color: var(--stk-black);
	font-family: var(--stk-sans);
	-webkit-font-smoothing: antialiased;
}

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

html.stk-menu-open {
	overflow: hidden;
}

img {
	max-width: 100%;
}

a,
button,
input,
select {
	-webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
	outline: 3px solid var(--stk-red);
	outline-offset: 3px;
}

.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;
}

.alignwide {
	width: var(--stk-shell);
	max-width: var(--stk-shell);
	margin-inline: auto;
}

.stk-header {
	position: sticky;
	top: 0;
	z-index: 500;
	width: 100%;
	border-bottom: 1px solid var(--stk-line);
	background: rgba(247, 245, 240, 0.97);
	transition: box-shadow 160ms ease;
	backdrop-filter: blur(12px);
}

.stk-header.is-scrolled {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stk-promo {
	min-height: 34px;
	padding: 0.45rem 4vw;
	background: var(--stk-black);
	color: var(--stk-white);
	font-size: 0.66rem;
	letter-spacing: 0.055em;
	text-align: center;
	text-transform: uppercase;
}

.stk-promo p {
	margin: 0;
}

.stk-promo span {
	margin-inline: 0.75rem;
	color: #898989;
}

.stk-header__main > p {
	display: contents;
}

.stk-header__main > br {
	display: none;
}

.stk-header__main {
	min-height: 82px;
	gap: clamp(1rem, 2.2vw, 2.5rem);
}

.stk-logo {
	flex: 0 0 auto;
	margin: 0;
	font-family: var(--stk-display);
	font-size: clamp(1.55rem, 2.4vw, 2.35rem);
	font-weight: 400;
	letter-spacing: 0.035em;
	line-height: 1;
	text-transform: uppercase;
}

.stk-logo a {
	color: inherit;
	text-decoration: none;
}

.stk-logo--image {
	display: block;
	width: clamp(150px, 15vw, 212px);
	line-height: 0;
}

.stk-logo--image img {
	display: block;
	width: 100%;
	height: auto;
}

.stk-nav {
	flex: 0 1 auto;
}

.stk-nav ul {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.stk-nav a,
.stk-nav button {
	padding: 0.55rem 0;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: inherit;
	font-family: var(--stk-sans);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.065em;
	text-transform: uppercase;
	cursor: pointer;
}

.stk-nav a:hover,
.stk-nav a:focus-visible,
.stk-nav button:hover,
.stk-nav button:focus-visible {
	border-bottom-color: var(--stk-black);
}

.stk-nav__dropdown {
	position: relative;
}

.stk-nav__dropdown > button span {
	margin-left: 0.35rem;
}

.stk-nav__dropdown > ul {
	position: absolute;
	top: calc(100% + 0.75rem);
	left: -1rem;
	display: none;
	width: 250px;
	align-items: stretch;
	gap: 0;
	padding: 0.75rem 1rem;
	border: 1px solid var(--stk-line);
	background: var(--stk-white);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.stk-nav__dropdown:hover > ul,
.stk-nav__dropdown:focus-within > ul,
.stk-nav__dropdown.is-open > ul {
	display: block;
}

.stk-nav__dropdown li {
	display: block;
}

.stk-nav__dropdown li a {
	display: block;
	padding: 0.72rem 0;
	border-bottom: 1px solid var(--stk-line);
	font-size: 0.68rem;
}

.stk-nav__dropdown .stk-nav__all a {
	border-bottom: 0;
	color: var(--stk-red);
}

.stk-search {
	display: flex;
	height: 40px;
	flex: 1 1 19rem;
	max-width: 390px;
	border: 1px solid #aaa6a0;
	background: var(--stk-white);
}

.stk-search input {
	width: 100%;
	min-width: 0;
	padding: 0 0.9rem;
	border: 0;
	background: transparent;
	color: var(--stk-black);
	font-size: 0.76rem;
}

.stk-search button {
	position: relative;
	display: grid;
	width: 44px;
	flex: 0 0 44px;
	place-items: center;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.stk-search button span {
	width: 14px;
	height: 14px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
}

.stk-search button span::after {
	position: absolute;
	width: 6px;
	height: 1.5px;
	background: currentColor;
	content: "";
	transform: translate(9px, 11px) rotate(45deg);
}

.stk-search button b {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.stk-tools {
	display: flex;
	flex: 0 0 auto;
	gap: 1.25rem;
}

.stk-tools a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.59rem;
	font-weight: 800;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.stk-tools a > span {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
}

.stk-tools__account > span::before {
	position: absolute;
	top: 0;
	left: 7px;
	width: 7px;
	height: 7px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
	content: "";
}

.stk-tools__account > span::after {
	position: absolute;
	bottom: 0;
	left: 3px;
	width: 14px;
	height: 8px;
	border: 1.5px solid currentColor;
	border-radius: 9px 9px 0 0;
	content: "";
}

.stk-tools__cart > span {
	border-bottom: 1.5px solid currentColor;
}

.stk-tools__cart > span::before {
	position: absolute;
	top: 4px;
	left: 3px;
	width: 13px;
	height: 9px;
	border: 1.5px solid currentColor;
	border-top: 0;
	content: "";
	transform: skew(-8deg);
}

.stk-tools__cart > span::after {
	position: absolute;
	bottom: -4px;
	left: 4px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 10px 0 currentColor;
	content: "";
}

.stk-tools__cart em {
	position: absolute;
	top: -10px;
	left: 13px;
	display: grid;
	width: 15px;
	height: 15px;
	place-items: center;
	border-radius: 50%;
	background: var(--stk-red);
	color: var(--stk-white);
	font-size: 0.55rem;
	font-style: normal;
}

.stk-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.stk-menu-toggle > span {
	display: block;
	width: 21px;
	height: 1.5px;
	margin-block: 5px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.stk-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.stk-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
	opacity: 0;
}

.stk-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

.stk-home {
	padding-bottom: clamp(2rem, 5vw, 5rem);
}

.stk-hero {
	display: grid !important;
	height: clamp(560px, calc(100svh - 150px), 620px);
	min-height: 560px;
	grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
	grid-template-rows: minmax(0, 1fr) auto;
	grid-template-areas:
		"copy showcase"
		"controls showcase";
	border-inline: 1px solid var(--stk-line);
	border-bottom: 1px solid var(--stk-line);
	background: #f9f7f2;
}

.stk-hero__copy {
	grid-area: copy;
	position: relative;
	z-index: 2;
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: end;
	padding: clamp(2rem, 3.2vw, 3.4rem) clamp(2rem, 4vw, 4.5rem) 0.75rem;
}

.stk-hero__controls {
	grid-area: controls;
	position: relative;
	z-index: 2;
	padding: 0 clamp(2rem, 4vw, 4.5rem) clamp(1.5rem, 2.5vw, 2.4rem);
}

.stk-hero h1 {
	max-width: none;
	margin: 0;
	font-size: clamp(3.8rem, 5.7vw, 5.2rem) !important;
	line-height: 0.88;
	text-transform: none;
}

.stk-hero__lead {
	margin: 0.8rem 0 0;
	font-family: var(--stk-sans);
	font-size: clamp(1rem, 1.5vw, 1.35rem);
	font-weight: 700;
}

.stk-hero__buttons {
	display: flex;
	gap: 0.8rem;
	margin-bottom: 1.55rem;
}

.stk-hero__buttons .stk-button {
	display: flex;
	width: 100%;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.3rem;
	border: 1px solid var(--stk-black);
	background: var(--stk-black);
	color: var(--stk-white);
	font-size: 0.66rem;
	font-weight: 800;
	text-transform: uppercase;
	transition: background-color 150ms ease, color 150ms ease;
}

.stk-hero__buttons .stk-button--outline {
	background: transparent;
	color: var(--stk-black);
}

.stk-hero__buttons .stk-button:hover {
	background: var(--stk-red);
	border-color: var(--stk-red);
	color: var(--stk-white);
}

.stk-size-finder {
	max-width: 480px;
	padding: 0.8rem 0.9rem 0.9rem;
	border: 1px solid var(--stk-line);
	background: rgba(255, 255, 255, 0.75);
}

.stk-size-finder__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.65rem;
}

.stk-size-finder__head strong {
	font-size: 0.72rem;
}

.stk-size-finder__head span {
	color: var(--stk-grey);
	font-size: 0.54rem;
}

.stk-size-finder__departments {
	display: flex;
	gap: 0.35rem;
	margin-bottom: 0.55rem;
}

.stk-size-finder__departments button {
	min-height: 30px;
	padding: 0.35rem 0.8rem;
	border: 1px solid var(--stk-line);
	background: var(--stk-white);
	color: var(--stk-black);
	font-size: 0.58rem;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}

.stk-size-finder__departments button[aria-pressed="true"] {
	border-color: var(--stk-black);
	background: var(--stk-black);
	color: var(--stk-white);
}

.stk-size-finder__sizes {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.35rem;
	padding-bottom: 0.25rem;
	overflow-x: auto;
	scrollbar-width: thin;
}

.stk-size-finder__sizes button {
	display: grid;
	flex: 0 0 auto;
	min-width: 35px;
	min-height: 30px;
	padding: 0.28rem;
	place-items: center;
	border: 1px solid var(--stk-line);
	background: var(--stk-white);
	color: var(--stk-black);
	font-size: 0.62rem;
	font-weight: 700;
	cursor: pointer;
	transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.stk-size-finder__sizes button:hover,
.stk-size-finder__sizes button:focus-visible,
.stk-size-finder__sizes button.is-selected {
	border-color: var(--stk-red);
	background: var(--stk-red);
	color: var(--stk-white);
}

.stk-size-finder__submit {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 0.65rem;
	padding: 0.48rem 1.15rem;
	background: var(--stk-black);
	color: var(--stk-white);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.stk-size-finder__submit br {
	display: none !important;
}

.stk-size-finder__submit:hover,
.stk-size-finder__submit:focus-visible {
	background: var(--stk-red);
	color: var(--stk-white);
}

.stk-size-finder__submit.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.stk-size-finder__status {
	display: inline;
	margin-left: 0.65rem;
	color: var(--stk-grey);
	font-size: 0.56rem;
}

.stk-search-pagination {
	margin: 2rem 0 0;
}

.stk-search-pagination ul {
	display: flex;
	justify-content: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.stk-search-pagination .page-numbers {
	display: grid;
	min-width: 38px;
	min-height: 38px;
	padding: 0.4rem;
	place-items: center;
	border: 1px solid var(--stk-line);
	background: var(--stk-white);
	color: var(--stk-black);
	font-size: 0.68rem;
	font-weight: 800;
}

.stk-search-pagination .page-numbers.current,
.stk-search-pagination .page-numbers:hover,
.stk-search-pagination .page-numbers:focus-visible {
	border-color: var(--stk-black);
	background: var(--stk-black);
	color: var(--stk-white);
}

.stk-hero__price-word {
	color: var(--stk-red);
}

.stk-hero__showcase {
	grid-area: showcase;
	position: relative;
	min-width: 0;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 42%),
		repeating-linear-gradient(90deg, #ebe7df 0, #ebe7df 1px, transparent 1px, transparent 54px),
		#f0ede7;
}

.stk-hero-cover {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.stk-hero-cover picture,
.stk-hero-cover img {
	display: block;
	width: 100%;
	height: 100%;
}

.stk-hero-cover img {
	object-fit: cover;
	object-position: center;
	transition: transform 280ms ease;
}

.stk-hero-cover > span {
	position: absolute;
	right: 1.2rem;
	bottom: 1.2rem;
	padding: 0.8rem 1.1rem;
	background: var(--stk-black);
	color: var(--stk-white);
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.stk-hero-cover:hover img {
	transform: scale(1.015);
}

.stk-hero-cover:focus-visible {
	outline: 3px solid var(--stk-red);
	outline-offset: -4px;
}

.stk-hero-products {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.stk-hero-editorial {
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.stk-hero-editorial img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.stk-hero-product {
	position: absolute;
	width: 49%;
	height: 51%;
	padding: 1.2rem;
	overflow: hidden;
	border: 0;
	background: transparent;
}

.stk-hero-product > a {
	display: grid;
	height: 100%;
	grid-template-rows: minmax(0, 1fr) auto auto;
	align-items: end;
}

.stk-hero-product img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.14));
	mix-blend-mode: multiply;
	transform: scale(1.08);
	transition: transform 240ms ease;
}

.stk-hero-product:hover img {
	transform: translateY(-4px) scale(1.12);
}

.stk-hero-product span {
	margin-top: 0.2rem;
	font-size: 0.62rem;
	font-weight: 900;
	text-transform: uppercase;
}

.stk-hero-product strong {
	color: var(--stk-red);
	font-family: var(--stk-display);
	font-size: clamp(1.65rem, 2.4vw, 2.8rem);
	font-weight: 400;
	line-height: 1;
}

.stk-hero-product .woocommerce-Price-currencySymbol {
	font-size: 0.75em;
}

.stk-hero-product--1 {
	top: -2%;
	left: 0;
}

.stk-hero-product--2 {
	top: 0;
	right: -1%;
}

.stk-hero-product--3 {
	bottom: -2%;
	left: 3%;
}

.stk-hero-product--4 {
	right: -2%;
	bottom: 0;
}

.stk-home-section {
	margin-top: clamp(2.4rem, 4.5vw, 4.5rem);
}

.stk-section-head {
	align-items: end;
	margin-bottom: 1.2rem;
}

.stk-section-head h2 {
	margin: 0;
	font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.stk-section-head p {
	margin: 0;
	font-size: 0.67rem;
	text-decoration: underline;
	text-underline-offset: 0.35rem;
}

.stk-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.15rem;
}

.stk-card {
	min-width: 0;
	border: 1px solid var(--stk-line);
	background: #fbfaf7;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.stk-card:hover {
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
	transform: translateY(-3px);
}

.stk-card__media {
	display: block;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
	background: var(--stk-soft);
}

.stk-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.5rem;
	transition: transform 220ms ease;
}

.stk-card:hover .stk-card__media img {
	transform: scale(1.035);
}

.stk-card__body {
	padding: 0.85rem 0.9rem 1rem;
}

.stk-card__brand {
	display: block;
	font-size: 0.63rem;
	font-weight: 900;
	text-transform: uppercase;
}

.stk-card h3 {
	display: -webkit-box;
	min-height: 2.2em;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 0.2rem 0 0.75rem;
	font-family: var(--stk-sans);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.1;
}

.stk-card__foot {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 0.5rem;
}

.stk-card__foot > span {
	overflow: hidden;
	color: var(--stk-grey);
	font-size: 0.55rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.stk-card__price {
	display: flex;
	align-items: end;
	gap: 0.45rem;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.stk-card__price del {
	order: 1;
	color: var(--stk-grey);
	font-size: 0.58rem;
}

.stk-card__price ins,
.stk-card__price > .woocommerce-Price-amount {
	order: 2;
	color: var(--stk-red);
	font-family: var(--stk-display);
	font-size: clamp(1.3rem, 1.8vw, 2rem);
	line-height: 1;
	text-decoration: none;
}

.stk-price-history {
	display: block;
	flex-basis: 100%;
	margin-top: 0.2rem;
	color: var(--stk-grey);
	font-family: var(--stk-sans);
	font-size: 0.52rem;
	font-weight: 500;
	line-height: 1.25;
	white-space: normal;
}

.stk-related-carousel {
	margin-top: clamp(3rem, 6vw, 6rem);
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
	border-top: 1px solid var(--stk-line);
}

.stk-related-carousel__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.25rem;
}

.stk-related-carousel__head span {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--stk-red);
	font-size: 0.6rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.stk-related-carousel__head h2 {
	margin: 0;
	font-family: var(--stk-display);
	font-size: clamp(2.35rem, 4vw, 4.5rem);
	line-height: 0.9;
}

.stk-related-carousel__head p {
	margin: 0.55rem 0 0;
	color: var(--stk-grey);
	font-size: 0.72rem;
}

.stk-related-carousel__controls {
	display: flex;
	flex: 0 0 auto;
	gap: 0.45rem;
}

.stk-related-carousel__controls button {
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--stk-black);
	background: var(--stk-white);
	color: var(--stk-black);
	font-size: 1.15rem;
	cursor: pointer;
}

.stk-related-carousel__controls button:hover {
	background: var(--stk-black);
	color: var(--stk-white);
}

.stk-related-carousel__controls button:disabled {
	border-color: var(--stk-line);
	color: #aaa7a2;
	cursor: default;
}

.stk-related-carousel__viewport {
	max-width: 100%;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.stk-related-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.stk-related-carousel__track {
	display: grid;
	min-width: 100%;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--stk-related-visible, 4) - 1) * 1.15rem) / var(--stk-related-visible, 4));
	gap: 1.15rem;
}

.stk-related-carousel .stk-card {
	scroll-snap-align: start;
}

.stk-departments--fixed {
	position: relative;
	display: grid;
	overflow: hidden;
	aspect-ratio: 958 / 136;
	grid-template-columns: 47.6% 51.04%;
	column-gap: 1.36%;
	background: #bba38a;
}

.stk-departments__concept {
	position: absolute;
	z-index: 0;
	top: -525%;
	left: -9.6%;
	width: 160.34%;
	max-width: none;
	height: auto;
	pointer-events: none;
	user-select: none;
}

.stk-departments--fixed .stk-department {
	position: relative;
	z-index: 1;
	display: block;
	min-height: 0;
	background: transparent;
}

.stk-departments--fixed .stk-department:focus-visible {
	outline: 3px solid var(--stk-red);
	outline-offset: -4px;
}

.stk-departments--fixed .stk-department:hover {
	background: rgba(255, 255, 255, 0.06);
}

.stk-budgets {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	background: var(--stk-black);
	color: var(--stk-white);
}

.stk-home-budgets > br,
.stk-budgets > br,
.stk-footer__benefits > br {
	display: none !important;
}

.stk-budgets a {
	display: grid;
	min-height: 120px;
	grid-template-columns: auto 1fr;
	grid-template-rows: 1fr auto;
	align-items: center;
	column-gap: 1rem;
	padding: 1.25rem clamp(1rem, 2.5vw, 2.3rem);
	border-right: 1px solid #666;
}

.stk-budgets a:last-child {
	border-right: 0;
}

.stk-budgets a > span {
	grid-row: 1 / span 2;
	font-size: 3rem;
}

.stk-budgets strong {
	align-self: end;
	font-family: var(--stk-display);
	font-size: clamp(1.65rem, 2.7vw, 2.8rem);
	font-weight: 400;
	line-height: 1;
}

.stk-budgets em {
	justify-self: start;
	min-width: 90px;
	padding: 0.42rem 1rem;
	background: var(--stk-white);
	color: var(--stk-black);
	font-size: 0.54rem;
	font-style: normal;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}

.stk-footer {
	width: 100%;
	margin-top: clamp(2rem, 5vw, 5rem);
}

.stk-footer__benefits {
	display: grid;
	padding-block: 1.5rem;
	border: 1px solid var(--stk-line);
	background: #fbfaf7;
}

.stk-footer__benefits > .wp-block-group {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding-inline: clamp(1rem, 2vw, 2rem);
	border-right: 1px solid var(--stk-line);
}

.stk-footer__benefits > .wp-block-group:last-child {
	border-right: 0;
}

.stk-footer__benefits strong {
	font-size: 1.8rem;
	font-weight: 400;
}

.stk-footer__benefits p {
	display: flex;
	margin: 0;
	flex-direction: column;
	font-size: 0.66rem;
}

.stk-footer__benefits b {
	font-size: 0.72rem;
}

.stk-footer__benefits span {
	color: var(--stk-grey);
}

.stk-footer__dark {
	padding: 4rem 0 1.5rem;
	background: var(--stk-black);
	color: #ddd;
}

.stk-footer__grid {
	gap: clamp(2rem, 4vw, 5rem);
}

.stk-logo--footer {
	color: var(--stk-white);
	font-size: 2.2rem;
}

.stk-footer h3 {
	margin: 0 0 1rem;
	font-family: var(--stk-sans);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.stk-footer p,
.stk-footer li,
.stk-footer a {
	font-size: 0.72rem;
	line-height: 1.65;
}

.stk-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.stk-footer-links a:hover {
	color: var(--stk-white);
	text-decoration: underline;
}

.stk-footer__bottom {
	margin-top: 3rem;
	padding-top: 1.2rem;
	border-top: 1px solid #3b3b3b;
	color: #8c8c8c;
}

.stk-footer__bottom p {
	margin: 0;
	font-size: 0.63rem;
}

.stk-mobile-dock {
	display: none;
}

.stk-main {
	min-height: 55vh;
	padding-block: clamp(2.5rem, 5vw, 5rem);
}

.stk-main > .wp-block-query-title,
.stk-page > h1,
.stk-single > h1,
.stk-empty-state > h1 {
	margin: 1rem 0 2rem;
	font-size: clamp(3rem, 6vw, 6.5rem);
}

.woocommerce-breadcrumb,
.wp-block-woocommerce-breadcrumbs {
	margin-bottom: 1rem;
	color: var(--stk-grey);
	font-size: 0.66rem;
}

.stk-catalog-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
	align-items: end;
	gap: 2rem;
	margin-bottom: 2rem;
}

.stk-catalog-intro .stk-size-finder {
	justify-self: end;
}

.stk-catalog-toolbar {
	margin: 1rem 0 1.5rem;
	padding-block: 0.75rem;
	border-block: 1px solid var(--stk-line);
}

.stk-catalog-toolbar,
.stk-catalog-toolbar select {
	font-size: 0.68rem;
}

.stk-woo-grid .wc-block-product,
.stk-woo-grid li.product {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--stk-line);
	background: #fbfaf7;
}

.stk-woo-grid .wc-block-components-product-image,
.stk-woo-grid .wc-block-grid__product-image {
	aspect-ratio: 1.35 / 1;
	margin: 0 !important;
	overflow: hidden;
	background: var(--stk-soft);
}

.stk-woo-grid .wc-block-components-product-image img,
.stk-woo-grid .wc-block-grid__product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.5rem;
}

.stk-woo-grid .wp-block-post-title,
.stk-woo-grid .wc-block-components-product-price,
.stk-woo-grid .wp-block-woocommerce-product-button {
	margin-inline: 0.85rem;
}

.stk-woo-grid .wp-block-post-title {
	min-height: 2.3em;
	margin-top: 0.8rem;
	margin-bottom: 0.6rem;
	font-family: var(--stk-sans);
	font-size: 0.76rem !important;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.15;
}

.stk-woo-grid .wc-block-components-product-price {
	display: flex;
	align-items: baseline;
	gap: 0.45rem;
	margin-bottom: 0.8rem;
}

.stk-woo-grid .wc-block-components-product-price ins,
.stk-woo-grid .wc-block-components-product-price > .woocommerce-Price-amount {
	color: var(--stk-red);
	font-family: var(--stk-display);
	font-size: 1.7rem;
	text-decoration: none;
}

.stk-woo-grid .wc-block-components-product-price del {
	color: var(--stk-grey);
	font-size: 0.65rem;
}

.stk-woo-grid .wp-block-button__link,
.stk-woo-grid .wp-block-woocommerce-product-button button {
	width: calc(100% - 1.7rem);
	min-height: 42px;
	margin: 0 0.85rem 0.85rem;
	border-radius: 0 !important;
	background: var(--stk-black);
	color: var(--stk-white);
	font-size: 0.62rem;
	text-transform: uppercase;
}

.wc-block-components-sale-badge,
.onsale {
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--stk-red) !important;
	color: var(--stk-white) !important;
	font-size: 0.56rem !important;
	font-weight: 800 !important;
}

.wp-block-query-pagination {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--stk-line);
	font-size: 0.75rem;
}

.stk-empty-state {
	padding: 3rem;
	border: 1px solid var(--stk-line);
	background: var(--stk-white);
	text-align: center;
}

.stk-pdp__top {
	align-items: start;
	gap: clamp(2rem, 4vw, 5rem);
}

.stk-pdp__summary {
	position: sticky;
	top: 135px;
	padding: clamp(1.3rem, 2.5vw, 2.2rem);
	border: 1px solid var(--stk-line);
	background: #fbfaf7;
}

.stk-pdp__summary .wp-block-post-title {
	margin: 0 0 1rem;
	font-family: var(--stk-display);
	font-size: clamp(2.5rem, 4.3vw, 4.5rem);
	line-height: 0.95;
}

.stk-pdp__summary .wc-block-components-product-price {
	margin-bottom: 1.3rem;
}

.stk-pdp__summary .wc-block-components-product-price ins,
.stk-pdp__summary .wc-block-components-product-price > .woocommerce-Price-amount {
	color: var(--stk-red);
	font-family: var(--stk-display);
	font-size: clamp(2.4rem, 4vw, 4rem);
	text-decoration: none;
}

.stk-pdp__summary .wc-block-components-product-price del {
	color: var(--stk-grey);
	font-size: 0.9rem;
}

.stk-pdp__summary .wp-block-post-excerpt {
	color: #494745;
	font-size: 0.82rem;
	line-height: 1.65;
}

.stk-pdp .variations,
.stk-pdp .variations tbody,
.stk-pdp .variations tr,
.stk-pdp .variations th,
.stk-pdp .variations td {
	display: block;
	width: 100%;
}

.stk-pdp .variations label {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
}

.stk-pdp select {
	width: 100%;
	min-height: 48px;
	padding: 0 0.8rem;
	border: 1px solid var(--stk-black);
	border-radius: 0;
	background: var(--stk-white);
}

.stk-pdp .single_add_to_cart_button {
	min-height: 50px;
	border: 0;
	border-radius: 0;
	background: var(--stk-red);
	color: var(--stk-white);
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
}

.stk-pdp__promises {
	margin: 1.5rem 0;
	padding: 1rem 0;
	border-block: 1px solid var(--stk-line);
}

.stk-pdp__promises p {
	margin: 0.35rem 0;
	font-size: 0.68rem;
}

.stk-pdp__availability {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1rem;
	font-size: 0.7rem;
	font-weight: 800;
}

.stk-pdp__availability span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--stk-grey);
}

.stk-pdp__availability.is-available span {
	background: #168447;
}

.stk-pdp__availability.is-unavailable span {
	background: var(--stk-red);
}

.stk-pdp .wp-block-woocommerce-product-details {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--stk-line);
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	width: var(--stk-shell);
	max-width: var(--stk-shell);
	margin-inline: auto;
	padding-block: clamp(2rem, 5vw, 5rem);
}

.stk-cart-promise {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 1rem 0 0;
	padding: 0.9rem 1rem;
	border: 1px solid var(--stk-line);
	background: var(--stk-white);
	font-size: 0.72rem;
}

.stk-cart-promise strong {
	text-transform: uppercase;
}

.stk-cart-promise span {
	color: var(--stk-grey);
}

.stk-commerce-page {
	padding-block: clamp(2rem, 5vw, 5rem);
}

.stk-commerce-page > .wp-block-post-title {
	margin: 0 0 1rem;
	font-family: var(--stk-display);
	font-size: clamp(2.8rem, 5vw, 5rem);
	line-height: 0.95;
}

.stk-commerce-page .wp-block-post-content {
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.wc-block-cart,
.wc-block-checkout {
	gap: clamp(1.5rem, 3vw, 3rem) !important;
}

.wc-block-cart__main,
.wc-block-cart__sidebar,
.wc-block-checkout__main,
.wc-block-checkout__sidebar {
	min-width: 0;
}

.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
	align-self: start;
	padding: clamp(1rem, 2vw, 1.5rem) !important;
	border: 1px solid var(--stk-line);
	background: #fbfaf7;
}

.wc-block-components-order-summary-item,
.wc-block-cart-item__wrap {
	overflow-wrap: anywhere;
}

.wc-block-components-button {
	min-height: 50px;
}

.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
	border-radius: 0 !important;
	background: var(--stk-red) !important;
	color: var(--stk-white) !important;
	font-size: 0.72rem !important;
	font-weight: 800 !important;
	text-transform: uppercase;
}

.wc-block-components-text-input input,
.wc-block-components-combobox-control input,
.wc-block-components-select select {
	border-radius: 0 !important;
}

@media (max-width: 1180px) {
	.stk-header__main {
		gap: 1rem;
	}

	.stk-nav {
		display: none;
	}

	.stk-menu-toggle {
		display: block;
		order: -1;
	}

	.stk-menu-toggle {
		margin-right: auto;
	}

	.stk-nav.is-open {
		position: fixed;
		top: 116px;
		left: 0;
		display: block;
		width: 100%;
		height: calc(100vh - 116px);
		padding: 2rem 5vw;
		overflow-y: auto;
		background: var(--stk-paper);
	}

	.stk-nav.is-open > ul {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.stk-nav.is-open > ul > li {
		width: 100%;
		border-bottom: 1px solid var(--stk-line);
	}

	.stk-nav.is-open a,
	.stk-nav.is-open button {
		display: flex;
		width: 100%;
		justify-content: space-between;
		padding: 1rem 0;
		font-size: 0.8rem;
	}

	.stk-nav.is-open .stk-nav__dropdown > ul {
		position: static;
		display: none;
		width: 100%;
		padding: 0 0 0.7rem 1rem;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.stk-nav.is-open .stk-nav__dropdown.is-open > ul {
		display: block;
	}

	.stk-search {
		max-width: none;
	}

	.stk-tools b {
		display: none;
	}

	.stk-hero {
		grid-template-columns: minmax(320px, 0.85fr) minmax(430px, 1.15fr);
	}
}

@media (max-width: 820px) {
	html {
		scroll-padding-top: 7rem;
	}

	body {
		padding-bottom: 68px;
	}

	body.admin-bar .stk-header {
		top: 46px;
	}

	.stk-promo {
		min-height: 30px;
		padding: 0.4rem 0.7rem;
		font-size: 0.56rem;
	}

	.stk-promo p {
		white-space: nowrap;
	}

	.stk-header__main {
		width: 100%;
		min-height: 66px;
		padding-inline: 0.7rem;
	}

	.stk-logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	.stk-logo--image {
		width: 142px;
	}

	.stk-menu-toggle {
		flex: 0 0 42px;
	}

	.stk-header__main {
		position: relative;
	}

	.stk-search {
		position: absolute;
		top: 50%;
		right: calc(0.7rem + 50px);
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
		margin-left: 0;
		border: 0;
		background: transparent;
		transform: translateY(-50%);
	}

	.stk-search input {
		position: fixed;
		z-index: 3;
		top: 96px;
		left: 0;
		display: none;
		width: 100%;
		height: 52px;
		padding-inline: 1rem 4rem;
		border-block: 1px solid var(--stk-line);
		background: var(--stk-white);
	}

	.stk-search.is-open input {
		display: block;
	}

	.stk-search button {
		width: 42px;
		height: 42px;
	}

	.stk-tools {
		gap: 0;
	}

	.stk-tools__account {
		display: none !important;
	}

	.stk-tools__cart {
		width: 42px;
		height: 42px;
		justify-content: center;
	}

	.stk-nav.is-open {
		top: 96px;
		height: calc(100vh - 96px - 68px);
	}

	.stk-hero {
		width: 100%;
		height: auto;
		min-height: auto;
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto 220px auto;
		grid-template-areas:
			"copy"
			"showcase"
			"controls";
		border-inline: 0;
	}

	.stk-hero > .stk-hero__copy,
	.stk-hero > .stk-hero__showcase,
	.stk-hero > .stk-hero__controls {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.stk-hero__copy {
		padding: 1.55rem 1rem 0.7rem;
	}

	.stk-hero__controls {
		padding: 0.55rem 1rem 0.75rem;
	}

	.stk-hero h1 {
		max-width: none;
		font-size: clamp(3.15rem, 14vw, 4rem) !important;
		line-height: 0.87;
	}

	.stk-hero__lead {
		margin: 0.75rem 0 1rem;
		font-size: 1rem;
	}

	.stk-hero-cover {
		min-height: 220px;
	}

	.stk-hero-cover > span {
		right: 0.75rem;
		bottom: 0.75rem;
		padding: 0.65rem 0.8rem;
		font-size: 0.56rem;
	}

	.stk-hero__buttons {
		margin-bottom: 0.65rem;
	}

	.stk-hero__buttons .stk-button {
		min-height: 42px;
	}

	.stk-size-finder {
		max-width: none;
		padding: 0.6rem 0.75rem 0.65rem;
	}

	.stk-size-finder__head {
		margin-bottom: 0.4rem;
	}

	.stk-size-finder__departments {
		margin-bottom: 0.35rem;
	}

	.stk-size-finder__sizes {
		flex-wrap: nowrap;
		padding-bottom: 0.35rem;
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.stk-size-finder__sizes a {
		flex: 0 0 36px;
	}

	.stk-hero__showcase {
		min-height: 220px;
	}

	.stk-hero-products {
		min-height: 220px;
	}

	.stk-hero-product {
		display: none;
	}

	.stk-hero-product--1 {
		inset: 0;
		display: block;
		width: 100%;
		height: 100%;
		padding: 0.75rem 1rem 1rem;
		border: 0;
		background: transparent;
		transform: none;
	}

	.stk-hero-product--1 > a {
		position: relative;
		display: block;
	}

	.stk-hero-product--1 img {
		position: absolute;
		inset: 0 0 30px;
		height: calc(100% - 30px);
		object-fit: contain;
		object-position: center;
		transform: scale(1.48);
	}

	.stk-hero-product--1 span {
		position: absolute;
		bottom: 7px;
		left: 50%;
		margin: 0;
		font-size: 0.72rem;
		transform: translateX(-50%);
	}

	.stk-hero-product--1 strong {
		position: absolute;
		right: 0;
		bottom: 2px;
		font-size: clamp(1.8rem, 9vw, 2.5rem);
	}

	.stk-home-section {
		width: 100%;
		padding-inline: 0.75rem;
		margin-top: 2rem;
	}

	.stk-home-offers {
		margin-top: 1.1rem;
	}

	.stk-section-head h2 {
		font-size: 2rem;
	}

	.stk-product-grid {
		grid-template-columns: repeat(4, minmax(145px, 1fr));
		gap: 0.55rem;
		padding-bottom: 0.5rem;
		overflow-x: auto;
		scroll-snap-type: x proximity;
	}

	.stk-card {
		scroll-snap-align: start;
	}

	.stk-card__media {
		aspect-ratio: 1.4 / 1;
	}

	.stk-card__body {
		padding: 0.65rem;
	}

	.stk-card h3 {
		min-height: 2.2em;
		font-size: 0.62rem;
	}

	.stk-card__foot {
		display: block;
	}

	.stk-card__foot > span {
		display: block;
		margin-bottom: 0.45rem;
	}

	.stk-card__price {
		justify-content: flex-end;
	}

	.stk-card__price ins,
	.stk-card__price > .woocommerce-Price-amount {
		font-size: 1.45rem;
	}

	.stk-departments--fixed {
		aspect-ratio: 298 / 95;
		grid-template-columns: 49.15% 49.15%;
		column-gap: 1.7%;
	}

	.stk-departments--fixed .stk-departments__concept {
		top: -803.16%;
		left: -391.28%;
		width: 515.44%;
	}

	.stk-departments--fixed .stk-department {
		grid-column: auto !important;
		min-height: 0;
	}

	.stk-budgets {
		grid-template-columns: 1fr;
	}

	.stk-budgets a {
		min-height: 82px;
		border-right: 0;
		border-bottom: 1px solid #555;
	}

	.stk-budgets a:last-child {
		border-bottom: 0;
	}

	.stk-commerce-page {
		padding-inline: 0.8rem;
	}

	.stk-cart-promise {
		align-items: flex-start;
		flex-direction: column;
	}

	.wc-block-cart__sidebar,
	.wc-block-checkout__sidebar {
		padding: 1rem !important;
	}

	.stk-footer__benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.stk-footer__benefits > .wp-block-group {
		padding: 0.9rem;
		border-right: 0;
		border-bottom: 1px solid var(--stk-line);
	}

	.stk-footer__dark {
		padding-inline: 1rem;
	}

	.stk-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stk-logo--footer {
		position: static;
		display: block;
		margin-bottom: 0.75rem;
		transform: none;
	}

	.stk-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.stk-mobile-dock {
		position: fixed;
		z-index: 600;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		height: 68px;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		padding-bottom: env(safe-area-inset-bottom);
		background: var(--stk-black);
		color: var(--stk-white);
		box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.15);
	}

	.stk-mobile-dock a {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 0.25rem;
	}

	/*
	 * wpautop può inserire un <br> tra i link prodotti dallo shortcode.
	 * Quei nodi diventerebbero celle della griglia e spezzerebbero il dock
	 * su due righe: la barra deve avere sempre e soltanto cinque colonne.
	 */
	.stk-mobile-dock > br {
		display: none;
	}

	.stk-mobile-dock span {
		position: relative;
		display: block;
		width: 19px;
		height: 18px;
	}

	.stk-mobile-dock b {
		font-size: 0.47rem;
		font-weight: 700;
		text-transform: uppercase;
	}

	.stk-mobile-dock__home span::before {
		position: absolute;
		top: 4px;
		left: 3px;
		width: 13px;
		height: 12px;
		background: currentColor;
		content: "";
		clip-path: polygon(50% 0, 100% 42%, 86% 42%, 86% 100%, 14% 100%, 14% 42%, 0 42%);
	}

	.stk-mobile-dock__donna span::before,
	.stk-mobile-dock__uomo span::before,
	.stk-mobile-dock__account span::before {
		position: absolute;
		top: 0;
		left: 6px;
		width: 7px;
		height: 7px;
		border: 1.3px solid currentColor;
		border-radius: 50%;
		content: "";
	}

	.stk-mobile-dock__donna span::after,
	.stk-mobile-dock__uomo span::after,
	.stk-mobile-dock__account span::after {
		position: absolute;
		bottom: 0;
		left: 2px;
		width: 15px;
		height: 8px;
		border: 1.3px solid currentColor;
		border-radius: 9px 9px 0 0;
		content: "";
	}

	.stk-mobile-dock__taglia span::before {
		position: absolute;
		inset: 2px 0;
		border: 1.3px solid currentColor;
		border-radius: 70% 10% 35% 20%;
		content: "";
		transform: rotate(-18deg);
	}

	.stk-main {
		width: 100%;
		padding: 2rem 0.75rem;
	}

	.stk-catalog-intro {
		display: block;
	}

	.stk-catalog-intro .stk-size-finder {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		margin-top: 1rem;
		justify-self: stretch;
	}

	.stk-main > .wp-block-query-title,
	.stk-page > h1,
	.stk-single > h1,
	.stk-empty-state > h1 {
		font-size: 3.4rem;
	}

	.stk-catalog-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.stk-pdp__top {
		display: block;
	}

	.stk-pdp__summary {
		position: static;
		margin-top: 1.2rem;
	}

	.stk-pdp .woocommerce-product-gallery__image > a {
		display: flex;
		height: min(60vw, 240px);
		align-items: center;
		justify-content: center;
	}

	.stk-pdp .woocommerce-product-gallery__image > a > img {
		width: 100%;
		height: 100% !important;
		object-fit: contain;
	}

	.stk-pdp .flex-control-thumbs {
		display: flex;
		gap: 0.4rem;
	}

	.stk-pdp .flex-control-thumbs li {
		float: none !important;
		width: 60px !important;
	}

	.stk-pdp .flex-control-thumbs img {
		width: 60px;
		height: 60px;
		object-fit: contain;
	}

	.stk-pdp__summary .wp-block-post-title {
		font-size: clamp(2.35rem, 12vw, 2.9rem);
	}

	.stk-related-carousel {
		margin-top: 3.2rem;
		padding-top: 1.3rem;
	}

	.stk-related-carousel__head {
		align-items: flex-end;
		margin-bottom: 0.9rem;
	}

	.stk-related-carousel__head h2 {
		font-size: 2.65rem;
	}

	.stk-related-carousel__head p {
		max-width: 23ch;
		font-size: 0.64rem;
	}

	.stk-related-carousel__controls button {
		width: 40px;
		height: 40px;
	}

	.stk-related-carousel__track {
		grid-auto-columns: minmax(220px, 78%);
		gap: 0.75rem;
	}

	.wp-block-woocommerce-cart,
	.wp-block-woocommerce-checkout {
		width: 100%;
		padding: 1.5rem 0.75rem;
	}

	.stk-cart-promise {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.stk-footer__grid {
		grid-template-columns: 1fr;
	}

	.stk-footer__benefits {
		grid-template-columns: 1fr;
	}

	.stk-departments--fixed {
		min-height: 104px;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
