html {
	box-sizing: border-box;
	scroll-padding-top: 60px;
}
@media all and (min-width: 1024px) {
	html { scroll-padding-top: 120px; }
}
*, *:before, *:after {
	box-sizing: inherit;
}

body {
	padding-top: 96px;
	overflow-x: hidden;
	color: #878787;
}

body.menu--active { overflow: hidden; }

header.site-header {
	background: white;
	height: 96px;
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	transform: translate3d(-50%,0,0);
	transition: height .2s ease-in-out .4s;
	z-index: 5;
}

.header__line {
	position: absolute;
	top: 0;
	right: 0;
	width: 42dvw;
	height: 4px;
	background: var(--colors-grey-dark);
}

.header__inner {
	padding: 1.5625rem 1.875em;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

.header__top-row {
	display: flex;
	justify-content: space-between;
	gap: 0;
	flex-wrap: wrap;
}

.header__logo {
	display: block;
	max-width: 148px;
	order: 1;
}

header.site-header a { font-family: 'AeonikFono-Regular', sans-serif; }

.header__logo svg { width: 100%; }

.header__search {
	order: 3;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in 0s;
	display: grid;
	grid-template-rows: 0fr;
}

.header__search__inner {
	overflow: hidden;
}

.header__search__inner form {
	padding-top: 1rem;
}

.header__search__inner form input[type="text"] {
	width: 100%;
}

.header__top-links {
	display: flex;
	gap: 1rem;
	order: 2;
}

.header__icon-link {
	color: var(--colors-grey-dark);
	display: flex;
	align-items: center;
	font-size: .75em;
	gap: .5rem;
	text-decoration: none;
	text-transform: uppercase;
}

.header__icon-link span:not(.header-cart-link__count) { display: none; }

.header-cart-link { position: relative; }
.header-cart-link__count {
	position: absolute;
	width: 16px;
	height: 16px;
	font-size: 10px !important;
	border-radius: 999px;
	background: var(--colors-green);
	color: white;
	font-weight: 600;
	top: 4px;
	left: 0;
	transform: translate3d(0,0,0);
	display: inline-block;
	line-height: 16px;
	text-align: center;
	z-index: 3;
}

.header__menu {
	display: grid;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in 0s;
	grid-template-rows: 0fr;
}

.header__menu__inner { overflow: hidden; }

.mega-menu {
	margin: 1.625em 0 0;
}

.mega-menu li a {
	color: var(--colors-grey-dark);
	font-size: .75rem;
	line-height: 1.6666666666666667em;
	text-decoration: none;
	text-transform: uppercase;
} .mega-menu li a:hover { color: var(--colors-green); text-decoration: underline; }

	.mega-menu > li {
		display: grid;
		grid-auto-columns: 1fr;
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: .5em 0;
		grid-template-areas:
    "anchor"
    "sub-menu";
		margin-bottom: .75em;
		cursor: pointer;
	}

	.mega-menu > li > a {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: .5rem;
		line-height: 2em;
		grid-area: anchor;
		align-self: center;
		position: relative;
	}

	.mega-menu > li > a span {
		margin-left: auto;
	}

	.sub-menu {
		display: grid;
		grid-template-rows: 0fr;
		transition: grid-template-rows .2s ease-in-out 0s;
		border-top: 1px solid var(--colors-grey-light);
		grid-area: sub-menu;
	}

	li.has-sub-menu a.sub-menu--active + .sub-menu {
		grid-template-rows: 1fr;
	}

	.sub-menu__inner { overflow: hidden; }

	.sub-menu ul {
		margin: 0;
		padding: .75em 0;
	}

		.sub-menu ul li { margin-bottom: 4px; }
		.sub-menu ul li a {
			line-height: 1.6666666666666667em;
			position: relative;
			padding-left: 14px;
		}

		.sub-menu ul li a::before {
			font-family: 'AeonikFono-Regular', sans-serif;
			content: "↳";
			color: var(--colors-green);
			display: block;
			position: absolute;
			top: -1px;
			left: 0;
			font-size: 12px;
			width: 1em;
			height: 20px;
		}


/* header.site-header menu active */
body.menu--active header.site-header {
	height: 100dvh;
	overflow: auto;
	transition: height .3s ease-in-out 0s; /* 3 */
}

body.menu--active header.site-header .header__search {
	opacity: 1;
	pointer-events: all;
	transition: opacity 0.3s ease-in .3s;
	grid-template-rows: 1fr;
}

body.menu--active header.site-header .header__menu {
	opacity: 1;
	pointer-events: all;
	transition: opacity 0.3s ease-in .3s;
	grid-template-rows: 1fr;
}

@media all and (min-width: 960px) {

	body {
		padding-top: 108px;
	}

	body.menu--active { overflow: auto; }

	header.site-header li.mobile-only { display: none; }

	header.site-header {
		height: auto;
		transition: none;
	}

	body.menu--active header.site-header {
		height: auto;
		overflow: hidden;
		transition: none;
	}

	.header__line {
		position: absolute;
		top: 0;
		right: 0;
		width: 38dvw;
		height: 8px;
		background: var(--colors-grey-dark);
	}

	header.site-header .header__top-row {
		display: grid;
		grid-auto-columns: 1fr;
		grid-template-columns: 1fr 0.5fr 1.3fr 1.2fr 1fr;
		grid-template-rows: auto;
		grid-template-areas:
    "logo logo search top_links top_links";
		height: 58px;
	}

	header.site-header .header__logo {
		grid-area: logo;
		align-self: center;
	}

	header.site-header .header__search {
		grid-area: search;
		opacity: 1;
		grid-template-rows: 1fr;
		pointer-events: all;
		align-self: center;
		justify-self: center;
	}
		.header__search__inner form {
			padding-top: 0;
		}

		.header__search__inner form input {width: 100%;}

	header.site-header .header__top-links {
		grid-area: top_links;
		align-self: center;
		justify-self: end;
		gap: 2rem;
	}

	.header__icon-link span:not(.header-cart-link__count) { display: inline-block; }

	.header-cart-link__count {
		top: -4px;
		left: -4px;
	}

	header.site-header .header__menu {
		display: grid;
		grid-template-rows: 0fr;
		opacity: 0;
		transition: grid-template-rows .2s ease-in-out .2s, opacity .2s ease 0s;
	}

	body.menu--active header.site-header .header__menu {
		opacity: 1;
		pointer-events: all;
		grid-template-rows: 1fr;
		transition: grid-template-rows .2s ease-in-out, opacity .2s ease .2s;
	}

	header.site-header .header__menu__inner {
		overflow: hidden;
	}

	.mega-menu {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		gap: 1.75em;
	}

		.mega-menu li {
			display: flex;
			flex-direction: column;
			cursor: unset;
		}
		.mega-menu li .open-close { display: none; }
		.mega-menu li .sub-menu { grid-template-rows: 1fr; }
		.mega-menu > li > a { align-self: start; }

		.mega-menu li:first-of-type .sub-menu {
			max-width: 200px;
		}

}

@media all and (min-width: 1024px) {
	header.site-header .header__logo { max-width: 200px; }
}

@media all and (min-width: 1280px) {

	body {
		padding-top: 120px;
	}

	.header__line {
		width: 34dvw;
		max-width: 488px;
		height: 16px;
	}

	header.site-header .header__top-row {
		grid-template-columns: 0.5fr .75fr 1fr .75fr 0.5fr;
		height: 70px;
	}

	header.site-header .header__top-links {
		gap: 4rem;
	}

	header.site-header .header__search { max-width: 355px; }

	header.site-header .header__logo { max-width: 256px; }

	.mega-menu {
		grid-template-columns: 1.75fr 1fr 1fr 1fr 1fr;
	}
}

@media all and (min-width: 1440px) {

	header.site-header .header__top-row {
		grid-template-columns: .5fr .65fr 1.15fr .75fr 0.5fr;
		height: 70px;
	}

	header.site-header .header__search {
		justify-self: start;
	}

	header.site-header .header__top-links {
		gap: 5.75rem;
		padding-right: 1.25em;
	}

	.header__line {
		width: 34dvw;
		max-width: 488px;
		height: 16px;
	}

}

/* Footer */

footer.site-footer {
	background: white;
	position: relative;
}

@media all and (min-width: 960px) {
	footer.site-footer {
		margin-top: 7.25em;
	}
}

@media all and (min-width: 1280px) {
	footer.site-footer {
		margin-top: 13.875em;
	}
}

.footer__inner {
	padding: 3.125em 1.875em;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer__line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 42dvw;
	height: 4px;
	background: var(--colors-orange);
}

.footer__bigSocial {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer__large-text {
	font-size: 1.25em;
	line-height: 1.3em;
	max-width: 623px;
}

.footer__socials {
	display: flex;
	gap: .5rem;
}

.footer__links li {
	font-size: 1rem;
	line-height: 1.25rem;
	margin-bottom: 0;
}

.footer__links li a {
	color: #878787;
	text-decoration: none;
}

.footer__copyright {
	font-size: 1rem;
	line-height: 1rem;
	display: flex;
	align-items: end;
}

@media all and (min-width: 768px) {
	.footer__inner {
		display: grid;
		grid-template-columns: 3fr 2fr;
		grid-template-rows: 1fr 1fr;
		gap: 2rem 4rem;
	}
}

@media all and (min-width: 960px) {
	.footer__line {
		height: 8px;
	}

	.footer__large-text {
		font-size: 1.5625em;
		line-height: 1.2em;
	}

	.footer__button { margin-right: 7rem; }
	.footer__button,
	.footer__copyright {
		justify-self: flex-start;
	}

	.footer__inner {
		grid-template-columns: 3fr fit-content(300px);
		gap: 9rem;
	}
}

@media all and (min-width: 1280px) {

	.footer__inner {
		padding: 6.25em 0 6.25em 3em;
		gap: 6em 9em;
	}

	.footer__line {
		height: 16px;
		max-width: 488px;
	}
}

.slick-dots li {
	font-size: 1em;
	height: 1em;
	width: 1em;
}

.slick-dots li button {
	width: 8px;
	height: 8px;
	padding: 8px;
}
.slick-dots li button::before {
	font-size: 8px;
	line-height: 20px;
	width: 16px;
	height: 16px;
	opacity: .30;
}

.slick-dots li.slick-active button::before {
	color: var(--colors-green);
	font-size: 16px;
}

.slick-dots li:hover button::before {
	color: var(--colors-green);
}



.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register
{
	border: 0;
	padding: 0;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea
{
	color: var(--colors-grey-dark);
	font-size: 12px;
	font-family: 'AeonikFono-Regular', sans-serif;
	text-transform: uppercase;
	line-height: 1.6666666666666667em;
	border: 1px solid var(--colors-grey-light);
	display: flex;
	gap: .5rem;
	padding: 0.75rem 1rem;
}

.includes_tax .amount {
	display: none!important;
}