/* Header */
.landing__header {
	position: absolute;
	top: 30px;
	right: 30px;
	left: 30px;
	z-index: 2;
	color: #fff;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.landing__header .menu-btn {
	align-self: flex-start;
	flex-shrink: 0;
}
.landing__heading {
	/*font-size: 26px;*/
	font-size: max(16px, min(5vw, 26px));
	letter-spacing: 3px;
	text-transform: uppercase;
	padding-right: 40px;
}
.landing__heading span {
	white-space: nowrap;
}
.header {
	color: var(--color-brown-light);
	padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
	z-index: 101;
}
.header > .container-12 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.header--fixed {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	opacity: 0;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	transform: translateY(-100%);
	transition: opacity 250ms ease, transform 250ms ease;
	background-color: #fff;
}
.header-stuck .header--fixed {
	transform: translateY(0);
	opacity: 1;
}
.header--fixed .logo {
	width: 50px;
	height: 50px;
}
.logo {
	width: 50px;
	height: 50px;
	display: block;
	margin-left: auto;
}
.logo svg {
	display: block;
	max-width: 100%;
	max-height: 100%;
}
.menu-btn {
	width: 39px;
	height: 31px;
}
.cart-icon {
	display: flex;
	flex-wrap: nowrap;
}
.cart-icon__icon {
	width: 26px;
	height: 22px;
	margin-right: 5px;
	margin-left: 35px;
}
.doc-type-home .menu-btn {
	width: 39px !important;
	height: 31px !important;
}
.search-container {
	display: flex;
	margin-left: 25px;
}
.search {
	position: absolute;
	left: 0;
	top: 80px;
	width: 100%;
	height: 0;
	overflow: hidden;
	transition: width 750ms cubic-bezier(0.76, 0, 0.24, 1), height 500ms cubic-bezier(0.76, 0, 0.24, 1), opacity 500ms cubic-bezier(0.76, 0, 0.24, 1);
	border-top: 1px solid var(--color-brown-lightest);
	opacity: 0;
}
.header--fixed .search {
	position: fixed;
	z-index: 100;
	top: 70px;
}
.search.is-open {
	height: 34px;
	opacity: 1;
}
.search__input {
	font-size: 18px;
	color: var(--color-brown-dark);
	width: 100%;
	outline: none;
	padding: 2px var(--grid-pad-x);
}
.search__input::placeholder {
	color: var(--color-brown-light);
	opacity: 0.5;
}
.search-btn {
	width: 22px;
	height: 22px;
}

/* Footer */
.footer {
	padding-top: 40px;
	padding-bottom: 40px;
	color: var(--color-brown-light);
	position: relative;
}
.footer-nav {
	font-size: 14px;
}
.footer-nav a {
	display: block;
}
.footer__newsletter-link {
	display: block;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.social-links {
	font-size: 0;
}
.social-links--center {
	text-align: center;
}
.social-links a {
	display: inline-block;
	width: 30px;
	height: 30px;
	color: var(--color-brown-light);
}
.social-links svg {
	display: block;
}
.social-links a + a {
	margin-left: 10px;
}
.copyright {
  font-size: 13px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  color: var(--color-brown-light);
  font-size: 14px;
  padding: var(--spacer-l);
  transition: opacity 250ms ease;
}
.cookie-banner.is-hidden {
	opacity: 0;
}
.cookie-banner a,
.cookie-banner button {
	text-underline-offset: 2px;
	text-decoration: underline;
}
.cookie-banner .container-12 {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.cookie-banner__text {
	padding-right: var(--spacer-l);
}
.cookie-banner__accept {
	flex-shrink: 0;
	flex-grow: 0;
}

/* Back To Top */
.back-to-top {
	position: absolute;
	right: var(--grid-pad-x);
	top: 0;
	margin-top: 0;
	display: flex;
	align-items: center;
	background-color: #fff;
	font-size: 14px;
	padding: var(--spacer-s) var(--spacer-m);
	color: var(--color-brown-light);
	transform: translateY(-100%);
}
.back-to-top__text {
	flex-shrink: 0;
	flex-grow: 0;
}
.back-to-top__icon {
	width: 18px;
	height: auto;
	fill: var(--color-brown-light);
	margin-left: 10px;
	flex-shrink: 0;
	flex-grow: 0;
}

/* Nav */
.nav {
	transition: transform 750ms cubic-bezier(0.76, 0, 0.24, 1);
	transform: translateX(-100%);
	width: 90vw;
	max-width: 600px;
	position: fixed;
	top: 0;
	bottom: 0;
	background-color: #dcd2cc;
	z-index: 1001;
	text-align: center;
	padding: 180px 60px 60px 60px;
}
.nav__content {
	height: 100%;
	overflow-y: auto;
}
.nav__content::-webkit-scrollbar {
	width: 2px;
}
.nav__content::-webkit-scrollbar-track {
	background: #d4c6bf;
}
.nav__content::-webkit-scrollbar-thumb {
	background: #b2998b;
}
.nav__btn {
    letter-spacing: 2px;
}

body.nav-open .nav {
	transform: translateX(0);
}
.nav ul ul {
	height: 0;
	overflow: hidden;
	transition: height 250ms cubic-bezier(0.76, 0, 0.24, 1);
}
.nav ul ul li:last-child {
	padding-bottom: 10px;
}
.nav__item {
	display: inline-block;
	text-transform: uppercase;
	font-size: 17px;
	margin-top: 15px;
}
.nav ul ul li {
	padding-top: 10px;
}
.nav-cover {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.75);
	opacity: 0;
	pointer-events: none;
	transition: opacity 750ms ease;
}
body.nav-open:not(.doc-type-home) .nav-cover {
	opacity: 1;
	pointer-events: all;
}
.close {
	padding: 10px;
	width: 44px;
	height: 44px;
	position: absolute;
    top: 10px;
    right: 10px;
}
.close--modal {
	top: 0;
	right: 0;
}

/* Breadcrumb */
.breadcrumb {
	background-color: var(--background, #ede8e5);
	padding-top: var(--spacer-l);
	padding-bottom: var(--spacer-l);
	font-size: 0;
	letter-spacing: 2px;
}
.breadcrumb__item {
	font-size: 14px;
	display: none;
}
.breadcrumb__item + .breadcrumb__item:before {
	content: "/";
	padding-right: var(--spacer-s);
	padding-left: var(--spacer-s);
}


/* sm */
@media (min-width: 576px) {
	.logo {
		width: 62px;
		height: 62px;
	}
	.search-container {
		margin-left: 35px;
		position: relative;
	}
	.search-btn {
		width: 26px;
		height: 26px;
	}
	.header--fixed .search {
		position: absolute;
	}
	.header--fixed .search,
	.search {
		top: auto;
		left: 60px;
		width: 0;
		height: auto;
		border-top: none;
		border-bottom: 1px solid var(--color-brown-lightest);
	}
	.search.is-open {
		height: auto;
		width: 300px;
	}
	.search__input {
		padding: 0;
	}
	.footer__content {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
}

/* md */
@media (min-width: 768px) {
	.logo {
		width: 72px;
		height: 72px;
	}
	.header {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.landing__header .menu-btn {
		align-self: flex-start;
	}
	.breadcrumb__item {
		display: inline-block;
	}
	.landing__heading {
		font-size: 30px;
		letter-spacing: 5px;
		padding-right: 0;
	}
}

/* lg */
@media (min-width: 992px) {
	.header {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.landing__header {
		top: 62px;
		right: 62px;
		left: 62px;
	}
	.landing__header .container-12 {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.landing__header .menu-btn {
		align-self: center;
	}
}

/* xl */
@media (min-width: 1200px) {
}

/* xxl */
@media (min-width: 1400px) {
}