/*
 * YuyiBuy storefront reference layer.
 *
 * This stylesheet contains only local presentation. It deliberately has no
 * remote fonts, images, vendor selectors or vendor asset references.
 */

:root {
	--yb-v2-ink: #111111;
	--yb-v2-muted: #5d6470;
	--yb-v2-line: #e7e7eb;
	--yb-v2-accent: #e94462;
	--yb-v2-blue: #1556b8;
	--yb-v2-container: 1300px;
	--yb-v2-shadow: 0 12px 30px rgba(31, 29, 55, 0.1);
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--yb-v2-ink);
	background: #fff;
	font-family:
		"Noto Sans TC",
		"PingFang TC",
		"Microsoft JhengHei",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
}

body::before,
body::after {
	display: none;
}

.site-shell,
.site-main,
.yb-reference-home {
	background: #fff;
}

.yb-container,
.yb-reference-container {
	width: min(calc(100% - 40px), var(--yb-v2-container));
	margin-inline: auto;
}

a {
	text-underline-offset: 0.18em;
}

/* Header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	isolation: isolate;
	min-height: 58px;
	background:
		radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.95), transparent 60%),
		linear-gradient(120deg, #fbe9ff 0%, #e7f0ff 40%, #d4ddff 68%, #f7e4ff 100%);
	border: 0;
	box-shadow: none;
}

.site-header::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	height: 40px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
	content: "";
	pointer-events: none;
	transform: skewY(-3deg);
	transform-origin: bottom;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-height: 58px;
	padding-block: 4px;
}

.site-branding {
	min-width: 108px;
}

.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-branding .custom-logo {
	display: block;
	width: auto;
	max-width: 108px;
	max-height: 42px;
	object-fit: contain;
}

.site-branding .site-title {
	margin: 0;
	font-size: 1.08rem;
	font-weight: 800;
}

.site-branding .site-title a,
.site-branding__text {
	color: #111;
	text-decoration: none;
}

.site-branding__mark {
	display: none;
}

.site-nav {
	justify-self: center;
	min-width: 0;
}

.site-nav__list {
	flex-wrap: nowrap;
	gap: 8px;
}

.site-nav__list > li > a {
	padding: 6px 12px;
	color: #17151e;
	background: rgba(255, 255, 255, 0.52);
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 700;
	white-space: nowrap;
}

.site-nav__list > li > a:hover,
.site-nav__list > li.current-menu-item > a,
.site-nav__list > li.current-menu-ancestor > a {
	color: #111;
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(233, 68, 98, 0.28);
	transform: none;
}

.site-nav__list .sub-menu {
	min-width: 230px;
	padding: 10px;
	background: #fff;
	border: 1px solid #e9e4ee;
	border-radius: 14px;
	box-shadow: 0 18px 42px rgba(49, 39, 82, 0.16);
}

.site-nav__list .sub-menu .sub-menu {
	top: -11px;
	left: calc(100% + 9px);
}

.site-nav__list .sub-menu a {
	padding: 10px 12px;
	color: #22202a;
	border-radius: 9px;
	font-size: 0.82rem;
	font-weight: 650;
}

.site-nav__list .sub-menu a:hover {
	color: #b72d78;
	background: #fbf3ff;
}

.site-header__search-link,
.site-actions .icon-button,
.site-header__menu-toggle {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 3px;
	color: #1b1930;
	background: linear-gradient(135deg, #ff7bd5, #b77cff 48%, #6b6bf6);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 7px 16px rgba(115, 83, 196, 0.17);
}

.site-header__search-link::before,
.site-actions .icon-button::before,
.site-header__menu-toggle::before {
	position: absolute;
	inset: 3px;
	z-index: 0;
	background: #fff;
	border-radius: inherit;
	content: "";
}

.site-header__search-link svg,
.site-actions .icon-button svg,
.site-header__menu-toggle span,
.site-header__menu-toggle svg {
	position: relative;
	z-index: 1;
}

.site-header__search-link:hover,
.site-actions .icon-button:hover,
.site-header__menu-toggle:hover {
	color: #a22e7a;
	background: linear-gradient(135deg, #ff7bd5, #b77cff 48%, #6b6bf6);
	transform: translateY(-1px);
}

@media (min-width: 1090px) {
	.site-header__menu-toggle {
		display: none !important;
	}

	.site-nav--desktop {
		display: block !important;
	}

	.site-actions {
		grid-column: auto;
	}
}

.cart-link__count {
	z-index: 2;
	color: #fff;
	background: var(--yb-v2-accent);
	box-shadow: 0 4px 10px rgba(233, 68, 98, 0.25);
}

.mobile-menu__backdrop {
	background: rgba(23, 20, 37, 0.46);
}

.mobile-menu__panel {
	background:
		linear-gradient(150deg, #fff 0%, #f9f2ff 68%, #e7eeff 100%);
	border-right: 1px solid #e2daed;
	box-shadow: 18px 0 50px rgba(31, 27, 54, 0.2);
}

.mobile-menu__top {
	border-bottom-color: #e9e2ef;
}

.mobile-menu__list a {
	color: #17151e;
	border-bottom-color: #e9e2ef;
}

.mobile-menu__list a:hover {
	color: #a22e7a;
	background: rgba(255, 255, 255, 0.72);
}

/* Homepage: image-only carousel */

.yb-reference-home {
	overflow: hidden;
}

.yb-home-slider {
	position: relative;
	width: min(88vw, 1540px);
	padding: 26px 0 54px;
	margin-inline: auto;
	overflow: hidden;
	background: #fff;
}

.yb-home-slider .yb-reference-container {
	position: static;
	width: 100%;
}

.yb-home-slider__frame {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 3.888;
	margin-inline: auto;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 14px;
	box-shadow: none;
}

.yb-home-slider__slide {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 14%;
	display: block;
	width: 72%;
	height: 100%;
	opacity: 0.34;
	visibility: visible;
	filter: grayscale(1);
	transform: scale(0.82);
	transition:
		opacity 450ms ease,
		left 450ms ease,
		transform 450ms ease,
		filter 450ms ease;
}

.yb-home-slider__slide.is-active {
	z-index: 2;
	left: 14%;
	opacity: 1;
	filter: none;
	transform: scale(1);
}

.yb-home-slider__slide.is-prev {
	z-index: 1;
	left: calc(14% - 72% - 22px);
}

.yb-home-slider__slide.is-next {
	z-index: 1;
	left: calc(14% + 72% + 22px);
}

.yb-home-slider__slide:not(.is-active):not(.is-prev):not(.is-next) {
	visibility: hidden;
}

.yb-home-slider__slide picture,
.yb-home-slider__image {
	display: block;
	width: 100%;
	height: 100%;
}

.yb-home-slider__image {
	object-fit: cover;
}

.yb-home-slider__controls,
.yb-circle-pagination {
	position: absolute;
	bottom: 26px;
	left: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0;
	transform: translateX(-50%);
}

.yb-circle-page,
.yb-circle-arrow {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	padding: 0;
	overflow: visible;
	color: #fff;
	background: #000;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.yb-circle-page {
	position: relative;
	isolation: isolate;
	width: 56px;
	height: 56px;
	padding: 5px;
	background: #111;
}

.yb-circle-page img {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.yb-circle-page > span {
	position: relative;
	z-index: 2;
	font-size: 0.76rem;
	font-weight: 800;
}

.yb-circle-page::before {
	position: absolute;
	inset: -2px;
	z-index: 1;
	background: conic-gradient(
		from -90deg,
		#ff4fd8 0deg,
		#9b5cff var(--yb-slider-progress),
		rgba(155, 92, 255, 0.18) var(--yb-slider-progress),
		rgba(155, 92, 255, 0.18) 360deg
	);
	border-radius: 50%;
	content: "";
	opacity: 0;
}

.yb-circle-page.is-active::before {
	opacity: 1;
	animation: yb-slider-progress 4s linear forwards;
}

.yb-circle-arrow {
	width: 44px;
	height: 44px;
	font-size: 1.55rem;
	line-height: 1;
}

.yb-circle-arrow:hover {
	color: #fff;
	background: #000;
	transform: scale(0.94);
}

@property --yb-slider-progress {
	syntax: "<angle>";
	inherits: false;
	initial-value: 0deg;
}

@keyframes yb-slider-progress {
	to {
		--yb-slider-progress: 360deg;
	}
}

@media (min-width: 1281px) and (max-width: 1440px) {
	.yb-home-slider__frame {
		aspect-ratio: 4.003 / 1;
	}

	.yb-home-slider__slide,
	.yb-home-slider__slide.is-active {
		left: 13%;
		width: 74%;
	}

	.yb-home-slider__slide.is-prev {
		left: calc(13% - 74% - 20px);
	}

	.yb-home-slider__slide.is-next {
		left: calc(13% + 74% + 20px);
	}
}

@media (min-width: 1025px) and (max-width: 1280px) {
	.yb-home-slider__frame {
		aspect-ratio: 3.899 / 1;
	}

	.yb-home-slider__slide,
	.yb-home-slider__slide.is-active {
		left: 12%;
		width: 76%;
	}

	.yb-home-slider__slide.is-prev {
		left: calc(12% - 76% - 18px);
	}

	.yb-home-slider__slide.is-next {
		left: calc(12% + 76% + 18px);
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.yb-home-slider__frame {
		aspect-ratio: 3.614 / 1;
	}

	.yb-home-slider__slide,
	.yb-home-slider__slide.is-active {
		left: 9%;
		width: 82%;
	}

	.yb-home-slider__slide.is-prev {
		left: calc(9% - 82% - 16px);
	}

	.yb-home-slider__slide.is-next {
		left: calc(9% + 82% + 16px);
	}
}

/* Homepage: announcement */

.yb-authenticity-board {
	padding: 0;
	background: #fff;
}

.yb-authenticity-board .yb-reference-container {
	width: min(92vw, 1180px);
	padding: 14px 18px;
	margin: 18px auto 22px;
	background: linear-gradient(110deg, #fff5f7 0%, #ffe1e8 52%, #fff9fc 100%);
	border: 1px solid #f3b6c6;
	border-left: 4px solid #ff6f91;
	border-radius: 14px;
	box-shadow: none;
}

.yb-authenticity-board p {
	margin: 0;
	color: #18151b;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.55;
	text-align: center;
}

/* Homepage: service cards */

.yb-service-links {
	padding: 0;
	background: #fff;
}

.yb-service-links .yb-reference-container {
	width: 100%;
	max-width: 1300px;
}

.yb-service-links__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
	min-height: 220px;
	padding: 50px 30px;
}

.yb-service-card {
	display: block;
	min-height: 140px;
	color: inherit;
	text-decoration: none;
}

.yb-service-card__inner {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 120px;
	padding: 30px 20px;
	color: #0f172a;
	background-color: #f1fff9;
	background:
		radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.92), transparent 60%),
		radial-gradient(circle at 105% -10%, #9fe7d6, transparent 60%),
		radial-gradient(140% 180% at -10% 120%, #a7d8ff, transparent 70%),
		linear-gradient(120deg, #effff7 0%, #dff8f2 46%, #eafbff 100%);
	background-repeat: no-repeat;
	background-position: 0% 0%, 100% 0%, 0% 100%, 50% 0%;
	background-size: 120% 120%, 90% 90%, 130% 150%, 100% 100%;
	border: 1px solid #bfe7dd;
	border-radius: 16px;
	box-shadow: none;
	transition:
		transform 300ms ease,
		border-color 300ms ease;
}

.yb-service-card__inner::before {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	height: 34px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
	content: "";
	pointer-events: none;
	transform: skewY(-2.2deg);
	transform-origin: bottom;
}

.yb-service-card__inner::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.018), rgba(0, 0, 0, 0));
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.yb-service-card:hover .yb-service-card__inner {
	transform: translateY(-6px) scale(1.03);
	border-color: #34c3a0;
	box-shadow: none;
}

.yb-service-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 100px;
	width: 100px;
	height: 100px;
}

.yb-service-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: contain;
}

.yb-service-card__content {
	flex: 1;
	min-width: 0;
	text-align: left;
}

.yb-service-card strong {
	display: block;
	margin: 0 0 12px;
	color: #0b2f2a;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.yb-service-card small {
	display: block;
	margin: 0;
	color: #3f5f5a;
	font-size: 15px;
	line-height: 1.6;
}

@media (min-width: 769px) and (max-width: 1199px) {
	.yb-service-links__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
		min-height: 340px;
		padding: 30px 20px;
	}

	.yb-service-card__inner {
		flex-direction: column;
		align-items: center;
		padding: 25px 20px;
		text-align: center;
	}

	.yb-service-card__image {
		flex-basis: 90px;
		width: 90px;
		height: 90px;
		margin-bottom: 10px;
	}

	.yb-service-card__content {
		text-align: center;
	}

	.yb-service-card strong {
		font-size: 18px;
	}

	.yb-service-card small {
		font-size: 14px;
	}
}

/* Homepage: five fixed regional panels */

.yb-category-showcase {
	padding: 38px 0 58px;
	background: #fff;
	border-block: 1px solid #eff0f3;
}

.yb-category-showcase .yb-reference-container {
	min-height: 390px;
}

.yb-xmb {
	overflow: hidden;
}

.yb-xmb-stage {
	position: relative;
	width: 100%;
	min-height: 390px;
	overflow: hidden;
	padding-bottom: 48px;
	touch-action: pan-y;
}

.yb-xmb-cats-viewport {
	position: relative;
	width: 100%;
	height: 132px;
	overflow: visible;
}

.yb-xmb-row {
	position: absolute;
	top: 8px;
	left: 0;
	display: flex;
	align-items: flex-start;
	gap: 58px;
	height: 108px;
	padding: 0;
	will-change: transform;
	transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.yb-xmb-cat {
	display: flex;
	flex: 0 0 92px;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 92px;
	padding: 0;
	color: #7b8494;
	background: transparent;
	border: 0;
	font: inherit;
	font-size: 18px;
	font-weight: 750;
	opacity: 0.38;
	transform: scale(0.82);
	cursor: pointer;
	transition:
		color 300ms ease,
		opacity 300ms ease,
		transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.yb-xmb-cat img {
	display: block;
	width: 54px;
	height: 54px;
	object-fit: contain;
	filter: grayscale(0.65);
	transition: filter 300ms ease;
}

.yb-xmb-cat.is-active {
	color: var(--yb-v2-blue);
	opacity: 1;
	transform: scale(1.16);
}

.yb-xmb-cat.is-active img {
	filter: none;
}

.yb-xmb-cat:hover:not(.is-active) {
	opacity: 0.62;
	transform: scale(0.94);
}

.yb-xmb-cat.is-near {
	opacity: 0.62;
	transform: scale(0.94);
}

.yb-xmb-panels {
	position: relative;
	min-height: 282px;
}

.yb-xmb-panel {
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	min-height: 282px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 240ms ease;
}

.yb-xmb-panel.is-active {
	opacity: 1;
	pointer-events: auto;
}

.yb-xmb-list {
	display: grid;
	grid-template-columns: repeat(5, 150px);
	justify-content: center;
	column-gap: 18px;
	row-gap: 0;
}

.yb-xmb-item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	width: 150px;
	height: 150px;
	overflow: visible;
	background: transparent;
	border: 0;
	border-radius: 12px;
	transition:
		transform 180ms ease;
}

.yb-xmb-item:hover {
	transform: none;
}

.yb-xmb-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Homepage: four alternating promotional bands */

.yb-promo-bands {
	padding: 0 0 10px;
	background: #fff;
	overflow-x: hidden;
}

.yb-promo-bands .yb-reference-container {
	width: 100%;
	max-width: none;
}

.yb-promo-band {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px;
	position: relative;
	width: min(980px, calc(100% - 64px));
	margin: 0 auto 40px;
	padding: 40px 18px;
	overflow: hidden;
	color: #fff;
	border-radius: 18px;
	background:
		radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.06), transparent 58%),
		radial-gradient(circle at 100% 100%, rgba(124, 242, 255, 0.12), transparent 58%),
		linear-gradient(135deg, var(--yb-promo-bg-1), var(--yb-promo-bg-2));
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.yb-promo-band:last-child {
	margin-bottom: 14px;
}

.yb-promo-band:nth-child(odd) {
	transform: translateX(clamp(-180px, -8vw, -24px));
}

.yb-promo-band:nth-child(even) {
	transform: translateX(clamp(24px, 8vw, 180px));
}

.yb-promo-band--pink {
	--yb-promo-bg-1: #ef7070;
	--yb-promo-bg-2: #6775dd;
	--yb-promo-accent-1: #118037;
	--yb-promo-accent-2: #2498c2;
}

.yb-promo-band--blue {
	--yb-promo-bg-1: #4b5ba0;
	--yb-promo-bg-2: #81c7ea;
	--yb-promo-accent-1: #8f5916;
	--yb-promo-accent-2: #495b0d;
}

.yb-promo-band--cyan {
	--yb-promo-bg-1: #0f58bf;
	--yb-promo-bg-2: #11a2a5;
	--yb-promo-accent-1: #be4a67;
	--yb-promo-accent-2: #e48965;
}

.yb-promo-band--orange {
	--yb-promo-bg-1: #ef4c72;
	--yb-promo-bg-2: #eece3f;
	--yb-promo-accent-1: #17b9d2;
	--yb-promo-accent-2: #786c5e;
}

.yb-promo-band.is-reversed {
	flex-direction: row-reverse;
}

.yb-promo-band__media {
	display: block;
	flex: 1 1 45%;
	min-width: 260px;
	border-radius: 18px;
	text-decoration: none;
	transition: transform 0.14s ease, filter 0.14s ease;
}

.yb-promo-band__media-inner {
	display: block;
	padding: 2px;
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--yb-promo-accent-1), var(--yb-promo-accent-2));
}

.yb-promo-band__media-inner img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
	transition: transform 0.14s ease, filter 0.14s ease;
}

.yb-promo-band__content {
	flex: 1 1 40%;
	min-width: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #f5f5ff;
}

.yb-promo-band__content h2 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 28px;
	line-height: 1.35;
	text-shadow: 0 0 10px rgba(124, 242, 255, 0.22);
}

.yb-promo-band__content a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 26px;
	color: #fff;
	background: linear-gradient(135deg, var(--yb-promo-accent-1), var(--yb-promo-accent-2));
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	font-size: 14px;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	transition: transform 0.14s ease, filter 0.14s ease;
}

.yb-promo-band__media:hover,
.yb-promo-band__content a:hover {
	transform: translateY(-2px) scale(1.01);
	filter: brightness(1.06);
}

.yb-promo-band__media:hover img {
	transform: scale(1.015);
}

.yb-promo-band__media:active,
.yb-promo-band__content a:active {
	transform: translateY(1px) scale(0.99);
	filter: brightness(0.98);
	opacity: 0.96;
}

.yb-promo-band__media:focus-visible,
.yb-promo-band__content a:focus-visible {
	outline: 2px solid var(--yb-promo-accent-2);
	outline-offset: 3px;
}

/* Homepage: fixed recommended articles */

.yb-reference-news {
	padding: 40px 0;
}

.blog-grid-4x2__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.blog-grid-4x2__title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.blog-grid-4x2__more {
	font-size: 14px;
}

.blog-grid-4x2__title-glass {
	display: inline-block;
	padding: 10px 22px;
	background: rgba(255, 255, 255, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 999px;
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(255, 255, 255, 0.55) inset;
	backdrop-filter: blur(10px);
}

.blog-grid-4x2__track {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.blog-grid-4x2__page {
	display: contents;
}

.blog-grid-4x2__item {
	content-visibility: auto;
	contain-intrinsic-size: 320px 220px;
}

.blog-grid-4x2__card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
	border: 0;
	border-radius: 16px;
	box-shadow:
		0 10px 26px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(255, 255, 255, 0.55) inset;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
	contain: layout paint;
}

.blog-grid-4x2__card::before {
	position: absolute;
	inset: 0;
	padding: 2px;
	background: linear-gradient(135deg, rgba(255, 120, 210, 0.85), rgba(160, 140, 255, 0.75), rgba(120, 195, 255, 0.8));
	border-radius: inherit;
	content: "";
	pointer-events: none;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.blog-grid-4x2__card::after {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 80% at 10% 0%, rgba(255, 160, 220, 0.22), transparent 55%),
		radial-gradient(120% 80% at 90% 100%, rgba(120, 195, 255, 0.18), transparent 55%);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.blog-grid-4x2__card:hover {
	filter: saturate(1.05);
	transform: translateY(-2px);
	box-shadow:
		0 14px 34px rgba(0, 0, 0, 0.14),
		0 0 0 1px rgba(255, 255, 255, 0.62) inset;
}

.blog-grid-4x2__img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.04);
}

.blog-grid-4x2__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-grid-4x2__content {
	position: relative;
	z-index: 1;
	min-height: 88px;
	padding: 12px 12px 40px;
}

.blog-grid-4x2__h3 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.blog-grid-4x2__date {
	position: absolute;
	bottom: 12px;
	left: 12px;
	font-size: 12px;
	opacity: 0.75;
}

@media (min-width: 1200px) {
	.blog-grid-4x2.page-width {
		padding-right: 40px;
		padding-left: 40px;
	}
}

@media (max-width: 1199px) {
	.blog-grid-4x2__track {
		display: flex;
		gap: 16px;
		padding-bottom: 6px;
		overflow-x: auto;
		scrollbar-color: #9fd3ff #e9f2ff;
		scrollbar-width: thin;
		scroll-snap-type: x mandatory;
	}

	.blog-grid-4x2__track::-webkit-scrollbar {
		height: 6px;
	}

	.blog-grid-4x2__track::-webkit-scrollbar-track {
		background: #e9f2ff;
		border-radius: 999px;
	}

	.blog-grid-4x2__track::-webkit-scrollbar-thumb {
		background: linear-gradient(90deg, #9fd3ff, #b8b2ff, #f2b6e6);
		border-radius: 999px;
	}

	.blog-grid-4x2__track::-webkit-scrollbar-thumb:hover {
		background: linear-gradient(90deg, #86c6ff, #a79cff, #eaa6da);
	}
}

@media (min-width: 750px) and (max-width: 1199px) {
	.yb-reference-news {
		padding: 12px 0;
	}

	.blog-grid-4x2.page-width {
		padding-right: 28px;
		padding-left: 28px;
	}

	.blog-grid-4x2__title {
		font-size: 17px;
	}

	.blog-grid-4x2__title-glass {
		padding: 6px 12px;
	}

	.blog-grid-4x2__page {
		display: grid;
		flex: 0 0 100%;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		max-width: 100%;
		scroll-snap-align: start;
	}

	.blog-grid-4x2__img {
		aspect-ratio: 21 / 9;
	}

	.blog-grid-4x2__content {
		min-height: 56px;
		padding: 6px 8px 26px;
	}

	.blog-grid-4x2__h3 {
		font-size: 12px;
		line-height: 1.3;
	}

	.blog-grid-4x2__date {
		bottom: 6px;
		left: 8px;
		font-size: 10px;
	}
}

@media (max-width: 749px) {
	.blog-grid-4x2.page-width {
		padding-right: 16px;
		padding-left: 16px;
	}

	.blog-grid-4x2__page {
		display: contents;
	}

	.blog-grid-4x2__item {
		flex: 0 0 80%;
		scroll-snap-align: start;
	}

	.blog-grid-4x2__header .blog-grid-4x2__title {
		font-size: 15px;
	}

	.blog-grid-4x2__header .blog-grid-4x2__title-glass {
		padding: 5px 10px;
	}
}

/* WooCommerce catalogue */

.store-main {
	padding: 34px 0 72px;
	background: #fff;
}

.store-main__inner {
	width: min(calc(100% - 40px), var(--yb-v2-container));
}

.woocommerce-breadcrumb {
	margin-bottom: 20px !important;
	color: #72727a !important;
	font-size: 0.78rem !important;
}

.woocommerce-breadcrumb a {
	color: #55545c;
	text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
	color: var(--yb-v2-accent);
}

.woocommerce-products-header,
.yb-shop-header {
	padding: 0;
	margin-bottom: 22px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.woocommerce-products-header__title,
.woocommerce-products-header h1,
.yb-shop-header h1 {
	margin: 0;
	color: #111;
	font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.store-main--catalog .woocommerce-result-count,
.store-main--catalog .woocommerce-ordering {
	display: none;
}

.store-main--catalog .woocommerce ul.products,
.store-main--catalog .yb-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 14px;
}

.store-main--catalog .product-card,
.store-main--catalog .woocommerce ul.products li.product {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	grid-template-rows: 1fr;
	gap: 18px;
	min-height: 190px;
	padding: 16px;
	overflow: hidden;
	background: linear-gradient(135deg, #fff 0%, #f8fafc 58%, #f5f7fb 100%);
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 18px;
	box-shadow: none;
	transition: transform 130ms ease;
}

.store-main--catalog .product-card::before,
.store-main--catalog .woocommerce ul.products li.product::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(132deg, transparent 0 57%, rgba(226, 232, 240, 0.55) 57% 72%, rgba(241, 245, 249, 0.38) 72% 100%);
	content: "";
	pointer-events: none;
}

.store-main--catalog .product-card:hover,
.store-main--catalog .woocommerce ul.products li.product:hover {
	transform: none;
	border-color: rgba(148, 163, 184, 0.28);
	box-shadow: none;
}

.store-main--catalog .product-card:active,
.store-main--catalog .woocommerce ul.products li.product:active {
	transform: scale(0.985);
}

.store-main--catalog .product-card__media {
	position: relative;
	z-index: 1;
	grid-row: 1;
	width: 150px;
	height: 150px;
	aspect-ratio: 1;
	margin: 0 !important;
	overflow: visible;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.store-main--catalog .product-card__media img,
.store-main--catalog .woocommerce ul.products li.product .product-card__media a img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	object-fit: contain;
	border: 0;
	border-radius: 0;
	transform: none;
}

.store-main--catalog .product-card.has-no-image,
.store-main--catalog .woocommerce ul.products li.product.has-no-image {
	grid-template-columns: 1fr;
}

.store-main--catalog .product-card__category,
.store-main--catalog .product-card__rating,
.store-main--catalog .product-card__footer,
.store-main--catalog .product-card__button,
.store-main--catalog .woocommerce ul.products li.product .button,
.store-main--catalog .woocommerce ul.products li.product .added_to_cart,
.store-main--catalog .woocommerce ul.products li.product .onsale,
.store-main--catalog .product_meta {
	display: none !important;
}

.store-main--catalog .product-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 2px 0;
}

.store-main--catalog .product-card__title {
	display: block;
	min-height: 0;
	margin: 0 0 9px !important;
	overflow: visible;
	color: #111;
	font-size: 16px !important;
	font-weight: 800;
	line-height: 1.45;
	-webkit-line-clamp: unset;
}

.store-main--catalog .product-card:hover .product-card__media img,
.store-main--catalog .woocommerce ul.products li.product:hover .product-card__media img {
	transform: none;
}

.store-main--catalog .product-card__price {
	margin: auto 0 4px !important;
	color: #111 !important;
	font-size: 14px !important;
	font-weight: 800 !important;
}

.store-main--catalog .product-card__badge {
	align-self: flex-start;
	min-height: 27px;
	padding: 4px 13px;
	margin-bottom: 8px;
	color: #854d3d;
	background: linear-gradient(135deg, #fff1df, #ffe1c6);
	border: 0;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 800;
	line-height: 19px;
}

.store-main--catalog .product-card__badge--sale {
	color: #155e3c;
	background: linear-gradient(135deg, #e9f9ee, #d4f3df);
}

@media (min-width: 1440px) {
	.store-main--catalog .woocommerce ul.products,
	.store-main--catalog .yb-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.store-main--catalog .product-card,
	.store-main--catalog .woocommerce ul.products li.product {
		grid-template-columns: 150px minmax(0, 1fr);
		gap: 18px;
		min-height: 190px;
		padding: 16px;
	}

	.store-main--catalog .product-card__media {
		width: 150px;
		height: 150px;
	}
}

@media (min-width: 750px) and (max-width: 1024px) {
	.store-main--catalog .product-card,
	.store-main--catalog .woocommerce ul.products li.product {
		grid-template-columns: 130px minmax(0, 1fr);
		gap: 14px;
		min-height: 170px;
		padding: 14px;
	}

	.store-main--catalog .product-card__media {
		width: 130px;
		height: 130px;
	}
}

@media (max-width: 749px) {
	.store-main--catalog .woocommerce ul.products,
	.store-main--catalog .yb-product-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.store-main--catalog .product-card,
	.store-main--catalog .woocommerce ul.products li.product {
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 12px;
		min-height: 160px;
		padding: 12px;
		border-radius: 16px;
	}

	.store-main--catalog .product-card__media {
		width: 110px;
		height: 110px;
	}

	.store-main--catalog .product-card__title {
		font-size: 14px !important;
		line-height: 1.35;
	}

	.store-main--catalog .product-card__price {
		font-size: 13px !important;
	}

	.store-main--catalog .product-card__badge {
		min-height: 25px;
		padding-inline: 10px;
		font-size: 12px;
	}
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 34px;
}

.woocommerce nav.woocommerce-pagination ul {
	overflow: hidden;
	border: 1px solid #dedee2 !important;
	border-radius: 9px;
}

.woocommerce nav.woocommerce-pagination ul li {
	border-right-color: #dedee2 !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 40px;
	padding: 11px 12px !important;
	color: #111;
	background: #fff;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	color: #fff;
	background: var(--yb-v2-accent);
}

/* WooCommerce single product */

.store-main--product {
	padding: 24px 0 74px;
	background: #fff;
}

.yb-store-announcement {
	width: min(1180px, 92vw);
	padding: 14px 18px;
	margin: 0 auto 18px;
	color: #171717;
	background: linear-gradient(110deg, #fff5f7 0%, #ffe1e8 55%, #fff9fc 100%);
	border: 1px solid #f3b6c6;
	border-left: 4px solid #ff6f91;
	border-radius: 14px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.65;
	text-align: center;
}

.yb-store-announcement p {
	margin: 0;
}

.store-main--product .woocommerce-breadcrumb {
	width: fit-content;
	max-width: 100%;
	padding: 12px 18px;
	margin: 0 auto 26px;
	color: #262626;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	font-size: 14px;
	font-weight: 750;
}

.yb-product-detail {
	width: 100%;
}

.yb-product-hero {
	--bg1: rgba(255, 245, 250, 0.95);
	--bg2: rgba(245, 248, 255, 0.95);
	--bg3: rgba(235, 240, 255, 0.95);
	position: relative;
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr) auto;
	align-items: center;
	gap: 30px;
	min-height: 290px;
	padding: 30px 28px;
	margin: 30px 0 34px;
	overflow: visible;
	background: linear-gradient(
		var(--tang, 135deg),
		var(--tc1, var(--bg1)) 0%,
		var(--tc2, var(--bg2)) var(--tmid, 46%),
		var(--tc3, var(--bg3)) 100%
	);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 18px;
}

.yb-product-hero.has-no-cover {
	grid-template-columns: minmax(0, 1fr) auto;
}

.yb-product-hero__cover {
	width: 240px;
	height: 240px;
	align-self: end;
	overflow: hidden;
	border-radius: 16px;
}

.yb-product-hero__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.yb-product-hero__content {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.yb-product-hero .product_title {
	max-width: 900px;
	margin: 0 0 20px;
	color: #fff;
	font-size: clamp(22px, 2.6vw, 36px);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.12;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.yb-product-hero__rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.yb-product-hero__rating .star-rating {
	margin: 0;
	color: #ffb21a;
	font-size: 22px;
}

.yb-product-hero__rating > span {
	padding: 5px 11px;
	color: #222;
	background: rgba(255, 255, 255, 0.82);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
}

.yb-product-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.yb-product-hero__trust span {
	padding: 8px 13px;
	color: #262626;
	background: rgba(255, 255, 255, 0.65);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
}

.yb-product-hero__actions {
	position: relative;
	z-index: 2;
	align-self: start;
}

.yb-product-share {
	min-height: 32px;
	padding: 6px 16px;
	color: #111;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 850;
	cursor: pointer;
}

.yb-product-purchase {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
	grid-auto-flow: dense;
	gap: 16px 30px;
	align-items: start;
	margin: 55px 0 34px;
}

.yb-product-options-label {
	grid-column: 1;
	padding: 0 4px;
	font-size: 18px;
	font-weight: 900;
}

.yb-product-price-card {
	grid-column: 2;
	display: grid;
	gap: 9px;
	padding: clamp(14px, 1.2vw, 22px);
	background:
		radial-gradient(circle at 12% 8%, rgba(255, 210, 232, 0.7), transparent 50%),
		linear-gradient(135deg, #fff 0%, #f4f7ff 100%);
	border: 1.5px solid rgba(0, 0, 0, 0.09);
	border-radius: 18px;
}

.yb-product-price-card > span {
	color: #111;
	font-size: 14px;
	font-weight: 850;
}

.yb-product-price-card .price {
	width: fit-content;
	padding: 10px 14px;
	margin: 0 !important;
	color: #111 !important;
	background: linear-gradient(135deg, #fff 0%, #f3efff 100%);
	border-radius: 12px;
	font-size: clamp(21px, 2.2vw, 30px) !important;
	font-weight: 900 !important;
}

.yb-product-price-card .price del {
	color: #777;
	font-size: 0.7em;
	opacity: 1;
}

.yb-product-price-card .price ins {
	text-decoration: none;
}

.yb-product-help-actions {
	grid-column: 2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.yb-product-help-actions a {
	display: grid;
	place-items: center;
	min-height: 56px;
	padding: 9px 14px;
	color: #111;
	background: #ffc0cb;
	border: 2px solid #111;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
}

.yb-product-help-actions a + a {
	color: #fff;
	background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.yb-product-purchase form.variations_form.cart {
	display: contents;
}

.yb-product-purchase .variations {
	grid-column: 1;
	grid-row: 2 / span 4;
	width: 100%;
	padding: 24px;
	margin: 0 !important;
	background:
		radial-gradient(circle at 10% 8%, rgba(255, 219, 236, 0.72), transparent 48%),
		linear-gradient(135deg, #fff 0%, #f3f7ff 100%);
	border: 1.5px solid rgba(0, 0, 0, 0.09);
	border-radius: 16px;
}

.yb-product-purchase .variations tbody,
.yb-product-purchase .variations tr,
.yb-product-purchase .variations th,
.yb-product-purchase .variations td {
	display: block;
	width: 100%;
}

.yb-product-purchase .variations tr + tr {
	margin-top: 18px;
}

.yb-product-purchase .variations th,
.yb-product-purchase .variations td {
	padding: 0 !important;
	text-align: left;
}

.yb-product-purchase .variations label {
	display: block;
	margin-bottom: 9px;
	color: #111;
	font-size: 15px;
	font-weight: 900;
}

.yb-product-purchase .variations select {
	width: 100%;
	min-height: 52px;
	padding: 10px 42px 10px 14px;
	color: #111;
	background: #fff;
	border: 1.5px solid rgba(0, 0, 0, 0.14);
	border-radius: 14px;
	font-size: 16px;
	font-weight: 800;
}

.yb-product-purchase .variations select.yb-native-variation-select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.yb-variant-buttons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.yb-variant-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 16px;
	color: #151515;
	background: #fff;
	border: 1.5px solid rgba(0, 0, 0, 0.12);
	border-radius: 16px;
	font-size: 17px;
	font-weight: 900;
	text-align: center;
	cursor: pointer;
}

.yb-variant-button.has-image {
	justify-content: flex-start;
	text-align: left;
}

.yb-variant-button__image {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 7px;
}

.yb-variant-button__label {
	min-width: 0;
}

.yb-variant-button.is-active {
	background: linear-gradient(135deg, #fff, #f1ebff);
	border-color: rgba(184, 156, 255, 0.72);
}

.yb-variant-button:disabled {
	cursor: not-allowed;
	opacity: 0.38;
}

.yb-product-purchase .reset_variations {
	display: inline-block;
	margin-top: 10px;
	color: #333;
	font-size: 13px;
	font-weight: 800;
}

.yb-product-purchase .single_variation_wrap {
	grid-column: 2;
	display: grid;
	gap: 12px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 18px;
}

.yb-product-purchase .woocommerce-variation {
	padding: 0;
	margin: 0;
	background: transparent;
	border: 0;
}

.yb-product-purchase .woocommerce-variation-price .price {
	margin: 0 !important;
	color: #111 !important;
	font-size: 20px !important;
	font-weight: 900 !important;
}

.yb-product-purchase form.cart:not(.variations_form) {
	grid-column: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 12px 14px;
	margin: 0;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 18px;
}

.yb-product-purchase .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.yb-product-purchase .quantity {
	position: relative;
	display: grid;
	grid-template-columns: 40px 86px 40px;
	align-items: center;
	gap: 10px;
	float: none !important;
	width: 186px;
	margin: 0 !important;
}

.yb-product-purchase .quantity::before {
	content: "數量";
	position: absolute;
	bottom: calc(100% + 8px);
	left: 0;
	color: #111;
	font-size: 14px;
	font-weight: 900;
}

.yb-product-purchase .quantity .qty {
	grid-column: 2;
	width: 86px;
	height: 40px;
	padding: 4px 8px;
	color: #111;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 850;
	text-align: center;
}

.yb-qty-button {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	color: #111;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 50%;
	font-size: 22px;
	font-weight: 800;
	cursor: pointer;
}

.yb-qty-button--minus {
	grid-column: 1;
	grid-row: 1;
}

.yb-qty-button--plus {
	grid-column: 3;
	grid-row: 1;
}

.yb-product-purchase .single_add_to_cart_button {
	flex: 1 1 220px;
	min-height: 56px;
	padding: 10px 20px !important;
	color: #fff !important;
	background: linear-gradient(135deg, #ff7a1a, #ff4f7b) !important;
	border: 2px solid #111 !important;
	border-radius: 8px !important;
	font-size: 16px !important;
	font-weight: 900 !important;
}

.yb-product-purchase .single_add_to_cart_button.disabled,
.yb-product-purchase .single_add_to_cart_button:disabled {
	color: #fff !important;
	background: #111 !important;
	opacity: 1 !important;
}

.yb-product-description {
	width: min(1180px, 100%);
	margin: 42px auto 0;
	color: #222;
	font-size: 16px;
	line-height: 1.8;
}

.yb-product-description img {
	max-width: 100%;
	height: auto;
}

.yb-product-reviews {
	width: min(1060px, 100%);
	padding: 22px 36px 24px;
	margin: 42px auto 0;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 18px;
}

.yb-product-reviews .comments-area {
	margin: 0;
}

.store-main--product .related,
.store-main--product .upsells {
	position: relative;
	isolation: isolate;
	width: min(1180px, calc(100vw - 48px));
	max-width: min(1180px, calc(100vw - 48px));
	padding: 24px 26px 26px;
	margin: 46px auto 80px;
	overflow: hidden;
	background:
		radial-gradient(420px 140px at 90% 0%, rgba(255, 255, 255, 0.72), transparent 65%),
		radial-gradient(300px 120px at 0% 100%, rgba(255, 255, 255, 0.52), transparent 65%),
		linear-gradient(135deg, #fff5f7 0%, #ffe1e6 48%, #fffafd 100%);
	border: 0;
	border-radius: 22px;
}

.store-main--product .related::before,
.store-main--product .upsells::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			125deg,
			transparent 0%,
			transparent 10%,
			rgba(255, 255, 255, 0.42) 10%,
			rgba(255, 255, 255, 0.42) 19%,
			transparent 19%,
			transparent 42%,
			rgba(255, 138, 166, 0.1) 42%,
			rgba(255, 138, 166, 0.1) 52%,
			transparent 52%,
			transparent 70%,
			rgba(122, 168, 255, 0.11) 70%,
			rgba(122, 168, 255, 0.11) 82%,
			transparent 82%,
			transparent 100%
		);
	content: "";
	pointer-events: none;
}

.store-main--product .related::after,
.store-main--product .upsells::after {
	position: absolute;
	inset: 1px;
	z-index: -1;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 42%);
	border-radius: 21px;
	content: "";
	pointer-events: none;
}

.store-main--product .related > h2,
.store-main--product .upsells > h2 {
	padding: 0;
	margin: 0 0 18px;
	color: #111827;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1.25;
}

.store-main--product .related ul.products,
.store-main--product .upsells ul.products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	max-width: 100%;
	padding: 4px 12px 14px 2px;
	margin: 0 !important;
	list-style: none;
}

.store-main--product .related ul.products::before,
.store-main--product .related ul.products::after,
.store-main--product .upsells ul.products::before,
.store-main--product .upsells ul.products::after {
	display: none;
}

.store-main--product .related li.product,
.store-main--product .upsells li.product {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 14px;
	float: none !important;
	width: 100% !important;
	min-height: 170px;
	padding: 14px;
	margin: 0 !important;
	overflow: hidden;
	background: linear-gradient(135deg, #fff 0%, #f8fafc 58%, #f5f7fb 100%);
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 18px;
	box-shadow: none;
}

.store-main--product .related li.product::before,
.store-main--product .upsells li.product::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			125deg,
			transparent 0%,
			transparent 14%,
			rgba(148, 163, 184, 0.13) 14%,
			rgba(148, 163, 184, 0.13) 26%,
			transparent 26%,
			transparent 62%,
			rgba(203, 213, 225, 0.18) 62%,
			rgba(203, 213, 225, 0.18) 76%,
			transparent 76%,
			transparent 100%
		);
	content: "";
	pointer-events: none;
}

.store-main--product .related li.product:hover,
.store-main--product .upsells li.product:hover {
	transform: none;
	border-color: rgba(148, 163, 184, 0.28);
	box-shadow: none;
}

.store-main--product .related li.product:active,
.store-main--product .upsells li.product:active {
	transform: scale(0.985);
}

.store-main--product .related .product-card__media,
.store-main--product .upsells .product-card__media {
	width: 150px;
	height: 150px;
	aspect-ratio: 1;
	margin: 0 !important;
	overflow: visible;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.store-main--product .related .product-card__media img,
.store-main--product .upsells .product-card__media img {
	display: block;
	width: 150px;
	height: 150px;
	margin: 0 !important;
	object-fit: contain;
	background: transparent;
	border: 0;
	border-radius: 0;
	transform: none;
}

.store-main--product .related li.product.has-no-image,
.store-main--product .upsells li.product.has-no-image {
	grid-template-columns: 1fr;
}

.store-main--product .related .product-card__body,
.store-main--product .upsells .product-card__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 0;
}

.store-main--product .related .product-card__title,
.store-main--product .upsells .product-card__title {
	display: block;
	min-height: 0;
	padding: 0 !important;
	margin: 0 0 8px !important;
	color: #111827;
	font-size: 16px !important;
	font-weight: 850;
	line-height: 1.42;
	white-space: normal;
	word-break: break-word;
}

.store-main--product .related .product-card__badge,
.store-main--product .upsells .product-card__badge {
	align-self: flex-start;
	height: 27px;
	padding: 0 13px;
	margin: 0 0 8px;
	color: #7a1f12;
	background: linear-gradient(180deg, #fff7f3 0%, #ffece4 100%);
	border: 1px solid rgba(224, 70, 40, 0.28);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 850;
	letter-spacing: 0.03em;
	line-height: 27px;
	white-space: nowrap;
}

.store-main--product .related .product-card__badge--sale,
.store-main--product .upsells .product-card__badge--sale {
	color: #065f46;
	background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
	border-color: rgba(16, 185, 129, 0.35);
}

.store-main--product .related .product-card__price,
.store-main--product .upsells .product-card__price {
	display: block;
	width: 100%;
	margin: auto 0 0 !important;
	color: #111827 !important;
	font-size: 14px !important;
	font-weight: 850 !important;
	line-height: 1.4;
}

.store-main--product .related .button,
.store-main--product .related .added_to_cart,
.store-main--product .related .onsale,
.store-main--product .upsells .button,
.store-main--product .upsells .added_to_cart,
.store-main--product .upsells .onsale {
	display: none !important;
}

@media (max-width: 1024px) {
	.store-main--product .related li.product,
	.store-main--product .upsells li.product {
		grid-template-columns: 120px minmax(0, 1fr);
		gap: 12px;
		min-height: 150px;
		padding: 12px;
	}

	.store-main--product .related .product-card__media,
	.store-main--product .related .product-card__media img,
	.store-main--product .upsells .product-card__media,
	.store-main--product .upsells .product-card__media img {
		width: 120px;
		height: 120px;
	}

	.store-main--product .related .product-card__title,
	.store-main--product .upsells .product-card__title {
		font-size: 14px !important;
		line-height: 1.35;
	}

	.store-main--product .related .product-card__badge,
	.store-main--product .upsells .product-card__badge {
		height: 25px;
		padding: 0 11px;
		font-size: 13px;
		line-height: 25px;
	}

	.store-main--product .related .product-card__price,
	.store-main--product .upsells .product-card__price {
		font-size: 13px !important;
		line-height: 1.35;
	}
}

@media (max-width: 749px) {
	.store-main--product .related,
	.store-main--product .upsells {
		width: calc(100vw - 32px);
		max-width: calc(100vw - 32px);
		padding: 14px 10px;
		margin: 32px auto 56px;
		border-radius: 18px;
	}

	.store-main--product .related::after,
	.store-main--product .upsells::after {
		border-radius: 17px;
	}

	.store-main--product .related > h2,
	.store-main--product .upsells > h2 {
		margin-bottom: 14px;
		font-size: 20px;
		text-align: center;
	}

	.store-main--product .related ul.products,
	.store-main--product .upsells ul.products {
		display: flex;
		grid-template-columns: none;
		gap: 16px;
		padding: 4px 10px 28px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.store-main--product .related li.product,
	.store-main--product .upsells li.product {
		flex: 0 0 calc(100% - 18px);
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 8px;
		width: calc(100% - 18px) !important;
		min-height: 136px;
		padding: 10px;
		border-radius: 15px;
		scroll-snap-align: start;
	}

	.store-main--product .related .product-card__media,
	.store-main--product .related .product-card__media img,
	.store-main--product .upsells .product-card__media,
	.store-main--product .upsells .product-card__media img {
		width: 104px;
		height: 104px;
	}
}

@media (min-width: 1200px) {
	.yb-product-hero__cover {
		transform: translateY(54px);
	}
}

@media (max-width: 980px) {
	.yb-product-hero {
		grid-template-columns: 220px minmax(0, 1fr) auto;
	}

	.yb-product-hero__cover {
		width: 220px;
		height: 220px;
	}

	.yb-product-purchase {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 1fr);
		gap: 16px 22px;
	}
}

@media (max-width: 749px) {
	.store-main--product {
		padding-top: 14px;
	}

	.yb-store-announcement {
		width: 100%;
		font-size: 15px;
	}

	.yb-product-hero {
		grid-template-columns: 118px minmax(0, 1fr);
		gap: 16px;
		min-height: 190px;
		padding: 20px 16px;
		margin: 20px 0 28px;
		border-radius: 16px;
	}

	.yb-product-hero.has-no-cover {
		grid-template-columns: minmax(0, 1fr);
	}

	.yb-product-hero__cover {
		width: 118px;
		height: 118px;
		align-self: center;
		border-radius: 13px;
	}

	.yb-product-hero .product_title {
		margin-bottom: 13px;
		font-size: clamp(20px, 6vw, 28px);
	}

	.yb-product-hero__trust {
		display: none;
	}

	.yb-product-hero__actions {
		position: absolute;
		top: 12px;
		right: 12px;
	}

	.yb-product-share {
		min-height: 38px;
	}

	.yb-product-purchase {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
		margin-top: 0;
	}

	.yb-product-options-label,
	.yb-product-price-card,
	.yb-product-help-actions,
	.yb-product-purchase .variations,
	.yb-product-purchase .single_variation_wrap,
	.yb-product-purchase form.cart:not(.variations_form) {
		grid-column: 1;
		grid-row: auto;
	}

	.yb-product-purchase .variations {
		padding: 16px;
	}

	.yb-variant-button {
		min-height: 58px;
		padding: 12px 10px;
		font-size: 15px;
	}

	.yb-variant-button__image {
		flex-basis: 32px;
		width: 32px;
		height: 32px;
	}

	.yb-product-help-actions a {
		min-height: 56px;
		font-size: 14px;
	}

	.yb-product-reviews {
		padding: 20px 18px;
	}

	.store-main--product .related,
	.store-main--product .upsells {
		padding: 18px 14px;
	}
}

/* Shared WooCommerce UI */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	color: #26323d;
	background: #fff;
	border: 1px solid #e2e3e6;
	border-top-width: 1px;
	border-left: 5px solid #34c3a0;
	border-radius: 10px;
	box-shadow: 0 7px 22px rgba(15, 23, 42, 0.07);
}

.woocommerce-error {
	border-left-color: var(--yb-v2-accent);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	color: #fff;
	background: #111;
	border-radius: 9px;
	font-weight: 750;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	color: #fff;
	background: var(--yb-v2-accent);
}

.woocommerce table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce .cart_totals,
.woocommerce .woocommerce-checkout-review-order {
	background: #fff;
	border-color: #e1e2e5;
	border-radius: 12px;
}

/* Exact original footer structure */

.site-footer.footer {
	position: relative;
	padding: 30px 0 0;
	overflow: hidden;
	color: #333;
	background:
		radial-gradient(480px 240px at 16% 8%, rgba(255, 190, 220, 0.28) 0%, rgba(255, 190, 220, 0) 70%),
		radial-gradient(480px 240px at 84% 10%, rgba(185, 210, 255, 0.3) 0%, rgba(185, 210, 255, 0) 70%),
		linear-gradient(180deg, rgba(255, 240, 248, 0.86) 0%, rgba(235, 240, 255, 0.6) 48%, rgba(245, 248, 255, 0) 100%);
	border-top: 0;
	font-size: 14px;
	text-align: left;
}

.footer__shell {
	width: min(96%, 1650px);
	margin-inline: auto;
	position: relative;
	z-index: 2;
}

.footer__main {
	display: grid;
	grid-template-columns: minmax(760px, 1fr) 324px;
	gap: 54px;
	align-items: start;
	padding: 0 0 20px;
}

.footer__left {
	min-width: 0;
}

.footer__alert-bar {
	width: min(92%, 920px);
	padding: 12px 22px;
	margin: 0 0 18px;
	color: #0b1320;
	background: linear-gradient(135deg, rgba(255, 205, 228, 0.92) 0%, rgba(210, 225, 255, 0.92) 55%, rgba(235, 245, 255, 0.92) 100%);
	border: 1.5px solid rgba(0, 0, 0, 0.7);
	border-radius: 999px;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.8px;
	line-height: 1.35;
	text-align: center;
}

.footer__mini-payments {
	position: relative;
	width: min(100%, 1320px);
	margin: 0 0 24px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.footer__mini-payments img {
	display: block;
	width: 1320px;
	max-width: none;
	height: auto;
}

.footer__columns {
	display: grid;
	grid-template-columns: repeat(4, max-content);
	gap: 70px;
	justify-content: start;
}

.footer__col {
	min-width: 0;
}

.footer-block__heading {
	margin: 0 0 10px;
	color: #0b1320;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
}

.footer-block__details-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-block__details-content li {
	margin: 0 0 8px;
	line-height: 1.4;
}

.footer-block__details-content a {
	display: inline-block;
	position: relative;
	padding: 3px 8px;
	color: #1f2937;
	border-radius: 10px;
	text-decoration: none;
}

.footer-block__details-content a:hover {
	color: #0b1320;
	background: rgba(255, 255, 255, 0.55);
}

.footer__right {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	width: 324px;
	transform: translateX(-40px);
}

.footer__social-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}

.footer__social-title {
	color: #000;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.footer__list-social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.footer__list-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	place-items: center;
	width: 24px;
	height: 24px;
	overflow: hidden;
	border-radius: 8px;
}

.footer__list-social img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer__app-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 324px;
	padding: 10px 20px;
	color: #fff;
	background: linear-gradient(135deg, #0a38ff 0%, #007bff 45%, #00c6ff 100%);
	border: 2px solid #0aaeef;
	border-radius: 12px;
	box-shadow: none;
	font-size: 13px;
	text-decoration: none;
}

.footer__app-btn img {
	width: auto;
	max-width: 70px;
	height: auto;
	object-fit: contain;
}

.footer__currency-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: 100%;
}

.footer__currency-text {
	color: #000;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
}

.footer__currency-picker {
	display: inline-flex;
	flex: 0 0 auto;
}

.footer__currency-picker select {
	width: 88px;
	height: 38px;
	padding: 0 30px 0 17px;
	color: #0b1320;
	background-color: rgba(255, 255, 255, 0.92);
	border: 1.5px solid #111827;
	border-radius: 999px;
	box-shadow: 0 7px 20px rgba(15, 23, 42, 0.08);
	font: inherit;
	font-weight: 700;
	cursor: default;
}

.copyright__content {
	position: relative;
	z-index: 2;
	width: min(96%, 1650px);
	padding: 0;
	margin: 6px auto 12px;
	color: #111827;
	background: transparent;
	border-top: 0;
	font-weight: 700;
	text-align: left;
}

/* Responsive */

@media (max-width: 1120px) {
	.site-header__menu-toggle {
		display: inline-grid;
	}

	.site-nav--desktop {
		display: none;
	}

	.yb-service-links__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.store-main--product .woocommerce div.product {
		grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
		gap: 30px;
	}

	.footer__main {
		grid-template-columns: minmax(0, 1fr) 324px;
	}

	.footer__columns {
		grid-template-columns: repeat(4, minmax(120px, 1fr));
		gap: 28px;
	}
}

@media (max-width: 1024px) {
	.site-footer.footer {
		padding-top: 12px;
		text-align: center;
	}

	.footer__shell,
	.copyright__content {
		width: min(92%, 1110px);
	}

	.footer__main {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.footer__alert-bar {
		margin: 0 auto 18px;
	}

	.footer__mini-payments {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 18px;
	}

	.footer__mini-payments img {
		width: 1100px;
		min-width: 1100px;
		max-width: none;
		height: auto;
	}

	.footer__columns {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.footer__right {
		display: grid;
		grid-template-columns: minmax(0, 0.88fr) minmax(205px, 1.12fr);
		gap: 14px;
		align-items: center;
		width: 100%;
		margin-inline: auto;
		text-align: center;
		transform: none;
	}

	.footer__social-head {
		flex-direction: column;
		justify-content: center;
		gap: 8px;
	}

	.footer__app-btn {
		width: 100%;
		max-width: 340px;
		min-height: 86px;
		padding: 10px 14px;
		justify-self: end;
		border-radius: 16px;
		font-size: 14px;
	}

	.footer__app-btn img {
		flex: 0 0 52px;
		width: 52px;
		height: 52px;
	}

	.footer__currency-row {
		grid-column: 1 / -1;
		max-width: none;
		margin-top: 4px;
	}

	.footer__currency-text {
		font-size: 14px;
	}

	.footer-block__heading {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 0;
		margin: 0;
		border-bottom: 1px solid #fcc;
		font-size: 16px;
		cursor: pointer;
	}

	.footer-block__heading::after {
		color: #0b1320;
		font-size: 18px;
		content: "+";
	}

	.footer__col .accordion-content {
		display: none;
	}

	.footer__col.is-open .accordion-content {
		display: block;
	}

	.footer__col.is-open .footer-block__heading::after {
		content: "−";
	}

	.footer-block__details-content ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 20px;
		padding: 12px 0 14px;
	}

	.footer-block__details-content li {
		margin-bottom: 0;
	}

	.copyright__content {
		font-size: 13px;
		line-height: 1.5;
		text-align: center;
	}
}

@media (max-width: 900px) {
	.yb-reference-container,
	.yb-container,
	.store-main__inner {
		width: min(calc(100% - 28px), var(--yb-v2-container));
	}

	.yb-reference-news .post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.store-main--product .woocommerce div.product {
		grid-template-columns: 1fr;
	}

	.store-main--product .woocommerce-tabs,
	.store-main--product .related,
	.store-main--product .upsells {
		grid-column: auto;
	}

	.yb-promo-band:nth-child(odd),
	.yb-promo-band:nth-child(even) {
		transform: none;
	}

}

@media (max-width: 768px) {
	.site-header,
	.site-header__inner {
		min-height: 68px;
	}

	.site-header__inner {
		gap: 8px;
	}

	.site-branding .custom-logo {
		max-width: 108px;
		max-height: 43px;
	}

	.yb-home-slider {
		width: 94vw;
		padding: 18px 0 44px;
	}

	.yb-home-slider .yb-reference-container {
		width: 100%;
	}

	.yb-home-slider__frame {
		aspect-ratio: 2560 / 2193;
	}

	.yb-home-slider__slide,
	.yb-home-slider__slide.is-active {
		left: 12.5%;
		width: 75%;
		opacity: 1;
		filter: none;
		transform: none;
	}

	.yb-home-slider__slide.is-prev,
	.yb-home-slider__slide.is-next,
	.yb-home-slider__slide:not(.is-active) {
		visibility: hidden;
	}

	.yb-circle-page {
		width: 46px;
		height: 46px;
	}

	.yb-circle-arrow {
		width: 38px;
		height: 38px;
	}

	.yb-home-slider__controls,
	.yb-circle-pagination {
		right: 0;
		bottom: 21px;
		left: 0;
		width: 100%;
		padding-inline: 14px;
		gap: 9px;
		transform: none;
	}

	.yb-authenticity-board .yb-reference-container {
		padding: 14px 16px;
	}

	.yb-authenticity-board p {
		font-size: 16px;
	}

	.yb-service-links {
		padding: 0;
	}

	.yb-service-links__grid {
		display: flex;
		gap: 16px;
		min-height: 230px;
		padding: 20px 10px 28px;
		margin-inline: 0;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-color: #34c3a0 #dff8f2;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.yb-service-links__grid::-webkit-scrollbar {
		height: 6px;
	}

	.yb-service-links__grid::-webkit-scrollbar-track {
		background: #dff8f2;
		border-radius: 999px;
	}

	.yb-service-links__grid::-webkit-scrollbar-thumb {
		background: #34c3a0;
		border-radius: 999px;
	}

	.yb-service-links__grid::before,
	.yb-service-links__grid::after {
		flex: 0 0 10px;
		content: "";
	}

	.yb-service-card {
		flex: 0 0 300px;
		width: 300px;
		min-height: 160px;
		scroll-snap-align: center;
	}

	.yb-service-card__inner {
		width: 100%;
		flex-direction: column;
		align-items: center;
		min-height: 160px;
		padding: 20px 15px;
		text-align: center;
	}

	.yb-service-card__image {
		flex-basis: 90px;
		width: 90px;
		height: 90px;
		margin-bottom: 10px;
	}

	.yb-service-card__content {
		text-align: center;
	}

	.yb-service-card strong {
		font-size: 18px;
	}

	.yb-service-card small {
		font-size: 13px;
	}

	.yb-category-showcase {
		padding: 30px 0 44px;
	}

	.yb-category-showcase .yb-reference-container,
	.yb-xmb-stage {
		min-height: 520px;
	}

	.yb-xmb-stage {
		padding-bottom: 64px;
	}

	.yb-xmb-cats-viewport {
		height: 126px;
	}

	.yb-xmb-row {
		gap: 38px;
		padding: 0;
		overflow: visible;
	}

	.yb-xmb-cat {
		flex: 0 0 76px;
		width: 76px;
		font-size: 16px;
	}

	.yb-xmb-cat img {
		width: 48px;
		height: 48px;
	}

	.yb-xmb-list {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 2px;
		width: 100%;
		padding: 0 0 8px;
		pointer-events: none;
	}

	.yb-xmb-panels {
		height: 390px;
		min-height: 390px;
		overflow: hidden;
		overscroll-behavior: contain;
	}

	.yb-xmb-panel {
		height: 390px;
		min-height: 390px;
		overflow: hidden;
	}

	.yb-xmb-panel.is-active {
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		pointer-events: none;
	}

	.yb-xmb-panel.is-active::-webkit-scrollbar {
		display: none;
	}

	.yb-xmb-item {
		flex: 0 0 auto;
		width: 170px;
		height: 88px;
		touch-action: pan-y;
	}

	.yb-xmb-panel.is-active .yb-xmb-item {
		pointer-events: auto;
	}

}

@media (max-width: 768px) and (hover: hover) and (pointer: fine) {
	.yb-xmb-panel.is-active,
	.yb-xmb-panel.is-active .yb-xmb-list {
		pointer-events: auto;
	}

	.yb-xmb-panel.is-active .yb-xmb-item {
		cursor: grab;
		user-select: none;
	}

	.yb-xmb-panel.is-mouse-dragging .yb-xmb-item {
		cursor: grabbing;
	}

	.yb-xmb-panel.is-active .yb-xmb-item img {
		-webkit-user-drag: none;
		user-select: none;
	}
}

@media (max-width: 480px) {
	.yb-category-showcase .yb-reference-container,
	.yb-xmb-stage {
		min-height: 500px;
	}

	.yb-xmb-row {
		gap: 30px;
	}

	.yb-xmb-panels,
	.yb-xmb-panel {
		height: 370px;
		min-height: 370px;
	}

	.yb-xmb-list {
		gap: 0;
	}

	.yb-xmb-item,
	.yb-xmb-item img {
		width: 165px;
		height: 82px;
	}
}

@media (max-width: 749px) {
	.yb-promo-bands {
		padding: 0 6px 10px;
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scrollbar-color: #6fb3ff #edf3ff;
		scrollbar-width: thin;
	}

	.yb-promo-bands::-webkit-scrollbar {
		height: 16px;
	}

	.yb-promo-bands::-webkit-scrollbar-track {
		background: #edf3ff;
		border-radius: 999px;
	}

	.yb-promo-bands::-webkit-scrollbar-thumb {
		background: #6fb3ff;
		border: 5px solid #edf3ff;
		border-radius: 999px;
	}

	.yb-promo-bands .yb-reference-container {
		display: flex;
		gap: 12px;
		width: max-content;
		max-width: none;
	}

	.yb-promo-bands .yb-reference-container::after {
		flex: 0 0 6px;
		content: "";
	}

	.yb-promo-band,
	.yb-promo-band:last-child {
		flex: 0 0 96vw;
		width: 96vw;
		margin: 0;
		padding: 28px 16px;
		border-radius: 14px;
		scroll-snap-align: center;
	}

	.yb-promo-band__content h2 {
		font-size: 22px;
	}
}

@media (max-width: 620px) {
	.yb-reference-news .post-grid {
		grid-template-columns: 1fr;
	}

	.store-main {
		padding-top: 22px;
	}

	.store-main--product .woocommerce div.product div.summary {
		padding: 20px 16px;
	}

	.store-main--product .woocommerce div.product div.images {
		padding: 9px;
		border-radius: 12px;
	}

	.store-main--product .woocommerce div.product .product_title {
		font-size: 1.72rem;
	}

	.yb-product-assurance,
	.yb-product-trust,
	.product-trust-badges {
		grid-template-columns: 1fr;
	}

	.store-main--product .woocommerce div.product form.cart {
		display: grid;
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.store-main--product form.cart .button,
	.store-main--product .single_add_to_cart_button {
		min-width: 0;
	}

	.store-main--product .woocommerce-tabs ul.tabs {
		overflow-x: auto;
		white-space: nowrap;
	}

	.store-main--product .woocommerce-Tabs-panel {
		padding: 18px 14px !important;
	}

	.footer__shell {
		padding-top: 30px;
	}

	.footer__columns {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.footer__col {
		border-bottom: 1px solid rgba(103, 75, 108, 0.16);
	}

	.footer-block__heading {
		position: relative;
		padding: 15px 30px 15px 0;
		margin: 0;
		cursor: pointer;
	}

	.footer-block__heading::after {
		position: absolute;
		top: 50%;
		right: 4px;
		content: "+";
		transform: translateY(-50%);
	}

	.footer-block__details-content {
		padding-bottom: 10px;
	}

	.footer__col .accordion-content {
		display: none;
	}

	.footer__col.is-open .accordion-content {
		display: block;
	}

	.footer__col.is-open .footer-block__heading::after {
		content: "−";
	}
}

@media (max-width: 480px) {
	.yb-reference-container,
	.yb-container,
	.store-main__inner {
		width: min(calc(100% - 20px), var(--yb-v2-container));
	}

	.yb-xmb-list {
		display: flex;
		gap: 0;
	}

	.yb-xmb-item {
		width: 165px;
		height: 82px;
	}

	.yb-category-showcase .yb-reference-container,
	.yb-xmb-stage {
		min-height: 500px;
	}

	.yb-xmb-panels,
	.yb-xmb-panel {
		height: 370px;
		min-height: 370px;
	}

	.footer__alert-bar {
		width: 100%;
		border-radius: 16px;
	}
}

@media (hover: none) {
	.yb-promo-band__media:hover,
	.yb-promo-band__content a:hover {
		transform: none;
		filter: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
	}

	.yb-home-slider__slide,
	.yb-circle-page,
	.yb-service-card,
	.yb-xmb-item,
	.yb-promo-band__content a,
	.product-card,
	.post-card {
		transition: none !important;
	}
}

/* -------------------------------------------------------------------------- */
/* Original YuyiBuy product-category archive                                  */
/* -------------------------------------------------------------------------- */

body.tax-product_cat .store-main--catalog .store-main__inner {
	width: min(calc(100% - clamp(36px, 6vw, 112px)), 1640px);
	max-width: 1640px;
}

.yb-catalog-top-info {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: min(1180px, 100%);
	padding: 10px;
	margin: 18px auto 32px;
	overflow: hidden;
	background:
		radial-gradient(420px 140px at 90% 0%, rgba(255, 255, 255, 0.75), transparent 65%),
		radial-gradient(380px 160px at 8% 100%, rgba(255, 255, 255, 0.55), transparent 70%),
		linear-gradient(135deg, #fff5f7 0%, #ffe1e6 48%, #fffafd 100%);
	border: 1px solid rgba(255, 120, 150, 0.35);
	border-radius: 20px;
	box-sizing: border-box;
}

.yb-catalog-announcement {
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(255, 113, 145, 0.36);
	border-left: 4px solid #ff6f91;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(218, 91, 126, 0.06);
}

.yb-catalog-announcement p {
	margin: 0;
	color: #28252b;
	font-size: clamp(0.95rem, 1.35vw, 1.18rem);
	font-weight: 800;
	line-height: 1.55;
	text-align: center;
}

.yb-catalog-breadcrumb {
	display: flex;
	justify-content: center;
}

.yb-catalog-breadcrumb .woocommerce-breadcrumb {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
	padding: 8px 12px;
	margin: 0 !important;
	color: #242129 !important;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 113, 145, 0.24);
	border-radius: 12px;
	font-size: 0.82rem !important;
	font-weight: 700;
	line-height: 1.45;
}

.yb-catalog-breadcrumb .woocommerce-breadcrumb a {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	color: #242129;
	border-radius: 8px;
}

.yb-catalog-breadcrumb__separator {
	margin: 0 6px;
	opacity: 0.42;
}

.yb-catalog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 230px;
	gap: 56px;
	align-items: start;
	width: 100%;
}

.yb-catalog-products {
	min-width: 0;
}

.yb-catalog-products .woocommerce-result-count,
.yb-catalog-products .woocommerce-ordering,
.yb-catalog-heading {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.yb-catalog-products .woocommerce-notices-wrapper:empty {
	display: none;
}

.yb-catalog-products .products,
.store-main--catalog .yb-catalog-products .woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
	gap: 22px 18px !important;
	padding: 0 !important;
	margin: 0 !important;
}

.yb-catalog-products .products::before,
.yb-catalog-products .products::after {
	display: none !important;
	content: none !important;
}

.store-main--catalog .yb-catalog-products .product-card,
.store-main--catalog .yb-catalog-products .woocommerce ul.products li.product,
.store-main--catalog .yb-catalog-products ul.products li.product {
	position: relative !important;
	isolation: isolate;
	float: none !important;
	display: grid !important;
	grid-template-columns: 150px minmax(0, 1fr) !important;
	grid-template-rows: 1fr !important;
	gap: 14px !important;
	width: 100% !important;
	max-width: 100% !important;
	min-height: 190px !important;
	padding: 16px !important;
	margin: 0 !important;
	overflow: hidden !important;
	background: linear-gradient(135deg, #fff 0%, #f8fafc 58%, #f5f7fb 100%) !important;
	border: 1px solid rgba(148, 163, 184, 0.28) !important;
	border-radius: 18px !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
}

.store-main--catalog .yb-catalog-products .product-card::before,
.store-main--catalog .yb-catalog-products ul.products li.product::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	display: block !important;
	background:
		linear-gradient(
			125deg,
			transparent 0%,
			transparent 14%,
			rgba(148, 163, 184, 0.13) 14%,
			rgba(148, 163, 184, 0.13) 26%,
			transparent 26%,
			transparent 62%,
			rgba(203, 213, 225, 0.18) 62%,
			rgba(203, 213, 225, 0.18) 76%,
			transparent 76%,
			transparent 100%
		) !important;
	content: "" !important;
	pointer-events: none;
}

.store-main--catalog .yb-catalog-products .product-card__media {
	position: relative;
	z-index: 1;
	grid-column: 1;
	grid-row: 1;
	width: 150px !important;
	min-width: 150px;
	max-width: 150px;
	height: 150px !important;
	min-height: 150px;
	max-height: 150px;
	margin: 0 !important;
	overflow: visible;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.store-main--catalog .yb-catalog-products .product-card__media img,
.store-main--catalog .yb-catalog-products ul.products li.product .product-card__media a img {
	position: static !important;
	display: block;
	width: 150px !important;
	max-width: 150px;
	height: 150px !important;
	max-height: 150px;
	margin: 0 !important;
	padding: 0 !important;
	object-fit: contain;
	object-position: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	transform: none !important;
}

.store-main--catalog .yb-catalog-products .product-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 0 42px 0 0;
}

.store-main--catalog .yb-catalog-products .product-card__title {
	display: block;
	width: 100%;
	min-height: 0;
	padding: 0;
	margin: 0 0 8px !important;
	overflow: visible;
	color: #111;
	font-size: 16px !important;
	font-weight: 800;
	line-height: 1.45;
	text-align: left;
	white-space: normal;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.store-main--catalog .yb-catalog-products .product-card__title a {
	color: inherit;
	text-decoration: none;
}

.store-main--catalog .yb-catalog-products .product-card__badge {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: 100%;
	min-height: 27px;
	padding: 0 13px;
	margin: 0 0 8px;
	color: #7a1f12;
	background: linear-gradient(180deg, #fff7f3 0%, #ffece4 100%);
	border: 1px solid rgba(224, 70, 40, 0.28);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 850;
	line-height: 27px;
	white-space: nowrap;
}

.store-main--catalog .yb-catalog-products .product-card__badge--sale {
	color: #065f46;
	background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
	border-color: rgba(16, 185, 129, 0.35);
}

.store-main--catalog .yb-catalog-products .product-card__price {
	width: calc(100% - 38px);
	padding: 0;
	margin: auto 0 0 !important;
	color: #111 !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1.4;
	text-align: left;
}

.store-main--catalog .yb-catalog-products .product-card__price .woocommerce-Price-amount {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.store-main--catalog .yb-catalog-products .product-card__wishlist-mark {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #e00000;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(224, 0, 0, 0.28);
	border-radius: 50%;
	box-sizing: border-box;
	pointer-events: none;
}

.store-main--catalog .yb-catalog-products .product-card__wishlist-mark svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.yb-catalog-shortcuts {
	width: 230px;
	margin: 0;
}

.yb-catalog-shortcuts__inner {
	position: relative;
	isolation: isolate;
	width: 230px;
	padding: 18px 16px;
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 8%, rgba(224, 0, 0, 0.12), transparent 32%),
		radial-gradient(circle at 92% 18%, rgba(37, 99, 235, 0.12), transparent 34%),
		radial-gradient(circle at 60% 92%, rgba(16, 185, 129, 0.09), transparent 34%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.88) 55%, rgba(241, 245, 249, 0.86) 100%);
	border: 1px solid rgba(148, 163, 184, 0.34);
	border-radius: 20px;
	box-sizing: border-box;
}

.yb-catalog-shortcuts__inner::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			125deg,
			transparent 0%,
			transparent 9%,
			rgba(148, 163, 184, 0.12) 9%,
			rgba(148, 163, 184, 0.12) 18%,
			transparent 18%,
			transparent 39%,
			rgba(224, 0, 0, 0.06) 39%,
			rgba(224, 0, 0, 0.06) 49%,
			transparent 49%,
			transparent 69%,
			rgba(37, 99, 235, 0.07) 69%,
			rgba(37, 99, 235, 0.07) 80%,
			transparent 80%,
			transparent 100%
		);
	content: "";
	pointer-events: none;
}

.yb-catalog-shortcuts__title {
	margin: 0 0 6px;
	color: #111827;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
}

.yb-catalog-shortcuts__hint {
	margin: 0 0 15px;
	color: #64748b;
	font-size: 13px;
	line-height: 1.45;
}

.yb-catalog-shortcuts__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.yb-catalog-shortcut {
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 14px;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.yb-catalog-shortcut img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	object-fit: contain;
}

.yb-catalog-shortcut:active {
	transform: translateY(2px) scale(0.965);
}

@media (min-width: 1000px) and (max-width: 1399px) {
	body.tax-product_cat .store-main--catalog .store-main__inner {
		width: min(calc(100% - clamp(36px, 4vw, 72px)), 1640px);
	}

	.yb-catalog-layout {
		grid-template-columns: minmax(0, 1fr) 220px;
		gap: 44px;
	}

	.yb-catalog-shortcuts,
	.yb-catalog-shortcuts__inner {
		width: 220px;
	}

	.yb-catalog-products .products,
	.store-main--catalog .yb-catalog-products .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
		gap: 18px !important;
	}

	.store-main--catalog .yb-catalog-products .product-card,
	.store-main--catalog .yb-catalog-products ul.products li.product {
		grid-template-columns: 130px minmax(0, 1fr) !important;
		min-height: 170px !important;
		padding: 14px !important;
		gap: 12px !important;
	}

	.store-main--catalog .yb-catalog-products .product-card__media,
	.store-main--catalog .yb-catalog-products .product-card__media img,
	.store-main--catalog .yb-catalog-products ul.products li.product .product-card__media a img {
		width: 130px !important;
		min-width: 130px;
		max-width: 130px;
		height: 130px !important;
		min-height: 130px;
		max-height: 130px;
	}
}

@media (max-width: 999px) {
	body.tax-product_cat .store-main--catalog .store-main__inner {
		width: min(calc(100% - 36px), 920px);
	}

	.yb-catalog-layout {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
	}

	.yb-catalog-products,
	.yb-catalog-products .products {
		width: 100% !important;
		max-width: 100% !important;
	}

	.yb-catalog-shortcuts {
		order: -1;
		width: 100%;
	}

	.yb-catalog-shortcuts__inner {
		width: 100%;
		padding: 14px;
	}

	.yb-catalog-shortcuts__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	.yb-catalog-shortcut--desktop-only {
		display: none;
	}

	.yb-catalog-products .products,
	.store-main--catalog .yb-catalog-products .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
		gap: 18px !important;
	}

	.store-main--catalog .yb-catalog-products .product-card,
	.store-main--catalog .yb-catalog-products ul.products li.product {
		grid-template-columns: 130px minmax(0, 1fr) !important;
		min-height: 170px !important;
		padding: 14px !important;
		gap: 12px !important;
	}

	.store-main--catalog .yb-catalog-products .product-card__media,
	.store-main--catalog .yb-catalog-products .product-card__media img,
	.store-main--catalog .yb-catalog-products ul.products li.product .product-card__media a img {
		width: 130px !important;
		min-width: 130px;
		max-width: 130px;
		height: 130px !important;
		min-height: 130px;
		max-height: 130px;
	}
}

@media (max-width: 749px) {
	body.tax-product_cat .store-main--catalog .store-main__inner {
		width: min(calc(100% - 20px), 680px);
	}

	.yb-catalog-top-info {
		gap: 14px;
		padding: 8px;
		margin: 12px auto 20px;
		border-radius: 16px;
	}

	.yb-catalog-announcement {
		padding: 11px 12px;
		border-radius: 11px;
	}

	.yb-catalog-announcement p {
		font-size: 0.84rem;
		line-height: 1.5;
	}

	.yb-catalog-breadcrumb .woocommerce-breadcrumb {
		padding: 6px 10px;
		border-radius: 10px;
		font-size: 0.76rem !important;
	}

	.yb-catalog-shortcuts__title {
		font-size: 17px;
	}

	.yb-catalog-shortcuts__hint {
		margin-bottom: 10px;
		font-size: 12px;
	}

	.yb-catalog-shortcuts__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yb-catalog-products .products,
	.store-main--catalog .yb-catalog-products .woocommerce ul.products {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 16px !important;
	}

	body.tax-product_cat .store-main--catalog .yb-catalog-products ul.products[class*="columns-"] {
		width: 100% !important;
		max-width: 100% !important;
		justify-items: stretch;
	}

	body.tax-product_cat .store-main--catalog .yb-catalog-products ul.products[class*="columns-"] > li.product:nth-child(n) {
		float: none !important;
		clear: none !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		justify-self: stretch;
	}

	.store-main--catalog .yb-catalog-products .product-card,
	.store-main--catalog .yb-catalog-products ul.products li.product {
		grid-template-columns: 110px minmax(0, 1fr) !important;
		min-height: 160px !important;
		padding: 12px !important;
		gap: 10px !important;
		border-radius: 16px !important;
	}

	.store-main--catalog .yb-catalog-products .product-card__media,
	.store-main--catalog .yb-catalog-products .product-card__media img,
	.store-main--catalog .yb-catalog-products ul.products li.product .product-card__media a img {
		width: 110px !important;
		min-width: 110px;
		max-width: 110px;
		height: 110px !important;
		min-height: 110px;
		max-height: 110px;
	}

	.store-main--catalog .yb-catalog-products .product-card__body {
		padding-right: 34px;
	}

	.store-main--catalog .yb-catalog-products .product-card__title {
		font-size: 14px !important;
		line-height: 1.35;
	}

	.store-main--catalog .yb-catalog-products .product-card__badge {
		min-height: 25px;
		padding-inline: 10px;
		font-size: 12px;
		line-height: 25px;
	}

	.store-main--catalog .yb-catalog-products .product-card__price {
		width: calc(100% - 32px);
		font-size: 13px !important;
	}

	.store-main--catalog .yb-catalog-products .product-card__wishlist-mark {
		right: 12px;
		bottom: 12px;
		width: 34px;
		height: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yb-catalog-shortcut,
	.store-main--catalog .yb-catalog-products .product-card {
		transition: none !important;
		transform: none !important;
	}
}

/* Header parity with the original YuyiBuy desktop and mobile layouts. */
.site-header__utility-toggle {
	display: none;
}

.site-header__search-link,
.site-actions .icon-button,
.site-header__menu-toggle,
.site-header__utility-toggle {
	padding: 0;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, #ff7bd5, #b77cff 48%, #6b6bf6) border-box;
	border: 1.25px solid transparent;
	box-shadow: none;
}

.site-header__search-link::before,
.site-actions .icon-button::before,
.site-header__menu-toggle::before,
.site-header__utility-toggle::before {
	display: none;
}

.site-header__utility-toggle svg {
	position: relative;
	z-index: 1;
}

.site-header__utility-toggle .icon-button__close {
	display: none;
}

.site-header__utility-toggle[aria-expanded="true"] .icon-button__open {
	display: none;
}

.site-header__utility-toggle[aria-expanded="true"] .icon-button__close {
	display: block;
}

.mobile-menu--utility {
	top: 64px;
}

body.admin-bar .mobile-menu--utility {
	top: 96px;
}

.mobile-menu--utility .yb-utility-drawer {
	inset: 0 0 0 auto;
	width: min(74vw, 360px);
	max-width: 360px;
	height: 100%;
	padding: 0;
	overflow: hidden;
	background-color: #fff;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
		url("../images/header-drawer/drawer-background.jpeg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	border-right: 0;
	border-left: 1px solid rgba(150, 128, 181, 0.25);
	box-shadow: -18px 0 50px rgba(31, 27, 54, 0.2);
	overscroll-behavior: contain;
	animation: yb-menu-in-right 220ms ease both;
}

@keyframes yb-menu-in-right {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

.yb-utility-drawer__scroll {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-color: rgba(122, 95, 157, 0.45) transparent;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.yb-utility-drawer__scroll::-webkit-scrollbar {
	width: 6px;
}

.yb-utility-drawer__scroll::-webkit-scrollbar-thumb {
	background: rgba(122, 95, 157, 0.4);
	border-radius: 999px;
}

.yb-utility-drawer__topbar {
	position: sticky;
	top: 0;
	z-index: 3;
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	align-items: center;
	gap: 9px 10px;
	padding: 12px 14px 11px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 242, 255, 0.96));
	border-bottom: 1px solid rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.yb-utility-drawer__close {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	padding: 0;
	color: #272230;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(85, 72, 103, 0.28);
	border-radius: 50%;
	box-shadow: 0 3px 10px rgba(54, 40, 75, 0.09);
	cursor: pointer;
	transition:
		color 160ms ease,
		background 160ms ease,
		transform 160ms ease;
}

.yb-utility-drawer__close:hover {
	color: #a22e7a;
	background: #fff;
	transform: rotate(6deg);
}

.yb-utility-drawer__close svg {
	width: 16px;
	height: 16px;
}

.yb-utility-drawer__currency-label {
	color: #4e485a;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.yb-utility-drawer__currency {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 0;
	height: 42px;
	padding: 0 31px 0 14px;
	color: #201c28;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(84, 72, 101, 0.34);
	border-radius: 999px;
	box-shadow: 0 4px 13px rgba(61, 47, 81, 0.08);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.yb-utility-drawer__currency::after {
	position: absolute;
	top: 50%;
	right: 13px;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transform: translateY(-70%) rotate(45deg);
}

.yb-utility-drawer__backgrounds {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 9px;
	min-width: 0;
}

.yb-utility-drawer__backgrounds > strong {
	color: #3d3748;
	font-size: 0.72rem;
	font-weight: 900;
	white-space: nowrap;
}

.yb-utility-drawer__swatches {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	min-width: 0;
}

.yb-utility-drawer__swatches button {
	position: relative;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: var(--yb-bg-swatch, #fff);
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow:
		0 0 0 1px rgba(76, 64, 92, 0.2),
		0 3px 8px rgba(63, 48, 82, 0.12);
	cursor: pointer;
	transition:
		box-shadow 150ms ease,
		transform 150ms ease;
}

.yb-utility-drawer__swatches button:hover {
	box-shadow:
		0 0 0 2px rgba(34, 29, 42, 0.82),
		0 4px 10px rgba(63, 48, 82, 0.16);
	transform: translateY(-1px);
}

.yb-utility-drawer__swatches button.is-active,
.yb-utility-drawer__swatches button[aria-pressed="true"] {
	box-shadow:
		0 0 0 3px #24202a,
		0 5px 12px rgba(63, 48, 82, 0.2);
}

.yb-utility-drawer__swatches .yb-utility-drawer__reset {
	background: #fff;
	border-color: #111;
}

.yb-utility-drawer__content {
	min-height: calc(100% - 104px);
}

.yb-utility-drawer__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 14px 10px;
	padding: 16px 14px max(22px, env(safe-area-inset-bottom));
	margin: 0;
	list-style: none;
}

.yb-utility-drawer__cards > li {
	min-width: 0;
	margin: 0;
}

.yb-utility-drawer__card {
	display: grid;
	place-items: center;
	min-height: 132px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 16px;
	outline-offset: 3px;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.yb-utility-drawer__card img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 132px;
	object-fit: contain;
	transform-origin: 50% 84%;
}

.yb-utility-drawer__card:hover img,
.yb-utility-drawer__card:focus-visible img {
	animation: yb-utility-card-bounce 460ms ease both;
}

@keyframes yb-utility-card-bounce {
	0%,
	100% { transform: translateY(0) scale(1); }
	34% { transform: translateY(-7px) scale(1.025); }
	62% { transform: translateY(2px) scale(0.99); }
	82% { transform: translateY(-2px) scale(1.008); }
}

@media (max-width: 480px) {
	.mobile-menu--utility .yb-utility-drawer {
		width: min(82vw, 360px);
	}

	.yb-utility-drawer__topbar {
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 8px;
		padding: 10px 11px;
	}

	.yb-utility-drawer__currency-label {
		font-size: 0.72rem;
	}

	.yb-utility-drawer__currency {
		padding-right: 28px;
		padding-left: 12px;
	}

	.yb-utility-drawer__cards {
		padding-inline: 11px;
	}
}

@media screen and (max-width: 782px) {
	body.admin-bar .mobile-menu--utility {
		top: 110px;
	}
}

main.site-main[data-yb-background="1"] {
	background: linear-gradient(180deg, #eef7df 0%, #f4fbe2 48%, #e8f0cf 100%);
}

main.site-main[data-yb-background="2"] {
	background: linear-gradient(180deg, #e7f2fb 0%, #edfaff 48%, #deedf8 100%);
}

main.site-main[data-yb-background="3"] {
	background: linear-gradient(180deg, #fbf0df 0%, #fff5e5 48%, #f5e6cf 100%);
}

main.site-main[data-yb-background="4"] {
	background: linear-gradient(180deg, #fbede8 0%, #eef7f5 48%, #f4e8d9 100%);
}

main.site-main[data-yb-background="5"] {
	background: linear-gradient(180deg, #f6ecf8 0%, #fdf2fb 48%, #efe1f3 100%);
}

@media (max-width: 380px) {
	.yb-utility-drawer__backgrounds {
		gap: 6px;
	}

	.yb-utility-drawer__backgrounds > strong {
		font-size: 0.67rem;
	}

	.yb-utility-drawer__swatches {
		gap: 4px;
	}

	.yb-utility-drawer__swatches button {
		flex-basis: 25px;
		width: 25px;
		height: 25px;
	}

	.yb-utility-drawer__cards {
		gap: 12px 6px;
		padding: 13px 9px max(18px, env(safe-area-inset-bottom));
	}

	.yb-utility-drawer__card {
		min-height: 118px;
	}

	.yb-utility-drawer__card img {
		max-height: 118px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mobile-menu--utility .yb-utility-drawer,
	.yb-utility-drawer__card:hover img,
	.yb-utility-drawer__card:focus-visible img {
		animation: none !important;
	}
}

@media (max-width: 1089px) {
	.site-header,
	.site-header__inner {
		min-height: 64px;
	}

	.site-header__inner {
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		gap: 6px;
		padding-block: 5px;
	}

	.site-header__inner::after {
		order: 3;
		flex: 1 1 auto;
		min-width: 0;
		content: "";
	}

	.site-header__menu-toggle {
		order: 1;
		display: inline-grid !important;
		margin-right: 4px;
	}

	.site-branding {
		order: 2;
		flex: 0 1 auto;
		min-width: 0;
	}

	.site-header__search-link {
		order: 4;
	}

	.site-header__utility-toggle {
		order: 5;
		display: inline-grid !important;
	}

	.site-header__menu-toggle,
	.site-header__search-link,
	.site-header__utility-toggle {
		flex: 0 0 34px;
		width: 34px;
		height: 34px;
	}

	.site-header__menu-toggle svg,
	.site-header__search-link svg,
	.site-header__utility-toggle svg {
		width: 23px;
		height: 23px;
		stroke-width: 1.55;
	}

	.site-branding .custom-logo {
		width: auto;
		max-width: 120px;
		max-height: 44px;
	}

	.site-nav--desktop,
	.site-actions {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.site-branding .custom-logo {
		max-width: 100px;
		max-height: 42px;
	}
}

@media (min-width: 1090px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: auto auto minmax(0, 1fr) auto;
		align-items: center;
		gap: 14px;
		min-height: 58px;
		padding-block: 4px;
	}

	.site-header__menu-toggle,
	.site-header__utility-toggle {
		display: none !important;
	}

	.site-nav--desktop {
		display: block !important;
	}

	.site-actions {
		display: flex !important;
		grid-column: auto;
	}
}

/* Original-style mobile left navigation */

@media (max-width: 1089px) {
	.mobile-menu--primary {
		position: fixed;
		inset: var(--yb-mobile-menu-top, 64px) 0 0;
		z-index: 5000;
		overflow: hidden;
		overscroll-behavior: contain;
	}

	.mobile-menu--primary .mobile-menu__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.35);
		backdrop-filter: none;
	}

	.mobile-menu--primary .mobile-menu__panel {
		position: absolute;
		inset: 0 auto 0 0;
		display: flex;
		flex-direction: column;
		width: min(74vw, 360px);
		max-width: calc(100vw - 24px);
		height: 100%;
		box-sizing: border-box;
		padding: 0;
		overflow: hidden;
		color: #111;
		background-color: #f6f5f7;
		background-image:
			linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
			url("../images/header-drawer/drawer-background.jpeg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
		border-radius: 0;
		box-shadow: 12px 0 34px rgba(28, 24, 38, 0.18);
		animation: yb-menu-in 220ms ease both;
	}

	.mobile-menu--primary .mobile-menu__top {
		position: relative;
		z-index: 20;
		display: flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: flex-end;
		min-height: 46px;
		box-sizing: border-box;
		padding: 8px 10px;
		margin: 0;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.97));
		border: 0;
		border-bottom: 1px solid rgba(15, 23, 42, 0.1);
	}

	.yb-mobile-nav.is-nested .mobile-menu__top {
		display: none;
	}

	.yb-mobile-nav__close {
		appearance: none;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 30px;
		padding: 0;
		margin: 0;
		color: #111;
		background: transparent;
		border: 0;
		border-radius: 999px;
		cursor: pointer;
	}

	.yb-mobile-nav__close img {
		display: block;
		width: 28px;
		height: 28px;
		object-fit: contain;
	}

	.yb-mobile-nav__viewport {
		position: relative;
		flex: 1 1 auto;
		min-height: 0;
		overflow: hidden;
	}

	.yb-mobile-nav__level {
		position: absolute;
		inset: 0;
		z-index: 2;
		box-sizing: border-box;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		opacity: 0;
		pointer-events: none;
		transform: translateX(100%);
		transition:
			opacity 180ms ease,
			transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.yb-mobile-nav__level:not([data-mobile-nav-level="mobile-root"]) {
		background: #fff;
	}

	.yb-mobile-nav__level.is-parent {
		z-index: 1;
		opacity: 0;
		transform: translateX(-14%);
	}

	.yb-mobile-nav__level.is-active {
		z-index: 3;
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.yb-mobile-nav__level-inner {
		display: flex;
		flex-direction: column;
		min-height: 100%;
		box-sizing: border-box;
		padding: 10px 0 max(18px, env(safe-area-inset-bottom));
	}

	.yb-mobile-nav__level[data-mobile-nav-level="mobile-root"] .yb-mobile-nav__level-inner {
		padding-top: 56px;
	}

	.yb-mobile-nav__subhead {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px 10px;
		padding: 0 12px 14px;
	}

	.yb-mobile-nav__back {
		appearance: none;
		display: inline-flex;
		align-items: center;
		gap: 6px;
		flex: 0 0 auto;
		padding: 10px 18px;
		color: #fff;
		background: linear-gradient(135deg, #7c3aed, #5b21b6);
		border: 0;
		border-radius: 12px;
		box-shadow: 0 7px 16px rgba(91, 33, 182, 0.18);
		font: inherit;
		font-size: 16px;
		font-weight: 800;
		line-height: 1;
		cursor: pointer;
	}

	.yb-mobile-nav__title {
		display: none;
	}

	.yb-mobile-nav__all {
		display: none;
	}

	.yb-mobile-nav__items {
		display: block;
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.yb-mobile-nav__items > li {
		display: block;
		padding: 0;
		margin: 0 12px 10px;
	}

	.yb-mobile-nav__item {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		width: 100%;
		min-height: 50px;
		box-sizing: border-box;
		padding: 14px 16px;
		color: #111;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.96));
		border: 1px solid rgba(0, 0, 0, 0.12);
		border-radius: 999px;
		box-shadow: 0 3px 10px rgba(25, 24, 34, 0.035);
		font-size: 18px;
		font-weight: 800;
		line-height: 1.25;
		text-align: left;
		text-decoration: none;
		white-space: normal;
		-webkit-tap-highlight-color: transparent;
		transition: none;
	}

	.yb-mobile-nav__item:hover,
	.yb-mobile-nav__item:focus-visible {
		color: #111;
		background: linear-gradient(135deg, rgba(226, 231, 241, 0.98), rgba(211, 220, 234, 0.98));
		box-shadow: 0 3px 10px rgba(25, 24, 34, 0.055);
		transform: none;
	}

	.yb-mobile-nav__item--parent {
		padding-right: 46px;
	}

	.yb-mobile-nav__arrow {
		position: absolute;
		top: 50%;
		right: 16px;
		color: #6b7280;
		font-size: 22px;
		font-weight: 900;
		line-height: 1;
		transform: translateY(-50%);
	}

	.yb-mobile-nav__brand {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: auto;
		padding: 22px 0 26px;
	}

	.yb-mobile-nav__brand img {
		display: block;
		width: 140px;
		height: 52px;
		object-fit: contain;
	}
}

@media (max-width: 480px) {
	.mobile-menu--primary .mobile-menu__panel {
		width: min(82vw, 360px);
	}
}

/* Desktop product Mega menu */

.yb-mega {
	display: none;
}

@media (min-width: 1090px) {
	.site-header,
	.site-header__inner,
	.site-nav--desktop,
	.site-nav__list,
	.site-nav__list > li {
		overflow: visible;
	}

	.site-nav__list > li > .yb-mega-trigger {
		appearance: none;
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 6px 12px;
		margin: 0;
		color: #17151e;
		background: rgba(255, 255, 255, 0.52);
		border: 1px solid rgba(255, 255, 255, 0.42);
		border-radius: 999px;
		font: inherit;
		font-size: 0.86rem;
		font-weight: 700;
		line-height: 1.4;
		text-decoration: none;
		white-space: nowrap;
		cursor: pointer;
		transition:
			background 150ms ease,
			border-color 150ms ease,
			box-shadow 150ms ease;
	}

	.site-nav__list > li > .yb-mega-trigger:hover,
	.site-nav__list > li > .yb-mega-trigger:focus-visible,
	.site-nav__list > li > .yb-mega-trigger[aria-expanded="true"] {
		color: #111;
		background: rgba(238, 219, 245, 0.96);
		border-color: rgba(40, 32, 49, 0.28);
		box-shadow: 0 0 0 2px rgba(61, 45, 75, 0.08);
		transform: none;
	}

	.yb-mega-trigger::after {
		display: inline-block;
		flex: 0 0 auto;
		width: 7px;
		height: 7px;
		margin-top: -3px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		content: "";
		transform: rotate(45deg);
		transition: transform 150ms ease;
	}

	.yb-mega-trigger[aria-expanded="true"]::after {
		margin-top: 3px;
		transform: rotate(225deg);
	}

	.yb-mega {
		--yb-mega-max-height: calc(100dvh - var(--yb-mega-top, 58px) - 12px);
		position: fixed;
		top: var(--yb-mega-top, 58px);
		left: 50%;
		z-index: 99999;
		display: block;
		width: min(1060px, calc(100vw - 24px));
		max-width: calc(100vw - 24px);
		min-height: min(360px, var(--yb-mega-max-height));
		max-height: var(--yb-mega-max-height);
		padding: 0;
		margin: 0;
		overflow: hidden;
		isolation: isolate;
		opacity: 0;
		color: #111;
		background-color: #f4eef8;
		background-image:
			linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
			url("../images/header-mega/mega-background.jpeg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		border: 1.5px solid #000;
		border-radius: 18px;
		box-shadow: 0 18px 48px rgba(24, 20, 34, 0.18);
		pointer-events: none;
		transform: translateX(-50%) translateY(-8px) scale(0.99);
		transform-origin: top center;
		transition:
			opacity 160ms ease,
			transform 160ms cubic-bezier(0.22, 0.61, 0.36, 1);
	}

	.yb-mega.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(-50%);
	}

	.yb-mega.is-closing {
		opacity: 0;
		pointer-events: none;
		transform: translateX(-50%) translateY(-10px) rotateX(5deg) scale(0.985);
		transition:
			opacity 180ms ease,
			transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
	}

	.yb-mega__viewport {
		min-height: min(360px, var(--yb-mega-max-height));
		max-height: calc(var(--yb-mega-max-height) - 3px);
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.yb-mega__level {
		display: none;
		box-sizing: border-box;
		min-height: min(360px, var(--yb-mega-max-height));
		padding: 10px 0;
	}

	.yb-mega__level.is-active {
		display: block;
		animation: yb-mega-level-in 140ms ease-out both;
	}

	.yb-mega__level[data-mega-level="root"] {
		padding-top: 48px;
	}

	.yb-mega__top {
		position: sticky;
		top: 0;
		z-index: 2;
		display: flex;
		align-items: center;
		gap: 10px;
		min-height: 48px;
		padding: 8px 58px 8px 12px;
		background: rgba(246, 242, 249, 0.82);
		border-bottom: 1px solid rgba(2, 6, 23, 0.08);
		backdrop-filter: blur(5px);
	}

	.yb-mega__back {
		appearance: none;
		display: inline-flex;
		align-items: center;
		gap: 6px;
		flex: 0 0 auto;
		padding: 6px 12px;
		color: #111;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 245, 255, 0.95));
		border: 1px solid rgba(0, 0, 0, 0.14);
		border-radius: 999px;
		font-size: 17px;
		font-weight: 700;
		letter-spacing: 0.02em;
		cursor: pointer;
		transition:
			opacity 150ms ease,
			transform 150ms ease;
	}

	.yb-mega__back:hover {
		transform: translateY(-1px);
	}

	.yb-mega__title {
		font-size: 17px;
		font-weight: 800;
	}

	.yb-mega__all {
		color: #111;
		font-size: 15px;
		font-weight: 700;
		text-underline-offset: 0.15em;
	}

	.yb-mega__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-auto-rows: minmax(70px, auto);
		align-items: stretch;
		gap: 10px;
		padding: 12px;
		margin: 0;
		list-style: none;
	}

	.yb-mega__grid > li {
		min-width: 0;
		margin: 0;
	}

	.yb-mega__card {
		appearance: none;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		max-width: 100%;
		min-height: 70px;
		box-sizing: border-box;
		padding: 10px 12px;
		margin: 0;
		color: #111;
		background: rgba(255, 255, 255, 0.95);
		border: 1px solid #000;
		border-radius: 12px;
		font: inherit;
		font-size: 18px;
		font-weight: 800;
		line-height: 1.25;
		text-align: left;
		text-decoration: none;
		white-space: normal;
		cursor: pointer;
		transition:
			box-shadow 150ms ease,
			transform 150ms ease;
	}

	.yb-mega__card:hover,
	.yb-mega__card:focus-visible {
		color: #111;
		box-shadow: 0 5px 13px rgba(25, 20, 34, 0.1);
		transform: translateY(-1px);
	}

	.yb-mega__card--parent {
		padding-right: 46px;
	}

	.yb-mega__arrow {
		position: absolute;
		top: 50%;
		right: 16px;
		font-size: 24px;
		font-weight: 900;
		line-height: 1;
		opacity: 0.6;
		transform: translateY(-50%);
	}

	.yb-mega__close {
		appearance: none;
		position: absolute;
		top: 14px;
		right: 14px;
		z-index: 100;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		min-width: 38px;
		height: 38px;
		min-height: 38px;
		padding: 0;
		margin: 0;
		overflow: visible;
		color: transparent;
		background: transparent;
		border: 0;
		border-radius: 999px;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.yb-mega__close::before {
		display: block;
		width: 34px;
		height: 34px;
		background-image: url("../images/header-mega/mega-close.webp");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		content: "";
		transition: transform 150ms ease;
	}

	.yb-mega__close img {
		display: block;
		width: 34px;
		height: 34px;
		object-fit: contain;
		transition: transform 150ms ease;
	}

	.yb-mega__close:has(img)::before {
		display: none;
	}

	.yb-mega__close:hover::before,
	.yb-mega__close:focus-visible::before,
	.yb-mega__close:hover img,
	.yb-mega__close:focus-visible img {
		transform: translateY(-1px) scale(1.06) rotate(-3deg);
	}
}

@keyframes yb-mega-level-in {
	from {
		opacity: 0;
		transform: translateX(8px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (max-width: 1089px) {
	.yb-mega {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yb-mega,
	.yb-mega__level.is-active {
		animation: none !important;
		transition: none !important;
	}
}
