/* ==========================================================================
   JT-EksisPro — Base styles
   ========================================================================== */

:root {
	--font-ui: "Roboto Mono", ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
	--logo-aspect: 1938.113 / 1055.714;

	--container-width: none;
	--site-shell-width: 1800px;
	--container-padding: clamp(1.25rem, 4vw, 2.5rem);

	--radius-sm: 4px;
	--radius-md: 8px;

	--transition: 0.25s ease;

	--color-brand: #fe3b1f;
	--color-brand-rgb: 254, 59, 31;
	--color-brand-deep: #c42e18;
	--color-brand-darker: #6b1409;
	--color-brand-darkest: #1a0604;
	--color-brand-muted: #a32010;
	--color-brand-soft: #ffb4a8;
	--color-brand-light: #ff8c6e;
}

html[data-theme="dark"] {
	--color-bg: #0a0a0a;
	--color-surface: #141414;
	--color-text: #f4f4f4;
	--color-text-muted: #9a9a9a;
	--color-border: #2e2e2e;
	--color-accent: #f4f4f4;
	--color-header-bg: rgba(10, 10, 10, 0.92);
	--color-hover: #1c1c1c;
	--color-shadow: rgba(0, 0, 0, 0.45);
	--color-badge-bg: #f4f4f4;
	--color-badge-fg: #0a0a0a;
	--color-badge-new: #c6ff00;
	--color-badge-new-fg: #000000;
	--color-badge-update: var(--color-brand);
	--color-badge-update-fg: #ffffff;
	--color-badge-free: #ffffff;
	--color-badge-free-fg: #0a0a0a;
	--color-badge-featured: #0047ff;
	--color-badge-featured-fg: #ffffff;
	--color-row-hover-bg: #ffffff;
	--color-row-hover-fg: #111111;
	--color-logo: #ffffff;
	--color-catalog-view-active: var(--color-brand);
	--color-catalog-card-bg: #141414;
	--color-catalog-card-fg: #ffffff;
	--color-catalog-card-muted: rgba(255, 255, 255, 0.55);
	--color-catalog-card-hover-bg: #262626;
	--color-catalog-card-hover-fg: #ffffff;
}

html[data-theme="light"] {
	--color-bg: #f7f7f5;
	--color-surface: #ffffff;
	--color-text: #111111;
	--color-text-muted: #6b6b6b;
	--color-border: #e4e4e0;
	--color-accent: #111111;
	--color-header-bg: rgba(247, 247, 245, 0.92);
	--color-hover: #fafaf8;
	--color-shadow: rgba(0, 0, 0, 0.08);
	--color-badge-bg: #111111;
	--color-badge-fg: #ffffff;
	--color-badge-new: #c6ff00;
	--color-badge-new-fg: #000000;
	--color-badge-update: var(--color-brand);
	--color-badge-update-fg: #ffffff;
	--color-badge-free: #ffffff;
	--color-badge-free-fg: #0a0a0a;
	--color-badge-featured: #0047ff;
	--color-badge-featured-fg: #ffffff;
	--color-row-hover-bg: #262626;
	--color-row-hover-fg: #ffffff;
	--color-logo: #111111;
	--color-catalog-view-active: var(--color-brand);
	--color-catalog-card-bg: #ebebeb;
	--color-catalog-card-fg: #111111;
	--color-catalog-card-muted: #6b6b6b;
	--color-catalog-card-hover-bg: #000000;
	--color-catalog-card-hover-fg: #ffffff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scrollbar-gutter: stable;
}

html[data-theme="dark"] {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	color-scheme: dark;
	overflow-x: clip;
}

html[data-theme="light"] {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	color-scheme: light;
	overflow-x: clip;
}

body {
	margin: 0;
	min-width: 0;
	overflow-x: clip;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: background-color var(--transition), color var(--transition);
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

.icon {
	display: block;
	flex-shrink: 0;
}

.icon--arrow-right {
	width: 1.25rem;
	height: 1.25rem;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--container-padding);
}

.site-header__inner.container,
.site-footer .container,
.footer-social__inner {
	max-width: var(--site-shell-width);
}

/* Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-header-bg);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-border);
	transition: background-color var(--transition), border-color var(--transition);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 72px;
}

.site-branding {
	flex: 0 1 auto;
	min-width: 0;
	max-width: min(8rem, 34vw);
	overflow: visible;
}

.site-branding__link {
	display: inline-flex;
	align-items: center;
	overflow: visible;
}

.site-branding__link--logo {
	line-height: 1;
}

.site-branding__logo-image,
.site-logo__mark {
	display: block;
	flex-shrink: 0;
	width: min(8.5rem, 45vw);
	height: auto;
	max-width: 100%;
	aspect-ratio: var(--logo-aspect);
	overflow: visible;
}

.site-header .site-branding__logo-image,
.site-header .site-logo__mark {
	width: min(5.25rem, 32vw);
}

.site-logo,
.site-logo__link {
	display: inline-flex;
	align-items: center;
	overflow: visible;
	color: var(--color-logo);
	line-height: 1;
	transition: color var(--transition);
}

.site-logo__mark,
.site-logo__mark path {
	fill: currentColor;
}

html[data-theme="dark"] .site-logo,
html[data-theme="dark"] .site-logo__link {
	color: #ffffff;
}

html[data-theme="light"] .site-logo,
html[data-theme="light"] .site-logo__link {
	color: #111111;
}

.site-logo__link.site-logo {
	max-width: min(14rem, 55vw);
}

.site-header .site-logo__link.site-logo {
	max-width: min(8rem, 34vw);
}

.site-branding__link--logo .site-logo__mark,
.home-hero__brand {
	position: relative;
	z-index: 1;
}

.site-main {
	background: var(--color-bg);
	color: var(--color-text);
	transition: background-color var(--transition), color var(--transition);
}

.site-branding__name {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.site-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
	min-width: 0;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.75rem, 1.5vw, 1.35rem);
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.site-nav__list a {
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--color-text);
	transition: opacity var(--transition);
}

.site-nav__list > .site-nav__item > .site-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.site-nav__caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-top: 2px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: 0.6;
}

.site-nav__item {
	position: relative;
}

@media (min-width: 769px) {
	.site-nav__item--mobile-only {
		display: none;
	}
}

.site-nav__item--has-children:hover .site-nav__submenu,
.site-nav__item--has-children:focus-within .site-nav__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-nav__submenu {
	position: absolute;
	top: calc(100% + 0.75rem);
	left: 0;
	z-index: 20;
	min-width: 200px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: 0 12px 32px var(--color-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.site-nav__sublink {
	display: block;
	padding: 0.55rem 1rem;
	font-size: 0.875rem;
	white-space: nowrap;
}

.site-nav__sublink:hover,
.site-nav__sublink:focus-visible {
	background: var(--color-bg);
	opacity: 1;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
	opacity: 0.55;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-header__cart {
	font-size: 0.9375rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.site-header__cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 0.3rem;
	font-size: 0.6875rem;
	font-weight: 500;
	background: var(--color-text);
	color: var(--color-surface);
	border-radius: 999px;
}

.site-header__menu,
.site-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-text);
	cursor: pointer;
	transition: opacity var(--transition);
}

.site-header__menu:hover,
.site-header__menu:focus-visible,
.site-nav-toggle:hover,
.site-nav-toggle:focus-visible {
	opacity: 0.55;
}

.site-header__menu-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.125rem;
	height: 1.125rem;
}

.site-header__menu-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.site-nav-toggle__icon {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 1.125rem;
	height: 0.875rem;
}

.site-nav-toggle__line {
	display: block;
	width: 100%;
	height: 1.5px;
	background: currentColor;
	border-radius: 1px;
}

/* Fullscreen menu overlay
   ========================================================================== */

.menu-overlay {
	--menu-overlay-open-duration: 0.62s;
	--menu-overlay-close-duration: 0.52s;
	position: fixed;
	inset: 0;
	z-index: 250;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-end;
	background: transparent;
	color: #ffffff;
	overflow: hidden;
	visibility: hidden;
	pointer-events: none;
}

.menu-overlay__nav--mobile-utilities {
	display: none;
}

.menu-overlay[hidden] {
	display: none !important;
}

.menu-overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	transition: opacity 0.28s ease;
	pointer-events: none;
}

.menu-overlay.is-open::before,
.menu-overlay.is-closing::before {
	opacity: 0;
}

.menu-overlay.is-open,
.menu-overlay.is-closing {
	visibility: visible;
}

.menu-overlay.is-open {
	pointer-events: auto;
}

.menu-overlay.is-closing {
	pointer-events: none;
}

.menu-overlay__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	max-height: none;
	min-height: 100dvh;
	flex-shrink: 0;
	background: #000000;
	overflow: hidden;
	transform: translate3d(100%, 0, 0);
	transition: transform var(--menu-overlay-close-duration) cubic-bezier(0.52, 0.02, 0.74, 0.38);
}

.menu-overlay.is-open .menu-overlay__panel {
	transform: translate3d(0, 0, 0);
	transition: transform var(--menu-overlay-open-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay.is-closing .menu-overlay__panel {
	transform: translate3d(100%, 0, 0);
	transition: transform var(--menu-overlay-close-duration) cubic-bezier(0.52, 0.02, 0.74, 0.38);
}

.menu-overlay__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 72px;
	padding: 0 clamp(1.25rem, 4vw, 2.5rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-overlay__brand {
	flex: 0 1 auto;
	min-width: 0;
}

.menu-overlay__logo-link,
.menu-overlay__logo-text {
	display: inline-flex;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
}

.menu-overlay__logo-link .site-logo__mark {
	width: min(8.5rem, 40vw);
	height: auto;
}

.menu-overlay__logo-text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.menu-overlay__bar-actions {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2rem);
	flex-shrink: 0;
}

.menu-overlay__login,
.menu-overlay__cart,
.menu-overlay__close {
	font-family: var(--font-ui);
	font-size: 0.9375rem;
	font-weight: 400;
	color: #ffffff;
	text-decoration: none;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	transition: opacity var(--transition);
}

.menu-overlay__close {
	font-weight: 600;
}

.menu-overlay__close-icon {
	display: none;
}

.menu-overlay__login:hover,
.menu-overlay__login:focus-visible,
.menu-overlay__cart:hover,
.menu-overlay__cart:focus-visible,
.menu-overlay__close:hover,
.menu-overlay__close:focus-visible {
	opacity: 0.7;
}

.menu-overlay__cart-count {
	margin-left: 0.15rem;
}

.menu-overlay__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 0.75rem;
}

.menu-overlay__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
	gap: 0.75rem 1.5rem;
	align-items: start;
	max-width: none;
}

.menu-overlay__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-overlay__item + .menu-overlay__item {
	margin-top: 0.55rem;
}

.menu-overlay__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-ui);
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.2;
	color: #ffffff;
	text-decoration: none;
	transition: opacity var(--transition);
}

.menu-overlay__link:hover,
.menu-overlay__link:focus-visible {
	color: var(--color-brand);
	opacity: 1;
}

.menu-overlay__arrow {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 0.9rem;
	height: 0.9rem;
	transform-origin: center;
	will-change: transform;
}

.menu-overlay__arrow svg {
	display: block;
	width: 100%;
	height: 100%;
}

.menu-overlay__link:hover .menu-overlay__arrow,
.menu-overlay__link:focus-visible .menu-overlay__arrow {
	animation: footer-social-arrow-bounce 0.7s ease infinite;
}

.menu-overlay__item {
	--menu-item-stagger: calc(var(--menu-item-index, 0) * 0.075s);
}

.menu-overlay__label,
.menu-overlay__arrow {
	transition:
		opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay__label {
	display: inline-block;
	opacity: 0;
	transform: translate3d(2.75rem, 0, 0);
	transition-delay: calc(0.24s + var(--menu-item-stagger));
}

.menu-overlay__arrow {
	opacity: 0;
	transform: translate3d(2rem, 0, 0) rotate(45deg);
	transition-delay: calc(0.34s + var(--menu-item-stagger));
}

.menu-overlay.is-open .menu-overlay__label {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.menu-overlay.is-open .menu-overlay__arrow {
	opacity: 1;
	transform: translate3d(0, 0, 0) rotate(0deg);
}

.menu-overlay.is-closing .menu-overlay__label,
.menu-overlay.is-closing .menu-overlay__arrow {
	opacity: 0;
	transition-duration: 0.22s;
	transition-delay: 0s;
}

.menu-overlay.is-closing .menu-overlay__label {
	transform: translate3d(1.75rem, 0, 0);
}

.menu-overlay.is-closing .menu-overlay__arrow {
	transform: translate3d(1.25rem, 0, 0) rotate(45deg);
}

.menu-overlay__slogan {
	max-width: 28rem;
}

.menu-overlay__title {
	margin: 0 0 0.5rem;
	font-family: var(--font-ui);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.menu-overlay__lead {
	margin: 0;
	font-family: var(--font-ui);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
}

.menu-overlay__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	flex-shrink: 0;
	margin-top: auto;
	padding: 0.65rem clamp(1.25rem, 4vw, 2.5rem) 0.85rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-overlay__wordmark {
	flex: 1 1 auto;
	min-width: 0;
}

.menu-overlay__wordmark-mark {
	color: #ffffff;
}

.menu-overlay__wordmark-mark .site-logo__mark {
	display: block;
	width: auto;
	max-width: min(16rem, 52vw);
	height: auto;
	max-height: 4.5rem;
}

.menu-overlay__wordmark-text {
	margin: 0;
	font-size: clamp(2rem, 8vw, 3.5rem);
	font-weight: 500;
	line-height: 0.9;
	letter-spacing: -0.04em;
	text-transform: lowercase;
}

.menu-overlay__social {
	flex: 0 0 auto;
	width: 100%;
	color: #ffffff;
}

.menu-overlay__social .footer-social__inner {
	width: 100%;
}

.menu-overlay__social .footer-social__list {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 0;
}

.menu-overlay__social .footer-social__item {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-overlay__social .footer-social__item:last-child {
	border-bottom: 0;
}

.menu-overlay__social .footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	width: 100%;
	padding: clamp(1.2rem, 3.5vw, 1.6rem) 1rem;
	font-family: var(--font-ui);
	font-size: clamp(1.0625rem, 2.8vw, 1.3125rem);
	font-weight: 400;
	line-height: 1;
	color: #ffffff;
	text-decoration: none;
	transition: color var(--transition), opacity var(--transition);
}

.menu-overlay__social .footer-social__link:hover,
.menu-overlay__social .footer-social__link:focus-visible {
	color: var(--color-brand);
	opacity: 1;
}

.menu-overlay__social .footer-social__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
}

.menu-overlay__social .footer-social__arrow {
	width: 100%;
	height: 100%;
}

.menu-overlay__footer-aside {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	flex: 0 0 auto;
	width: 100%;
}

.menu-overlay__copy {
	margin: 0;
	font-family: var(--font-ui);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.72);
	text-align: right;
}

html.is-menu-overlay-open body {
	overflow: hidden;
	padding-right: var(--menu-overlay-scrollbar-width, 0);
}

html.is-menu-overlay-open .site-header {
	padding-right: var(--menu-overlay-scrollbar-width, 0);
}

@media (max-width: 900px) {
	.menu-overlay__slogan {
		grid-column: 1 / -1;
		max-width: none;
	}
}

@media (min-width: 769px) {
	.menu-overlay.is-open::before,
	.menu-overlay.is-closing::before {
		opacity: 1;
	}

	.menu-overlay__panel {
		width: min(24rem, 34vw);
		max-width: 26rem;
		box-shadow: -16px 0 48px rgba(0, 0, 0, 0.28);
	}

	.menu-overlay__bar {
		min-height: auto;
		padding: 1.25rem;
		border-bottom: 0;
	}

	.menu-overlay__logo-link .site-logo__mark {
		width: min(6.5rem, 42vw);
	}

	.menu-overlay__close {
		position: relative;
		width: 2.5rem;
		height: 2.5rem;
		font-size: 0;
		line-height: 0;
	}

	.menu-overlay__close::before,
	.menu-overlay__close::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 1.35rem;
		height: 1.5px;
		background: currentColor;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	.menu-overlay__close::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	.menu-overlay__body {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		justify-content: flex-start;
		padding: 1.25rem;
	}

	.menu-overlay__grid {
		grid-template-columns: 1fr;
		gap: 0;
		align-content: start;
	}

	.menu-overlay__list {
		display: flex;
		flex-direction: column;
		gap: 0.6rem;
	}

	.menu-overlay__nav + .menu-overlay__nav {
		margin-top: 0.6rem;
	}

	.menu-overlay__slogan,
	.menu-overlay__wordmark {
		display: none;
	}

	.menu-overlay__item + .menu-overlay__item {
		margin-top: 0;
	}

	.menu-overlay__link {
		gap: 0.7rem;
		font-size: clamp(1.375rem, 1.45vw, 1.625rem);
		font-weight: 400;
		line-height: 1.15;
		letter-spacing: 0.03em;
		text-transform: uppercase;
	}

	.menu-overlay__arrow {
		display: inline-flex;
		width: 1.05rem;
		height: 1.05rem;
	}

	.menu-overlay__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.85rem;
		margin-top: auto;
		padding: 0 1.25rem 1.25rem;
		border-top: 0;
	}

	.menu-overlay__footer-aside {
		width: 100%;
		gap: 0.85rem;
	}

	.menu-overlay__social {
		margin-inline: -1.25rem;
		width: calc(100% + 2.5rem);
	}

	.menu-overlay__copy {
		display: none;
	}
}

@media (max-width: 768px) {
	.menu-overlay__panel {
		width: 100%;
		max-width: none;
		box-shadow: none;
	}

	.menu-overlay__bar {
		min-height: auto;
		padding-block: 1.25rem;
		border-bottom: 0;
	}

	.menu-overlay__login {
		display: none;
	}

	.menu-overlay__cart {
		display: none;
	}

	.menu-overlay__nav--mobile-utilities {
		display: block;
	}

	.menu-overlay__close {
		position: relative;
		width: 2.5rem;
		height: 2.5rem;
		font-size: 0;
		line-height: 0;
	}

	.menu-overlay__close::before,
	.menu-overlay__close::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 1.35rem;
		height: 1.5px;
		background: currentColor;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	.menu-overlay__close::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	.menu-overlay__body {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 1rem;
	}

	.menu-overlay__grid {
		grid-template-columns: 1fr;
		gap: 0;
		width: 100%;
		align-content: start;
	}

	.menu-overlay__list {
		display: flex;
		flex-direction: column;
		gap: 0.45rem;
	}

	.menu-overlay__nav + .menu-overlay__nav {
		margin-top: 0.45rem;
	}

	.menu-overlay__slogan {
		display: none;
	}

	.menu-overlay__item + .menu-overlay__item {
		margin-top: 0;
	}

	.menu-overlay__link {
		gap: 0.65rem;
		font-size: clamp(1.5rem, 6.5vw, 2.125rem);
		font-weight: 400;
		line-height: 1.15;
		letter-spacing: 0.03em;
		text-transform: uppercase;
	}

	.menu-overlay__arrow svg {
		width: 100%;
		height: 100%;
	}

	.menu-overlay__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		margin-top: auto;
		padding-bottom: clamp(1.25rem, 5vw, 2rem);
		border-top: 0;
	}

	.menu-overlay__footer-aside {
		width: 100%;
		gap: 0.85rem;
	}

	.menu-overlay__copy {
		font-size: 0.8125rem;
		text-align: left;
		color: rgba(255, 255, 255, 0.78);
	}

	.menu-overlay__wordmark {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.menu-overlay {
		transition: none;
	}

	.menu-overlay.is-closing {
		display: none;
	}

	.menu-overlay__panel {
		transition: none;
		transform: none;
	}

	.menu-overlay:not(.is-open) {
		display: none;
	}

	.menu-overlay__label,
	.menu-overlay__arrow {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.menu-overlay__link:hover .menu-overlay__arrow,
	.menu-overlay__link:focus-visible .menu-overlay__arrow {
		animation: none;
		transform: translate(2px, -2px);
	}
}

/* Theme toggle (float panel)
   ========================================================================== */

.theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: none;
	border-radius: 0;
	color: var(--color-text);
	background: transparent;
	transition: background var(--transition), opacity var(--transition);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
	background: var(--color-hover);
}

.theme-toggle__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.theme-toggle__split {
	display: block;
}

/* Footer
   ========================================================================== */

.site-footer {
	--footer-bg: #000000;
	--footer-fg: #ffffff;
	--footer-fg-muted: rgba(255, 255, 255, 0.78);
	--footer-line: rgba(255, 255, 255, 0.28);
	margin-top: 0;
	background: var(--footer-bg);
	color: var(--footer-fg);
	font-family: var(--font-ui);
}

.site-footer__main {
	padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 2.75rem);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.75fr));
	gap: clamp(1.75rem, 3.5vw, 3rem);
	align-items: start;
}

.site-footer__brand-col {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.site-footer__tagline {
	margin: 0;
	max-width: 28rem;
	font-family: inherit;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--footer-fg-muted);
}

.site-footer__logo,
.site-footer__logo-link,
.site-footer .site-logo,
.site-footer .site-logo__link,
html[data-theme="light"] .site-footer .site-logo,
html[data-theme="light"] .site-footer .site-logo__link,
html[data-theme="dark"] .site-footer .site-logo,
html[data-theme="dark"] .site-footer .site-logo__link {
	display: inline-flex;
	max-width: 14rem;
	color: var(--footer-fg);
	text-decoration: none;
}

.site-footer__logo {
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	color: var(--footer-fg);
}

.site-footer__logo-image,
.site-footer .site-logo__mark {
	display: block;
	flex-shrink: 0;
	width: min(12rem, 55vw);
	height: auto;
	max-width: 100%;
	aspect-ratio: var(--logo-aspect);
	overflow: visible;
	fill: currentColor;
	color: inherit;
}

.site-footer .site-logo__mark path {
	fill: currentColor;
}

.site-footer__heading {
	margin: 0 0 1rem;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--footer-fg);
}

.site-footer__list {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__list a {
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--footer-fg-muted);
	text-decoration: none;
	transition: color var(--transition), opacity var(--transition);
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
	color: var(--footer-fg);
}

.site-footer__bar {
	padding: 1.1rem 0 clamp(1.35rem, 2.5vw, 1.75rem);
	border-top: 1px solid var(--footer-line);
}

.site-footer__bar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1.5rem;
}

.site-footer__copy {
	margin: 0;
	font-family: inherit;
	font-size: 0.8125rem;
	line-height: 1.5;
	text-align: center;
	color: var(--footer-fg-muted);
}

/* Footer social strip
   ========================================================================== */

.footer-social {
	background: transparent;
	color: var(--footer-fg);
	padding-block: 0;
}

.footer-social__inner {
	display: block;
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--container-padding);
}

.footer-social__list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	border-block: 1px solid var(--footer-line);
}

.footer-social__item {
	display: flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
	min-width: 0;
	border-inline-end: 1px solid var(--footer-line);
}

.footer-social__item:last-child {
	border-inline-end: 0;
}

.footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	width: 100%;
	padding: clamp(1.1rem, 2.4vw, 1.45rem) 1rem;
	font-family: var(--font-ui);
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1;
	color: var(--footer-fg);
	text-align: center;
	text-decoration: none;
	transition: opacity var(--transition);
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
	opacity: 0.9;
}

.footer-social__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	color: currentColor;
}

.footer-social__arrow {
	display: block;
	width: 100%;
	height: 100%;
	transform: rotate(0deg);
	transform-origin: center;
	will-change: transform;
}

.footer-social__link:hover .footer-social__arrow,
.footer-social__link:focus-visible .footer-social__arrow {
	animation: footer-social-arrow-bounce 0.7s ease infinite;
}

@keyframes footer-social-arrow-bounce {
	0%,
	100% {
		transform: translate(0, 0);
	}

	40% {
		transform: translate(3px, -3px);
	}

	70% {
		transform: translate(1px, -1px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.footer-social__link:hover .footer-social__arrow,
	.footer-social__link:focus-visible .footer-social__arrow {
		animation: none;
		transform: translate(2px, -2px);
	}
}

.footer-social__label {
	font-family: inherit;
}

@media (max-width: 960px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__brand-col {
		grid-column: 1 / -1;
	}
}

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

	.footer-social__list {
		flex-direction: column;
		border-block: 0;
		border-top: 1px solid var(--footer-line);
	}

	.footer-social__item {
		border-inline-end: 0;
		border-bottom: 1px solid var(--footer-line);
	}

	.site-footer__bar-inner {
		flex-direction: column;
		align-items: center;
	}
}

/* Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.75rem;
	font-size: 0.9375rem;
	font-weight: 500;
	border-radius: var(--radius-sm);
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--outline {
	border: 1px solid var(--color-text);
	background: transparent;
	color: var(--color-text);
}

.btn--outline:hover,
.btn--outline:focus-visible {
	background: var(--color-brand);
	border-color: var(--color-brand);
	color: #ffffff;
}

.btn--solid {
	border: 1px solid var(--color-brand);
	background: var(--color-brand);
	color: #ffffff;
}

.btn--solid:hover,
.btn--solid:focus-visible {
	border-color: var(--color-brand);
	background: var(--color-brand);
	color: #ffffff;
}

.btn--block {
	width: 100%;
}

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

/* Page content fallback
   ========================================================================== */

.page-content {
	padding-block: 4rem;
}

.entry__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

/* Mobile navigation
   ========================================================================== */

@media (max-width: 768px) {
	.site-branding {
		max-width: min(7rem, 30vw);
	}

	.site-header .site-branding__logo-image,
	.site-header .site-logo__mark {
		width: min(4rem, 28vw);
	}

	.site-header .site-logo__link.site-logo {
		max-width: min(7rem, 30vw);
	}

	.site-nav {
		display: none;
	}

	.site-nav-toggle {
		display: inline-flex;
	}

	.site-header__cart {
		display: none;
	}
}

html.is-nav-open {
	overflow: hidden;
}

/* Float actions — scroll top & theme toggle
   ========================================================================== */

.site-float-actions {
	position: fixed;
	right: 0;
	bottom: clamp(1.25rem, 4vw, 2rem);
	z-index: 90;
	display: flex;
	flex-direction: column;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-right: none;
}

.site-float-actions__scroll {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 0;
	padding: 0;
	border: none;
	border-bottom: 1px solid transparent;
	background: transparent;
	color: var(--color-text);
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transition:
		height var(--transition),
		opacity var(--transition),
		border-color var(--transition),
		background var(--transition);
}

.site-float-actions__scroll.is-visible {
	height: 2.5rem;
	opacity: 1;
	pointer-events: auto;
	border-bottom-color: var(--color-border);
}

.site-float-actions__scroll:hover,
.site-float-actions__scroll:focus-visible {
	background: var(--color-hover);
}

.site-float-actions__scroll-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.icon--arrow-up {
	display: block;
}

/* Related product card — catalog, homepage, related products
   ========================================================================== */

.related-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	border-radius: 18px;
	background: var(--color-catalog-card-bg);
	color: var(--color-catalog-card-fg);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
	contain: layout style;
	isolation: isolate;
	transition:
		background-color var(--transition),
		color var(--transition),
		box-shadow 0.2s ease;
}

html[data-theme="light"] .related-product-card {
	background: #ffffff;
	color: #111111;
}

.related-product-card:hover {
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

html[data-theme="dark"] .related-product-card:hover {
	background: var(--color-catalog-card-hover-bg);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.related-product-card__link {
	position: relative;
	z-index: 0;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	color: inherit;
	text-decoration: none;
}

.related-product-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: inherit;
	border: 0;
}

.related-product-card__media--preview {
	display: grid;
	place-items: stretch;
	color: inherit;
}

.related-product-card__preview {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: clamp(1rem, 3vw, 1.5rem);
	overflow: hidden;
	container-type: inline-size;
	container-name: related-product-card-preview;
	text-align: center;
	--related-card-pangram-size: max(1.05rem, 7.5cqi);
}

.related-product-card__aa,
.related-product-card__pangram {
	margin: 0;
	font-weight: 400;
	font-synthesis: none;
	letter-spacing: -0.03em;
	color: inherit;
}

.related-product-card__aa {
	position: relative;
	display: block;
	font-size: max(4.5rem, 58cqi);
	line-height: 0.95;
	white-space: nowrap;
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
		transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.related-product-card__pangram {
	position: absolute;
	inset: clamp(1rem, 3vw, 1.5rem);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: var(--related-card-pangram-size);
	line-height: 1.15;
	text-align: left;
	overflow-wrap: anywhere;
	opacity: 0;
	transform: translateY(-50%);
	pointer-events: none;
	transition:
		opacity 0.13s cubic-bezier(0.19, 1, 0.22, 1),
		transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) and (pointer: fine) {
	.related-product-card:hover .related-product-card__aa {
		opacity: 0;
		transform: translateY(27%);
		transition:
			opacity 0.11s cubic-bezier(0.19, 1, 0.22, 1),
			transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	}

	.related-product-card:hover .related-product-card__pangram {
		opacity: 1;
		transform: translateY(0);
		transition:
			opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
			transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	}
}

.related-product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.related-product-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 1rem;
	background: inherit;
	text-align: center;
}

.related-product-card__placeholder span {
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--color-catalog-card-muted);
}

html[data-theme="light"] .related-product-card__placeholder span {
	color: #6b6b6b;
}

.related-product-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	padding: 0.3rem 0.5rem;
	font-size: 0.6875rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: var(--color-brand);
	border-radius: 999px;
}

.related-product-card__badge--free {
	color: var(--color-badge-free-fg);
	background: var(--color-badge-free);
}

.related-product-card__info {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-height: 5.5rem;
	padding: 0.85rem 1rem 3.1rem;
	color: inherit;
	background: transparent;
	transform: translateY(0);
	transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.related-product-card__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0;
}

.related-product-card__row--primary {
	position: relative;
	z-index: 4;
}

.related-product-card__name {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.3;
	color: inherit;
}

.related-product-card__price,
.related-product-card__designer,
.related-product-card__styles {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.35;
	color: var(--color-catalog-card-muted);
	white-space: nowrap;
}

html[data-theme="light"] .related-product-card__price,
html[data-theme="light"] .related-product-card__designer,
html[data-theme="light"] .related-product-card__styles {
	color: #6b6b6b;
}

.related-product-card__price {
	flex-shrink: 0;
	color: inherit;
}

html[data-theme="light"] .related-product-card__price {
	color: #111111;
}

.related-product-card__price.is-sale {
	color: var(--color-brand);
}

.related-product-card__designer {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.related-product-card__styles {
	flex-shrink: 0;
	transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.related-product-card__row--secondary {
	min-height: 1.05rem;
}

.related-product-card__tools {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.75rem;
	z-index: 5;
	display: flex;
	align-items: stretch;
	gap: 0;
	width: calc(100% - 1.5rem);
	height: 2.75rem;
	margin-inline: 0.75rem;
	overflow: visible;
	background: #ececec;
	border-radius: 999px;
	transform: translateY(calc(100% + 2.5rem));
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
		opacity 0.2s ease,
		visibility 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	.related-product-card:hover .related-product-card__info {
		transform: translateY(-2.1rem);
	}

	.related-product-card:hover .related-product-card__designer,
	.related-product-card:hover .related-product-card__styles {
		opacity: 0;
	}

	.related-product-card:hover .related-product-card__tools,
	.related-product-card:focus-within .related-product-card__tools {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

.related-product-card__size {
	--size-pct: 0;
	--size-thumb: 1.5rem;
	position: relative;
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	padding: 0 0.9rem;
}

.related-product-card__size-pill {
	position: absolute;
	left: calc((var(--size-pct) * (100% - var(--size-thumb))) + (var(--size-thumb) / 2));
	bottom: calc(100% + 0.35rem);
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	padding: 0.35rem 0.55rem;
	border-radius: 0.45rem;
	background: #ffffff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	color: #111111;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
	pointer-events: none;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease, visibility 0.15s ease;
}

.related-product-card__size.is-sliding .related-product-card__size-pill {
	opacity: 1;
	visibility: visible;
}

.related-product-card__size-range {
	width: 100%;
	height: 1.75rem;
	margin: 0;
	appearance: none;
	background: transparent;
	cursor: pointer;
}

.related-product-card__size-range::-webkit-slider-runnable-track {
	height: 2px;
	background:
		linear-gradient(
			to right,
			var(--color-brand) 0 calc(var(--size-pct) * 100%),
			#bdbdbd calc(var(--size-pct) * 100%) 100%
		) top / 100% 2px no-repeat,
		repeating-linear-gradient(
			to right,
			transparent 0,
			transparent calc(25% - 1px),
			#bdbdbd calc(25% - 1px),
			#bdbdbd calc(25% + 1px),
			transparent calc(25% + 1px),
			transparent 25%
		) center / 100% 8px no-repeat;
	border: 0;
}

.related-product-card__size-range::-webkit-slider-thumb {
	appearance: none;
	width: var(--size-thumb);
	height: var(--size-thumb);
	margin-top: -11px;
	border: 0;
	border-radius: 999px;
	background: var(--color-brand);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
	cursor: grab;
}

.related-product-card__size-range::-moz-range-track {
	height: 2px;
	background: linear-gradient(
		to right,
		var(--color-brand) 0 calc(var(--size-pct) * 100%),
		#bdbdbd calc(var(--size-pct) * 100%) 100%
	);
	border: 0;
}

.related-product-card__size-range::-moz-range-thumb {
	width: var(--size-thumb);
	height: var(--size-thumb);
	border: 0;
	border-radius: 999px;
	background: var(--color-brand);
	cursor: grab;
}

.related-product-card__buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	flex-shrink: 0;
	min-width: 7.5rem;
	padding: 0 1rem;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1;
	color: #ffffff;
	text-decoration: none;
	background: var(--color-brand);
	border: 0;
	border-radius: 0 999px 999px 0;
	transition: background-color var(--transition);
}

.related-product-card__buy:hover,
.related-product-card__buy:focus-visible {
	color: #ffffff;
	background: var(--color-brand-deep);
}

.related-product-card__buy-icon {
	display: block;
	flex-shrink: 0;
	width: 0.875rem;
	height: 0.875rem;
}

.related-product-card__category {
	color: inherit;
}

@media (hover: none) {
	.related-product-card__aa {
		opacity: 0;
		transform: translateY(27%);
	}

	.related-product-card__pangram {
		opacity: 1;
		transform: translateY(0);
	}

	.related-product-card__info {
		min-height: 0;
		padding-bottom: 0.75rem;
		transform: none;
	}

	.related-product-card__designer,
	.related-product-card__styles {
		opacity: 1;
	}

	.related-product-card__tools {
		position: relative;
		bottom: auto;
		width: 100%;
		margin: 0;
		border-radius: 0;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.related-product-card__buy {
		border-radius: 0;
	}
}
