/** Shopify CDN: Minification failed

Line 1227:26 Unterminated string token

**/
.global--header {
	width: 100%;
	z-index: 7000;
	padding: 0;
	margin: 0;
	position: sticky;
	top: 0;
	box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 24px 0px;
}

.global--header--sticky {
	box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 24px 0px;
}

.global--header--announcement {
	display: block;
	width: 100%;
	background: #1D1D1B;
	padding: 9px 15px 7px;
	box-sizing: border-box;
	text-decoration: none;
	text-align: center;
    position: relative;
    z-index: 999;
}

.global--header--announcement__title {
	font-size: 11px;
	line-height: 16px;
	color: #EDE6DD;
	align-items: center;
	padding: 0;
	font-family: 'GT Pressura Extended';
	letter-spacing: 0.22px;
	text-transform: uppercase;
}

.global--header--announcement__title p {
    margin: 0;
}

.component--header--navbar {
	width: 100%;
	position: relative;
	background: rgba(237, 230, 221, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid #1D1D1B;
}

body.lock-scroll .component--header--navbar {
	backdrop-filter: none;
	background-color: #1D1D1B !important;
}

body.megamenu--overlay.body--overlay .component--header--navbar{
  backdrop-filter: none;
  border-bottom: 0;
}

.component--header--navbar__container {
	padding: 12px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
    max-width: 1512px;
    margin: 0 auto;
}

.component--header--navbar__brand {
    margin-left: 20px;
}

.component--header--navbar__logo,
.component--header--navbar__logo_static {
    display: flex;
    justify-content: center;
    align-items: center;
}

.component--header--navbar__start {
	display: flex;
	align-items: center;
	justify-content: center;
}

.component--header--navbar__end {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	z-index: 1;
}

.global--header--primary-menu {
	display: none;
	gap: 32px;
	height: 100%;
}

.global--header--secondary-menu {
	display: none;
	width: 100%;
	position: absolute;
	top: 56px;
	left: 0px;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	background-color: transparent;
}

.global--header--secondary-menu__item {
	font-family: "Acumin Pro Condensed";
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 100%;
	text-align: left;
	color: #466062;
	text-decoration: none;
	cursor: pointer;
	height: inherit;
	box-sizing: border-box;
	transition: color 0.1s ease;
	text-transform: uppercase;
	overflow: hidden;
	white-space: nowrap;
}

.global--header--secondary-menu__item:hover {
	color: #00AB9F;
}

.global--header--secondary-menu__link {
	position: relative;
}

.global--header--secondary-menu__link::after {
	position: absolute;
	left: 0px;
	bottom: -4px;
	content: "";
	display: block;
	width: 0;
	height: 2px;
	margin: 2px 0 0;
	background: #d3dfe0;
	transition: width 0.3s;
	border-radius: 24px;
	display: none;
}

.global--header--mobile-menu {
	display: block;
    margin-top: -6px;
}

.global--header--mobile-menu__wrapper.global--header--mobile-menu__wrapper--active {
	z-index: 90000;
	position: relative;
	border: 1px solid #fff;
	border-radius: 100%;
	padding: 4px;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.global--header--mobile-menu__wrapper.global--header--mobile-menu__wrapper--active .global--header--mobile-menu__icon {
	margin-top: -6px;
}

.global--header--mobile-menu__icon {
	width: 20px;
	height: 15px;
	position: relative;
	margin: 0;
	transform: rotate(0deg);
	/* transition: 0.5s ease-in-out; */
	cursor: pointer;
	z-index: 8000;
}

.global--header--mobile-menu__icon span {
	display: block;
	position: absolute;
	height: 1.5px;
	width: 100%;
	background: #000;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	/* transition: 0.25s ease-in-out; */
}

.global--header--mobile-menu__icon--active span {
	background: #fff;
}

.global--header--mobile-menu__icon span:nth-child(1) {
	top: 0px;
}

.global--header--mobile-menu__icon span:nth-child(2) {
	top: 7px;
}

.global--header--mobile-menu__icon span:nth-child(3) {
	top: 14px;
}

.global--header--mobile-menu__icon--active span:nth-child(1) {
	top: 10px;
	transform: rotate(135deg);
}

.global--header--mobile-menu__icon--active span:nth-child(2) {
	opacity: 0;
	/* left: -60px; */
}

.global--header--mobile-menu__icon--active span:nth-child(3) {
	top: 10px;
	transform: rotate(-135deg);
}

.global--header--mobile-menu__content {
	position: fixed;
	height: calc(100vh - var(--header-height, 115px));
	top: var(--header-height, 115px);
	left: 0;
	bottom: 0;
	width: calc(100% - 0px);
	z-index: -1;
	padding: 0;
	box-sizing: border-box;
	background: #1D1D1B;
	overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
	transform: translateY(-150%);
	display: flex;
	flex-direction: column;
    opacity:0;
}

.global--header--mobile-menu__content--active {
	transform: translateY(-1px);
    opacity:1;
}

.global--header--mobile-menu__container {
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
}

.global--header--mobile-menu__links {
	width: 100%;
	margin: 1rem auto 3rem;
}

.global--header--mobile-menu__links svg {
	height: 1.125rem;
	width: auto;
}

.global--header--mobile-menu__link {
	font-family: "Acumin Pro Condensed";
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
	color: #16383b;
	padding: 1rem 2.5rem;
	text-decoration: none;
	text-transform: uppercase;
}

.global--header--mobile-menu__divider {
	width: 100%;
	height: 2px;
	background-image: linear-gradient(to right, #d0d7d8 50%, #16383b 50%);
	background-position: top;
	background-size: 24px 2px;
	background-repeat: repeat-x;
	opacity: 0.2;
}

.global--header--mobile-menu__account {
	background: #d3ede9;
	padding: 1rem 1.5rem;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.global--header--mobile-menu__account--link {
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1;
	text-align: right;
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	color: #16383b;
}

.component--mobile-menu--product-slider {
	margin-bottom: 2rem;
}

.component--mobile-menu--product-card {
	display: block;
	text-decoration: none;
}

.component--mobile-menu--product-card__media-wrapper {
	position: relative;
	background: transparent;
	height: 100%;
	width: 100%;
	padding-top: 130%;
	box-sizing: border-box;
	text-decoration: none;
	border-radius: none;
	overflow: hidden;
}

.component--mobile-menu--product-card__image {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.component--mobile-menu--product-card__info {
	margin: 0.875rem 0 0;
}

.component--mobile-menu--product-card__title {
	font-family: "Acumin Pro Condensed";
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
	color: #16383b;
	z-index: 80;
	margin: 0;
	width: 100%;
}

.global--header--mega-menu {
	display: none;
}

.global--header--mega-menu__opener {
	transition: all 0.1s ease;
}

.global--header--mega-menu__opener--active {
	color: #262626;
}

.global--header--mega-menu__content {
	display: none;
}

.global--header--mega-menu__container {
	padding: 0;
	width: 100%;
}

.global--header--mega-menu__menu {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	box-sizing: border-box;
}

.global--header--mega-menu__divider {
	width: 2px;
	height: 312px;
	background-image: linear-gradient(to bottom, #16383b 50%, #d0d7d8 5%);
	background-position: top;
	background-size: 1px 20px;
	background-repeat: repeat-y;
	opacity: 0.2;
}

.global--header--mega-menu__button {
	display: block;
	width: 100%;
	background: #00AB9F;
	padding: 1rem;
	font-family: "Acumin Pro Condensed";
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFFFFF;
}

.component--mega-menu--product-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	width: 33%;
	padding: 3rem 0 3.75rem;
	transition: transform 0.2s ease;
}

.component--mega-menu--product-card__media-wrapper {
	position: relative;
	background: transparent;
	width: 120px;
	padding-top: 120px;
	box-sizing: border-box;
	text-decoration: none;
	border-radius: none;
	overflow: hidden;
}

.component--mega-menu--product-card__image {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.component--mega-menu--product-card__info {
	margin: 1.5rem 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.component--mega-menu--product-card__title {
	font-family: "Acumin Pro Condensed";
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: #16383b;
	z-index: 80;
	margin: 0 0 0.75rem;
}

.component--mega-menu--product-card__subtitle {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	text-align: left;
	color: #738889;
	z-index: 80;
	margin: 0;
}

.global--contact-form__overlay {
	position: fixed;
	z-index: 99999999;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(28, 75, 78, 0.65);
	opacity: 0;
	visibility: hidden;
	will-change: opacity, visibility;
}

.global--contact-form__overlay--active {
	opacity: 1;
	visibility: visible;
}

.global--contact-form__container {
	position: fixed;
	z-index: 1000000000000000000;
	right: 0px;
	top: 0px;
	width: 100%;
	height: 100vh;
	background: #F6F7F7;
	box-shadow: -9px 0px 25px rgba(0, 0, 0, 0.1);
	-webkit-backdrop-filter: blur(45px);
	backdrop-filter: blur(45px);
	will-change: transform, opacity, visibility;
	transition: transform 0.25s ease;
	transform: translateX(100%);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.global--contact-form__container--active {
	transform: translateX(0%);
}

.global--contact-form__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 1.125rem;
	height: 1.125rem;
	background: transparent;
	border: none;
	cursor: pointer;
}

.global--contact-form__wrapper {
	padding: 50px 32px 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.global--contact-form__divider {
	width: 100%;
	height: 2px;
	background-image: linear-gradient(to right, #d0d7d8 50%, #16383b 50%);
	background-position: top;
	background-size: 24px 2px;
	background-repeat: repeat-x;
	opacity: 0.2;
	margin: 3.5rem auto 3rem;
}

.global--contact-form__titles {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.global--contact-form__logo {
	background: #00AB9F;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 1rem 2rem;
	height: 100%;
	margin: 0 0 3rem;
}

.global--contact-form__logo svg {
	width: 57.99px;
	height: 32px;
}

.global--contact-form__title {
	font-family: "Acumin Pro Condensed";
	font-size: 2.25rem;
	line-height: 1.2;
	font-weight: 600;
	color: #16383b;
	text-align: center;
	max-width: 280px;
	margin: 0 auto;
	text-transform: uppercase;
}

.global--contact-form__subtitle {
	font-size: 0.875rem;
	line-height: 1.6;
	font-weight: 400;
	text-align: center;
	max-width: 300px;
	margin: 0 auto 0.5rem;
	color: #16383B;
}

.global--contact-form__phone {
	font-size: 0.875rem;
	line-height: 1.6;
	font-weight: 400;
	text-align: center;
	max-width: 350px;
	margin: 0 auto 0.5rem;
	color: #16383B;
}

.global--contact-form__phone a {
	color: #00AB9F;
	text-decoration: none;
}

.global--contact-form__email {
	font-size: 0.875rem;
	line-height: 1.6;
	font-weight: 400;
	text-align: center;
	max-width: 350px;
	margin: 0 auto 0.5rem;
	color: #16383B;
}

.global--contact-form__email a {
	color: #00AB9F;
	text-decoration: none;
}

.global--contact-form__hours {
	font-size: 0.875rem;
	line-height: 1.6;
	font-weight: 400;
	text-align: center;
	max-width: 350px;
	margin: 0 auto;
	color: #16383B;
}

.global--contact-form__form-wrapper {
	display: block;
	margin: 20px auto 0;
}

.global--contact-form__field {
	position: relative;
}

.global--contact-form__input {
	font-family: var(--font-family);
	width: 100%;
	padding: 1rem 1rem 0.9rem !important;
	height: 56px !important;
	box-shadow: none !important;
	box-sizing: border-box;
	border-radius: 0px !important;
	font-size: 1rem;
	line-height: 1;
	color: #16383b;
	box-shadow: none !important;
	outline: none !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0 0 0.25rem;
	border: 1px solid #D0D7D8;
}

.global--contact-form__input::-moz-placeholder {
	color: #16383b;
}

.global--contact-form__input::placeholder {
	color: #16383b;
}

.global--contact-form__textarea {
	font-family: var(--font-family);
	width: 100%;
	padding: 1rem 1rem 0.9rem !important;
	min-height: 150px;
	box-shadow: none !important;
	box-sizing: border-box;
	border-radius: 0px !important;
	font-size: 1rem;
	line-height: 1;
	color: #16383b;
	box-shadow: none !important;
	outline: none !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0 0 0.25rem;
	border: 1px solid #D0D7D8;
}

.global--contact-form__textarea::-moz-placeholder {
	color: #16383b;
}

.global--contact-form__textarea::placeholder {
	color: #16383b;
}

.global--contact-form__button {
	font-family: "Acumin Pro Condensed";
	width: 100%;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1;
	box-sizing: border-box;
	margin: 0;
	padding: 1rem;
	background-color: #01ab9f;
	letter-spacing: 0.04em;
	border: none;
	outline: none;
	color: #fff;
	text-transform: uppercase;
}

.global--contact-form__error-message {
	font-size: 0.75rem;
	line-height: 100%;
	margin: 0 0 0.5rem;
	color: #e2665c;
	text-align: left !important;
	display: flex;
	align-items: center;
}

.global--contact-form__error-message svg {
	margin-right: 4px;
	margin-bottom: -2px;
}

.global--contact-form__thankyou {
	font-family: "Acumin Pro Condensed";
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	font-size: 1.25rem;
	margin: 0;
	color: white;
	text-align: center !important;
	padding: 1rem 2rem;
	background: #01ab9f;
	text-transform: uppercase;
}

.mob_menu_announcement {
	background: #2A2A2A;
}

.mob_menu_announcement p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px 11px;
	margin: 0;
}

.mob_menu_announcement_title {
	font-family: 'Acumin Pro Condensed';
	color: #F6F7F7;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
}

.mob_menu_announcement_subtitle {
	font-family: 'Acumin Pro';
	color: #F6F7F7;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
}

@media (min-width: 575px) {
	.global--header--announcement__title {
		display: flex;
		justify-content: center;
		gap: 4px;
	}

	.global--header--announcement__title p {
		display: inline-block;
	}
}

@media (min-width: 768px) {
	.global--header--secondary-menu__item.mobile_item {
		display: none;
	}

	.global--header--announcement {
		padding: 8px 16px;
	}

	.global--header--announcement__title {
		font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.28px;
	}

	.global--contact-form__container {
		width: auto;
	}

	.global--contact-form__close {
		top: 1rem;
		right: 1rem;
		width: 1.5rem;
		height: 1.5rem;
	}

	.global--contact-form__wrapper {
		padding: 75px 100px 100px;
		max-width: 580px;
	}

	.global--contact-form__logo {
		margin: 0 0 5rem;
	}

	.global--contact-form__logo:hover {
		background: #01675f;
	}

	.global--contact-form__logo svg {
		width: 72px;
		height: 40px;
	}

	.global--contact-form__title {
		text-align: center;
		max-width: 100%;
		margin: 0;
		font-size: 3rem;
	}

	.global--contact-form__subtitle {
		text-align: center;
		max-width: 350px;
		margin: 0 auto 0.75rem;
		font-size: 1rem;
	}

	.global--contact-form__phone {
		text-align: center;
		max-width: 470px;
		margin: 0 0 0.75rem;
		font-size: 1rem;
	}

	.global--contact-form__email {
		text-align: center;
		max-width: 470px;
		margin: 0 0 0.75rem;
		font-size: 1rem;
	}

	.global--contact-form__hours {
		text-align: center;
		max-width: 470px;
		margin: 0 auto;
		font-size: 1rem;
	}

	.global--contact-form__form-wrapper {
		margin: 20px auto 0;
	}

	.global--contact-form__error-message {
		font-size: 0.875rem;
	}

	.mega-block {
		position: relative;
	}

	.bf_disc_tag {
		position: absolute;
		top: 10px;
		background: #FFCED1;
		border: 1px solid #1C4B4E;
		border-radius: 4px;
		left: 9px;
		padding: 3px 8px 3px;
		font-size: 12px;
		line-height: 15px;
		font-weight: 600;
		font-family: 'Acumin Pro';
		color: #1C4B4E;
		text-transform: uppercase;
	}

}

@media (min-width: 991px) {
	.component--header--navbar__container {
		padding: 16px 60px;
	}

	.global--header--primary-menu {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		position: static;
	}

	.global--header--secondary-menu {
		width: auto;
		display: flex;
		flex-grow: 0;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		height: inherit;
		position: static;
		top: 0;
		box-shadow: unset;
	}

	.global--header--secondary-menu__item {
		padding: 24px 12px 23px;
		font-size: 1.25rem;
		line-height: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.global--header--secondary-menu__item:hover .global--header--secondary-menu__link::after {
		width: 100% !important;
		background: #00AB9F;
	}

	.global--header--mobile-menu {
		display: none !important;
	}

	.global--header--mega-menu {
		display: block;
	}

	.global--header--mega-menu__content {
		width: 100%;
		z-index: -1;
		align-items: center;
		background: #ede6dd;
		box-sizing: border-box;
		position: absolute;
		top: 100%;
		left: 0;
		padding: 0;
		transition: transform 0.6s ease;
		transform: translateY(-135%);
		display: flex;
		flex-direction: column;
		visibility: visible;
		opacity: 1;
	}

	.global--header--mega-menu__content--active {
		display: flex;
		flex-direction: column;
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.global--header--mega-menu__button:hover {
		background: #00867d;
	}

	.component--mega-menu--product-card:hover {
		transform: scale(1.05);
	}

	.global--contact-form__field {
		display: flex;
		-moz-column-gap: 0.5rem;
		column-gap: 0.5rem;
	}

	.global--contact-form__input {
		font-size: 1rem;
		margin: 0 0 0.5rem;
	}

	.global--contact-form__textarea {
		font-size: 1rem;
		margin: 0 0 0.5rem;
	}

	.global--contact-form__button {
		width: 100%;
		font-size: 1.25rem;
		padding: 1rem 2rem 0.75rem;
		flex-shrink: 0;
	}

	.global--contact-form__button:hover {
		background-color: #01675f;
	}

	.global--contact-form__error-message {
		margin: 0 0 0.5rem;
	}

	.component--header--navbar__brand {
		order: -1;
		z-index: 1;
        height:auto;
        margin-left: 0;
	}

	.component--header--navbar__start {
		position: absolute;
		left: 0;
		right: 0;
		height: 100%;
	}

    .component--header--navbar__logo,
	.component--header--navbar__logo_static{
    position:static;
        transform: inherit;
  }
  .wk___mobile-item__menu{
    display: none;
  }
}


.global--header--primary-menu__item {
	position: relative;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	color: #1D1D1B;
	text-decoration: none;
	font-family: 'GT Pressura Extended';
	letter-spacing: -0.32px;
	height: 100%;
	display: flex;
	align-items: center;
}

.global--header--primary-menu__link,
.global-header-currency-selector__trigger{
    position: relative;
    overflow: hidden;
}

.global--header--primary-menu__item:hover .global--header--primary-menu__link,
.global-header-currency-selector__trigger:hover{
  opacity: 0.8;
}

.global--header--primary-menu__link::after, .global--header--primary-menu__link::before,
.global-header-currency-selector__trigger::after, .global-header-currency-selector__trigger::before{
    content: " ";
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0px;
    right: 0;
    background: #1D1D1B;
    height: 1px;
}

.global--header--primary-menu__link::before,
.global-header-currency-selector__trigger::before{
  transform: translateX(-105%);
  z-index: 1;
}

.global--header--primary-menu__item:hover .global--header--primary-menu__link:before,
.global-header-currency-selector__trigger:hover:before{
  transform: translateX(0);
  transition: transform 350ms ease;
}

.global--header--primary-menu__link::after,
.global-header-currency-selector__trigger::after{
   z-index: 0;
  transform: translateX(105%);
  transition: none;
  transition: transform 350ms ease;
}

.global--header--primary-menu__item:hover .global--header--primary-menu__link:after,
.global-header-currency-selector__trigger:hover:after{
  transform: translateX(0);
 transition: transform 350ms 360ms ease;
}

.navbar__mega-menu {
	height: 100%;
}

.mega-menu {
	padding: 24px 60px 40px;
	border-bottom: 1px solid #1D1D1B;
	background-color: #ede7de;
	display: none;
	max-width: 1512px;
    margin: 0 auto;
}

.mega-menu__btn.btn.fourth-btn {
    padding: 7.2px 18.5px;
	border-radius:6px;
}

.mega-menu-hold {
    display: inline-block;
    margin: 0 auto;
    overflow-y: auto;
	width:100%;
}

.mega-menu--title--btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.mega-menu__title {
	font-size: 32px;
	line-height: 40px;
	color: #1D1D1B;
	margin: 0;
	display: block;
	font-family: 'GT Pressura Extended';
	font-weight: 400;
	letter-spacing: -0.8px;
}

.mega-menu__content {
	font-size: 18px;
	line-height: 24px;
	color: #1D1D1B;
	margin: 8px 0 24px 0;
	font-family: 'GT Pressura Extended';
	letter-spacing: -0.48px;
}

.mega-menu__blocks {
	display: flex;
	gap: 24px;
	overflow-y: auto;
	scrollbar-width: thin;
}

.mega-block {
	display: block;
	text-decoration: none;
	flex: 0 0 auto;
	overflow: hidden;
	border: 1.25px solid #1D1D1B;
	border-radius: 8px;
	padding: 8px;
	width: 212px;
    height: 272px;
}

.mega-block__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s;
    border-radius: 8px;
}

.mega-block__text {
	position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

.mega-block__name {
	font-size: 20px;
	line-height: 32px;
	color: #F0EBE5;
	display: block;
	text-decoration: none;
	font-family: 'GT Pressura Extended';
    letter-spacing: -0.4px;
}

.mega-block__info {
	font-size: 14px;
	line-height: 16px;
	color: #F0EBE5;
	font-family: 'GT Pressura Extended';
	display: flex;
	gap:8px;
    letter-spacing: -0.28px;
}

.mega-block:hover .mega-block__img {
	transform: scale(1.1);
}

.global--header--mobile-menu__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-bottom: 1px solid #E9EBEB;
	background: #F6F7F7;
}

.global--header--mobile-menu__back {
	font-size: 12px;
	line-height: 16px;
	color: #738889;
	font-family: 'Acumin Pro;
 appearance: none;
	border: 0;
	background: 0;
	padding: 0;
	pointer-events: none;
	opacity: 0;
}

.global--header--mobile-menu__back--active {
	opacity: 1;
	cursor: pointer;
	pointer-events: all;
}

.global--header--mobile-menu__close {
	appearance: none;
	border: 0;
	background: 0;
	padding: 0;
}

.global--header--mobile-menu__shop {
	padding: 16px 18px 32px;
	width: 100%;
}

.mobile-shop__title {
	display: block;
	color: #16383B;
	font-size: 28px;
	line-height: 32px;
	font-family: 'Acumin Pro Condensed';
	font-weight: 600;
}

.mobile-shop__block {
	width: calc(50% - 4px);
	cursor: pointer;
}

.mobile-shop__block__img {
	display: block;
	width: 100%;
	height: auto;
}

.mobile-shop__block__text a {
	font-size: 36px;
	line-height: 40px;
	margin-bottom: 16px;
	display: block;
	font-family: 'GT Pressura Extended';
	color: #EDE6DD;
	letter-spacing: -1.44px;
	text-decoration: none;
}

.mobile-shop__block__text svg {
	width: 12px;
	height: auto;
}

.mobile-shop__link.btn.btn-small.secondary-btn {
	display: block;
	width: 100%;
	padding: 9px 10px 9.4px;
	font-family: 'GT Pressura Extended';
	font-size: 18px;
	line-height: 24px;
	margin-top: 40px;
    letter-spacing: -0.36px;
}

.global--header--mobile-menu__secondary {
	display: flex;
	gap: 8px;
	flex-direction: column;
    padding: 8px 24px 40px;
}

.global--header--mobile-menu__secondary__link {
	color: #EDE6DD;
	font-family: 'GT Pressura Extended';
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	letter-spacing: -0.64px;
}

.global--header--mobile-menu__secondary__link:hover {
	text-decoration: underline;
}

.bf_disc_tag {
	position: absolute;
	top: 3px;
	background: #FFCED1;
	border: 1px solid #1C4B4E;
	border-radius: 4px;
	left: 3px;
	padding: 2px 4px 2px;
	font-size: 10px;
	line-height: 13px;
	font-weight: 600;
	font-family: 'Acumin Pro';
	color: #1C4B4E;
	text-transform: uppercase;
}

.mega-block {
	position: relative;
}


@media (max-width: 768px) {
	.mega-menu {
		position: absolute;
		top: 48px;
		left: 0;
		width: 100%;
		height: calc(100% - 48px);
		background: #F6F7F7;
		transform: translateX(100%);
		padding: 20px 16px;
		transition: all 0.3s;
	}

	.mega-menu--active {
		transform: translateX(0);
	}

	.mega-menu__blocks {
		flex-wrap: wrap;
		gap: 8px;
		flex-wrap: wrap;
	}

	.mega-block {
		width: calc(33.33% - 5.33px);
	}

	.mega-block__info {
		font-size: 12px;
		line-height: 16px;
	}

	.component--header--cart-icon {
		padding-right: 9px !important;
	}
}


/* waqar-css-code */
body.megamenu--overlay .component--header--navbar {
	background-color: #EDE6DD;
	backdrop-filter: none;
}

/* body.megamenu--overlay .component--header--navbar {
	background: rgba(237, 230, 221, 0.8);
    backdrop-filter: blur(10px);
} */

.global-header-currency-selector__trigger,
.component--header--account,
.component--header--cart-icon {
	padding: 0;
}

.component--header--cart-icon {
	margin-left: 12px;
	padding-right: 16px;
}

.component--header--cart-icon:hover svg.cart--svg--icon{
      opacity: 0.75;
}

.component--header--account {
	margin-left: 16px;
}

.component--header--account:hover a{
  opacity: 0.75;
}

.wk___mobile-item,
body.lock-scroll img.drawer-open-logo.wk___mobile-item {
	display: block;
}

.wk__desktop-item,
body.lock-scroll .wk___mobile-item,
img.drawer-open-logo.wk___mobile-item {
	display: none;
}


@media (min-width: 991px) {
	.wk___mobile-item {
		display: none;
	}

    .mega-menu{
      display: flex;
    }

	
	.wk__desktop-item {
		display: block;
	}
}