:root {
	--totcor-header-bg: #ffffff;
	--totcor-header-text: #111111;
	--totcor-panel-bg: #020202;
	--totcor-panel-text: #f8f5ef;
	--totcor-panel-muted: rgba(248, 245, 239, 0.7);
}

html {
	scrollbar-gutter: stable;
}

[hidden] {
	display: none !important;
}

body.totcor-lock-scroll {
	overflow: hidden;
}

.totcor-header {
	position: relative;
	z-index: 10000;
	background: var(--totcor-header-bg);
	border-bottom: 0;
	transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.totcor-header--transparent {
	background: transparent;
	border-bottom-color: transparent;
}

.totcor-header__inner {
	margin: 0 auto;
	max-width: 1600px;
	padding: 0 60px;
}

.totcor-header__bar {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	min-height: 100px;
}

.totcor-header__brand,
.totcor-header__actions {
	align-items: center;
	display: flex;
}

.totcor-header__actions {
	gap: 10px;
}

.totcor-header__logo-link {
	display: inline-flex;
	align-items: center;
}

.totcor-header__logo-image {
	display: block;
	height: auto;
	max-width: min(240px, 30vw);
}

.totcor-header__site-name {
	color: var(--totcor-header-text);
	font-family: "Montserrat", sans-serif;
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.totcor-header .totcor-header__icon-button,
.totcor-header .totcor-header__menu-toggle {
	align-items: center;
	appearance: none;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 999px;
	box-shadow: none !important;
	color: var(--totcor-header-text) !important;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	gap: 10px;
	justify-content: center;
	min-height: 40px;
	min-width: 40px;
	padding: 0 6px !important;
	transition: color 0.2s ease, transform 0.2s ease;
}

.totcor-header .totcor-header__icon-button:hover,
.totcor-header .totcor-header__menu-toggle:hover,
.totcor-header .totcor-header__icon-button:focus,
.totcor-header .totcor-header__menu-toggle:focus {
	background: transparent !important;
	background-color: transparent !important;
	color: var(--totcor-header-text) !important;
	box-shadow: none !important;
}

.totcor-header__icon-button svg,
.totcor-menu__close svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.55;
	width: 18px;
}

.totcor-menu__close svg {
	display: block;
	height: 22.5px;
	transform-box: fill-box;
	transform-origin: center;
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
	width: 22.5px;
}

.totcor-menu__close:hover svg,
.totcor-menu__close:focus svg,
.totcor-menu__close:focus-visible svg,
.totcor-menu__close:active svg {
	transform: rotate(90deg);
}

.totcor-header__menu-label {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.totcor-header__cart-button {
	position: relative;
}

.totcor-header__cart-count {
	align-items: center;
	background: #f04141;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 0.63rem;
	font-weight: 700;
	height: 16px;
	justify-content: center;
	min-width: 16px;
	padding: 0 4px;
	position: absolute;
	right: -2px;
	top: 1px;
}

.totcor-header__cart-count:empty {
	display: none;
}

.totcor-search-modal {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	padding: 40px 56px;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.32s ease;
	visibility: hidden;
	z-index: 10004;
}

.totcor-search-modal.is-open,
.totcor-search-modal.is-closing {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.totcor-search-modal__overlay {
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.8);
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.totcor-search-modal__dialog {
	color: #111111;
	max-width: 1180px;
	padding: 0 84px;
	position: relative;
	transform: translate3d(0, 30px, 0);
	transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.62s ease;
	opacity: 0;
	width: 100%;
	z-index: 1;
}

.totcor-search-modal.is-open .totcor-search-modal__overlay {
	opacity: 1;
}

.totcor-search-modal.is-open .totcor-search-modal__dialog {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.totcor-search-modal.is-closing .totcor-search-modal__overlay {
	opacity: 0;
	transition-duration: 0.88s;
}

.totcor-search-modal.is-closing .totcor-search-modal__dialog {
	opacity: 0;
	transform: translate3d(0, 36px, 0);
	transition-duration: 0.82s, 0.68s;
}

.totcor-search-modal__close,
.totcor-cart__close {
	align-items: center;
	appearance: none;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #111111 !important;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	padding: 0;
	text-decoration: none !important;
}

.totcor-search-modal__close {
	color: #111111 !important;
	opacity: 0;
	position: fixed;
	right: 40px;
	top: 28px;
	transform: translate3d(0, -8px, 0);
	transition: opacity 0.52s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 10005;
}

.totcor-search-modal.is-open .totcor-search-modal__close {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.totcor-search-modal.is-closing .totcor-search-modal__close {
	opacity: 0;
	transform: translate3d(0, -10px, 0);
	transition-duration: 0.42s, 0.5s;
}

.totcor-search-modal__close svg,
.totcor-cart__close svg {
	fill: none;
	height: 30px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	width: 30px;
}

.totcor-search-modal__content {
	max-width: none;
	width: 100%;
}

.totcor-search-modal__form {
	align-items: center;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.totcor-search-modal__input {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(17, 17, 17, 0.28);
	border-radius: 0;
	color: #111111;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.7rem, 3.4vw, 3.9rem);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 1;
	min-height: 110px;
	padding: 0 0 16px;
	width: 100%;
}

.totcor-search-modal__input::placeholder {
	color: rgba(17, 17, 17, 0.72);
}

.totcor-search-modal__input:focus {
	border-bottom-color: rgba(17, 17, 17, 0.82);
	outline: none;
}

.totcor-search-modal__submit {
	align-items: center;
	appearance: none;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none !important;
	color: #111111 !important;
	cursor: pointer;
	display: inline-flex;
	font-family: "Montserrat", sans-serif;
	font-size: 0.82rem;
	font-weight: 500;
	justify-content: center;
	letter-spacing: 0.16em;
	min-height: 110px;
	padding: 0;
	text-decoration: none !important;
	text-transform: uppercase;
}

.totcor-search-modal__submit:hover,
.totcor-search-modal__submit:focus {
	background: transparent !important;
	background-color: transparent !important;
	color: #111111 !important;
	box-shadow: none !important;
	opacity: 0.7;
	text-decoration: none !important;
}

.totcor-menu__overlay {
	background: rgba(0, 0, 0, 0.45);
	inset: 0;
	opacity: 0;
	position: fixed;
	transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 10002;
}

.totcor-cart__overlay {
	background: rgba(0, 0, 0, 0.36);
	inset: 0;
	opacity: 0;
	position: fixed;
	transition: opacity 0.38s ease;
	z-index: 10002;
}

.totcor-menu {
	inset: 0;
	pointer-events: none;
	position: fixed;
	visibility: hidden;
	z-index: 10003;
}

.totcor-cart {
	inset: 0;
	pointer-events: none;
	position: fixed;
	visibility: hidden;
	z-index: 10003;
}

.totcor-menu.is-open,
.totcor-menu.is-closing {
	pointer-events: auto;
	visibility: visible;
}

.totcor-cart.is-open {
	pointer-events: auto;
	visibility: visible;
}

.totcor-menu__panel {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 35%),
		var(--totcor-panel-bg);
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
	color: var(--totcor-panel-text);
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-left: auto;
	max-width: min(640px, 100vw);
	overflow: auto;
	padding: 24px 28px 40px;
	pointer-events: auto;
	opacity: 0.96;
	transform: translate3d(108%, 0, 0);
	transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.82s ease;
	width: 100%;
	will-change: transform;
}

.totcor-cart__panel {
	background: #ffffff;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.16);
	color: #111111;
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-left: auto;
	max-width: min(440px, 100vw);
	overflow: auto;
	padding: 28px 24px 32px;
	transform: translate3d(104%, 0, 0);
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
	width: 100%;
	will-change: transform;
}

.totcor-menu.is-open .totcor-menu__panel,
.totcor-menu.is-closing .totcor-menu__panel {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.totcor-cart.is-open .totcor-cart__panel {
	transform: translate3d(0, 0, 0);
}

.totcor-menu.is-closing .totcor-menu__panel {
	opacity: 0.94;
	transform: translate3d(108%, 0, 0);
	transition-duration: 1.45s, 1.1s;
}

.totcor-menu__overlay.is-open {
	opacity: 1;
}

.totcor-cart__overlay.is-open {
	opacity: 1;
}

.totcor-menu__overlay.is-closing {
	transition-duration: 1.25s;
}

.totcor-menu__header {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 18px;
}

.totcor-cart__header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
}

.totcor-cart__eyebrow {
	color: rgba(17, 17, 17, 0.56);
	font-family: "Montserrat", sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	margin: 0;
	text-transform: uppercase;
}

.totcor-menu__close {
	color: var(--totcor-panel-text);
	padding: 0;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.totcor-cart__close {
	color: #111111;
}

.totcor-menu__close:hover {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.totcor-cart__close:hover {
	background: transparent;
}

.totcor-menu__body {
	flex: 1;
}

.totcor-menu__footer {
	color: var(--totcor-panel-muted);
	font-family: "Montserrat", sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	line-height: 1.5;
	margin: 28px 0 0;
}

.totcor-cart__body {
	flex: 1;
}

.totcor-cart .woocommerce-mini-cart {
	list-style: none;
	margin: 0;
	padding: 0;
}

.totcor-cart .woocommerce-mini-cart-item {
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
	display: grid;
	gap: 12px;
	grid-template-columns: 88px minmax(0, 1fr);
	padding: 16px 0;
	position: relative;
}

.totcor-cart .woocommerce-mini-cart-item a {
	color: #111111;
	text-decoration: none;
}

.totcor-cart .woocommerce-mini-cart-item img {
	display: block;
	height: auto;
	width: 88px;
}

.totcor-cart .quantity,
.totcor-cart .woocommerce-mini-cart__total,
.totcor-cart .woocommerce-mini-cart__buttons {
	font-family: "Montserrat", sans-serif;
}

.totcor-cart .woocommerce-mini-cart__total {
	border-top: 1px solid rgba(17, 17, 17, 0.08);
	margin: 18px 0 0;
	padding-top: 18px;
}

.totcor-cart .woocommerce-mini-cart__buttons {
	display: grid;
	gap: 12px;
	margin: 18px 0 0;
}

.totcor-cart .woocommerce-mini-cart__buttons .button {
	align-items: center;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 999px;
	box-shadow: none !important;
	color: #111111 !important;
	display: inline-flex;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	text-decoration: none !important;
}

.totcor-cart .woocommerce-mini-cart__buttons .button:hover,
.totcor-cart .woocommerce-mini-cart__buttons .button:focus,
.totcor-cart .woocommerce-mini-cart__buttons .button.checkout,
.totcor-cart .woocommerce-mini-cart__buttons .button.checkout:hover,
.totcor-cart .woocommerce-mini-cart__buttons .button.checkout:focus {
	background: transparent !important;
	background-color: transparent !important;
	color: #111111 !important;
	box-shadow: none !important;
	opacity: 0.7;
	text-decoration: none !important;
}

.totcor-cart .remove {
	align-items: center;
	border: 0;
	color: rgba(17, 17, 17, 0.56);
	display: inline-flex;
	font-size: 1.1rem;
	height: 28px;
	justify-content: center;
	position: absolute;
	right: 0;
	text-decoration: none;
	top: 18px;
	width: 28px;
}

.totcor-cart .woocommerce-mini-cart__empty-message {
	color: rgba(17, 17, 17, 0.6);
	font-family: "Montserrat", sans-serif;
	margin: 0;
}

.totcor-menu__nav,
.totcor-menu__nav ul {
	width: 100%;
}

.totcor-menu__list,
.totcor-menu__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.totcor-menu__list > li {
	border-bottom: 0;
	padding: 8px 0;
}

.totcor-menu__list li {
	position: relative;
}

.totcor-menu__list li.menu-item-has-children {
	align-items: center;
	display: grid;
	grid-template-columns: max-content 28px;
	justify-content: start;
}

.totcor-menu__list a {
	color: var(--totcor-panel-text);
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.08;
	padding: 12px 44px 12px 0;
	text-decoration: none;
}

.totcor-menu__list li.menu-item-has-children > a {
	padding-right: 8px;
	width: auto;
}

.totcor-menu__list .current-menu-item > a,
.totcor-menu__list a:hover {
	color: #ffffff;
}

.totcor-menu__submenu-toggle {
	align-items: center;
	appearance: none;
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none !important;
	color: var(--totcor-panel-text);
	cursor: pointer;
	display: inline-flex;
	height: 28px;
	justify-content: center;
	padding: 0;
	position: relative;
	right: auto;
	top: auto;
	transform: none;
	transition: color 0.28s ease, opacity 0.28s ease;
	width: 28px;
}

.totcor-menu__submenu-toggle:hover,
.totcor-menu__submenu-toggle:focus {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	opacity: 0.8;
}

.totcor-menu__submenu-toggle span {
	display: block;
	height: 16px;
	position: relative;
	width: 16px;
	transform: rotate(0deg);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.totcor-menu__submenu-toggle span::before {
	border-bottom: 1px solid currentColor;
	border-right: 1px solid currentColor;
	content: "";
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center center;
	height: 11px;
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
	width: 11px;
	transform: translate(-50%, -58%) rotate(45deg);
}

.totcor-menu__list li.is-open > .totcor-menu__submenu-toggle span {
	transform: rotate(180deg);
}

.totcor-menu__list .sub-menu {
	grid-column: 1 / -1;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 0 10px 22px;
	transform: translateY(-8px);
	transition:
		max-height 0.52s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.34s ease,
		transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.totcor-menu__list .sub-menu li {
	border: 0;
}

.totcor-menu__list .sub-menu a {
	color: var(--totcor-panel-muted);
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	font-weight: 400;
	padding: 8px 38px 8px 0;
}

.totcor-menu__list .sub-menu .sub-menu {
	padding-left: 18px;
}

.totcor-menu__list li.is-open > .sub-menu {
	max-height: var(--submenu-height, 480px);
	opacity: 1;
	transform: translateY(0);
}

.totcor-menu__empty {
	color: var(--totcor-panel-muted);
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
	max-width: 28rem;
}

.totcor-header--transparent .totcor-header__site-name,
.totcor-header--transparent .totcor-header__icon-button,
.totcor-header--transparent .totcor-header__menu-toggle,
.totcor-header--transparent .totcor-header__menu-label {
	color: #ffffff !important;
}

.totcor-header--transparent .totcor-header__logo-image {
	filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
	.totcor-header__inner {
		padding: 0 20px;
	}

	.totcor-header__bar {
		min-height: 82px;
	}

	.totcor-header__actions {
		gap: 4px;
	}

	.totcor-header__logo-image {
		max-width: min(185px, 46vw);
	}

	.totcor-menu__panel {
		padding: 18px 20px 32px;
	}

	.totcor-cart__panel {
		padding: 20px 18px 26px;
	}

	.totcor-search-modal {
		padding: 24px 20px;
	}

	.totcor-search-modal__dialog {
		padding: 0;
	}

	.totcor-search-modal__close {
		right: 20px;
		top: 18px;
	}

	.totcor-search-modal__form {
		grid-template-columns: 1fr;
	}

	.totcor-search-modal__input {
		font-size: clamp(1.4rem, 7.6vw, 2.4rem);
		min-height: 84px;
		padding-bottom: 14px;
	}

	.totcor-search-modal__submit {
		justify-content: flex-start;
		letter-spacing: 0.14em;
		min-height: auto;
	}

	.totcor-menu__list > li {
		padding: 4px 0;
	}

	.totcor-menu__list a {
		font-size: clamp(1.65rem, 8vw, 2.6rem);
	}

	.totcor-menu__list .sub-menu a {
		font-size: 1.05rem;
	}
}
