@import url("../vendor/bootstrap-icons/font/bootstrap-icons.min.css");

:root {
	--store-bg: #000000;
	--store-header: rgba(32, 32, 32, 0.78);
	--store-footer: #202020;
	--store-surface: #ffffff;
	--store-surface-muted: #f4f4f4;
	--store-ink: #101010;
	--store-ink-inverse: #f7f7f7;
	--store-muted: #6a6a6a;
	--store-accent: #2b00ff;
	--store-accent-strong: #2200cc;
	--store-secondary: #609eff;
	--store-border: rgba(255, 255, 255, 0.14);
	--store-card-border: rgba(0, 0, 0, 0.08);
	--store-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
	--store-radius: 4px;
	--store-container: 1600px;
	--store-sidebar-width: 260px;
	--store-header-height: 118px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	background: var(--store-bg);
	color-scheme: dark;
}

body {
	background: var(--store-bg);
	color: var(--store-ink-inverse);
	font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

body>div,
.store-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body.store-menu-lock {
	overflow: hidden;
}

body.store-menu-open {
	overflow-x: hidden;
}

img,
svg {
	display: block;
}

img {
	max-width: 100%;
}

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

button,
input {
	font: inherit;
}

:focus-visible {
	outline: 3px solid var(--store-accent);
	outline-offset: 3px;
}

.sr-only {
	width: 1px;
	height: 1px;
	position: absolute;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.store-header {
	background: var(--store-header);
	backdrop-filter: blur(14px) saturate(140%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--store-ink-inverse);
	position: sticky;
	top: 0;
	z-index: 40;
}

@supports not (backdrop-filter: blur(14px)) {
	.store-header {
		background: rgba(32, 32, 32, 0.94);
	}
}

.store-header__inner {
	width: min(100%, var(--store-container));
	min-height: 102px;
	margin: 0 auto;
	padding: 24px 20px;
	display: grid;
	grid-template-columns: 250px minmax(280px, 584px) 250px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.store-header__brand {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 54px;
}

.store-header__logo {
	width: auto;
	max-width: 180px;
	max-height: 58px;
	object-fit: contain;
}

.store-header__name {
	color: var(--store-ink-inverse);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.store-header__search {
	min-height: 44px;
	background: #ffffff;
	border-radius: var(--store-radius);
	display: grid;
	grid-template-columns: 44px 1fr 44px;
	align-items: center;
	overflow: hidden;
}

.store-header__search input[type="search"] {
	width: 100%;
	min-width: 0;
	height: 44px;
	border: 0;
	background: #ffffff;
	color: #222222;
	font-size: 15px;
	letter-spacing: 1.8px;
	outline: 0;
}

.store-header__search input[type="search"]::placeholder {
	color: #444444;
	opacity: 0.9;
}

.store-header__icon-button,
.store-header__icon-link {
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: currentColor;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
}

.store-icon {
	display: block;
	color: currentColor;
	font-size: 22px;
	line-height: 1;
}

.store-icon.bi-search {
	font-size: 21px;
}

.store-icon.bi-cart3 {
	font-size: 20px;
}

.store-icon.bi-person {
	font-size: 23px;
}

.store-icon.bi-list {
	font-size: 24px;
}

.store-icon.bi-x-lg {
	font-size: 20px;
}

.store-header__search .store-header__icon-button {
	color: #202020;
}

.store-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.store-header__cart-count {
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--store-accent);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	position: absolute;
	top: 4px;
	right: 0;
}

.store-header__search-shortcut,
.store-header__mobile-menu {
	display: none;
}

.store-sidebar-backdrop {
	position: fixed;
	inset: var(--store-header-height) 0 0 0;
	z-index: 45;
	background: rgba(0, 0, 0, 0.18);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
}

.store-sidebar-backdrop[hidden] {
	display: none;
}

.store-sidebar {
	width: var(--store-sidebar-width);
	height: calc(100dvh - var(--store-header-height));
	padding: 30px 0 40px;
	background: #393939;
	color: #ffffff;
	position: fixed;
	top: var(--store-header-height);
	left: 0;
	z-index: 50;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 260ms ease;
	will-change: transform;
}

.store-sidebar__close {
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

.store-sidebar__close .store-icon {
	font-size: 22px;
}

.store-sidebar__inner {
	display: grid;
	gap: 40px;
	padding-top: 0;
}

.store-sidebar__nav ul {
	margin: 0;
	padding: 20px 16px;
	list-style: none;
	display: grid;
	gap: 6px;
}

.store-sidebar__nav a {
	min-height: 39px;
	padding: 7px 14px;
	display: flex;
	align-items: center;
	color: #ffffff;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.45;
	transition: background-color 180ms ease, color 180ms ease;
}

.store-sidebar__nav a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.store-sidebar__nav--secondary ul {
	padding-top: 0;
}

body.store-menu-open .store-sidebar {
	transform: translateX(0);
}

body.store-menu-open .store-sidebar-backdrop {
	opacity: 1;
	pointer-events: auto;
}

body.store-menu-open .store-shell> :not(.store-header):not(.store-sidebar):not(.store-sidebar-backdrop) {
	transform: translateX(var(--store-sidebar-width));
}

.store-shell> :not(.store-header):not(.store-sidebar):not(.store-sidebar-backdrop) {
	transition: transform 260ms ease;
}

.store-footer {
	margin-top: auto;
	background: var(--store-footer);
	color: #ffffff;
}

.store-footer__inner {
	width: min(100%, var(--store-container));
	margin: 0 auto;
	padding: 32px 20px;
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(180px, auto);
	gap: 28px;
	align-items: start;
}

.store-footer__logo {
	width: auto;
	max-width: 150px;
	max-height: 52px;
	object-fit: contain;
}

.store-footer__brand p,
.store-footer__links,
.store-footer__social {
	margin: 14px 0 0;
	color: #d6d6d6;
	font-size: 14px;
}

.store-footer__brand p {
	max-width: 440px;
}

.store-footer__links,
.store-footer__social {
	margin: 0;
	display: grid;
	gap: 8px;
}

.store-footer a {
	color: #d6d6d6;
	transition: color 180ms ease;
}

.store-footer a:hover {
	color: #ffffff;
}

@media (max-width: 900px) {
	.store-header__inner {
		min-height: 54px;
		padding: 10px;
		grid-template-columns: 1fr auto;
		gap: 10px;
	}

	.store-header__brand {
		min-height: 34px;
	}

	.store-header__logo {
		max-width: 122px;
		max-height: 38px;
	}

	.store-header__search {
		display: none;
	}

	.store-header__actions {
		gap: 8px;
	}

	.store-header__icon-link,
	.store-header__icon-button {
		width: 38px;
		height: 38px;
	}

	.store-header__icon-link .store-icon,
	.store-header__icon-button .store-icon {
		font-size: 23px;
	}

	.store-header__icon-link .store-icon.bi-search,
	.store-header__icon-button .store-icon.bi-search {
		font-size: 21px;
	}

	.store-header__icon-link .store-icon.bi-cart3,
	.store-header__icon-button .store-icon.bi-cart3 {
		font-size: 21px;
	}

	.store-header__icon-link .store-icon.bi-person,
	.store-header__icon-button .store-icon.bi-person {
		font-size: 24px;
	}

	.store-header__icon-link .store-icon.bi-list,
	.store-header__icon-button .store-icon.bi-list {
		font-size: 25px;
	}

	.store-header__search-shortcut,
	.store-header__mobile-menu {
		display: inline-flex;
	}

	.store-sidebar-backdrop {
		inset: 0;
		background: rgba(0, 0, 0, 0.52);
	}

	.store-sidebar {
		width: 100dvw;
		height: 100dvh;
		padding: 30px 0 40px;
		top: 0;
		z-index: 80;
	}

	.store-sidebar__close {
		top: 8px;
		right: 10px;
	}

	.store-sidebar__inner {
		gap: 40px;
	}

	.store-sidebar__nav ul {
		padding: 20px 16px;
	}

	.store-sidebar__nav a {
		min-height: 39px;
		font-size: 17px;
	}

	body.store-menu-open .store-shell> :not(.store-header):not(.store-sidebar):not(.store-sidebar-backdrop) {
		transform: none;
	}

	.store-footer__inner {
		grid-template-columns: 1fr;
		padding: 28px 16px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.store-sidebar,
	.store-sidebar-backdrop,
	.store-shell> :not(.store-header):not(.store-sidebar):not(.store-sidebar-backdrop) {
		transition: none;
	}
}