
.epc-header-shell,
.epc-header-shell * {
	box-sizing: border-box;
}

.epc-header-shell {
	--epc-accent: #8f2838;
	--epc-accent-dark: #6f1d2a;
	--epc-text: #333333;
	--epc-bg: #ffffff;
	--epc-soft: #fcf7f5;
	--epc-border: rgba(51, 51, 51, .10);
	--epc-shadow: 0 10px 28px rgba(32, 24, 27, .07);
	font-family: Montserrat, sans-serif;
}

.epc-header-shell.epc-is-fixed .epc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99990;
}

body.admin-bar .epc-header-shell.epc-is-fixed .epc-header {
	top: 32px;
}

.epc-header__spacer { display: none; }
.epc-header-shell.epc-is-fixed .epc-header__spacer { display: block; }

.epc-header {
	width: 100%;
	background: var(--epc-bg);
	color: var(--epc-text);
	border-bottom: 1px solid var(--epc-border);
	transition: box-shadow .25s ease;
}

.epc-header-shell.epc-scrolled .epc-header {
	box-shadow: var(--epc-shadow);
}

.epc-header__container {
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
}

/* TOP */
.epc-header__top {
	max-height: 110px;
	overflow: hidden;
	background: var(--epc-bg);
	opacity: 1;
	transition: max-height .3s ease, opacity .2s ease, transform .3s ease;
}

.epc-header__top-inner {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.epc-header__logo-link,
.epc-header__sticky-logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.epc-header__logo {
	display: block;
	width: 220px;
	height: auto;
	max-height: 66px;
	object-fit: contain;
	object-position: left center;
}

.epc-header__slogan { display: none !important; }

.epc-header__tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	margin-left: auto;
}

.epc-header__search {
	width: 235px;
	height: 38px;
	display: flex;
	align-items: stretch;
	margin-right: 2px;
}

.epc-header__search-input {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0 14px;
	border: 1px solid var(--epc-border);
	border-right: 0;
	border-radius: 7px 0 0 7px;
	background: #fff;
	color: var(--epc-text);
	font-family: inherit;
	font-size: 12.5px;
	outline: 0;
	box-shadow: none;
}

.epc-header__search-input:focus {
	border-color: rgba(143,40,56,.35);
}

.epc-header .epc-header__search-button {
	appearance: none;
	width: 42px;
	min-width: 42px;
	height: 100%;
	padding: 0;
	border: 1px solid var(--epc-border);
	border-left: 0;
	border-radius: 0 7px 7px 0;
	background: #fff;
	color: var(--epc-text);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease;
}

.epc-header .epc-header__search-button:hover {
	background: var(--epc-soft);
	color: var(--epc-accent);
}

.epc-header__search-button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
}

.epc-header .epc-header__tool {
	appearance: none;
	position: relative;
	width: 38px;
	min-width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--epc-text);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.epc-header__tool:hover {
	background: var(--epc-soft);
	color: var(--epc-accent);
}

.epc-header__tool svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.epc-header__wishlist svg,
.epc-header__heart {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.epc-header__count {
	position: absolute;
	top: -3px;
	right: -3px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border: 2px solid var(--epc-bg);
	border-radius: 999px;
	background: var(--epc-accent);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	line-height: 13px;
	text-align: center;
}

/* NAV */
.epc-header__nav {
	position: relative;
	background: #fff;
	border-top: 1px solid var(--epc-border);
}

.epc-header__nav-inner {
	min-height: 64px;
	display: grid;
	grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
	align-items: center;
	gap: 18px;
	padding-top: 6px;
	padding-bottom: 6px;
}

.epc-header__nav-center {
	grid-column: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	min-width: 0;
}

.epc-header__sticky-logo-link {
	display: none;
	grid-column: 1;
	justify-self: start;
}

.epc-header__sticky-logo {
	display: block;
	width: 132px;
	max-height: 42px;
	object-fit: contain;
}

.epc-header__catalog {
	position: relative;
	flex: 0 0 auto;
}

.epc-header .epc-header__catalog-button {
	appearance: none;
	min-height: 40px;
	padding: 9px 2px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--epc-text);
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: inherit;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color .2s ease;
}

.epc-header__catalog-button:hover,
.epc-header__catalog-button.is-open {
	background: transparent;
	color: var(--epc-accent);
}

.epc-header__hanger {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--epc-accent);
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.epc-header__chevron {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	transition: transform .2s ease;
}

.epc-header__catalog-button.is-open .epc-header__chevron {
	transform: rotate(180deg);
}

.epc-header__catalog-button {
	position: relative;
}

.epc-header__catalog-button::after {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	bottom: 1px;
	height: 1px;
	background: var(--epc-accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.epc-header__catalog-button:hover::after,
.epc-header__catalog-button.is-open::after {
	transform: scaleX(1);
}

.epc-header__menu {
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
}

.epc-header__menu-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 9px 2px;
	color: var(--epc-text);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .03em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.epc-header__menu-link::after {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	bottom: 2px;
	height: 1px;
	background: var(--epc-accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.epc-header__menu-link:hover {
	color: var(--epc-accent);
}

.epc-header__menu-link:hover::after {
	transform: scaleX(1);
}

.epc-header__sticky-tools {
	display: none;
	grid-column: 3;
	justify-self: end;
	align-items: center;
	gap: 2px;
}

.epc-header__mobile-actions,
.epc-header__mobile-search,
.epc-header__drawer,
.epc-header__overlay {
	display: none;
}

/* DROPDOWN */
.epc-header__dropdown {
	position: absolute;
	top: calc(100% + 9px);
	left: 0;
	z-index: 100;
	width: 390px;
	max-height: min(72vh,700px);
	padding: 10px;
	overflow-y: auto;
	border: 1px solid var(--epc-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: var(--epc-shadow);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-7px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.epc-header__dropdown.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.epc-header__catalog-section {
	padding: 9px 10px;
	border-bottom: 1px solid var(--epc-border);
}

.epc-header__catalog-section:last-child { border-bottom: 0; }

.epc-header__catalog-parent {
	display: block;
	margin-bottom: 4px;
	color: var(--epc-text);
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .03em;
	text-decoration: none;
	text-transform: uppercase;
}

.epc-header__catalog-parent:hover { color: var(--epc-accent); }

.epc-header__catalog-child {
	position: relative;
	display: block;
	padding: 4px 0 4px 12px;
	color: var(--epc-text);
	font-size: 12.5px;
	line-height: 1.35;
	text-decoration: none;
}

.epc-header__catalog-child::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--epc-accent);
	transform: translateY(-50%);
}

.epc-header__catalog-child:hover { color: var(--epc-accent); }

/* SCROLLED */
.epc-header-shell.epc-scrolled .epc-header__top {
	max-height: 0;
	opacity: 0;
	transform: translateY(-8px);
}

.epc-header-shell.epc-scrolled .epc-header__sticky-logo-link { display: flex; }
.epc-header-shell.epc-scrolled .epc-header__sticky-tools { display: flex; }

.epc-header-shell.epc-scrolled .epc-header__nav-inner {
	min-height: 68px;
	padding-top: 8px;
	padding-bottom: 8px;
}

/* TABLET */
@media (max-width:1180px) and (min-width:769px) {
	.epc-header__top-inner {
		display: flex;
		gap: 16px;
	}

	.epc-header__logo { width: 180px; }
	.epc-header__search { width: 205px; }

	.epc-header__nav-inner { gap: 12px; }
	.epc-header__nav-center { gap: 20px; }
	.epc-header__menu { gap: 18px; }

	.epc-header__menu-link {
		font-size: 10.2px;
		letter-spacing: .02em;
	}

	.epc-header .epc-header__catalog-button {
		padding-left: 13px;
		padding-right: 13px;
		font-size: 10.5px;
	}
}

/* MOBILE */
@media (max-width:768px) {
	body.admin-bar .epc-header-shell.epc-is-fixed .epc-header { top: 46px; }

	.epc-header__top { display: none; }

	.epc-header__nav {
		border-top: 0;
	}

	.epc-header__nav-inner {
		min-height: 68px;
		display: flex;
		gap: 6px;
	}

	.epc-header__nav-center { display: none !important; }

	.epc-header__sticky-logo-link,
	.epc-header-shell.epc-scrolled .epc-header__sticky-logo-link {
		display: flex;
		margin-right: auto;
	}

	.epc-header__sticky-logo {
		width: 135px;
		max-width: calc(100vw - 140px);
		max-height: 48px;
	}

	.epc-header__sticky-tools { display: none !important; }

	.epc-header__mobile-actions {
		display: flex;
		align-items: center;
		gap: 4px;
		margin-left: auto;
	}

	.epc-header .epc-header__tool {
		width: 36px;
		min-width: 36px;
		height: 36px;
		color: var(--epc-text);
	}

	.epc-header .epc-header__burger {
		appearance: none;
		width: 36px;
		min-width: 36px;
		height: 36px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: transparent;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		cursor: pointer;
	}

	.epc-header__burger span {
		display: block;
		width: 17px;
		height: 1.5px;
		border-radius: 99px;
		background: var(--epc-text);
	}

	.epc-header__mobile-search {
		display: block;
		max-height: 0;
		overflow: hidden;
		background: #fff;
		opacity: 0;
		transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
	}

	.epc-header__mobile-search.is-open {
		max-height: 78px;
		padding: 8px 0 12px;
		opacity: 1;
		border-top: 1px solid var(--epc-border);
	}

	.epc-header__search--mobile {
		width: 100%;
	}

	.epc-header__overlay {
		position: fixed;
		inset: 0;
		z-index: 99991;
		display: block;
		background: rgba(33,24,27,.36);
		opacity: 0;
		visibility: hidden;
		transition: opacity .25s ease, visibility .25s ease;
	}

	.epc-header__overlay.is-open {
		opacity: 1;
		visibility: visible;
	}

	.epc-header__drawer {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 99992;
		width: min(88vw,370px);
		background: #fff;
		box-shadow: -18px 0 45px rgba(40,26,32,.14);
		display: flex;
		flex-direction: column;
		transform: translateX(105%);
		transition: transform .3s ease;
	}

	body.admin-bar .epc-header__drawer { top: 46px; }
	.epc-header__drawer.is-open { transform: translateX(0); }

	.epc-header__drawer-top {
		min-height: 68px;
		padding: 10px 15px;
		border-bottom: 1px solid var(--epc-border);
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.epc-header__drawer-top img {
		width: 145px;
		max-height: 48px;
		object-fit: contain;
	}

	.epc-header .epc-header__drawer-close {
		appearance: none;
		width: 36px;
		height: 36px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: var(--epc-soft);
		color: var(--epc-text);
		font-size: 27px;
		line-height: 1;
		cursor: pointer;
	}

	.epc-header__drawer-content {
		padding: 14px;
		overflow-y: auto;
	}

	.epc-header .epc-header__mobile-catalog-toggle {
		appearance: none;
		width: 100%;
		min-height: 46px;
		padding: 0 14px;
		border: 0;
		border-radius: 7px;
		background: var(--epc-soft);
		color: var(--epc-text);
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-family: inherit;
		font-size: 12.5px;
		font-weight: 800;
		letter-spacing: .035em;
		text-transform: uppercase;
		cursor: pointer;
	}

	.epc-header__mobile-catalog-toggle svg {
		width: 16px;
		height: 16px;
		fill: none;
		stroke: var(--epc-accent);
		stroke-width: 2;
		transition: transform .2s ease;
	}

	.epc-header__mobile-catalog-toggle.is-open svg { transform: rotate(180deg); }

	.epc-header__mobile-catalog {
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height .35s ease, opacity .2s ease, padding .3s ease;
	}

	.epc-header__mobile-catalog.is-open {
		max-height: 2200px;
		padding: 10px 0 4px;
		opacity: 1;
	}

	.epc-header__mobile-catalog-section {
		padding: 9px 4px;
		border-bottom: 1px solid var(--epc-border);
	}

	.epc-header__mobile-menu {
		margin-top: 10px;
		border-top: 1px solid var(--epc-border);
	}

	.epc-header__mobile-menu a {
		min-height: 46px;
		border-bottom: 1px solid var(--epc-border);
		color: var(--epc-text);
		display: flex;
		align-items: center;
		font-size: 12.5px;
		font-weight: 700;
		text-decoration: none;
	}

	.epc-header__mobile-menu a span {
		margin-left: auto;
		color: var(--epc-accent);
		font-size: 20px;
		font-weight: 300;
	}
}

@media (max-width:420px) {
	.epc-header__container {
		padding-left: 12px;
		padding-right: 12px;
	}

	.epc-header__sticky-logo {
		width: 115px;
		max-width: calc(100vw - 132px);
	}

	.epc-header__mobile-actions { gap: 2px; }

	.epc-header .epc-header__tool,
	.epc-header .epc-header__burger {
		width: 34px;
		min-width: 34px;
		height: 34px;
	}
}


/* =========================================================
   ePelene Core 1.4.0 – SINGLE ROW DESKTOP HEADER
   ========================================================= */

@media (min-width: 769px) {
	.epc-header__top {
		display: none !important;
	}

	.epc-header__nav {
		border-top: 0;
		background: #ffffff;
	}

	.epc-header__nav-inner,
	.epc-header-shell.epc-scrolled .epc-header__nav-inner {
		min-height: 76px;
		padding-top: 10px;
		padding-bottom: 10px;
		display: grid;
		grid-template-columns: minmax(145px, 1fr) auto minmax(190px, 1fr);
		align-items: center;
		gap: 24px;
	}

	.epc-header__sticky-logo-link,
	.epc-header-shell.epc-scrolled .epc-header__sticky-logo-link {
		display: flex !important;
		grid-column: 1;
		justify-self: start;
	}

	.epc-header__sticky-logo {
		width: 155px;
		max-height: 52px;
		object-fit: contain;
		object-position: left center;
	}

	.epc-header__nav-center {
		grid-column: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 30px;
	}

	.epc-header__menu {
		gap: 30px;
	}

	.epc-header__menu-link {
		min-height: 42px;
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 11px;
	}

	.epc-header__sticky-tools,
	.epc-header-shell.epc-scrolled .epc-header__sticky-tools {
		display: flex !important;
		grid-column: 3;
		justify-self: end;
		align-items: center;
		gap: 3px;
	}

	.epc-header__catalog-button {
		min-height: 42px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__top {
		display: none !important;
	}

	.epc-header__desktop-search {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.epc-header__desktop-search-form {
		width: 0;
		height: 38px;
		display: flex;
		align-items: stretch;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		margin-right: 0;
		transition: width .28s ease, opacity .2s ease, margin-right .28s ease, visibility .2s ease;
	}

	.epc-header__desktop-search.is-open .epc-header__desktop-search-form {
		width: 235px;
		margin-right: 5px;
		opacity: 1;
		visibility: visible;
	}

	.epc-header__desktop-search-input {
		width: 100%;
		min-width: 0;
		height: 38px;
		padding: 0 13px;
		border: 1px solid rgba(51, 51, 51, .14);
		border-right: 0;
		border-radius: 7px 0 0 7px;
		background: #ffffff;
		color: #333333;
		font-family: inherit;
		font-size: 12px;
		outline: none;
		box-shadow: none;
	}

	.epc-header__desktop-search-input:focus {
		border-color: rgba(143, 40, 56, .35);
	}

	.epc-header .epc-header__desktop-search-submit {
		appearance: none;
		width: 38px;
		min-width: 38px;
		height: 38px;
		padding: 0;
		border: 1px solid rgba(51, 51, 51, .14);
		border-left: 0;
		border-radius: 0 7px 7px 0;
		background: #ffffff;
		color: #333333;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.epc-header__desktop-search-submit:hover {
		color: #8f2838;
		background: #fcf7f5;
	}

	.epc-header__desktop-search-submit svg {
		width: 17px;
		height: 17px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.9;
		stroke-linecap: round;
	}

	.epc-header__desktop-search-toggle svg {
		width: 20px;
		height: 20px;
	}

	.epc-header__desktop-search.is-open .epc-header__desktop-search-toggle {
		color: #8f2838;
		background: #fcf7f5;
	}

	.epc-header__desktop-search.is-open .epc-header__desktop-search-toggle svg circle {
		display: none;
	}

	.epc-header__desktop-search.is-open .epc-header__desktop-search-toggle svg path {
		d: path("M6 6l12 12M18 6 6 18");
	}

	.epc-header__mobile-actions {
		display: none !important;
	}
}

@media (min-width: 769px) and (max-width: 1180px) {
	.epc-header__nav-inner,
	.epc-header-shell.epc-scrolled .epc-header__nav-inner {
		grid-template-columns: minmax(120px, .75fr) auto minmax(145px, .75fr);
		gap: 14px;
	}

	.epc-header__sticky-logo {
		width: 130px;
	}

	.epc-header__nav-center {
		gap: 18px;
	}

	.epc-header__menu {
		gap: 17px;
	}

	.epc-header__menu-link {
		font-size: 9.8px;
	}

	.epc-header .epc-header__catalog-button {
		font-size: 10px;
		padding-left: 2px !important;
		padding-right: 2px !important;
	}

	.epc-header__desktop-search.is-open .epc-header__desktop-search-form {
		width: 185px;
	}
}

@media (max-width: 768px) {
	.epc-header__desktop-search {
		display: none !important;
	}
}


/* =========================================================
   ePelene Core 1.4.1 – LARGE INITIAL / COMPACT STICKY HEADER
   ========================================================= */

@media (min-width: 769px) {
	/* Initial desktop state */
	.epc-header__nav-inner {
		min-height: 88px !important;
		padding-top: 14px !important;
		padding-bottom: 14px !important;
		transition:
			min-height .28s ease,
			padding .28s ease,
			gap .28s ease;
	}

	.epc-header__sticky-logo {
		width: 182px !important;
		max-height: 60px !important;
		transition:
			width .28s ease,
			max-height .28s ease;
	}

	.epc-header__nav-center {
		gap: 38px !important;
		transition: gap .28s ease;
	}

	.epc-header__menu {
		gap: 38px !important;
		transition: gap .28s ease;
	}

	.epc-header__menu-link {
		min-height: 46px !important;
		padding-top: 12px !important;
		padding-bottom: 12px !important;
		font-size: 12.5px !important;
		font-weight: 750 !important;
		letter-spacing: .035em !important;
		transition:
			font-size .28s ease,
			min-height .28s ease,
			padding .28s ease,
			color .2s ease;
	}

	.epc-header .epc-header__catalog-button {
		min-height: 46px !important;
		padding-top: 12px !important;
		padding-bottom: 12px !important;
		font-size: 12.5px !important;
		transition:
			font-size .28s ease,
			min-height .28s ease,
			padding .28s ease,
			color .2s ease;
	}

	.epc-header__hanger {
		width: 22px !important;
		height: 22px !important;
		transition:
			width .28s ease,
			height .28s ease;
	}

	.epc-header .epc-header__tool {
		width: 42px !important;
		min-width: 42px !important;
		height: 42px !important;
		transition:
			width .28s ease,
			min-width .28s ease,
			height .28s ease,
			background-color .2s ease,
			color .2s ease;
	}

	.epc-header__tool svg,
	.epc-header__desktop-search-toggle svg {
		width: 21px !important;
		height: 21px !important;
		transition:
			width .28s ease,
			height .28s ease;
	}

	/* Sticky / scrolled state */
	.epc-header-shell.epc-scrolled .epc-header__nav-inner {
		min-height: 68px !important;
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__sticky-logo {
		width: 145px !important;
		max-height: 46px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__nav-center {
		gap: 28px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__menu {
		gap: 28px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__menu-link {
		min-height: 38px !important;
		padding-top: 8px !important;
		padding-bottom: 8px !important;
		font-size: 10.5px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__catalog-button {
		min-height: 38px !important;
		padding-top: 8px !important;
		padding-bottom: 8px !important;
		font-size: 10.5px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__hanger {
		width: 19px !important;
		height: 19px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__tool {
		width: 36px !important;
		min-width: 36px !important;
		height: 36px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__tool svg,
	.epc-header-shell.epc-scrolled .epc-header__desktop-search-toggle svg {
		width: 18px !important;
		height: 18px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__desktop-search-form {
		height: 36px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__desktop-search-input,
	.epc-header-shell.epc-scrolled .epc-header__desktop-search-submit {
		height: 36px !important;
	}
}

@media (min-width: 769px) and (max-width: 1180px) {
	.epc-header__nav-inner {
		min-height: 80px !important;
		padding-top: 12px !important;
		padding-bottom: 12px !important;
	}

	.epc-header__sticky-logo {
		width: 150px !important;
		max-height: 52px !important;
	}

	.epc-header__nav-center {
		gap: 22px !important;
	}

	.epc-header__menu {
		gap: 20px !important;
	}

	.epc-header__menu-link,
	.epc-header .epc-header__catalog-button {
		font-size: 10.5px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__sticky-logo {
		width: 125px !important;
	}

	.epc-header-shell.epc-scrolled .epc-header__menu-link,
	.epc-header-shell.epc-scrolled .epc-header__catalog-button {
		font-size: 9.5px !important;
	}
}


/* =========================================================
   ePelene Core 1.4.2 – CLEAN MOBILE HEADER + DRAWER
   ========================================================= */

@media (max-width: 768px) {
	.epc-header__nav-inner,
	.epc-header-shell.epc-scrolled .epc-header__nav-inner {
		min-height: 68px !important;
		height: 68px !important;
		padding-top: 7px !important;
		padding-bottom: 7px !important;
	}

	.epc-header__sticky-logo-link,
	.epc-header-shell.epc-scrolled .epc-header__sticky-logo-link {
		display: flex !important;
		align-items: center !important;
		margin-right: auto !important;
	}

	.epc-header__sticky-logo,
	.epc-header-shell.epc-scrolled .epc-header__sticky-logo {
		width: 132px !important;
		max-width: calc(100vw - 138px) !important;
		height: 46px !important;
		max-height: 46px !important;
		object-fit: contain !important;
		object-position: left center !important;
	}

	.epc-header__mobile-actions {
		display: flex !important;
		align-items: center !important;
		gap: 3px !important;
		margin-left: auto !important;
	}

	.epc-header .epc-header__tool,
	.epc-header .epc-header__burger {
		width: 35px !important;
		min-width: 35px !important;
		max-width: 35px !important;
		height: 35px !important;
		min-height: 35px !important;
		max-height: 35px !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 50% !important;
		background: transparent !important;
		color: #333333 !important;
		box-shadow: none !important;
	}

	.epc-header .epc-header__tool:hover,
	.epc-header .epc-header__burger:hover {
		background: #fcf7f5 !important;
		color: #8f2838 !important;
	}

	.epc-header .epc-header__tool svg {
		width: 19px !important;
		height: 19px !important;
		stroke: currentColor !important;
	}

	.epc-header__burger {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 4px !important;
	}

	.epc-header__burger span {
		width: 18px !important;
		height: 1.5px !important;
		margin: 0 !important;
		border-radius: 999px !important;
		background: #333333 !important;
	}

	.epc-header__count {
		top: -2px !important;
		right: -2px !important;
		min-width: 16px !important;
		height: 16px !important;
		padding: 0 4px !important;
		font-size: 8px !important;
		line-height: 12px !important;
	}

	.epc-header__drawer {
		width: min(86vw, 340px) !important;
		background: #ffffff !important;
		box-shadow: -14px 0 36px rgba(34, 24, 28, .14) !important;
	}

	.epc-header__drawer-top {
		min-height: 66px !important;
		height: 66px !important;
		padding: 8px 14px !important;
		border-bottom: 1px solid rgba(51, 51, 51, .10) !important;
	}

	.epc-header__drawer-top img {
		width: 132px !important;
		height: 44px !important;
		max-height: 44px !important;
		object-fit: contain !important;
		object-position: left center !important;
	}

	.epc-header .epc-header__drawer-close {
		width: 34px !important;
		min-width: 34px !important;
		height: 34px !important;
		min-height: 34px !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 50% !important;
		background: transparent !important;
		color: #333333 !important;
		font-family: Arial, sans-serif !important;
		font-size: 25px !important;
		font-weight: 300 !important;
		line-height: 1 !important;
		box-shadow: none !important;
	}

	.epc-header .epc-header__drawer-close:hover {
		background: #fcf7f5 !important;
		color: #8f2838 !important;
	}

	.epc-header__drawer-content {
		padding: 12px 16px 20px !important;
	}

	.epc-header .epc-header__mobile-catalog-toggle {
		min-height: 44px !important;
		height: 44px !important;
		padding: 0 2px !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		color: #333333 !important;
		font-size: 12.5px !important;
		font-weight: 750 !important;
		letter-spacing: .035em !important;
		box-shadow: none !important;
	}

	.epc-header__mobile-catalog-toggle::before {
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		margin-right: 9px;
		flex: 0 0 20px;
		background: no-repeat center / contain
			url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M13.2 8.2a3.1 3.1 0 1 1 5.8 1.5c-.7 1-1.9 1.4-2.7 2.2-.6.6-.7 1.3-.7 2.1' fill='none' stroke='%238f2838' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M15.7 14.1 4.7 22.3c-1.5 1.1-.7 3.5 1.2 3.5h20.2c1.9 0 2.7-2.4 1.2-3.5l-10.9-8.2a.6.6 0 0 0-.7 0Z' fill='none' stroke='%238f2838' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
	}

	.epc-header__mobile-catalog-toggle span {
		margin-right: auto !important;
	}

	.epc-header__mobile-catalog-toggle svg {
		width: 15px !important;
		height: 15px !important;
		margin-left: auto !important;
		stroke: #8f2838 !important;
	}

	.epc-header__mobile-catalog {
		border-top: 1px solid rgba(51, 51, 51, .10) !important;
	}

	.epc-header__mobile-catalog.is-open {
		padding: 6px 0 3px !important;
	}

	.epc-header__mobile-catalog-section {
		padding: 8px 2px !important;
		border-bottom: 1px solid rgba(51, 51, 51, .08) !important;
	}

	.epc-header__catalog-parent {
		margin-bottom: 3px !important;
		font-size: 11.5px !important;
	}

	.epc-header__catalog-child {
		padding-top: 3px !important;
		padding-bottom: 3px !important;
		font-size: 12px !important;
	}

	.epc-header__mobile-menu {
		margin-top: 6px !important;
		border-top: 1px solid rgba(51, 51, 51, .10) !important;
	}

	.epc-header__mobile-menu a,
	.epc-header__mobile-menu a:visited,
	.epc-header__mobile-menu a:hover,
	.epc-header__mobile-menu a:focus {
		min-height: 45px !important;
		padding: 0 1px !important;
		border-bottom: 1px solid rgba(51, 51, 51, .10) !important;
		background: transparent !important;
		color: #333333 !important;
		font-size: 12.5px !important;
		font-weight: 650 !important;
		text-decoration: none !important;
	}

	.epc-header__mobile-menu a:hover {
		color: #8f2838 !important;
	}

	.epc-header__mobile-menu a span {
		color: #8f2838 !important;
		font-size: 19px !important;
	}

	.epc-header__mobile-search.is-open {
		max-height: 72px !important;
		padding: 7px 0 10px !important;
	}

	.epc-header__search--mobile {
		height: 40px !important;
	}

	.epc-header__search--mobile .epc-header__search-input {
		height: 40px !important;
		font-size: 13px !important;
	}

	.epc-header__search--mobile .epc-header__search-button {
		width: 40px !important;
		min-width: 40px !important;
		height: 40px !important;
	}
}

@media (max-width: 420px) {
	.epc-header__sticky-logo,
	.epc-header-shell.epc-scrolled .epc-header__sticky-logo {
		width: 115px !important;
		max-width: calc(100vw - 126px) !important;
		height: 42px !important;
	}

	.epc-header .epc-header__tool,
	.epc-header .epc-header__burger {
		width: 33px !important;
		min-width: 33px !important;
		height: 33px !important;
		min-height: 33px !important;
	}
}


/* =========================================================
   ePelene Core 1.4.3 – FINAL MOBILE CLEANUP
   ========================================================= */

@media (max-width: 768px) {

	/* Header icons: black only, burgundy only for badge/hover */
	.epc-header .epc-header__mobile-actions .epc-header__tool,
	.epc-header .epc-header__mobile-actions .epc-header__burger {
		color: #222222 !important;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
	}

	.epc-header .epc-header__mobile-actions .epc-header__tool svg,
	.epc-header .epc-header__mobile-actions .epc-header__tool svg path,
	.epc-header .epc-header__mobile-actions .epc-header__tool svg circle {
		fill: none !important;
		stroke: #222222 !important;
		stroke-width: 1.8 !important;
	}

	.epc-header .epc-header__mobile-actions .epc-header__burger span {
		background: #222222 !important;
	}

	.epc-header .epc-header__mobile-actions .epc-header__tool:hover,
	.epc-header .epc-header__mobile-actions .epc-header__burger:hover {
		color: #8f2838 !important;
		background: #fcf7f5 !important;
	}

	.epc-header .epc-header__mobile-actions .epc-header__tool:hover svg,
	.epc-header .epc-header__mobile-actions .epc-header__tool:hover svg path,
	.epc-header .epc-header__mobile-actions .epc-header__tool:hover svg circle {
		stroke: #8f2838 !important;
	}

	/* Drawer */
	.epc-header__drawer {
		width: min(88vw, 350px) !important;
	}

	.epc-header__drawer-content {
		padding: 12px 16px 24px !important;
	}

	.epc-header__drawer-actions {
		display: grid !important;
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
		gap: 6px !important;
		padding: 2px 0 12px !important;
		margin-bottom: 4px !important;
		border-bottom: 1px solid rgba(51, 51, 51, .10) !important;
	}

	.epc-header .epc-header__drawer-action,
	.epc-header .epc-header__drawer-action:visited,
	.epc-header .epc-header__drawer-action:hover,
	.epc-header .epc-header__drawer-action:focus {
		appearance: none !important;
		position: relative !important;
		min-width: 0 !important;
		min-height: 66px !important;
		padding: 8px 3px !important;
		margin: 0 !important;
		border: 0 !important;
		border-radius: 8px !important;
		background: transparent !important;
		color: #222222 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 6px !important;
		font-family: inherit !important;
		text-align: center !important;
		text-decoration: none !important;
		box-shadow: none !important;
		cursor: pointer !important;
	}

	.epc-header .epc-header__drawer-action:hover {
		background: #fcf7f5 !important;
		color: #8f2838 !important;
	}

	.epc-header__drawer-action svg,
	.epc-header__drawer-action svg path,
	.epc-header__drawer-action svg circle {
		display: block !important;
		width: 20px !important;
		height: 20px !important;
		fill: none !important;
		stroke: currentColor !important;
		stroke-width: 1.7 !important;
		stroke-linecap: round !important;
		stroke-linejoin: round !important;
	}

	.epc-header__drawer-action span {
		display: block !important;
		color: inherit !important;
		font-size: 9px !important;
		font-weight: 650 !important;
		line-height: 1.15 !important;
	}

	.epc-header__drawer-cart em {
		position: absolute !important;
		top: 5px !important;
		right: 8px !important;
		min-width: 16px !important;
		height: 16px !important;
		padding: 0 4px !important;
		border-radius: 999px !important;
		background: #8f2838 !important;
		color: #ffffff !important;
		font-size: 8px !important;
		font-style: normal !important;
		font-weight: 800 !important;
		line-height: 16px !important;
		text-align: center !important;
	}

	/* Catalog should look like a normal navigation row */
	.epc-header .epc-header__mobile-catalog-toggle,
	.epc-header .epc-header__mobile-catalog-toggle:hover,
	.epc-header .epc-header__mobile-catalog-toggle:focus,
	.epc-header .epc-header__mobile-catalog-toggle.is-open {
		min-height: 46px !important;
		height: 46px !important;
		padding: 0 2px !important;
		margin: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		background-image: none !important;
		color: #222222 !important;
		font-size: 12.5px !important;
		font-weight: 700 !important;
		box-shadow: none !important;
	}

	.epc-header__mobile-catalog-toggle::before {
		width: 19px !important;
		height: 19px !important;
		margin-right: 10px !important;
		flex-basis: 19px !important;
	}

	.epc-header__mobile-catalog-toggle svg {
		width: 14px !important;
		height: 14px !important;
		stroke: #8f2838 !important;
	}

	.epc-header__mobile-catalog-toggle span {
		color: #222222 !important;
		font-size: 12.5px !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
	}

	/* Main menu rows with black icons and burgundy arrows */
	.epc-header__mobile-menu {
		margin-top: 4px !important;
	}

	.epc-header__mobile-menu a {
		position: relative !important;
		min-height: 46px !important;
		padding: 0 2px 0 30px !important;
		color: #222222 !important;
		font-size: 12.5px !important;
		font-weight: 650 !important;
	}

	.epc-header__mobile-menu a::before {
		content: "" !important;
		position: absolute !important;
		left: 2px !important;
		top: 50% !important;
		width: 18px !important;
		height: 18px !important;
		transform: translateY(-50%) !important;
		background-repeat: no-repeat !important;
		background-position: center !important;
		background-size: contain !important;
		opacity: .9 !important;
	}

	.epc-header__mobile-menu a:nth-child(1)::before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16M4 12h16M4 18h16' fill='none' stroke='%23222222' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") !important;
	}

	.epc-header__mobile-menu a:nth-child(2)::before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 7h12v10H3zM15 10h3l3 3v4h-6z' fill='none' stroke='%23222222' stroke-width='1.7' stroke-linejoin='round'/%3E%3Ccircle cx='7' cy='19' r='1.5' fill='none' stroke='%23222222' stroke-width='1.7'/%3E%3Ccircle cx='18' cy='19' r='1.5' fill='none' stroke='%23222222' stroke-width='1.7'/%3E%3C/svg%3E") !important;
	}

	.epc-header__mobile-menu a:nth-child(3)::before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%23222222' stroke-width='1.7'/%3E%3Cpath d='M9.7 9a2.5 2.5 0 1 1 3.4 2.3c-.8.4-1.1.9-1.1 1.7M12 17h.01' fill='none' stroke='%23222222' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") !important;
	}

	.epc-header__mobile-menu a:nth-child(4)::before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='3.5' fill='none' stroke='%23222222' stroke-width='1.7'/%3E%3Cpath d='M5 20c1-4 3.3-6 7-6s6 2 7 6' fill='none' stroke='%23222222' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") !important;
	}

	.epc-header__mobile-menu a:nth-child(5)::before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v14H4zM4 8l8 6 8-6' fill='none' stroke='%23222222' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	}

	.epc-header__mobile-menu a:nth-child(6)::before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4' fill='none' stroke='%23222222' stroke-width='1.7'/%3E%3Cpath d='M4.5 21c.8-4.2 3.3-6.5 7.5-6.5s6.7 2.3 7.5 6.5' fill='none' stroke='%23222222' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") !important;
	}

	.epc-header__mobile-menu a:nth-child(7)::before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20s-7-4-9-8c-1.8-3.5 0-7 3.5-7 2 0 3.2 1.1 4 2.2C11.3 6.1 12.5 5 14.5 5 18 5 19.8 8.5 18 12c-2 4-6 8-6 8Z' fill='none' stroke='%23222222' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	}

	.epc-header__mobile-menu a span {
		color: #8f2838 !important;
	}

	.epc-header__mobile-menu a:hover {
		color: #8f2838 !important;
		background: transparent !important;
	}

	/* Ensure no global theme active-menu color leaks in */
	.epc-header__drawer a,
	.epc-header__drawer button {
		-webkit-tap-highlight-color: transparent !important;
	}

	.epc-header__drawer a[aria-current="page"] {
		color: #222222 !important;
		background: transparent !important;
	}

	.epc-header__drawer a[aria-current="page"]::after {
		content: none !important;
	}
}

@media (max-width: 420px) {
	.epc-header__drawer-actions {
		gap: 2px !important;
	}

	.epc-header .epc-header__drawer-action {
		min-height: 62px !important;
		padding-left: 1px !important;
		padding-right: 1px !important;
	}

	.epc-header__drawer-action span {
		font-size: 8px !important;
	}
}


/* v3.5.0 – Elementor controls must always win */
.elementor-widget-epelene-header .epc-header__logo,
.elementor-widget-epelene-header .epc-header__sticky-logo {
	object-fit: contain;
	height: auto;
}

.elementor-widget-epelene-header .epc-header__logo-link,
.elementor-widget-epelene-header .epc-header__sticky-logo-link {
	min-width: 0;
}

.elementor-widget-epelene-hero-two .ep2b-main {
	width: 100%;
}

.elementor-widget-epelene-hero-two .ep2b-content {
	min-width: 0;
}

.elementor-widget-epelene-hero-two .ep2b-heading,
.elementor-widget-epelene-hero-two .ep2b-eyebrow,
.elementor-widget-epelene-hero-two .ep2b-description {
	width: auto;
}

@media (max-width: 767px) {
	.elementor-widget-epelene-hero-two .ep2b-main {
		grid-template-columns: 1fr !important;
	}
	.elementor-widget-epelene-hero-two .ep2b-image,
	.elementor-widget-epelene-hero-two .ep2b-image-link {
		width: 100%;
	}
}


/* ePelene Core 3.6.2
 * The main non-sticky logo is controlled by instance-specific CSS generated
 * directly by the Elementor widget. These fallback rules must never override it.
 */
.elementor-widget-epelene-header .epc-header__top .epc-header__logo {
	max-width: none;
}


/* v3.30.2 – cleaner editable catalog dropdown */
.epc-header__dropdown {
	border-radius: 2px;
	box-shadow: 0 18px 42px rgba(36, 30, 31, .08);
	scrollbar-width: thin;
	scrollbar-color: rgba(51,51,51,.22) transparent;
}
.epc-header__catalog-section {
	padding-top: 14px;
	padding-bottom: 14px;
}
.epc-header__catalog-parent {
	margin-bottom: 8px;
	font-size: 12px;
	letter-spacing: .055em;
}
.epc-header__catalog-child {
	padding-top: 3px;
	padding-bottom: 3px;
	color: #6f686a;
	font-size: 12px;
}
.epc-header__catalog-child::before {
	width: 2px;
	height: 2px;
	background: #b9ada8;
}


/* =========================================================
   ePelene 3.39.0 — live product search dropdown
========================================================= */
.epc-live-search-form{
	position:relative!important;
	overflow:visible!important;
}

.epc-live-search{
	position:absolute;
	z-index:99999;
	top:calc(100% + 12px);
	right:0;
	display:none;
	width:min(430px,calc(100vw - 28px));
	border:1px solid #e8e1dd;
	background:#fff;
	box-shadow:0 18px 48px rgba(35,31,32,.12);
}

.epc-live-search.is-open{
	display:block;
}

.epc-live-search__inner{
	max-height:min(560px,70vh);
	overflow:auto;
}

.epc-live-search__status{
	padding:24px;
	color:#81797b;
	font-family:Montserrat,Arial,sans-serif;
	font-size:12px;
	text-align:center;
}

.epc-live-search__items{
	display:flex;
	flex-direction:column;
}

.epc-live-search__item{
	display:grid;
	grid-template-columns:66px minmax(0,1fr) auto;
	align-items:center;
	gap:14px;
	min-height:84px;
	padding:10px 16px 10px 10px;
	border-bottom:1px solid #eee8e5;
	color:#2d292b;
	text-decoration:none;
	transition:background .2s ease;
}

.epc-live-search__item:hover{
	background:#faf8f6;
}

.epc-live-search__media{
	display:block;
	width:66px;
	height:66px;
	overflow:hidden;
	background:#f1ece9;
}

.epc-live-search__media img{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center top;
}

.epc-live-search__copy{
	display:flex;
	flex-direction:column;
	gap:5px;
	min-width:0;
}

.epc-live-search__copy strong{
	overflow:hidden;
	color:#2d292b;
	font-family:Montserrat,Arial,sans-serif;
	font-size:12px;
	font-weight:500;
	line-height:1.35;
	text-overflow:ellipsis;
	white-space:nowrap;
}

.epc-live-search__price,
.epc-live-search__price *{
	color:#2d292b!important;
	font-family:Montserrat,Arial,sans-serif;
	font-size:11px!important;
	font-weight:700!important;
}

.epc-live-search__price del{
	margin-right:5px;
	color:#989092!important;
	font-weight:400!important;
}

.epc-live-search__price ins{
	text-decoration:none;
}

.epc-live-search__arrow{
	color:#8f2838;
	font-size:15px;
}

.epc-live-search__all{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:18px;
	padding:15px 17px;
	background:#faf7f5;
	color:#2d292b;
	font-family:Montserrat,Arial,sans-serif;
	font-size:10px;
	font-weight:700;
	letter-spacing:.05em;
	text-decoration:none;
	text-transform:uppercase;
}

.epc-header__desktop-search-form .epc-live-search{
	top:calc(100% + 15px);
	right:0;
}

.epc-header__search--mobile .epc-live-search{
	top:calc(100% + 8px);
	right:0;
	left:0;
	width:100%;
}

@media(max-width:767px){
	.epc-live-search{
		width:100%;
	}
	.epc-live-search__item{
		grid-template-columns:58px minmax(0,1fr) auto;
		min-height:76px;
	}
	.epc-live-search__media{
		width:58px;
		height:58px;
	}
}


/* =========================================================
   ePelene 3.40.3 — elegant inline WooCommerce notices
========================================================= */

body .woocommerce-notices-wrapper{
	width:100%!important;
	max-width:none!important;
	margin:0 auto 26px!important;
	padding:0!important;
}

body .woocommerce-notices-wrapper:empty{
	display:none!important;
	margin:0!important;
}

body .woocommerce-notices-wrapper > .woocommerce-message,
body .woocommerce-notices-wrapper > .woocommerce-info,
body .woocommerce-notices-wrapper > .woocommerce-error,
body .woocommerce > .woocommerce-message,
body .woocommerce > .woocommerce-info,
body .woocommerce > .woocommerce-error{
	position:relative!important;
	inset:auto!important;
	float:none!important;
	display:grid!important;
	grid-template-columns:34px minmax(0,1fr) auto!important;
	align-items:center!important;
	gap:13px!important;
	width:100%!important;
	min-height:66px!important;
	margin:0 0 16px!important;
	padding:14px 18px!important;
	overflow:hidden!important;
	border:1px solid #e8e1dd!important;
	border-top:1px solid #e8e1dd!important;
	border-left:3px solid #8f2838!important;
	border-radius:0!important;
	background:#fcfaf8!important;
	color:#2d292b!important;
	box-shadow:none!important;
	font:500 11px/1.55 Montserrat,Arial,sans-serif!important;
	list-style:none!important;
}

body .woocommerce-notices-wrapper > .woocommerce-error{
	border-left-color:#8f2838!important;
	background:#fff8f8!important;
}

body .woocommerce-notices-wrapper > .woocommerce-message::before,
body .woocommerce-notices-wrapper > .woocommerce-info::before,
body .woocommerce-notices-wrapper > .woocommerce-error::before,
body .woocommerce > .woocommerce-message::before,
body .woocommerce > .woocommerce-info::before,
body .woocommerce > .woocommerce-error::before{
	position:static!important;
	inset:auto!important;
	display:flex!important;
	align-items:center!important;
	justify-content:center!important;
	width:30px!important;
	height:30px!important;
	margin:0!important;
	padding:0!important;
	border:1px solid #eaded9!important;
	border-radius:50%!important;
	background:#fff!important;
	color:#8f2838!important;
	font:600 13px/1 Montserrat,Arial,sans-serif!important;
	transform:none!important;
}

body .woocommerce-notices-wrapper > .woocommerce-message::before,
body .woocommerce > .woocommerce-message::before{
	content:"✓"!important;
}

body .woocommerce-notices-wrapper > .woocommerce-info::before,
body .woocommerce > .woocommerce-info::before{
	content:"i"!important;
}

body .woocommerce-notices-wrapper > .woocommerce-error::before,
body .woocommerce > .woocommerce-error::before{
	content:"!"!important;
}

body .woocommerce-notices-wrapper > .woocommerce-message::after,
body .woocommerce-notices-wrapper > .woocommerce-info::after,
body .woocommerce-notices-wrapper > .woocommerce-error::after,
body .woocommerce > .woocommerce-message::after,
body .woocommerce > .woocommerce-info::after,
body .woocommerce > .woocommerce-error::after{
	display:none!important;
	content:none!important;
}

body .woocommerce-notices-wrapper .button,
body .woocommerce-notices-wrapper .restore-item,
body .woocommerce .woocommerce-message .button,
body .woocommerce .woocommerce-info .button,
body .woocommerce .woocommerce-error .button,
body .woocommerce .restore-item{
	position:static!important;
	float:none!important;
	display:inline-flex!important;
	align-items:center!important;
	justify-content:center!important;
	width:auto!important;
	min-width:max-content!important;
	min-height:36px!important;
	margin:0!important;
	padding:0 15px!important;
	border:1px solid #8f2838!important;
	border-radius:0!important;
	background:transparent!important;
	color:#8f2838!important;
	box-shadow:none!important;
	font:700 8px/1 Montserrat,Arial,sans-serif!important;
	letter-spacing:.06em!important;
	text-decoration:none!important;
	text-transform:uppercase!important;
	white-space:nowrap!important;
}

body .woocommerce-notices-wrapper .button:hover,
body .woocommerce-notices-wrapper .restore-item:hover,
body .woocommerce .woocommerce-message .button:hover,
body .woocommerce .woocommerce-info .button:hover,
body .woocommerce .woocommerce-error .button:hover,
body .woocommerce .restore-item:hover{
	background:#8f2838!important;
	color:#fff!important;
}

body .woocommerce-notices-wrapper ul.woocommerce-error{
	padding-left:18px!important;
}

body .woocommerce-notices-wrapper ul.woocommerce-error li{
	display:contents!important;
}

@media(max-width:767px){
	body .woocommerce-notices-wrapper{
		margin-bottom:18px!important;
	}

	body .woocommerce-notices-wrapper > .woocommerce-message,
	body .woocommerce-notices-wrapper > .woocommerce-info,
	body .woocommerce-notices-wrapper > .woocommerce-error,
	body .woocommerce > .woocommerce-message,
	body .woocommerce > .woocommerce-info,
	body .woocommerce > .woocommerce-error{
		grid-template-columns:28px minmax(0,1fr)!important;
		gap:10px!important;
		min-height:58px!important;
		padding:12px 13px!important;
		font-size:9px!important;
	}

	body .woocommerce-notices-wrapper > .woocommerce-message::before,
	body .woocommerce-notices-wrapper > .woocommerce-info::before,
	body .woocommerce-notices-wrapper > .woocommerce-error::before,
	body .woocommerce > .woocommerce-message::before,
	body .woocommerce > .woocommerce-info::before,
	body .woocommerce > .woocommerce-error::before{
		width:26px!important;
		height:26px!important;
		font-size:11px!important;
	}

	body .woocommerce-notices-wrapper .button,
	body .woocommerce-notices-wrapper .restore-item,
	body .woocommerce .woocommerce-message .button,
	body .woocommerce .woocommerce-info .button,
	body .woocommerce .woocommerce-error .button,
	body .woocommerce .restore-item{
		grid-column:2!important;
		justify-self:start!important;
		min-height:32px!important;
		margin-top:3px!important;
		padding:0 12px!important;
		font-size:7px!important;
	}
}

/* v3.41.1 – Išpardavimas visada bordo */
.epc-header .epc-header__menu-link.epc-header__menu-link--sale,
.epc-header .epc-header__menu-link.epc-header__menu-link--sale:hover,
.epc-header .epc-header__menu-link.epc-header__menu-link--sale:focus,
.epc-header .epc-header__menu-link.epc-header__menu-link--sale:visited,
.epc-header__mobile-menu .epc-header__mobile-sale-link,
.epc-header__mobile-menu .epc-header__mobile-sale-link:hover,
.epc-header__mobile-menu .epc-header__mobile-sale-link:focus,
.epc-header__mobile-menu .epc-header__mobile-sale-link:visited { color:#8e2838 !important; }
.epc-header .epc-header__menu-link.epc-header__menu-link--sale::after { background-color:#8e2838 !important; }

/* v3.41.5 – Kontaktai: be rėmelių aplink el. paštą ir telefoną */
.ep-contact-item,
.ep-contact-card,
.ep-contact-link,
.ep-contact-method,
.ep-contact-details a {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}


/* =========================================================
   ePelene v3.41.16 – CLEAN MOBILE + TABLET HEADER ONLY
   Desktop (>1180px) intentionally untouched.
   ========================================================= */
@media (max-width:1180px){

    /* ---------- TOP BAR ---------- */
    .epc-header__nav{
        background:#fff !important;
        border-bottom:1px solid rgba(45,40,41,.09) !important;
        box-shadow:none !important;
    }

    .epc-header__nav-inner{
        min-height:68px !important;
        padding-left:22px !important;
        padding-right:22px !important;
    }

    .epc-header__sticky-logo-link,
    .epc-header-shell.epc-scrolled .epc-header__sticky-logo-link{
        display:flex !important;
        align-items:center !important;
        margin-right:auto !important;
    }

    .epc-header__sticky-logo{
        width:150px !important;
        max-width:190px !important;
        max-height:52px !important;
        object-fit:contain !important;
    }

    .epc-header__mobile-actions{
        display:flex !important;
        align-items:center !important;
        gap:4px !important;
        margin-left:auto !important;
    }

    .epc-header .epc-header__mobile-actions .epc-header__tool,
    .epc-header .epc-header__mobile-actions .epc-header__burger{
        width:40px !important;
        min-width:40px !important;
        height:40px !important;
        min-height:40px !important;
        padding:0 !important;
        border:0 !important;
        border-radius:50% !important;
        background:transparent !important;
        color:#2D2829 !important;
        box-shadow:none !important;
    }

    .epc-header .epc-header__mobile-actions .epc-header__tool svg{
        width:21px !important;
        height:21px !important;
    }

    .epc-header .epc-header__mobile-actions .epc-header__tool svg,
    .epc-header .epc-header__mobile-actions .epc-header__tool svg path,
    .epc-header .epc-header__mobile-actions .epc-header__tool svg circle{
        fill:none !important;
        stroke:#2D2829 !important;
        stroke-width:1.65 !important;
    }

    .epc-header .epc-header__mobile-actions .epc-header__burger{
        gap:4px !important;
    }

    .epc-header .epc-header__mobile-actions .epc-header__burger span{
        width:20px !important;
        height:1.5px !important;
        background:#2D2829 !important;
    }

    .epc-header .epc-header__mobile-actions .epc-header__tool:hover,
    .epc-header .epc-header__mobile-actions .epc-header__burger:hover{
        background:#FAF7F5 !important;
        color:#8F2838 !important;
    }

    .epc-header__mobile-actions .epc-header__count{
        top:0 !important;
        right:-1px !important;
        min-width:16px !important;
        height:16px !important;
        padding:0 4px !important;
        background:#8F2838 !important;
        color:#fff !important;
        font-size:8px !important;
        line-height:16px !important;
    }

    /* ---------- SEARCH PANEL ---------- */
    .epc-header__mobile-search{
        position:relative !important;
        z-index:99995 !important;
        background:#fff !important;
        overflow:hidden !important;
        box-shadow:none !important;
    }

    .epc-header__mobile-search.is-open{
        max-height:76px !important;
        padding:10px 0 12px !important;
        overflow:visible !important; /* critical: live results were being clipped */
        border-top:1px solid rgba(45,40,41,.08) !important;
        border-bottom:1px solid rgba(45,40,41,.08) !important;
    }

    .epc-header__mobile-search .epc-header__container{
        width:min(100% - 32px,760px) !important;
        margin:0 auto !important;
        padding:0 !important;
    }

    .epc-header__search--mobile{
        position:relative !important;
        width:100% !important;
        height:44px !important;
        border:1px solid #DDD6D2 !important;
        border-radius:0 !important;
        background:#fff !important;
        overflow:visible !important;
    }

    .epc-header__search--mobile .epc-header__search-input{
        height:42px !important;
        padding:0 52px 0 14px !important;
        color:#2D2829 !important;
        font-size:13px !important;
        background:transparent !important;
    }

    .epc-header__search--mobile .epc-header__search-button{
        width:44px !important;
        min-width:44px !important;
        height:42px !important;
        border-left:1px solid #EEE8E5 !important;
        background:#fff !important;
        color:#2D2829 !important;
    }

    /* Live AJAX-like instant results: visible above content */
    .epc-header__search--mobile .epc-live-search{
        top:calc(100% + 8px) !important;
        right:0 !important;
        left:0 !important;
        z-index:100005 !important;
        width:100% !important;
        max-height:min(520px,65vh) !important;
        overflow:auto !important;
        border:1px solid #E8E1DD !important;
        background:#fff !important;
        box-shadow:0 18px 45px rgba(45,40,41,.14) !important;
    }

    /* ---------- OVERLAY ---------- */
    .epc-header__overlay{
        background:rgba(45,40,41,.28) !important;
        backdrop-filter:none !important;
    }

    /* ---------- DRAWER ---------- */
    .epc-header__drawer{
        width:min(390px,88vw) !important;
        max-width:390px !important;
        background:#fff !important;
        box-shadow:-18px 0 45px rgba(45,40,41,.12) !important;
    }

    .epc-header__drawer-top{
        min-height:70px !important;
        padding:12px 20px !important;
        border-bottom:1px solid rgba(45,40,41,.08) !important;
        background:#fff !important;
    }

    .epc-header__drawer-top img{
        width:132px !important;
        max-height:46px !important;
        object-fit:contain !important;
    }

    .epc-header .epc-header__drawer-close{
        width:38px !important;
        min-width:38px !important;
        height:38px !important;
        min-height:38px !important;
        padding:0 !important;
        border:0 !important;
        border-radius:50% !important;
        background:transparent !important;
        color:#2D2829 !important;
        font-size:28px !important;
        font-weight:300 !important;
        line-height:1 !important;
    }

    .epc-header .epc-header__drawer-close:hover{
        background:#FAF7F5 !important;
        color:#8F2838 !important;
    }

    .epc-header__drawer-content{
        padding:10px 22px 28px !important;
    }

    /* The old 4 large action tiles caused most of the visual chaos.
       Header already has search/cart; account & wishlist stay as clean rows below. */
    .epc-header__drawer-actions{
        display:none !important;
    }

    /* ---------- CATALOG ACCORDION ---------- */
    .epc-header .epc-header__mobile-catalog-toggle,
    .epc-header .epc-header__mobile-catalog-toggle:hover,
    .epc-header .epc-header__mobile-catalog-toggle:focus,
    .epc-header .epc-header__mobile-catalog-toggle.is-open{
        display:flex !important;
        align-items:center !important;
        width:100% !important;
        min-height:52px !important;
        height:auto !important;
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        border-bottom:1px solid rgba(45,40,41,.10) !important;
        border-radius:0 !important;
        background:transparent !important;
        color:#2D2829 !important;
        box-shadow:none !important;
        text-align:left !important;
    }

    .epc-header__mobile-catalog-toggle::before{
        display:none !important;
        content:none !important;
    }

    .epc-header__mobile-catalog-toggle span{
        margin-right:auto !important;
        color:#2D2829 !important;
        font-family:Montserrat,Arial,sans-serif !important;
        font-size:13px !important;
        font-weight:700 !important;
        letter-spacing:.02em !important;
        text-transform:none !important;
    }

    .epc-header__mobile-catalog-toggle svg{
        width:15px !important;
        height:15px !important;
        margin-left:12px !important;
        stroke:#8F2838 !important;
    }

    .epc-header__mobile-catalog{
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        background:#FBF9F8 !important;
    }

    .epc-header__mobile-catalog.is-open{
        max-height:60vh !important;
        padding:8px 14px 10px !important;
        overflow:auto !important;
    }

    .epc-header__mobile-catalog-section{
        padding:10px 0 !important;
        border-bottom:1px solid rgba(45,40,41,.07) !important;
    }

    .epc-header__mobile-catalog-section:last-child{
        border-bottom:0 !important;
    }

    .epc-header__mobile-catalog .epc-header__catalog-parent{
        display:block !important;
        margin:0 0 5px !important;
        color:#2D2829 !important;
        font-size:12px !important;
        font-weight:700 !important;
    }

    .epc-header__mobile-catalog .epc-header__catalog-child{
        display:block !important;
        padding:4px 0 !important;
        color:#756D70 !important;
        font-size:11.5px !important;
        font-weight:400 !important;
    }

    /* ---------- MAIN DRAWER MENU ---------- */
    .epc-header__mobile-menu{
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
    }

    .epc-header__mobile-menu a,
    .epc-header__mobile-menu a:visited,
    .epc-header__mobile-menu a:hover,
    .epc-header__mobile-menu a:focus{
        position:relative !important;
        display:flex !important;
        align-items:center !important;
        width:100% !important;
        min-height:52px !important;
        padding:0 !important;
        border:0 !important;
        border-bottom:1px solid rgba(45,40,41,.10) !important;
        background:transparent !important;
        color:#2D2829 !important;
        font-family:Montserrat,Arial,sans-serif !important;
        font-size:13px !important;
        font-weight:600 !important;
        line-height:1.3 !important;
        text-decoration:none !important;
    }

    /* remove the old per-row decorative icons */
    .epc-header__mobile-menu a::before{
        display:none !important;
        content:none !important;
        background:none !important;
    }

    .epc-header__mobile-menu a span{
        margin-left:auto !important;
        color:#B3A6A4 !important;
        font-size:19px !important;
        font-weight:300 !important;
    }

    .epc-header__mobile-menu a:hover{
        color:#8F2838 !important;
    }

    .epc-header__mobile-menu .epc-header__mobile-sale-link,
    .epc-header__mobile-menu .epc-header__mobile-sale-link:visited,
    .epc-header__mobile-menu .epc-header__mobile-sale-link:hover{
        color:#8F2838 !important;
        font-weight:700 !important;
    }

    /* Account + wishlist are last two rows: subtle secondary zone */
    .epc-header__mobile-menu a:nth-last-child(-n+2){
        min-height:48px !important;
        color:#625B5D !important;
        font-size:12px !important;
        font-weight:500 !important;
    }

    .epc-header__mobile-menu a:nth-last-child(2){
        margin-top:12px !important;
        border-top:1px solid rgba(45,40,41,.10) !important;
    }
}

/* ---------- MOBILE FINE TUNING ---------- */
@media (max-width:767px){

    .epc-header__nav-inner{
        min-height:64px !important;
        padding-left:16px !important;
        padding-right:12px !important;
    }

    .epc-header__sticky-logo{
        width:126px !important;
        max-width:calc(100vw - 150px) !important;
        max-height:46px !important;
    }

    .epc-header .epc-header__mobile-actions .epc-header__tool,
    .epc-header .epc-header__mobile-actions .epc-header__burger{
        width:36px !important;
        min-width:36px !important;
        height:36px !important;
        min-height:36px !important;
    }

    .epc-header .epc-header__mobile-actions .epc-header__tool svg{
        width:20px !important;
        height:20px !important;
    }

    .epc-header__drawer{
        width:min(88vw,360px) !important;
        max-width:360px !important;
    }

    .epc-header__drawer-content{
        padding:8px 18px 24px !important;
    }

    .epc-header__mobile-search .epc-header__container{
        width:calc(100% - 24px) !important;
    }

    .epc-header__search--mobile .epc-live-search{
        position:absolute !important;
        width:100% !important;
        max-height:62vh !important;
    }

    .epc-live-search__item{
        grid-template-columns:52px minmax(0,1fr) auto !important;
        gap:11px !important;
        min-height:70px !important;
        padding:9px 12px 9px 9px !important;
    }

    .epc-live-search__media{
        width:52px !important;
        height:52px !important;
    }

    .epc-live-search__copy strong{
        font-size:11.5px !important;
    }

    .epc-live-search__price,
    .epc-live-search__price *{
        font-size:10.5px !important;
    }
}


/* =========================================================
   ePelene v3.41.17 – MINIMAL MOBILE/TABLET DRAWER
   Desktop >1180px untouched.
   ========================================================= */
@media (max-width:1180px){

    .epc-header__drawer{
        width:min(360px,88vw) !important;
        max-width:360px !important;
        background:#FFFFFF !important;
        box-shadow:-14px 0 34px rgba(45,40,41,.10) !important;
    }

    .epc-header__drawer-top{
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        min-height:64px !important;
        padding:0 20px !important;
        border-bottom:1px solid #EEE8E5 !important;
        background:#FFFFFF !important;
    }

    .epc-header__drawer-top img{
        display:none !important;
    }

    .epc-header__drawer-title{
        display:block !important;
        color:#2D2829 !important;
        font-family:Montserrat,Arial,sans-serif !important;
        font-size:12px !important;
        font-weight:700 !important;
        letter-spacing:.10em !important;
        text-transform:uppercase !important;
    }

    .epc-header .epc-header__drawer-close,
    .epc-header .epc-header__drawer-close:hover,
    .epc-header .epc-header__drawer-close:focus{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        width:36px !important;
        min-width:36px !important;
        height:36px !important;
        min-height:36px !important;
        padding:0 !important;
        border:0 !important;
        outline:0 !important;
        border-radius:50% !important;
        background:transparent !important;
        color:#2D2829 !important;
        font-family:Arial,sans-serif !important;
        font-size:26px !important;
        font-weight:300 !important;
        line-height:1 !important;
        box-shadow:none !important;
    }

    .epc-header .epc-header__drawer-close:hover{
        color:#8F2838 !important;
        background:#FAF7F5 !important;
    }

    .epc-header__drawer-content{
        padding:6px 20px 26px !important;
    }

    /* no large quick-action tiles */
    .epc-header__drawer-actions{
        display:none !important;
    }

    /* Catalog = same visual language as normal menu row */
    .epc-header .epc-header__mobile-catalog-toggle,
    .epc-header .epc-header__mobile-catalog-toggle:hover,
    .epc-header .epc-header__mobile-catalog-toggle:focus,
    .epc-header .epc-header__mobile-catalog-toggle.is-open{
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        width:100% !important;
        min-height:50px !important;
        height:auto !important;
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        border-bottom:1px solid #EEE8E5 !important;
        outline:0 !important;
        border-radius:0 !important;
        background:transparent !important;
        background-image:none !important;
        color:#2D2829 !important;
        box-shadow:none !important;
    }

    .epc-header__mobile-catalog-toggle::before{
        display:none !important;
        content:none !important;
    }

    .epc-header__mobile-catalog-toggle span{
        margin:0 !important;
        color:#2D2829 !important;
        font-family:Montserrat,Arial,sans-serif !important;
        font-size:13px !important;
        font-weight:600 !important;
        letter-spacing:0 !important;
        text-transform:none !important;
    }

    .epc-header__mobile-catalog-toggle svg{
        width:14px !important;
        height:14px !important;
        margin:0 !important;
        stroke:#8F2838 !important;
    }

    .epc-header__mobile-catalog{
        border:0 !important;
        background:#FBF9F8 !important;
    }

    .epc-header__mobile-catalog.is-open{
        max-height:58vh !important;
        padding:6px 12px 8px !important;
        overflow:auto !important;
    }

    .epc-header__mobile-catalog-section{
        padding:9px 0 !important;
        border-bottom:1px solid rgba(45,40,41,.06) !important;
    }

    .epc-header__mobile-catalog .epc-header__catalog-parent{
        margin:0 0 4px !important;
        color:#2D2829 !important;
        font-size:11.5px !important;
        font-weight:700 !important;
    }

    .epc-header__mobile-catalog .epc-header__catalog-child{
        padding:3px 0 !important;
        color:#756D70 !important;
        font-size:11px !important;
        font-weight:400 !important;
    }

    .epc-header__mobile-menu{
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
    }

    .epc-header__mobile-menu a,
    .epc-header__mobile-menu a:visited,
    .epc-header__mobile-menu a:hover,
    .epc-header__mobile-menu a:focus{
        display:flex !important;
        align-items:center !important;
        width:100% !important;
        min-height:50px !important;
        padding:0 !important;
        border:0 !important;
        border-bottom:1px solid #EEE8E5 !important;
        outline:0 !important;
        background:transparent !important;
        color:#2D2829 !important;
        font-family:Montserrat,Arial,sans-serif !important;
        font-size:13px !important;
        font-weight:600 !important;
        line-height:1.25 !important;
        text-decoration:none !important;
        box-shadow:none !important;
    }

    .epc-header__mobile-menu a::before{
        display:none !important;
        content:none !important;
    }

    .epc-header__mobile-menu a span{
        margin-left:auto !important;
        color:#B7ABAA !important;
        font-size:18px !important;
        font-weight:300 !important;
    }

    .epc-header__mobile-menu .epc-header__mobile-sale-link,
    .epc-header__mobile-menu .epc-header__mobile-sale-link:visited{
        color:#8F2838 !important;
        font-weight:700 !important;
    }

    /* secondary account links */
    .epc-header__mobile-menu a:nth-last-child(2){
        margin-top:14px !important;
        border-top:1px solid #EEE8E5 !important;
    }

    .epc-header__mobile-menu a:nth-last-child(-n+2){
        min-height:46px !important;
        color:#6B6365 !important;
        font-size:11.5px !important;
        font-weight:500 !important;
    }

    /* remove active/focus blocks leaking from browser/theme */
    .epc-header__drawer button:focus,
    .epc-header__drawer a:focus{
        outline:none !important;
        box-shadow:none !important;
    }

    .epc-header__drawer a[aria-current="page"]{
        background:transparent !important;
    }

    /* search panel remains functional and above content */
    .epc-header__mobile-search.is-open{
        overflow:visible !important;
    }

    .epc-header__search--mobile,
    .epc-header__search--mobile.epc-live-search-form{
        overflow:visible !important;
    }

    .epc-header__search--mobile .epc-live-search{
        z-index:100010 !important;
    }
}

@media (max-width:767px){
    .epc-header__drawer{
        width:min(350px,90vw) !important;
    }

    .epc-header__drawer-top{
        min-height:60px !important;
        padding:0 17px !important;
    }

    .epc-header__drawer-content{
        padding:4px 17px 22px !important;
    }

    .epc-header .epc-header__mobile-catalog-toggle,
    .epc-header__mobile-menu a{
        min-height:48px !important;
    }
}


/* =========================================================
   ePelene v3.41.24 – FINAL GLOBAL WOOCOMMERCE NOTICES
   Elegant notices everywhere. Overrides Woo/theme defaults.
   ========================================================= */

html body .woocommerce-notices-wrapper{
	width:100% !important;
	max-width:680px !important;
	margin:0 auto 18px !important;
	padding:0 !important;
	pointer-events:auto !important;
}

html body .woocommerce-notices-wrapper:empty{
	display:none !important;
	margin:0 !important;
}

html body .woocommerce-message,
html body .woocommerce-info,
html body .woocommerce-error,
html body ul.woocommerce-error{
	position:relative !important;
	inset:auto !important;
	float:none !important;
	display:flex !important;
	align-items:center !important;
	gap:10px !important;

	width:100% !important;
	max-width:680px !important;
	min-height:42px !important;
	margin:0 auto 10px !important;
	padding:10px 14px !important;

	border:1px solid #E8E1DD !important;
	border-top:1px solid #E8E1DD !important;
	border-right:1px solid #E8E1DD !important;
	border-bottom:1px solid #E8E1DD !important;
	border-left:2px solid #8F2838 !important;
	border-radius:0 !important;

	outline:0 !important;
	background:#FCFAF9 !important;
	background-image:none !important;
	color:#2D2829 !important;
	box-shadow:none !important;

	font-family:Montserrat,Arial,sans-serif !important;
	font-size:11px !important;
	font-weight:500 !important;
	line-height:1.45 !important;
	text-indent:0 !important;
	list-style:none !important;
	overflow:visible !important;
}

/* No WooCommerce green/blue/red top bars */
html body .woocommerce-message{
	border-left-color:#8F2838 !important;
}
html body .woocommerce-info{
	border-left-color:#B7A7AA !important;
}
html body .woocommerce-error,
html body ul.woocommerce-error{
	border-left-color:#8F2838 !important;
	background:#FFF9F9 !important;
}

/* Kill every old/default pseudo icon first */
html body .woocommerce-message::before,
html body .woocommerce-info::before,
html body .woocommerce-error::before,
html body ul.woocommerce-error::before{
	position:static !important;
	inset:auto !important;
	display:inline-flex !important;
	align-items:center !important;
	justify-content:center !important;
	flex:0 0 18px !important;
	width:18px !important;
	height:18px !important;
	margin:0 !important;
	padding:0 !important;
	border:1px solid rgba(143,40,56,.25) !important;
	border-radius:50% !important;
	background:#fff !important;
	background-image:none !important;
	color:#8F2838 !important;
	font-family:Arial,sans-serif !important;
	font-size:10px !important;
	font-weight:700 !important;
	line-height:1 !important;
	transform:none !important;
}

html body .woocommerce-message::before{
	content:"✓" !important;
}

html body .woocommerce-info::before{
	content:"i" !important;
}

html body .woocommerce-error::before,
html body ul.woocommerce-error::before{
	content:"!" !important;
}

html body .woocommerce-message::after,
html body .woocommerce-info::after,
html body .woocommerce-error::after,
html body ul.woocommerce-error::after{
	display:none !important;
	content:none !important;
}

/* Undo / View cart / action: subtle text action only */
html body .woocommerce-message .button,
html body .woocommerce-info .button,
html body .woocommerce-error .button,
html body .woocommerce-notices-wrapper .restore-item{
	position:static !important;
	float:none !important;
	display:inline !important;
	width:auto !important;
	min-width:0 !important;
	min-height:0 !important;
	margin:0 0 0 auto !important;
	padding:0 !important;

	border:0 !important;
	border-radius:0 !important;
	outline:0 !important;
	background:transparent !important;
	background-image:none !important;
	color:#8F2838 !important;
	box-shadow:none !important;

	font-family:Montserrat,Arial,sans-serif !important;
	font-size:10px !important;
	font-weight:700 !important;
	line-height:1.3 !important;
	letter-spacing:0 !important;
	text-decoration:none !important;
	text-transform:none !important;
	white-space:nowrap !important;
}

html body .woocommerce-message .button:hover,
html body .woocommerce-info .button:hover,
html body .woocommerce-error .button:hover,
html body .woocommerce-notices-wrapper .restore-item:hover{
	background:transparent !important;
	color:#6F1D2A !important;
	text-decoration:underline !important;
}

/* Error list contents */
html body ul.woocommerce-error{
	flex-direction:column !important;
	align-items:flex-start !important;
}

html body ul.woocommerce-error li{
	width:100% !important;
	margin:0 !important;
	padding:0 !important;
	list-style:none !important;
}

/* Remove blue browser / Elementor focus boxes */
html body .woocommerce-message:focus,
html body .woocommerce-info:focus,
html body .woocommerce-error:focus,
html body .woocommerce-message *:focus,
html body .woocommerce-info *:focus,
html body .woocommerce-error *:focus{
	outline:0 !important;
	box-shadow:none !important;
}

@media(max-width:767px){
	html body .woocommerce-notices-wrapper{
		width:calc(100% - 32px) !important;
		max-width:none !important;
		margin:0 auto 14px !important;
	}

	html body .woocommerce-message,
	html body .woocommerce-info,
	html body .woocommerce-error,
	html body ul.woocommerce-error{
		gap:8px !important;
		min-height:38px !important;
		padding:9px 11px !important;
		font-size:10.5px !important;
	}

	html body .woocommerce-message::before,
	html body .woocommerce-info::before,
	html body .woocommerce-error::before,
	html body ul.woocommerce-error::before{
		flex-basis:16px !important;
		width:16px !important;
		height:16px !important;
		font-size:9px !important;
	}

	html body .woocommerce-message .button,
	html body .woocommerce-info .button,
	html body .woocommerce-error .button,
	html body .woocommerce-notices-wrapper .restore-item{
		font-size:9.5px !important;
	}
}


/* =========================================================
   ePelene v3.41.37 – HEADER mobile catalog colors + bullets
   Desktop untouched.
   ========================================================= */
@media (max-width:1180px){

    /* Do not hardcode mobile catalog text colors here.
       Elementor color controls now override with !important. */
    .epc-header__mobile-catalog .epc-header__catalog-parent,
    .epc-header__mobile-catalog .epc-header__catalog-child{
        background:transparent !important;
    }

    /* Remove old decorative dots completely on mobile/tablet */
    .epc-header__mobile-catalog .epc-header__catalog-child::before,
    .epc-header__mobile-catalog .epc-header__catalog-child::after{
        display:none !important;
        content:none !important;
        position:static !important;
        width:0 !important;
        height:0 !important;
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        background:transparent !important;
        transform:none !important;
    }

    .epc-header__mobile-catalog .epc-header__catalog-child{
        position:relative !important;
        padding-left:0 !important;
        text-indent:0 !important;
    }
}

/* =========================================================
   ePelene v3.41.38 – GLOBAL WooCommerce notice spacing
   Keep elegant notice style, add breathing room from header/content.
   ========================================================= */
html body .woocommerce-notices-wrapper{
    margin-top:22px !important;
    margin-bottom:22px !important;
}

html body .woocommerce-message,
html body .woocommerce-info,
html body .woocommerce-error,
html body ul.woocommerce-error{
    margin-top:0 !important;
    margin-bottom:10px !important;
}

@media(max-width:767px){
    html body .woocommerce-notices-wrapper{
        margin-top:14px !important;
        margin-bottom:16px !important;
    }
}
