.cpg-h-wishlist {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #fff;
	 padding: 0 10px;
    border-radius: var(--cpg-border-radius-s);
    transition: background var(--cpg-transition);
}
.cpg-h-wishlist:hover {
	color: #fff;
	background: var(--cpg-red);
}
.cpg-h-wishlist__icon { width: 27px; height: auto; display: inline-flex; }
.cpg-h-wishlist__icon .cpg-acc-icon { width: 100%; height: 100%; }
.cpg-h-wishlist__label { display: none; }

.cpg-h-account { position: relative; }
.cpg-h-account__trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	cursor: pointer;
	color: inherit;
	font-family: var(--cpg-title-font, inherit);
	padding: 4px;
}
.cpg-h-account__icon { width: 29px; height: auto; display: inline-flex; flex: none; }
.cpg-h-account__icon .cpg-acc-icon { width: 100%; height: 100%;stroke-width: 1.5px;}
.cpg-h-account__avatar {
	flex: none;
	width: 32px;
	height: 32px;
	border-radius: 99px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cpg-red-light);
	color: var(--cpg-red);
	font-size: 13px;
}
.cpg-h-account__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.1;
	max-width: 120px;
	overflow: hidden;
}
.cpg-h-account__eyebrow { font-size: 11px; opacity: 0.85; }
.cpg-h-account__label {
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.cpg-h-account__arrow {     width: 19px;
    height: auto;
    display: inline-flex;
    transition: transform var(--cpg-transition);
    transform: rotate(90deg); }
.cpg-h-account__arrow .cpg-acc-icon { width: 100%; height: 100%; }
.cpg-h-account.is-open .cpg-h-account__arrow { transform: rotate(270deg); }

.cpg-h-account__panel {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 280px;
	border-radius: var(--cpg-border-radius-card);
	background: var(--cpg-white-bg);
   box-shadow: 2px 4px 1px rgb(59 10 8 / 3%);
   border: 1px solid rgb(130 77 77 / 14%);
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px) scale(0.98);
	transition: opacity 0.22s cubic-bezier(0.16,1,0.3,1), transform 0.22s cubic-bezier(0.16,1,0.3,1), visibility 0.22s;
	z-index: 200;
	color: var(--cpg-color-text);
	text-align: center;
}
.cpg-h-account.is-open .cpg-h-account__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.cpg-h-account__panel::before {
	content: '';
	position: absolute;
	top: -7px;
	right: 20%;
	width: 14px;
	height: 14px;
	background: var(--cpg-white-bg);
	transform: rotate(45deg);
	border-radius: 3px 0 0 0;
}
.cpg-h-account__title {
	font-family: var(--cpg-title-font);
	font-size: 20px;
	margin: 0 0 16px;
}
.cpg-h-account__cta {
	font-family: var(--cpg-title-font);
	display: block;
	width: 100%;
	padding: 14px 20px;
	background: var(--cpg-red-primary);
	color: #fff;
	text-decoration: none;
	border-radius: var(--cpg-border-radius-m);
	font-size: 15px;
	transition: background var(--cpg-transition), transform var(--cpg-transition);
}
.cpg-h-account__cta:hover {color: #fff; background: var(--cpg-red); transform: translateY(-1px);box-shadow: 0 6px 20px rgba(230, 58, 46, 0.40); }
.cpg-h-account__hint {
	margin: 16px 0 0;
	font-size: 14px;
	line-height: 1.5;
}
.cpg-h-account__link {
	font-family: var(--cpg-title-font);
	color: var(--cpg-red);
	text-decoration: underline;
}
.cpg-h-account__link:hover {
	color: var(--cpg-color-text);
	text-decoration: none;
}

.cpg-h-account__panel--menu { text-align: left; padding: 12px; min-width: 240px; }
.cpg-h-account__panel--menu::before { right: 40% }
.cpg-h-account__menu { list-style: none; margin: 0; padding: 0; }
.cpg-h-account__menu-item {
    margin-bottom: 0;
}
.cpg-h-account__menu-item + .cpg-h-account__menu-item { margin-top: 2px; }
.cpg-h-account__menu-item--wznd-my-wallet,.cpg-dash-navdrawer__item--wznd-my-wallet {
    display: none;
    visibility: hidden;
}
.cpg-h-account__menu-item--logout {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--cpg-border-color);
}
.cpg-h-account__menu-link {
	font-family: var(--cpg-title-font);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 12px;
	border-radius: var(--cpg-border-radius-s);
	text-decoration: none;
	color: var(--cpg-color-text);
	font-size: 14.5px;
	position: relative;
	transition: background var(--cpg-transition);
}
.cpg-h-account__menu-link:hover,
.cpg-h-account__menu-link[aria-current="page"] { background: var(--cpg-red-light); }
.cpg-h-account__menu-ico { width: 23px; height: 23px; flex: none; display: inline-flex; }
.cpg-h-account__menu-ico .cpg-acc-icon { transition: background var(--cpg-transition);}
.cpg-h-account__menu-txt-wrap { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.cpg-h-account__menu-txt { overflow: hidden; text-overflow: ellipsis; }

.cpg-nav-badge {
    position: absolute;
        right: 10px;
    top: 4px;
    font-family: var(--cpg-title-font);
    display: inline-flex;
    align-items: center;
    flex: none;
    padding: 1px 6px;
    border-radius: 6px;
    font-size: 0.47rem;
    line-height: 1.6;
    background: var(--cpg-red);
    color: #fff;
    white-space: nowrap;
}

.cpg-h-cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	 border-radius: var(--cpg-border-radius-s);
    width: 44px;
    transition: background var(--cpg-transition);
}
.cpg-h-cart-btn:hover {
	background: var(--cpg-red);
}
.cpg-h-cart-btn__icon { width: 27px; height: auto; display: inline-flex; }
.cpg-h-cart-btn__icon .cpg-acc-icon { width: 100%; height: 100%;  }
.cpg-h-cart-count {
	    font-family: var(--cpg-title-font);
	position: absolute;
	top: -4px;
	right: -6px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 99px;
	background: var(--cpg-red);
	color: #fff;
	font-size: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: transform var(--cpg-transition);
}
.cpg-h-cart-count.is-empty { display: none; }
.cpg-h-tooltip {
	--cpg-h-tt-enter-ease: cubic-bezier(0.32, 0.72, 0, 1);
	--cpg-h-tt-exit-ease:  cubic-bezier(0.32, 0, 0.67, 0);
	--cpg-h-tt-enter-dur:  0.22s;
	--cpg-h-tt-exit-dur:   0.15s;

	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 30;
	display: none;
	padding: 6px 12px;
	border-radius: var(--cpg-border-radius-s);
	background: var(--cpg-color-text);
	color: #fff;
	font-size: 12px;
	white-space: nowrap;
	line-height: 1.2;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 6px);
	transition: opacity var(--cpg-h-tt-exit-dur) var(--cpg-h-tt-exit-ease),
	            transform var(--cpg-h-tt-exit-dur) var(--cpg-h-tt-exit-ease),
	            visibility 0s linear var(--cpg-h-tt-exit-dur);
}
.cpg-h-tooltip::before {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	width: 8px;
	height: 8px;
	background: var(--cpg-color-text);
	transform: translateX(-50%) translateY(50%) rotate(45deg);
	border-radius: 2px 0 0 0;
}

@media (hover: hover) and (pointer: fine) {
	.cpg-h-tooltip { display: inline-flex; }
	.cpg-h-wishlist:hover .cpg-h-tooltip,
	.cpg-h-wishlist:focus-visible .cpg-h-tooltip,
	.cpg-h-cart-btn:hover .cpg-h-tooltip,
	.cpg-h-cart-btn:focus-visible .cpg-h-tooltip {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
		transition: opacity var(--cpg-h-tt-enter-dur) var(--cpg-h-tt-enter-ease),
		            transform var(--cpg-h-tt-enter-dur) var(--cpg-h-tt-enter-ease),
		            visibility 0s linear 0s;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cpg-h-tooltip { transition: opacity 0.12s linear, visibility 0s linear 0.12s; transform: none !important; }
}

.cpg-h-cart-drawer {

	--cpg-h-cart-enter-ease: cubic-bezier(0.32, 0.72, 0, 1);
	--cpg-h-cart-exit-ease:  cubic-bezier(0.32, 0, 0.67, 0);
	--cpg-h-cart-enter-dur:  0.38s;
	--cpg-h-cart-exit-dur:   0.32s;

	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	justify-content: flex-end;
	visibility: hidden;
	pointer-events: none;
	transition: visibility 0s linear var(--cpg-h-cart-exit-dur);
}
.cpg-h-cart-drawer[aria-hidden="false"] {
	visibility: visible;
	pointer-events: auto;
	transition: visibility 0s linear 0s;
}
.cpg-h-cart-drawer__overlay {
	position: absolute;
	inset: 0;
	background: var(--cpg-backdrop-bg);
	opacity: 0;
	transition: opacity var(--cpg-h-cart-exit-dur) var(--cpg-h-cart-exit-ease);
}
.cpg-h-cart-drawer[aria-hidden="false"] .cpg-h-cart-drawer__overlay {
	opacity: 1;
	transition: opacity var(--cpg-h-cart-enter-dur) var(--cpg-h-cart-enter-ease);
}
.cpg-h-cart-drawer__panel {
	 position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    width: min(100%, 480px);
        overflow: hidden;
    background: var(--cpg-white-bg);
    border-radius: var(--cpg-border-radius-modal);
    display: flex;
    flex-direction: column;
    transform: translateX(200%);
    will-change: transform;
    backface-visibility: hidden;
    transition: transform var(--cpg-h-cart-exit-dur) var(--cpg-h-cart-exit-ease);
    outline: none;
}
.cpg-h-cart-drawer[aria-hidden="false"] .cpg-h-cart-drawer__panel {
	transform: translateX(0);
	transition: transform var(--cpg-h-cart-enter-dur) var(--cpg-h-cart-enter-ease);
}

.cpg-h-cart-drawer__header {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 30px 30px 25px;
	border-bottom: 1px solid var(--cpg-border-color);
}
.cpg-h-cart-drawer__title {
	margin: 0;
	font-size: 22px;
}
.cpg-h-cart-drawer__header span {
	color: var(--cpg-label-muted)
}
.cpg-h-cart-drawer__items-label { font-size: 13px; flex: 1;    font-family: var(--cpg-title-font); }
.cpg-h-cart-drawer__close {
	    position: absolute;
    right: 20px;
    top: 20px;
    flex: none;
    width: 34px;
    height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 999px;
	background: var(--cpg-cream);
	color: var(--cpg-color-text);
	cursor: pointer;
	transition: background var(--cpg-transition);
}
.cpg-h-cart-drawer__close:hover { background: var(--cpg-white-bg); }
.cpg-h-cart-drawer__close svg {
    width: 16px;
    height: auto;
}
.cpg-h-cart-drawer__close svg path {
    stroke-width: 2;
}
.cpg-h-cart-drawer__viewport {
	flex: 1 1 auto;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 8px 24px;
	-webkit-overflow-scrolling: touch;
}
.cpg-h-cart-drawer.is-syncing .cpg-h-cart-drawer__viewport,
.cpg-h-cart-drawer__panel .is-syncing { opacity: 0.98; }
.cpg-h-cart-drawer.has-error .cpg-h-cart-drawer__viewport { animation: cpgHCartShake 0.3s ease; }
@keyframes cpgHCartShake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-4px); }
	75% { transform: translateX(4px); }
}

.cpg-h-cart-items { list-style: none; margin: 0; padding: 0; }
.cpg-h-cart-item {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--cpg-border-color);
	transition: opacity var(--cpg-transition);
}
.cpg-h-cart-items li.cpg-h-cart-item:last-child { border-bottom: none; }
.cpg-h-cart-item.is-removing { opacity: 0.4; pointer-events: none; }
.cpg-h-cart-item.is-updating .cpg-h-cart-qty { opacity: 0.6; }
.cpg-h-cart-item__thumb { flex: none; width: 64px; height: 64px; border-radius: 10px; overflow: hidden; display: block; background: var(--cpg-cream); }
.cpg-h-cart-item__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cpg-h-cart-item__body { flex: 1 1 auto; min-width: 0; }
.cpg-h-cart-item__name {
	display: block;
	font-size: 14.5px;
	color: var(--cpg-color-text);
	text-decoration: none;
	margin-bottom: 8px;
	line-height: 1.35;
}
.cpg-h-cart-item__name:hover { text-decoration: underline; }

.cpg-h-cart-qty {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1.5px solid var(--cpg-border-color);
	border-radius: 999px;
	padding: 4px 6px;
	width: fit-content;
	transition: opacity var(--cpg-transition);
}
.cpg-h-cart-qty__btn {
	    font-family: var(--cpg-title-font);
	width: 22px;
	height: 22px;
	border-radius: var(--cpg-border-radius-m);
	border: none;
	background: var(--cpg-cream);
	color: var(--cpg-color-text);
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.cpg-h-cart-qty__val { min-width: 16px; text-align: center; font-size: 13.5px; }
.cpg-h-cart-qty--fixed { font-size: 13px; color: var(--cpg-label-muted); }

.cpg-h-cart-item__price { margin-top: 8px; font-size: 13.5px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.cpg-h-cart-item__price-qty { opacity: 0.7; }
.cpg-h-cart-item__price-current { color: var(--cpg-red-primary); }
.cpg-h-cart-item__price-regular { text-decoration: line-through; font-size: 12.5px; }
.cpg-h-cart-item__price-regular .amount { color:var(--cpg-label-muted); }

.cpg-h-cart-item__remove {
	flex: none;
	align-self: flex-start;
	width: 30px;
	height: 30px;
	border-radius: var(--cpg-border-radius-m);
	border: none;
	background: var(--cpg-cream);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background var(--cpg-transition);
}
.cpg-h-cart-item__remove .cpg-acc-icon { width: 15px; height: auto;stroke-width:2 }
.cpg-h-cart-item__remove:hover { background: var(--cpg-red-primary); color: #fff; }

.cpg-h-cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 48px 16px;
	color: var(--cpg-color-text);
}
.cpg-h-cart-empty__art { margin-bottom: 30px; }
.cpg-h-cart-empty__art svg { width: 200px;
    height: auto;}
.cpg-h-cart-empty__title {
    margin-bottom: 10px;
        line-height: 1.2;
    letter-spacing: -.03rem;
}
.cpg-h-cart-empty__text { font-size: 15px; margin: 0 0 30px;color: var(--cpg-label-muted); }
.cpg-h-cart-empty__cta {
	font-family: var(--cpg-title-font);
	padding: 13px 28px;
	background: var(--cpg-red-primary);
	color: #fff;
	text-decoration: none;
	border-radius: var(--cpg-border-radius-m);
	font-size: 13px;
	transition: background var(--cpg-transition), transform var(--cpg-transition);
}
.cpg-h-cart-empty__cta:hover { color: #fff;background: var(--cpg-red); transform: translateY(-1px); }

.cpg-h-cart-drawer__footer {
	flex: none;
	padding: 18px 24px 22px;
	border-top: 1px solid var(--cpg-border-color);
	background: #fff;
}
.cpg-h-cart-drawer__subtotal-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	font-size: 15px;
}
.cpg-h-cart-drawer__subtotal-val { font-family: var(--cpg-title-font); font-size: 17px; color: var(--cpg-color-text); }
.cpg-h-cart-drawer__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cpg-h-cart-drawer__btn {
	font-family: var(--cpg-title-font);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 12px;
	border-radius: var(--cpg-border-radius-m);
	font-size: 16px;
	text-decoration: none;
	text-align: center;
	transition: background var(--cpg-transition), transform var(--cpg-transition), box-shadow var(--cpg-transition);
}
.cpg-h-cart-drawer__btn--ghost {
	    background: var(--cpg-red-light);
    color: var(--cpg-red);
}
.cpg-h-cart-drawer__btn--ghost:hover { background: var(--cpg-cream);color: var(--cpg-red);transform: translateY(-1px) }
.cpg-h-cart-drawer__btn--solid {
	background: var(--cpg-red-primary);
	color: #fff;
	border: none;
}
.cpg-h-cart-drawer__btn--solid:hover { color:#fff;background: var(--cpg-red); transform: translateY(-1px);box-shadow: 0 6px 20px rgba(230, 58, 46, 0.40) }

@media (prefers-reduced-motion: reduce) {
	.cpg-h-cart-drawer,
	.cpg-h-cart-drawer__panel,
	.cpg-h-cart-drawer__overlay,
	.cpg-h-account__panel,
	.cpg-h-cart-count {
		transition-duration: 1ms;
	}
}

@keyframes cpgHCartShimmer {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}
.cpg-h-cart-drawer__items-label.is-loading,
.cpg-h-cart-drawer__subtotal-val.is-loading,
.cpg-h-cart-item.is-loading .cpg-h-cart-item__name,
.cpg-h-cart-item.is-loading .cpg-h-cart-item__price,
.cpg-h-cart-item.is-loading .cpg-h-cart-qty {
	position: relative;
	color: transparent !important;
	pointer-events: none;
	border-radius: 8px;
	overflow: hidden;
}
.cpg-h-cart-drawer__items-label.is-loading *,
.cpg-h-cart-drawer__subtotal-val.is-loading *,
.cpg-h-cart-item.is-loading .cpg-h-cart-item__price *,
.cpg-h-cart-item.is-loading .cpg-h-cart-qty * { visibility: hidden; }
.cpg-h-cart-drawer__items-label.is-loading::after,
.cpg-h-cart-drawer__subtotal-val.is-loading::after,
.cpg-h-cart-item.is-loading .cpg-h-cart-item__name::after,
.cpg-h-cart-item.is-loading .cpg-h-cart-item__price::after,
.cpg-h-cart-item.is-loading .cpg-h-cart-qty::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--cpg-skeleton-bg) 25%, var(--cpg-white-bg) 50%, var(--cpg-skeleton-bg) 75%);
	background-size: 200% 100%;
	animation: cpgHCartShimmer 1.4s infinite linear;
}
.cpg-h-cart-item.is-loading .cpg-h-cart-item__thumb {
	position: relative;
	overflow: hidden;
}
.cpg-h-cart-item.is-loading .cpg-h-cart-item__thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--cpg-skeleton-bg) 25%, var(--cpg-white-bg) 50%, var(--cpg-skeleton-bg) 75%);
	background-size: 200% 100%;
	animation: cpgHCartShimmer 1.4s infinite linear;
}
.cpg-h-cart-item.is-loading .cpg-h-cart-item__img { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
	.cpg-h-cart-drawer__items-label.is-loading::after,
	.cpg-h-cart-drawer__subtotal-val.is-loading::after,
	.cpg-h-cart-item.is-loading .cpg-h-cart-item__name::after,
	.cpg-h-cart-item.is-loading .cpg-h-cart-item__price::after,
	.cpg-h-cart-item.is-loading .cpg-h-cart-qty::after,
	.cpg-h-cart-item.is-loading .cpg-h-cart-item__thumb::after {
		animation-duration: 0.01ms;
	}
}

.cpg-toast-stack {
	position: fixed;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999999;
	display: flex;
	flex-direction: column-reverse;
	gap: 10px;
	width: min(92vw, 520px);
	pointer-events: none;
}
.cpg-toast {
	    font-family: var(--cpg-title-font);
	pointer-events: auto;
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 40px 16px 16px;
	border-radius: var(--cpg-border-radius-m);
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: transform 0.38s ease-in-out, opacity 0.38s ease-in-out;
	font-size: 0.9rem;
	line-height: 1.45;
}
.cpg-toast.cpg-toast--success {
	background: var(--cpg-success-bg);
	color: var(--cpg-success-color);
}
.cpg-toast.cpg-toast--info {
	background: var(--cpg-notice-bg);
	color: var(--cpg-notice-color);
}
.cpg-toast.cpg-toast--error {
	background: var(--cpg-error-bg);
	color: var(--cpg-error-color);
}
.cpg-toast.is-visible { opacity: 1; transform: translateY(0); }
.cpg-toast.is-leaving {
	opacity: 0;
	transform: translateY(14px);
	transition: transform 0.26s ease-in-out, opacity 0.26s ease-in-out;
}
.cpg-toast__icon {
	flex: none;
	width: 26px; height: 26px;
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	margin-top: 1px;
}
.cpg-toast__icon svg { width: 15px; height: 15px; }
.cpg-toast--success .cpg-toast__icon { background: var(--cpg-success-border); color: var(--cpg-white-bg); }
.cpg-toast--error   .cpg-toast__icon { background: var(--cpg-error-color);  color: var(--cpg-white-bg); }
.cpg-toast--info    .cpg-toast__icon { background: var(--cpg-notice-color); color: var(--cpg-white-bg); }
.cpg-toast__msg { flex: 1 1 auto; padding-top: 2px;line-height:1.2 }
.cpg-toast__close {
	position: absolute;
	top: 8px; right: 8px;
	width: 24px; height: 24px;
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	color: var(--cpg-color-text);
	background: var(--cpg-white-bg);
	transition: background-color var(--cpg-transition), color var(--cpg-transition);
}
.cpg-toast__close:hover { background: var(--cpg-white-bg); color: var(--cpg-color-text); }
.cpg-toast__close svg { width: 13px; height: 13px; }
.cpg-toast__progress {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 3px;
	background: oklch(1 0 0 / 0.14);
}
.cpg-toast__progress-bar {
	display: block;
	height: 100%;
	width: 100%;
	background: currentColor;
	transform: scaleX(1);
	transform-origin: left;
	will-change: transform;
}
.cpg-toast--success .cpg-toast__progress-bar { color: var(--cpg-success-border); }
.cpg-toast--error   .cpg-toast__progress-bar { color: var(--cpg-error-color); }
.cpg-toast--info    .cpg-toast__progress-bar { color: var(--cpg-notice-color); }
.cpg-toast__progress-bar.is-counting { animation: cpgToastCountdownHeader 8s linear forwards; }
@keyframes cpgToastCountdownHeader {
	from { transform: scaleX(1); }
	to   { transform: scaleX(0); }
}
@media (max-width: 1200px) {
	.cpg-h-account {
	    position: initial;
	}
	.cpg-h-account__panel--menu::before {
	    right: 55%;
	}
	.cpg-h-header[data-cpg-h-compact="true"] .cpg-h-account__panel--menu::before {
        right: 45%;
    }
	.cpg-h-account__text,.cpg-h-account__arrow {
	    display: none;
	}
	.cpg-h-header[data-cpg-h-compact="true"] .cpg-h-wishlist {
	    padding: 0;
	}
	.cpg-h-cart-count {
	    top: -1px;
	    right: -1px;
	}
}
@media (max-width: 820px) {
	.woocommerce-account .cpg-h-account {
        display: none;
    }
}
@media (max-width: 782px) {
	.cpg-h-account__panel { right: -12px; min-width: 260px; }
	.cpg-h-account__text { display: none; }
	.cpg-h-account--user .cpg-h-account__arrow { display: none; }
}
@media (max-width: 575px) {
	.cpg-toast__msg { font-size: 0.89rem }
	.cpg-h-cart-drawer__panel {
	    top: 0;
	    right: 0;
	    bottom: 0;
	    border-radius: 0;
	            width: min(100%, 420px);
	}
}
@media (max-width: 480px) {
	.cpg-toast__msg { font-size: 0.81rem }
	.cpg-h-cart-empty__art svg {
	    width: 160px;
	}
	.cpg-h-cart-empty__title {
	    font-size: 1.23rem;
	}
	.cpg-h-cart-empty__cta {
	    width: 100%;
	}
	.cpg-toast-stack { width: calc(100vw - 24px); bottom: 14px; }
	.cpg-h-cart-drawer__panel { width: 93.4% }
	.cpg-h-cart-drawer__header {
	    padding: 30px 20px 20px;
	}
	.cpg-h-cart-drawer__viewport {
	    padding: 8px 15px;
	}
	.cpg-h-cart-drawer__footer {
	    padding: 15px 20px 22px;
	}
	.cpg-h-cart-item {
	    padding: 8px 0;
	}
	.cpg-h-cart-item__name {
	    font-size: 13px;
	    margin-bottom: 3px;
	}
	.cpg-h-cart-drawer__btn {
	    padding: 12px;
	    font-size: 14px;
	}
	.cpg-h-cart-drawer__header span {
	    font-size: 14px;
	}
	.cpg-h-cart-item__remove .cpg-acc-icon {
	    width: 13px;
	}
	.cpg-h-cart-item__remove {
	    width: 28px;
	    height: 28px;
	}
	.cpg-h-cart-qty__val {
	    min-width: 13px;
	    font-size: 11px;
	}
	    .cpg-h-wishlist {
        color: var(--cpg-red);
        min-height: 37px;
        padding: 0;
    }
    .cpg-h-wishlist__icon {
	    width: 22px;
	}
	.cpg-h-wishlist__icon .cpg-acc-icon {
	    stroke-width: 1.8;
	}
	.cpg-h-wishlist__label {
	    display: inline-flex;
	    font-size: 12px;
	    font-weight: 500;
	    white-space: nowrap;
	}
}
@media (max-width: 380px) {
        .cpg-h-cart-item__name {
        font-size: 12px;
    }
}
