.bz-favorite-control {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 6;
	display: grid;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid rgba(247, 224, 180, .16);
	border-radius: 50%;
	background: rgba(10, 8, 5, .72);
	backdrop-filter: blur(6px);
	color: #cfc7b6;
	cursor: pointer;
	place-items: center;
	transition: color .22s, border-color .22s, transform .22s, background .22s;
}

.bz-favorite-control:hover,
.bz-favorite-control:focus-visible {
	border-color: rgba(247, 194, 59, .5);
	color: var(--gold-2);
	outline: none;
	transform: scale(1.1);
}

.bz-favorite-control svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.bz-favorite-control.on {
	border-color: rgba(255, 122, 92, .5);
	background: rgba(255, 122, 92, .12);
	color: #ff7a5c;
}

.bz-favorite-control.on svg {
	fill: currentColor;
}

.bz-favorite-control:disabled {
	cursor: wait;
	opacity: .55;
}

.bz-product__summary > .bz-favorite-control {
	position: relative;
	top: auto;
	right: auto;
	float: right;
	margin: 0 0 12px 12px;
}

.bz-favorites-page {
	--ink: #08070a;
	--panel: #12100c;
	--panel-2: #1b1710;
	--line: rgba(247, 224, 180, .09);
	--txt: #f5f1e8;
	--muted: #a49c8a;
	--body: #bcbbc1;
	min-height: 60vh;
	background: #08070a;
}

.bz-favorites-page > .wrap {
	max-width: 1240px;
}

.bz-favorites-page .crumbs {
	display: flex;
	align-items: center;
	gap: 9px;
	padding-top: 31px;
	color: var(--muted);
	font-size: 13px;
}

.bz-favorites-page .crumbs a:hover {
	color: var(--gold);
}

.bz-favorites-page .crumbs .sep {
	opacity: .5;
}

.bz-favorites-page .crumbs .cur {
	color: var(--gold-2);
}

.bz-favorites-page .sec-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 18px;
	margin-bottom: 30px;
}

.bz-favorites-page .sec-head h1 {
	margin: 0;
	font-family: 'Unbounded', sans-serif;
	font-size: clamp(30px, 4vw, 50px);
	font-weight: 800;
	letter-spacing: -1.5px;
	line-height: normal;
	text-transform: uppercase;
}

.bz-favorites-page .sec-head h1 span {
	background: var(--grad);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
}

.fav-clear {
	padding: 0;
	border: 0;
	border-bottom: 1px dashed rgba(164, 156, 138, .5);
	background: none;
	color: var(--muted);
	cursor: pointer;
	font: 13.5px 'Rubik', sans-serif;
}

.fav-clear:hover {
	border-color: rgba(255, 143, 107, .6);
	color: #ff8f6b;
}

.bz-favorites-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0;
	padding: 0 0 70px;
}

.bz-favorites-grid[hidden] {
	display: none;
}

.bz-favorites-grid .bz-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--panel);
	transition: opacity .32s cubic-bezier(.2, .85, .3, 1), transform .32s cubic-bezier(.2, .85, .3, 1), border-color .25s, box-shadow .25s;
}

.bz-favorites-grid .bz-product-card:hover {
	border-color: rgba(247, 194, 59, .4);
	box-shadow: 0 26px 54px rgba(0, 0, 0, .55);
	transform: translateY(-5px);
}

.bz-favorites-grid .bz-product-card.leaving {
	opacity: 0;
	pointer-events: none;
	transform: scale(.965) translateY(8px);
}

.bz-favorites-grid .g-link {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
}

.bz-favorites-grid .bz-product-card__media {
	display: grid;
	height: 210px;
	overflow: hidden;
	place-items: center;
	background: radial-gradient(110% 90% at 50% 12%, rgba(247, 194, 59, .07), transparent 60%);
}

.bz-favorites-grid .bz-product-card__media img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	padding: 16px;
	object-fit: contain;
	transition: transform .45s cubic-bezier(.2, .85, .3, 1);
}

.bz-favorites-grid .bz-product-card:hover .bz-product-card__media img {
	transform: scale(1.07);
}

.bz-favorites-grid .bz-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 16px 18px 18px;
}

.bz-favorites-grid .bz-product-card__status {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	padding: 6px 12px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.bz-favorites-grid .bz-product-card__status.preorder {
	background: var(--grad);
	color: #1a1206;
}

.bz-favorites-grid .bz-product-card__status.in-stock {
	border: 1px solid rgba(247, 194, 59, .4);
	background: rgba(20, 20, 31, .92);
	color: var(--gold-2);
}

.bz-favorites-grid .bz-product-card__status.unavailable {
	border: 1px solid rgba(188, 187, 193, .22);
	background: rgba(10, 8, 5, .84);
	color: var(--body);
}

.bz-favorites-grid .bz-product-card__status.sold {
	border: 1px solid rgba(255, 122, 92, .38);
	background: rgba(28, 13, 10, .9);
	color: #ffad98;
}

.bz-favorites-grid .woocommerce-loop-product__title {
	margin: 0;
	color: var(--txt);
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.45;
}

.bz-favorites-grid .g-note {
	color: var(--body);
	font-size: 13.5px;
	line-height: 1.55;
}

.bz-favorites-grid .g-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
}

.bz-favorites-grid .g-price {
	background: var(--grad);
	background-clip: text;
	color: transparent;
	font: 800 19px 'Unbounded', sans-serif;
	white-space: nowrap;
	-webkit-background-clip: text;
}

.bz-favorites-grid .g-foot > .bz-loop-cart-button {
	position: relative;
	z-index: 2;
	display: grid;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(247, 194, 59, .3);
	border-radius: 11px;
	background: rgba(247, 194, 59, .06);
	color: var(--gold-2);
	font-size: 0;
	line-height: 0;
	place-items: center;
	transition: background .25s, border-color .25s, transform .25s;
}

.bz-favorites-grid .g-foot > .bz-loop-cart-button:hover,
.bz-favorites-grid .g-foot > .bz-loop-cart-button:focus-visible,
.bz-favorites-grid .bz-product-card.is-added .g-foot > .bz-loop-cart-button {
	border-color: transparent;
	background: var(--grad);
	color: #1a1206;
	outline: none;
	transform: translateY(-2px);
}

.bz-favorites-grid .g-foot > .bz-loop-cart-button::before,
.bz-favorites-grid .g-foot > .bz-loop-cart-button::after {
	display: none;
	content: none;
}

.bz-favorites-grid .g-foot > .bz-loop-cart-button svg {
	display: block;
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.bz-favorites-grid .g-foot > .bz-loop-product-action--options {
	position: relative;
	z-index: 2;
	margin: 0;
	padding: 10px 14px;
	border: 1px solid rgba(247, 194, 59, .3);
	border-radius: 11px;
	background: rgba(247, 194, 59, .06);
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 700;
}

.fav-empty {
	display: none;
	margin-bottom: 70px;
	padding: 70px 24px;
	border: 1px dashed var(--line);
	border-radius: 22px;
	text-align: center;
}

.fav-empty.on {
	display: block;
}

.fav-empty .hicon {
	display: grid;
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	border: 1px solid rgba(247, 194, 59, .28);
	border-radius: 50%;
	background: rgba(247, 194, 59, .05);
	color: var(--gold);
	place-items: center;
}

.fav-empty .hicon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.fav-empty h3 {
	margin-bottom: 10px;
	font: 700 20px 'Unbounded', sans-serif;
}

.fav-empty p {
	max-width: 420px;
	margin: 0 auto 22px;
	color: var(--body);
	font-size: 15.5px;
	line-height: 1.55;
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border: 1px solid rgba(247, 194, 59, .28);
	border-radius: 12px;
	background: rgba(247, 194, 59, .05);
	color: var(--gold-2);
	cursor: pointer;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 600;
	transition: border-color .25s, background .25s, transform .25s;
}

.btn-ghost:hover {
	border-color: rgba(247, 194, 59, .6);
	background: rgba(247, 194, 59, .1);
	transform: translateY(-2px);
}

.bz-favorites-loading,
.bz-favorites-error {
	margin-bottom: 24px;
	padding: 14px 18px;
	border: 1px solid var(--line);
	border-radius: 14px;
	color: var(--body);
}

.bz-favorites-loading span {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 9px;
	border: 2px solid rgba(247, 194, 59, .25);
	border-top-color: var(--gold);
	border-radius: 50%;
	vertical-align: -3px;
	animation: bzFavSpin .7s linear infinite;
}

.bz-favorites-error {
	border-color: rgba(255, 122, 92, .35);
	color: #ff9b82;
}

.toast {
	position: fixed;
	bottom: 26px;
	left: 50%;
	z-index: 120;
	padding: 13px 20px;
	border: 1px solid rgba(247, 194, 59, .4);
	border-radius: 14px;
	background: linear-gradient(155deg, #231b11, #0e0b07 80%);
	box-shadow: 0 20px 44px rgba(0, 0, 0, .6);
	color: var(--txt);
	font-size: 14px;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 140%);
	transition: transform .4s cubic-bezier(.2, .85, .3, 1), opacity .3s;
}

.toast.on {
	opacity: 1;
	transform: translate(-50%, 0);
}

.toast.is-error {
	border-color: rgba(255, 122, 92, .55);
}

@keyframes bzFavSpin {
	to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
	.bz-favorites-page .crumbs { padding-top: 26px; }
	.bz-favorites-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
	.bz-favorites-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.bz-favorites-page .sec-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.bz-favorites-grid { grid-template-columns: 1fr; }
	.toast { right: 18px; left: 18px; transform: translateY(140%); }
	.toast.on { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	.bz-favorite-control,
	.bz-favorites-grid .bz-product-card,
	.toast { transition: none; }
	.bz-favorites-loading span { animation: none; }
}
