/* =========================================================
   SELORA SITE HEADER
   ========================================================= */

:root {
	--sh-primary: #4f46e5;
	--sh-primary-hover: #4338ca;
	--sh-primary-soft: #f3f3ff;

	--sh-text: #101828;
	--sh-secondary: #475467;
	--sh-muted: #667085;
	--sh-light: #98a2b3;

	--sh-border: #e4e7ec;
	--sh-border-soft: #f0f1f3;

	--sh-surface: #ffffff;
	--sh-surface-soft: #f7f8fa;

	--sh-danger: #b42318;
	--sh-danger-soft: #fef3f2;

	--sh-height: 74px;
}

/* =========================================================
   ROOT
   ========================================================= */

.site-header {
	position: sticky !important;
	top: 0 !important;

	z-index: 2000 !important;

	width: 100%;

	background: #fff !important;

	border-bottom: 1px solid rgba(228, 231, 236, 0.92) !important;

	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.025) !important;

	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

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

.home-container.site-header__inner {
	width: min(1280px, calc(100% - 40px)) !important;

	min-height: var(--sh-height) !important;

	display: grid !important;

	grid-template-columns:
		auto
		minmax(320px, 1fr)
		auto !important;

	align-items: center !important;

	gap: 22px !important;

	margin: 0 auto !important;

	padding: 10px 0 !important;

	overflow: visible !important;
}

/* =========================================================
   SIDES
   ========================================================= */

.site-header__start,
.site-header__actions {
	min-width: 0;

	display: flex;
	align-items: center;

	gap: 8px;
}

.site-header__actions {
	justify-content: flex-end;
}

/* =========================================================
   BRAND
   ========================================================= */

.site-header .site-brand {
	min-height: 46px;

	display: inline-flex;
	align-items: center;

	gap: 9px;

	flex: 0 0 auto;

	color: var(--sh-text);

	text-decoration: none;

	white-space: nowrap;
}

.site-header .site-brand__logo {
	width: 40px;
	height: 40px;

	flex: 0 0 40px;

	display: block;

	object-fit: contain;
}

.site-header .site-brand__name {
	color: var(--sh-text);

	font-size: 17px;
	font-weight: 900;
}

/* =========================================================
   CATEGORY TRIGGER
   ========================================================= */

.site-header .header-category {
	position: relative;
}

.site-header .header-category__trigger {
	height: 44px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 7px;

	padding: 0 11px;

	border: 1px solid transparent;
	border-radius: 11px;

	background: transparent;

	color: var(--sh-secondary);

	font-family: inherit;
	font-size: 13px;
	font-weight: 750;

	white-space: nowrap;

	cursor: pointer;

	transition:
		background 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease;
}

.site-header .header-category__trigger:hover {
	background: var(--sh-surface-soft);

	color: var(--sh-text);
}

.site-header .header-category.is-open .header-category__trigger {
	border-color: #d7d4ff;

	background: var(--sh-primary-soft);

	color: var(--sh-primary);
}

.header-category__trigger-icon {
	width: 18px;
	height: 18px;

	flex: 0 0 18px;
}

.header-category__trigger-chevron {
	width: 15px;
	height: 15px;

	flex: 0 0 15px;

	color: var(--sh-light);

	transition: transform 0.18s ease;
}

.header-category.is-open .header-category__trigger-chevron {
	transform: rotate(180deg);

	color: var(--sh-primary);
}

/* =========================================================
   CATEGORY PANEL
   ========================================================= */

.site-header .header-category__panel {
	position: absolute;

	top: calc(100% + 10px);
	right: 0;

	z-index: 2200;

	width: 340px;

	display: none;

	overflow: hidden;

	border: 1px solid var(--sh-border);
	border-radius: 16px;

	background: #fff;

	box-shadow: 0 20px 50px rgba(16, 24, 40, 0.13);

	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.site-header .header-category.is-open .header-category__panel {
	display: block;
}

.header-category__head {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 12px;

	padding: 14px 14px 12px;

	border-bottom: 1px solid var(--sh-border-soft);
}

.header-category__title {
	color: var(--sh-text);

	font-size: 15px;
	font-weight: 900;
}

.header-category__subtitle {
	margin-top: 2px;

	color: var(--sh-muted);

	font-size: 12px;
}

.header-category__close {
	width: 40px;
	height: 40px;

	flex: 0 0 40px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0;

	border: 1px solid var(--sh-border);
	border-radius: 10px;

	background: #fff;

	color: var(--sh-secondary);

	cursor: pointer;
}

.header-category__close:hover {
	background: var(--sh-surface-soft);
}

.header-category__close svg {
	width: 18px;
	height: 18px;
}

.header-category__body {
	max-height: min(520px, 70vh);

	overflow-y: auto;
	overscroll-behavior: contain;

	padding: 7px;
}

/* =========================================================
   CATEGORY GROUP
   ========================================================= */

.header-category__group {
	margin: 0;

	border-bottom: 1px solid var(--sh-border-soft);
}

.header-category__group:last-child {
	border-bottom: 0;
}

.header-category__group > summary {
	list-style: none;
}

.header-category__group > summary::-webkit-details-marker {
	display: none;
}

.site-header .header-category__row {
	width: 100%;
	min-height: 50px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 10px;

	padding: 8px 10px;

	border-radius: 10px;

	background: transparent;

	color: var(--sh-secondary);

	font-family: inherit;
	font-size: 13px;
	font-weight: 750;

	text-align: right;
	text-decoration: none;

	cursor: pointer;

	transition:
		background 0.15s ease,
		color 0.15s ease;
}

.site-header .header-category__row:hover {
	background: var(--sh-surface-soft);

	color: var(--sh-text);
}

.header-category__group[open] > .header-category__row {
	background: var(--sh-primary-soft);

	color: var(--sh-primary);
}

.header-category__row-name {
	min-width: 0;

	flex: 1;

	overflow: hidden;

	text-overflow: ellipsis;
	white-space: nowrap;
}

.header-category__row-chevron,
.header-category__row-arrow {
	width: 28px;
	height: 28px;

	flex: 0 0 28px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: var(--sh-light);
}

.header-category__row-chevron {
	transition:
		transform 0.18s ease,
		color 0.18s ease;
}

.header-category__group[open] .header-category__row-chevron {
	transform: rotate(180deg);

	color: var(--sh-primary);
}

.header-category__row-chevron svg,
.header-category__row-arrow svg {
	width: 15px;
	height: 15px;
}

/* =========================================================
   SUBCATEGORIES
   ========================================================= */

.header-category__sublist {
	display: grid;

	gap: 2px;

	margin: 0 8px 8px;

	padding: 6px;

	border-right: 2px solid #dedcff;
	border-radius: 0 10px 10px 0;

	background: #fafaff;
}

.site-header .header-category__all-link {
	min-height: 42px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 8px;

	padding: 7px 9px;

	border-radius: 9px;

	background: #fff;

	color: var(--sh-primary);

	font-size: 12px;
	font-weight: 800;

	text-decoration: none;
}

.site-header .header-category__all-link:hover {
	background: var(--sh-primary-soft);
}

.header-category__all-link svg {
	width: 15px;
	height: 15px;

	flex: 0 0 15px;
}

.site-header .header-category__sub-link {
	min-height: 42px;

	display: flex;
	align-items: center;

	padding: 7px 9px;

	border-radius: 9px;

	color: var(--sh-secondary);

	font-size: 12px;
	font-weight: 700;

	text-decoration: none;

	transition:
		background 0.15s ease,
		color 0.15s ease;
}

.site-header .header-category__sub-link:hover {
	background: #fff;

	color: var(--sh-primary);
}

.header-category__sub-empty,
.header-category__empty {
	padding: 16px 10px;

	color: var(--sh-muted);

	font-size: 12px;

	text-align: center;
}

/* =========================================================
   SEARCH
   ========================================================= */

.site-header .site-search {
	width: 100%;
	min-width: 0;

	margin: 0;
}

.site-header .site-search__field {
	width: 100%;
	height: 48px;

	display: flex;
	align-items: center;

	padding: 4px 5px;

	border: 1px solid #e6e8ec;
	border-radius: 13px;

	background: #f8f9fa;

	box-shadow: none;

	transition:
		background 0.15s ease,
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}

.site-header .site-search__field:hover {
	border-color: #d9dce2;

	background: #f7f8f9;
}

.site-header .site-search__field:focus-within {
	border-color: #c4c0ff;

	background: #fff;

	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.055);
}

.site-header .site-search__icon {
	width: 38px;
	height: 38px;

	flex: 0 0 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #89909d;
}

.site-header .site-search__icon svg {
	width: 19px;
	height: 19px;
}

.site-header .site-search input {
	min-width: 0;
	height: 100%;

	flex: 1;

	padding: 0 3px 0 8px;

	border: 0 !important;
	outline: 0 !important;

	background: transparent !important;

	color: var(--sh-text);

	font-family: inherit;
	font-size: 13px;
	font-weight: 550;

	direction: rtl;

	box-shadow: none !important;
}

.site-header .site-search input::placeholder {
	color: #98a0ad;

	opacity: 1;

	font-weight: 500;
}

.site-header .site-search input::-webkit-search-cancel-button {
	display: none;
}

.site-header .site-search__submit {
	width: 36px;
	height: 36px;

	flex: 0 0 36px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0;

	border: 0;
	border-radius: 9px;

	background: #fff;

	color: var(--sh-secondary);

	cursor: pointer;

	box-shadow: 0 0 0 1px rgba(228, 231, 236, 0.9);

	transition:
		background 0.15s ease,
		color 0.15s ease,
		box-shadow 0.15s ease;
}

.site-header .site-search__submit:hover {
	background: var(--sh-primary);

	color: #fff;

	box-shadow: none;
}

.site-header .site-search__submit svg {
	width: 16px;
	height: 16px;
}

.site-header .site-search__mobile-close {
	display: none;
}

/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.site-header .header-action {
	position: relative;

	width: 44px;
	height: 44px;

	min-width: 44px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 0;

	border: 1px solid var(--sh-border);
	border-radius: 12px;

	background: #fff;

	color: var(--sh-secondary);

	cursor: pointer;

	transition:
		background 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease,
		transform 0.15s ease;
}

.site-header .header-action:hover {
	transform: translateY(-1px);

	border-color: #cfccff;

	background: var(--sh-primary-soft);

	color: var(--sh-primary);
}

.site-header .header-action svg {
	width: 20px;
	height: 20px;
}

.site-header .header-action--search {
	display: none;
}

/* =========================================================
   CART
   ========================================================= */

.site-header .global-cart-btn {
	position: relative;

	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;

	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	padding: 0 !important;

	border: 1px solid #d9dde4 !important;
	border-radius: 12px !important;

	background: #fff !important;

	color: var(--sh-secondary) !important;

	text-decoration: none !important;

	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.025) !important;

	transition:
		background 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease,
		transform 0.15s ease !important;
}

.site-header .global-cart-btn:hover {
	transform: translateY(-1px);

	border-color: #c4c0ff !important;

	background: #f7f7ff !important;

	color: var(--sh-primary) !important;
}

.site-header .global-cart-btn:active {
	transform: scale(0.97);
}

.site-header .global-cart-btn__icon {
	width: 21px;
	height: 21px;

	display: block;
}

.site-header .global-cart-btn__badge {
	position: absolute;

	top: -5px;
	left: -5px;

	min-width: 20px;
	height: 20px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 0 5px;

	border: 2px solid #fff;
	border-radius: 999px;

	background: #ef4444;

	color: #fff;

	font-size: 12px;
	font-weight: 900;

	line-height: 1;
}

.site-header .global-cart-btn__badge[hidden] {
	display: none !important;
}

/* =========================================================
   LOGIN
   ========================================================= */

.site-header .header-login {
	height: 44px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 7px;

	padding: 0 14px;

	border: 1px solid var(--sh-primary);
	border-radius: 12px;

	background: var(--sh-primary);

	color: #fff;

	font-family: inherit;
	font-size: 13px;
	font-weight: 800;

	white-space: nowrap;

	cursor: pointer;

	transition:
		background 0.15s ease,
		border-color 0.15s ease,
		transform 0.15s ease;
}

.site-header .header-login:hover {
	transform: translateY(-1px);

	border-color: var(--sh-primary-hover);

	background: var(--sh-primary-hover);
}

.site-header .header-login svg {
	width: 18px;
	height: 18px;
}

/* =========================================================
   ACCOUNT
   ========================================================= */

.site-header .header-account {
	position: relative;
}

.site-header .header-account__trigger {
	height: 44px;
	max-width: 180px;

	display: flex;
	align-items: center;

	gap: 8px;

	padding: 0 9px;

	border: 1px solid var(--sh-border);
	border-radius: 12px;

	background: #fff;

	color: var(--sh-text);

	font-family: inherit;

	cursor: pointer;

	transition:
		background 0.15s ease,
		border-color 0.15s ease,
		transform 0.15s ease;
}

.site-header .header-account__trigger:hover {
	transform: translateY(-1px);

	border-color: #d8d5ff;

	background: #fafaff;
}

.site-header .header-account.is-open .header-account__trigger {
	border-color: #c8c4ff;

	background: #f8f8ff;
}

.site-header .header-account__avatar {
	width: 30px;
	height: 30px;

	flex: 0 0 30px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 9px;

	background: var(--sh-primary);

	color: #fff;

	font-size: 12px;
	font-weight: 900;
}

.header-account__copy {
	min-width: 0;

	display: flex;
	flex-direction: column;

	align-items: flex-start;
}

.header-account__hello {
	color: var(--sh-light);

	font-size: 12px;
	font-weight: 600;

	line-height: 1.25;
}

.header-account__name {
	max-width: 95px;

	overflow: hidden;

	color: var(--sh-text);

	font-size: 12px;
	font-weight: 800;

	line-height: 1.45;

	text-overflow: ellipsis;
	white-space: nowrap;
}

.header-account__chevron {
	width: 15px;
	height: 15px;

	flex: 0 0 15px;

	color: var(--sh-light);

	transition: transform 0.18s ease;
}

.header-account.is-open .header-account__chevron {
	transform: rotate(180deg);
}

/* =========================================================
   ACCOUNT PANEL
   ========================================================= */

.site-header .header-account__panel {
	position: absolute;

	top: calc(100% + 10px);
	left: 0;

	z-index: 2200;

	width: 286px;

	display: none;

	padding: 8px;

	border: 1px solid var(--sh-border);
	border-radius: 16px;

	background: #fff;

	box-shadow: 0 20px 48px rgba(16, 24, 40, 0.13);
}

.site-header .header-account.is-open .header-account__panel {
	display: block;
}

.account-panel__profile {
	display: grid;

	grid-template-columns:
		42px
		minmax(0, 1fr);

	align-items: center;

	gap: 10px;

	padding: 9px;
}

.account-panel__avatar {
	width: 42px;
	height: 42px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 11px;

	background: var(--sh-primary);

	color: #fff;

	font-size: 14px;
	font-weight: 900;
}

.account-panel__profile-copy {
	min-width: 0;
}

.account-panel__name {
	overflow: hidden;

	color: var(--sh-text);

	font-size: 13px;
	font-weight: 900;

	text-overflow: ellipsis;
	white-space: nowrap;
}

.account-panel__hint {
	margin-top: 2px;

	color: var(--sh-muted);

	font-size: 12px;
}

.account-panel__divider {
	height: 1px;

	margin: 5px;

	background: var(--sh-border-soft);
}

.site-header .account-panel__item {
	min-height: 58px;

	display: grid;

	grid-template-columns:
		38px
		minmax(0, 1fr)
		24px;

	align-items: center;

	gap: 9px;

	padding: 7px 8px;

	border-radius: 11px;

	color: var(--sh-text);

	text-decoration: none;

	transition: background 0.15s ease;
}

.site-header .account-panel__item:hover {
	background: var(--sh-surface-soft);
}

.account-panel__item-icon {
	width: 38px;
	height: 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 10px;

	background: #f2f3f5;

	color: var(--sh-secondary);
}

.account-panel__item:hover .account-panel__item-icon {
	background: var(--sh-primary-soft);

	color: var(--sh-primary);
}

.account-panel__item-icon svg {
	width: 18px;
	height: 18px;
}

.account-panel__item-copy {
	min-width: 0;

	display: flex;
	flex-direction: column;
}

.account-panel__item-copy strong {
	color: var(--sh-text);

	font-size: 13px;
	font-weight: 800;
}

.account-panel__item-copy span {
	margin-top: 2px;

	color: var(--sh-muted);

	font-size: 12px;
}

.account-panel__arrow {
	width: 24px;
	height: 24px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: var(--sh-light);
}

.account-panel__arrow svg {
	width: 15px;
	height: 15px;
}

.site-header .account-panel__logout {
	width: 100%;
	min-height: 46px;

	display: flex;
	align-items: center;

	gap: 9px;

	padding: 6px 8px;

	border: 0;
	border-radius: 10px;

	background: transparent;

	color: var(--sh-danger);

	font-family: inherit;
	font-size: 12px;
	font-weight: 800;

	text-align: right;

	cursor: pointer;
}

.site-header .account-panel__logout:hover {
	background: var(--sh-danger-soft);
}

.account-panel__logout-icon {
	width: 34px;
	height: 34px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 9px;

	background: var(--sh-danger-soft);
}

.account-panel__logout-icon svg {
	width: 18px;
	height: 18px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
	.home-container.site-header__inner {
		width: calc(100% - 28px) !important;

		grid-template-columns:
			auto
			minmax(280px, 1fr)
			auto !important;

		gap: 13px !important;
	}

	.site-header .site-brand__name {
		display: none;
	}

	.header-account__copy,
	.header-account__chevron {
		display: none;
	}

	.site-header .header-account__trigger {
		width: 44px;

		padding: 0;

		justify-content: center;
	}
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 960px) {
	:root {
		--sh-height: 62px;
	}

	.home-container.site-header__inner {
		width: calc(100% - 18px) !important;

		min-height: var(--sh-height) !important;

		display: flex !important;

		align-items: center !important;

		gap: 4px !important;

		padding: 8px 0 !important;
	}

	.site-header__start {
		min-width: 0;

		flex: 1 1 auto;

		gap: 3px;
	}

	.site-header__actions {
		flex: 0 0 auto;

		gap: 4px;
	}

	/* brand */

	.site-header .site-brand {
		min-height: 44px;
	}

	.site-header .site-brand__logo {
		width: 36px;
		height: 36px;

		flex-basis: 36px;
	}

	.site-header .site-brand__name {
		display: none;
	}

	/* category trigger */

	.site-header .header-category__trigger {
		width: 44px;
		height: 44px;

		padding: 0;

		border: 1px solid var(--sh-border);

		background: #fff;
	}

	.header-category__trigger-text,
	.header-category__trigger-chevron {
		display: none;
	}

	.header-category__trigger-icon {
		width: 19px;
		height: 19px;
	}

	/*
	   CATEGORY:
	   no bottom sheet, no overlay.
	   Opens directly below the sticky header.
	*/

	.site-header .header-category__panel {
		position: fixed;

		top: 62px;
		right: 8px;
		left: 8px;

		z-index: 2300;

		width: auto;

		max-height: calc(100dvh - 72px);

		border-radius: 0 0 18px 18px;

		box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
	}

	.header-category__head {
		position: sticky;
		top: 0;

		z-index: 4;

		padding: 11px 12px;

		background: #fff;
	}

	.header-category__close {
		width: 44px;
		height: 44px;

		flex-basis: 44px;
	}

	.header-category__body {
		max-height: calc(100dvh - 145px);

		padding: 6px 7px 10px;
	}

	.site-header .header-category__row {
		min-height: 52px;

		padding: 9px 10px;

		font-size: 13px;
	}

	.header-category__sublist {
		margin: 0 7px 8px;

		padding: 6px;
	}

	.site-header .header-category__all-link,
	.site-header .header-category__sub-link {
		min-height: 44px;

		font-size: 12px;
	}

	/* search */

	.site-header .site-search {
		display: none;
	}

	.site-header .header-action--search {
		display: inline-flex;
	}

	/* cart */

	.site-header .global-cart-btn {
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;

		border-radius: 12px !important;
	}

	/* account */

	.site-header .header-account__trigger {
		width: 44px;
		height: 44px;

		min-width: 44px;

		justify-content: center;

		padding: 0;
	}

	.site-header .header-account__avatar {
		width: 30px;
		height: 30px;

		flex-basis: 30px;
	}

	.header-account__copy,
	.header-account__chevron {
		display: none;
	}

	.site-header .header-account__panel {
		position: fixed;

		top: 62px;
		right: 8px;
		left: 8px;

		z-index: 2300;

		width: auto;

		max-height: calc(100dvh - 72px);

		overflow-y: auto;

		border-radius: 0 0 16px 16px;

		box-shadow: 0 18px 45px rgba(16, 24, 40, 0.14);
	}

	.site-header .account-panel__item {
		min-height: 60px;
	}

	/* login */

	.site-header .header-login {
		height: 44px;

		padding: 0 11px;

		font-size: 12px;
	}

	.site-header .header-login svg {
		display: none;
	}

	/* mobile search */

	body.is-mobile-search-open .site-header__start,
	body.is-mobile-search-open .site-header__actions {
		display: none;
	}

	body.is-mobile-search-open .site-header .site-search {
		width: 100%;

		display: block;

		flex: 1;
	}

	body.is-mobile-search-open .site-header .site-search__field {
		height: 46px;

		border-radius: 12px;

		background: #fff;
	}

	body.is-mobile-search-open .site-header .site-search__submit {
		display: none;
	}

	body.is-mobile-search-open .site-header .site-search__mobile-close {
		width: 36px;
		height: 36px;

		flex: 0 0 36px;

		display: flex;
		align-items: center;
		justify-content: center;

		padding: 0;

		border: 0;
		border-radius: 9px;

		background: #f1f2f4;

		color: var(--sh-secondary);

		cursor: pointer;
	}

	.site-search__mobile-close svg {
		width: 18px;
		height: 18px;
	}
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
	.home-container.site-header__inner {
		width: calc(100% - 12px) !important;
	}

	.site-header .site-brand__logo {
		width: 34px;
		height: 34px;

		flex-basis: 34px;
	}

	.site-header .header-category__trigger,
	.site-header .header-action,
	.site-header .global-cart-btn,
	.site-header .header-account__trigger {
		width: 42px !important;
		height: 42px !important;

		min-width: 42px !important;
	}

	.site-header .header-login {
		height: 42px;

		padding: 0 9px;

		font-size: 12px;
	}
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.site-header a:focus-visible,
.site-header button:focus-visible,
.site-header input:focus-visible,
.site-header summary:focus-visible {
	outline: 3px solid rgba(79, 70, 229, 0.12);

	outline-offset: 2px;
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	.header-category__trigger,
	.header-category__trigger-chevron,
	.header-category__row-chevron,
	.site-search__field,
	.site-search__submit,
	.header-action,
	.global-cart-btn,
	.header-login,
	.header-account__trigger,
	.header-account__chevron {
		transition: none;
	}
}
