/*  GRZ Gaming — home-v140 canonical stylesheet.  */
.grz-home {
	min-width: 0;
}
/* ---- Hero -------------------------------------------------------------- */
.grz-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 28%, rgba(255, 255, 255, 0.05) 70%, transparent),
		linear-gradient(135deg, var(--grz-blue-deep) 0%, var(--grz-blue-dark) 34%, var(--grz-blue) 74%, #0a7cff 100%);
	color: #fff;
}
.grz-hero::before,
.grz-hero::after {
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(30vw, 420px);
	content: "";
	opacity: 0.16;
	background-image:
		linear-gradient(30deg, transparent 12%, rgba(255, 255, 255, 0.3) 12.5%, transparent 13%),
		linear-gradient(150deg, transparent 12%, rgba(255, 255, 255, 0.3) 12.5%, transparent 13%);
	background-size: 52px 52px;
	pointer-events: none;
}
.grz-hero::before {
	left: -80px;
}
.grz-hero::after {
	right: -80px;
	transform: scaleX(-1);
}
.grz-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	gap: clamp(24px, 4vw, 56px);
	padding-block: clamp(44px, 7vw, 96px);
}
.grz-hero__inner.has-image {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}
.grz-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.06em;
	padding: 6px 13px;
	text-transform: uppercase;
}
.grz-hero__badge .grz-icon {
	width: 13px;
	height: 13px;
}
.grz-hero__title {
	margin: 0 0 14px;
	color: #fff;
	font-size: clamp(2rem, 4.6vw, 3.6rem);
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 1.04;
}
.grz-hero__subtitle {
	max-width: 560px;
	margin: 0 0 26px;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(0.95rem, 1.4vw, 1.1rem);
	line-height: 1.55;
}
.grz-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}
.grz-hero__actions .grz-button {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}
.grz-button--light {
	background: #fff;
	box-shadow: 0 12px 30px rgba(4, 24, 60, 0.28);
	color: var(--grz-blue-dark);
}
.grz-button--light:hover {
	background: #fff;
	color: var(--grz-blue);
}
.grz-button--ghost {
	border: 1px solid rgba(255, 255, 255, 0.55);
	background: transparent;
	box-shadow: none;
	color: #fff;
}
.grz-button--ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: none;
	color: #fff;
}
.grz-hero__media {
	display: flex;
	justify-content: center;
	min-width: 0;
}
.grz-hero__image {
	max-width: 100%;
	max-height: 380px;
	border-radius: var(--grz-radius-lg);
	filter: drop-shadow(0 26px 50px rgba(3, 20, 52, 0.45));
	object-fit: contain;
}
/* ---- Section shells ----------------------------------------------------- */
.grz-home-section--categories + .grz-home-section,
.grz-home-section--products + .grz-home-section,
.grz-home-section--featured-offers + .grz-home-section {
	padding-block-start: 0;
}
.grz-home-section__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px 18px;
}
.grz-home-section__title {
	position: relative;
	margin: 0;
	font-weight: 800;
	line-height: 1.2;
	padding-inline-start: 14px;
}
.grz-home-section__title::before {
	position: absolute;
	inset-inline-start: 0;
	top: 0.1em;
	bottom: 0.1em;
	width: 4px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--grz-blue), var(--grz-blue-dark));
	content: "";
}
.grz-home-section__more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--grz-blue);
	font-size: 0.82rem;
	font-weight: 750;
	text-decoration: none;
}
.grz-home-section__more:hover {
	color: var(--grz-blue-dark);
}
.grz-home-section__more .grz-icon {
	width: 15px;
	height: 15px;
	transition: transform var(--grz-transition);
}
.grz-home-section__more:hover .grz-icon {
	transform: translateX(3px);
}
[dir="rtl"] .grz-home-section__more .grz-icon {
	transform: scaleX(-1);
}
[dir="rtl"] .grz-home-section__more:hover .grz-icon {
	transform: scaleX(-1) translateX(3px);
}
/* ---- Hero slider (GRZ Theme → Home Page → Slides) ---------------------- */
@property --grz-hero-ambient {
	syntax: "<color>";
	inherits: true;
	initial-value: #0868f2;
}
.grz-home {
	position: relative;
	overflow: clip;
	--grz-hero-ambient-soft: color-mix(in srgb, var(--grz-hero-ambient) 18%, #f5f7fc);
	--grz-hero-ambient-strong: color-mix(in srgb, var(--grz-hero-ambient) 34%, #eef2fa);
}
.grz-home.has-ambient {
	transition: --grz-hero-ambient 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.grz-home.has-ambient::before,
.grz-home.has-ambient::after {
	position: absolute;
	top: clamp(120px, 16vw, 240px);
	width: min(54vw, 760px);
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	opacity: 0.52;
	pointer-events: none;
	z-index: -1;
}
.grz-home.has-ambient::before {
	left: clamp(-460px, -19vw, -130px);
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 66%);
}
.grz-home.has-ambient::after {
	right: clamp(-460px, -19vw, -130px);
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 66%);
}
.grz-hero-slider {
	--grz-slide-transition: 760ms cubic-bezier(0.22, 0.61, 0.36, 1);
	position: relative;
	padding-block: clamp(16px, 2.6vw, 30px) clamp(10px, 1.8vw, 18px);
	outline: none;
}
.grz-hero-slider:focus-visible {
	outline: 3px solid rgba(8, 104, 242, 0.35);
	outline-offset: -3px;
}
.grz-hero-slider__viewport {
	--grz-hero-card-width: min(1060px, calc(100% - 250px));
	--grz-hero-side-width: clamp(180px, 17vw, 230px);
	position: relative;
	overflow: hidden;
}
/*
 * The spacer preserves the 1000:360 banner ratio. The active card is slightly
 * larger than before, while both side previews stay fully inside the 1392px
 * usable container width.
 */
.grz-hero-slider__viewport::before {
	display: block;
	width: var(--grz-hero-card-width);
	aspect-ratio: 1000 / 360;
	margin-inline: auto;
	content: "";
}
.grz-hero-slider__track {
	position: absolute;
	inset: 0;
}
.grz-hero-slide {
	position: absolute;
	top: 0;
	left: 50%;
	width: var(--grz-hero-card-width);
	height: 100%;
	border-radius: clamp(18px, 2.2vw, 24px);
	overflow: hidden;
	background: linear-gradient(180deg, rgba(207, 217, 236, 0.95), rgba(194, 204, 227, 0.95));
	text-decoration: none;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) scale(0.94);
	transform-origin: center center;
	transition:
		left var(--grz-slide-transition),
		top var(--grz-slide-transition),
		width var(--grz-slide-transition),
		height var(--grz-slide-transition),
		transform var(--grz-slide-transition),
		opacity var(--grz-slide-transition),
		filter var(--grz-slide-transition),
		box-shadow var(--grz-slide-transition),
		border-radius var(--grz-slide-transition);
	will-change: left, width, height, transform, opacity;
}
.grz-hero-slide.is-active {
	top: 0;
	left: 50%;
	z-index: 3;
	width: var(--grz-hero-card-width);
	height: 100%;
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) scale(1);
	filter: none;
}
.grz-hero-slide.is-prev,
.grz-hero-slide.is-next {
	top: 8%;
	z-index: 2;
	width: var(--grz-hero-side-width);
	height: 84%;
	border-radius: clamp(14px, 1.6vw, 19px);
	opacity: 0.32;
	filter: saturate(0.58) brightness(1.05) grayscale(0.12);
}
.grz-hero-slide.is-prev {
	left: 0;
	transform: translateX(0) scale(1);
}
.grz-hero-slide.is-next {
	left: 100%;
	transform: translateX(-100%) scale(1);
}
/* Direction-aware side-preview offsets keep both sides visually active during
 * every slide change instead of leaving one side feeling fixed. */
.grz-hero-slider[data-direction="next"] .grz-hero-slide.is-prev {
	transform: translateX(-10px) scale(1);
	opacity: 0.26;
}
.grz-hero-slider[data-direction="next"] .grz-hero-slide.is-next {
	transform: translateX(calc(-100% + 12px)) scale(1);
	opacity: 0.4;
}
.grz-hero-slider[data-direction="prev"] .grz-hero-slide.is-prev {
	transform: translateX(10px) scale(1);
	opacity: 0.4;
}
.grz-hero-slider[data-direction="prev"] .grz-hero-slide.is-next {
	transform: translateX(calc(-100% - 12px)) scale(1);
	opacity: 0.26;
}
.grz-hero-slide.is-hidden {
	top: 10%;
	left: 50%;
	z-index: 1;
	width: var(--grz-hero-side-width);
	height: 80%;
	opacity: 0;
	transform: translateX(-50%) scale(0.9);
}
.grz-hero-slide__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	backface-visibility: hidden;
	transform: translateZ(0);
}
.grz-hero-slide__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 12, 29, 0.1) 0%, rgba(4, 12, 29, 0.02) 34%, rgba(4, 12, 29, 0.2) 100%);
	pointer-events: none;
}
.grz-hero-slide__caption {
	position: absolute;
	inset-inline: 0;
	left: 0;
	bottom: clamp(18px, 3vw, 30px);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	max-width: min(72%, 520px);
	padding-inline: clamp(18px, 3vw, 34px);
	text-align: start;
}
.grz-hero-slide__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: 999px;
	background: rgba(8, 18, 40, 0.45);
	color: rgba(255, 255, 255, 0.96);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	padding: 7px 11px;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}
.grz-hero-slide__title {
	color: #fff;
	font-size: clamp(1.05rem, 2.15vw, 1.8rem);
	font-weight: 900;
	letter-spacing: 0.01em;
	line-height: 1.15;
	text-shadow: 0 3px 20px rgba(3, 14, 36, 0.68);
	text-transform: uppercase;
}
.grz-hero-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: inline-grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: var(--grz-blue);
	box-shadow: 0 14px 28px rgba(8, 104, 242, 0.28);
	color: #fff;
	padding: 0;
	transform: translateY(-50%);
	transition: transform var(--grz-transition), background var(--grz-transition), box-shadow var(--grz-transition);
}
.grz-hero-slider__arrow:hover {
	background: var(--grz-blue-dark);
	box-shadow: 0 16px 32px rgba(8, 104, 242, 0.34);
	transform: translateY(-50%) scale(1.04);
}
.grz-hero-slider__arrow--prev {
	inset-inline-start: calc((100% - var(--grz-hero-card-width)) / 2 - 23px);
}
.grz-hero-slider__arrow--next {
	inset-inline-end: calc((100% - var(--grz-hero-card-width)) / 2 - 23px);
}
.grz-hero-slider__arrow .grz-icon {
	width: 20px;
	height: 20px;
}
.grz-hero-slider__arrow--prev .grz-icon {
	transform: rotate(90deg);
}
.grz-hero-slider__arrow--next .grz-icon,
[dir="rtl"] .grz-hero-slider__arrow--prev .grz-icon {
	transform: rotate(-90deg);
}
[dir="rtl"] .grz-hero-slider__arrow--next .grz-icon {
	transform: rotate(90deg);
}
@media (max-width: 1024px) {
	.grz-home.has-ambient::before,
.grz-home.has-ambient::after {
		width: min(66vw, 620px);
	}
}
@media (max-width: 760px) {
	.grz-hero-slider {
		padding-block-start: 12px;
	}

	.grz-hero-slider__viewport {
		--grz-hero-card-width: 100%;
		--grz-hero-side-width: 0px;
	}

	.grz-hero-slide {
		width: var(--grz-hero-card-width);
	}

	.grz-hero-slide.is-prev,
.grz-hero-slide.is-next {
		opacity: 0;
		transform: translateX(-50%) scale(0.94);
		pointer-events: none;
	}

	.grz-hero-slide__caption {
		max-width: 88%;
		padding-inline: 16px;
	}

	.grz-hero-slide__title {
		font-size: clamp(0.95rem, 4vw, 1.25rem);
	}

	.grz-hero-slider__arrow,
.grz-home.has-ambient::before,
.grz-home.has-ambient::after {
		display: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	.grz-hero-slide {
		transition: none;
	}
}
section[data-grz-featured-variant="accent-frame"] {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: 16px 28px;
	background:
		radial-gradient(620px 250px at 93% 0%, rgba(91, 151, 255, 0.075), transparent 73%),
		radial-gradient(460px 220px at 2% 100%, rgba(8, 104, 242, 0.045), transparent 72%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 254, 0.95));
}
section[data-grz-featured-variant="accent-frame"]::before,
section[data-grz-featured-variant="accent-frame"]::after {
	position: absolute;
	z-index: 0;
	width: 86px;
	height: 86px;
	background-image: radial-gradient(circle, rgba(8, 104, 242, 0.18) 0.9px, transparent 1px);
	background-size: 7px 7px;
	content: "";
	pointer-events: none;
}
section[data-grz-featured-variant="accent-frame"]::before {
	inset-inline-start: -20px;
	top: -25px;
	-webkit-mask-image: linear-gradient(135deg, #000 8%, transparent 72%);
	mask-image: linear-gradient(135deg, #000 8%, transparent 72%);
}
section[data-grz-featured-variant="accent-frame"]::after {
	inset-inline-end: -18px;
	bottom: -25px;
	-webkit-mask-image: linear-gradient(315deg, #000 8%, transparent 72%);
	mask-image: linear-gradient(315deg, #000 8%, transparent 72%);
}
section[data-grz-featured-variant="accent-frame"] > .grz-container {
	position: relative;
	z-index: 1;
}
/* ---- Section header ----------------------------------------------------- */
section[data-grz-featured-variant="accent-frame"] .grz-home-section__head--compact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px 16px;
	margin-bottom: 14px;
}
section[data-grz-featured-variant="accent-frame"] .grz-home-section__intro {
	min-width: 0;
	max-width: 680px;
}
section[data-grz-featured-variant="accent-frame"] .grz-home-section__title {
	margin: 0;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.25;
	color: var(--grz-ink);
}
section[data-grz-featured-variant="accent-frame"] .grz-home-section__desc {
	margin: 3px 0 0;
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--grz-muted);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
section[data-grz-featured-variant="accent-frame"] .grz-home-section__more--button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: none;
	padding: 8px 15px;
	border-radius: 999px;
	background: var(--grz-blue);
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: var(--grz-shadow-blue);
	transition: background var(--grz-transition), transform var(--grz-transition), box-shadow var(--grz-transition);
}
section[data-grz-featured-variant="accent-frame"] .grz-home-section__more--button:hover {
	background: var(--grz-blue-dark);
	transform: translateY(-1px);
}
section[data-grz-featured-variant="accent-frame"] .grz-home-section__more--button .grz-icon {
	width: 13px;
	height: 13px;
	transition: transform var(--grz-transition);
}
section[data-grz-featured-variant="accent-frame"] .grz-home-section__more--button:hover .grz-icon {
	transform: translateX(3px);
}
section[data-grz-featured-variant="accent-frame"] .grz-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
/* ---- Grid ---------------------------------------------------------------- */
.grz-fx-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
/* ---- Card ----------------------------------------------------------------
 * Per-card CSS custom properties are injected inline by PHP:
 * --grz-offer-accent / -dark / -light / -rgb.
 */
.grz-fx-card {
	--grz-fx-accent: var(--grz-offer-accent, var(--grz-blue));
	--grz-fx-accent-dark: var(--grz-offer-accent-dark, var(--grz-blue-dark));
	--grz-fx-accent-light: var(--grz-offer-accent-light, var(--grz-blue-soft));
	--grz-fx-accent-rgb: var(--grz-offer-accent-rgb, 8, 104, 242);
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--grz-line);
	background: var(--grz-surface);
	overflow: hidden;
	text-decoration: none;
	box-shadow: var(--grz-shadow-xs);
	transition: transform var(--grz-transition), border-color var(--grz-transition), box-shadow var(--grz-transition);
}
/* Identity strip: the card announces its own artwork color. */
.grz-fx-card::before {
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--grz-fx-accent-dark), var(--grz-fx-accent) 55%, var(--grz-fx-accent-light));
	content: "";
	pointer-events: none;
}
.grz-fx-card:hover,
.grz-fx-card:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(var(--grz-fx-accent-rgb), 0.55);
	box-shadow: 0 12px 26px rgba(var(--grz-fx-accent-rgb), 0.20), var(--grz-shadow-xs);
}
.grz-fx-card:focus-visible {
	outline: 2px solid rgba(var(--grz-fx-accent-rgb), 0.9);
	outline-offset: 2px;
}
/* ---- Main zone ------------------------------------------------------------ */
.grz-fx-main {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
	flex: 1 1 auto;
}
.grz-fx-art {
	position: relative;
	flex: none;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background:
		radial-gradient(120% 120% at 18% 12%, rgba(255, 255, 255, 0.34), transparent 52%),
		linear-gradient(155deg, var(--grz-fx-accent-dark), var(--grz-fx-accent));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}
.grz-fx-thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.grz-fx-card:hover .grz-fx-thumb {
	transform: scale(1.07);
}
.grz-fx-info {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
	flex: 1 1 auto;
}
.grz-fx-head {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}
.grz-fx-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--grz-fx-accent-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}
.grz-fx-flag {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	flex: none;
	margin-inline-start: auto;
	padding: 2px 7px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0.02em;
	white-space: nowrap;
}
.grz-fx-flag--deal {
	background: var(--grz-red);
	color: #fff;
	box-shadow: 0 3px 8px rgba(242, 61, 79, 0.28);
}
.grz-fx-flag--promo {
	background: rgba(var(--grz-fx-accent-rgb), 0.14);
	color: var(--grz-fx-accent-dark);
}
.grz-fx-flag--hot {
	background: var(--grz-blue-soft);
	color: var(--grz-blue);
}
.grz-fx-flag__icon {
	width: 10px;
	height: 10px;
}
.grz-fx-title {
	font-weight: 650;
	color: var(--grz-ink);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: calc(2 * 1.35em);
	overflow-wrap: anywhere;
}
/* ---- Price footer ---------------------------------------------------------- */
.grz-fx-footer {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	border-top: 1px solid var(--grz-line);
	background: linear-gradient(180deg, #ffffff, var(--grz-blue-mist));
}
.grz-fx-instant {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex: none;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--grz-blue-soft);
	color: var(--grz-blue);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
}
.grz-fx-instant__icon {
	width: 10px;
	height: 10px;
}
.grz-fx-price {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 6px;
	margin-inline-start: auto;
	min-width: 0;
	flex-wrap: wrap;
	row-gap: 0;
}
.grz-fx-price__from {
	font-size: 11px;
	font-weight: 600;
	color: var(--grz-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.grz-fx-price__was {
	font-size: 11px;
	color: var(--grz-muted-light);
	text-decoration: line-through;
	white-space: nowrap;
}
.grz-fx-price__was .amount,
.grz-fx-price__was bdi {
	color: inherit;
	font-weight: 500;
}
.grz-fx-price__now {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--grz-fx-accent-dark);
	white-space: nowrap;
}
.grz-fx-price__now .amount,
.grz-fx-price__now bdi {
	color: inherit;
}
/* ---- Responsive ------------------------------------------------------------ */
@media (max-width: 1180px) {
	.grz-fx-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
@media (max-width: 920px) {
	.grz-fx-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}
}
@media (max-width: 640px) {
	.grz-fx-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.grz-fx-main {
		gap: 8px;
		padding: 11px 9px 8px;
	}

	.grz-fx-art {
		width: 58px;
	}

	.grz-fx-title {
		font-size: 12.5px;
	}

	.grz-fx-instant {
		display: none;
	}

	.grz-fx-price {
		margin-inline-start: 0;
		justify-content: flex-start;
	}

	.grz-fx-footer {
		min-height: 36px;
		padding: 6px 9px;
	}

	section[data-grz-featured-variant="accent-frame"] .grz-home-section__head--compact {
		flex-wrap: wrap;
	}

	section[data-grz-featured-variant="accent-frame"] .grz-home-section__desc {
		-webkit-line-clamp: 2;
	}
}
@media (max-width: 400px) {
	.grz-fx-art {
		width: 50px;
	}

	.grz-fx-eyebrow {
		display: none;
	}

	.grz-fx-flag {
		margin-inline-start: 0;
	}

	.grz-fx-price__now {
		font-size: 14px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.grz-fx-card,
.grz-fx-thumb,
section[data-grz-featured-variant="accent-frame"] .grz-home-section__more--button,
section[data-grz-featured-variant="accent-frame"] .grz-home-section__more--button .grz-icon {
		transition: none;
	}

	.grz-fx-card:hover,
.grz-fx-card:focus-visible,
.grz-fx-card:hover .grz-fx-thumb {
		transform: none;
	}
}
/* ---- Shared section header ------------------------------------------------ */
.grz-v5-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px 16px;
}
.grz-v5-intro {
	min-width: 0;
	max-width: 680px;
}
.grz-v5-title {
	margin: 0;
	font-weight: 800;
	line-height: 1.25;
	color: var(--grz-ink);
}
.grz-v5-desc {
	margin: 3px 0 0;
	color: var(--grz-muted);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.grz-v5-btn {
	flex: none;
	background: var(--grz-blue);
	color: #fff;
	box-shadow: var(--grz-shadow-blue);
	transition: background var(--grz-transition), transform var(--grz-transition), color var(--grz-transition), border-color var(--grz-transition);
}
.grz-v5-btn:hover {
	background: var(--grz-blue-dark);
	color: #fff;
	transform: translateY(-1px);
}
.grz-v5-btn--ghost {
	background: transparent;
	border: 1px solid var(--grz-line-strong);
	color: var(--grz-blue);
	box-shadow: none;
}
.grz-v5-btn--ghost:hover {
	background: var(--grz-blue-soft);
	border-color: var(--grz-blue);
	color: var(--grz-blue-dark);
	transform: translateY(-1px);
}
.grz-v5-btn .grz-icon {
	width: 13px;
	height: 13px;
	transition: transform var(--grz-transition);
}
.grz-v5-btn:hover .grz-icon {
	transform: translateX(3px);
}
.grz-v5-btn:focus-visible {
	outline: 2px solid var(--grz-blue);
	outline-offset: 2px;
}
.grz-pg-section .grz-icon svg,
.grz-cat-section .grz-icon svg,
.grz-news-section .grz-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
/* ---- Product grid (second "Hot Deals" section) ----------------------------- */
/* The title link stretches over the whole card; the Add button sits above it. */
/* WooCommerce injects a "View cart" link after a successful AJAX add. */
/* ---- Category tiles --------------------------------------------------------
 * Full-bleed soft band so the page rhythm alternates: white → band → white.
 */
.grz-cat-grid {
	display: grid;
}
.grz-cat-tile {
	position: relative;
	text-decoration: none;
	transition: transform var(--grz-transition), box-shadow var(--grz-transition);
}
.grz-cat-tile:focus-visible {
	outline: 2px solid var(--grz-blue);
	outline-offset: 2px;
}
.grz-cat-tile__media {
	display: grid;
	place-items: center;
}
.grz-cat-tile__image {
	width: 100%;
	height: 100%;
	transition: transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* Scrim tinted from the tile's own thumbnail colors. */
.grz-cat-tile__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(var(--grz-cat-dark-rgb, 5, 56, 142), 0) 34%,
		rgba(var(--grz-cat-dark-rgb, 5, 56, 142), 0.52) 66%,
		rgba(var(--grz-cat-dark-rgb, 5, 56, 142), 0.90) 100%
	);
	pointer-events: none;
}
.grz-cat-tile__info {
	inset-inline: 11px;
	display: flex;
	flex-direction: column;
	padding-inline-end: 34px;
}
.grz-cat-tile__name {
	overflow-wrap: anywhere;
}
.grz-cat-tile__count {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.grz-cat-tile__go {
	inset-inline-end: 9px;
	bottom: 9px;
	display: grid;
	place-items: center;
	-webkit-backdrop-filter: blur(4px);
	transition: background var(--grz-transition), transform var(--grz-transition);
}
.grz-cat-tile__go .grz-icon {
	width: 12px;
	height: 12px;
}
/* ---- News cards ------------------------------------------------------------ */
.grz-news-grid {
	display: grid;
}
.grz-news-card {
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--grz-line);
	background: var(--grz-surface);
	transition: transform var(--grz-transition), border-color var(--grz-transition), box-shadow var(--grz-transition);
}
.grz-news-card__media {
	position: relative;
	display: block;
	background: var(--grz-blue-mist);
	overflow: hidden;
}
.grz-news-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.grz-news-card:hover .grz-news-card__image {
	transform: scale(1.04);
}
.grz-news-card__fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(160deg, var(--grz-blue-deep), var(--grz-blue));
}
.grz-news-card__fallback-icon {
	width: 38px;
	height: 38px;
	color: rgba(255, 255, 255, 0.55);
}
.grz-news-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
}
.grz-news-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--grz-muted);
	min-width: 0;
}
.grz-news-card__tag {
	background: var(--grz-blue-soft);
	color: var(--grz-blue);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.grz-news-card__title {
	margin: 0;
	font-weight: 750;
}
.grz-news-card__title a {
	color: var(--grz-ink);
	text-decoration: none;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow-wrap: anywhere;
	transition: color var(--grz-transition);
}
.grz-news-card__title a:hover {
	color: var(--grz-blue-dark);
}
.grz-news-card__title a:focus-visible {
	outline: 2px solid var(--grz-blue);
	outline-offset: 2px;
	border-radius: 4px;
}
.grz-news-card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 4px;
	font-weight: 700;
	color: var(--grz-blue);
	text-decoration: none;
	transition: color var(--grz-transition);
}
.grz-news-card__more .grz-icon {
	width: 12px;
	height: 12px;
	transition: transform var(--grz-transition);
}
.grz-news-card__more:hover {
	color: var(--grz-blue-dark);
}
.grz-news-card__more:hover .grz-icon {
	transform: translateX(3px);
}
.grz-news-card__more:focus-visible {
	outline: 2px solid var(--grz-blue);
	outline-offset: 2px;
	border-radius: 4px;
}
/* ---- Responsive ------------------------------------------------------------ */
@media (max-width: 1180px) {

	.grz-cat-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
@media (max-width: 920px) {
	.grz-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.grz-cat-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width: 680px) {

	.grz-cat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.grz-v5-head {
		flex-wrap: wrap;
	}

	.grz-v5-desc {
		-webkit-line-clamp: 2;
	}
}
@media (max-width: 400px) {

	.grz-cat-tile__name {
		font-size: 12.5px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.grz-cat-tile__go,
.grz-news-card__image,
.grz-news-card__more .grz-icon,
.grz-v5-btn,
.grz-v5-btn .grz-icon {
		transition: none;
	}

	.grz-cat-tile:hover,
.grz-news-card:hover,
.grz-cat-tile:hover .grz-cat-tile__image,
.grz-news-card:hover .grz-news-card__image {
		transform: none;
	}
}
.grz-home-section + .grz-home-section {
	border-top: 1px solid rgba(214, 225, 238, 0.62);
}
.grz-v5-title,
.grz-home-section__title {
	font-size: clamp(1.28rem, 2vw, 1.72rem);
	letter-spacing: -0.035em;
}
.grz-v5-desc,
.grz-home-section__desc {
	max-width: 650px;
	font-size: 0.78rem;
	line-height: 1.55;
}
.grz-v5-btn,
.grz-home-section__more--button {
	font-size: 0.72rem;
}
/* Compact product directory cards. */
/* The lead offer strip remains distinctive while becoming more compact. */
.grz-home-section--compact-offers .grz-home-section__head {
	margin-bottom: 16px;
}
.grz-fx-grid {
	gap: 10px;
}
.grz-fx-card {
	min-height: 112px;
	border-radius: 8px;
}
.grz-fx-main {
	padding: 11px;
}
.grz-fx-art {
	width: 58px;
	height: 58px;
	border-radius: 7px;
}
.grz-fx-title {
	font-size: 0.76rem;
	line-height: 1.35;
}
.grz-fx-footer {
	padding: 8px 11px;
}
/* Horizontal category directory: easier to scan than tall promotional tiles. */
.grz-cat-tile {
	display: grid;
	align-items: center;
	gap: 11px;
	aspect-ratio: auto;
	border: 1px solid #dfe7f1;
	background: #fff;
	isolation: auto;
	overflow: hidden;
}
.grz-cat-tile:hover,
.grz-cat-tile:focus-visible {
	border-color: rgba(8, 104, 242, 0.36);
	box-shadow: 0 8px 20px rgba(24, 50, 85, 0.085);
	transform: translateY(-1px);
}
.grz-cat-tile__media {
	position: relative;
	inset: auto;
	border: 1px solid #e1e8f1;
	background: linear-gradient(145deg, #edf4ff, #f7f9fc);
	overflow: hidden;
}
.grz-cat-tile__image {
	object-fit: cover;
}
.grz-cat-tile:hover .grz-cat-tile__image {
	transform: scale(1.035);
}
.grz-cat-tile__placeholder {
	width: 28px;
	height: 28px;
	color: var(--grz-blue);
}
.grz-cat-tile__scrim {
	display: none;
}
.grz-cat-tile__info {
	position: relative;
	inset: auto;
	bottom: auto;
	gap: 4px;
	min-width: 0;
	padding: 0;
}
.grz-cat-tile__name {
	color: #1d2a40;
	font-weight: 800;
	text-shadow: none;
}
.grz-cat-tile__count {
	color: #718096;
	font-weight: 650;
}
.grz-cat-tile__go {
	position: relative;
	inset: auto;
	border: 1px solid #dce6f2;
	background: #f3f7fc;
	color: var(--grz-blue);
	backdrop-filter: none;
}
.grz-cat-tile:hover .grz-cat-tile__go {
	background: var(--grz-blue);
	color: #fff;
	transform: translateX(1px);
}
/* Editorial cards use compact media and tighter copy. */
.grz-news-card:hover {
	border-color: rgba(8, 104, 242, 0.34);
	box-shadow: 0 8px 20px rgba(24, 50, 85, 0.085);
	transform: translateY(-1px);
}
.grz-news-card__meta {
	font-size: 0.61rem;
}
.grz-news-card__tag {
	padding: 3px 6px;
	border-radius: 4px;
}
.grz-news-card__excerpt {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	color: #68778c;
}
.grz-news-card__more {
	min-height: 30px;
	font-size: 0.67rem;
}
@media (max-width: 860px) {
	.grz-cat-grid,
.grz-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 600px) {
	.grz-home-section {
		padding-block: 26px;
	}

	.grz-v5-head,
.grz-home-section__head {
		align-items: flex-end;
		gap: 12px;
	}

	.grz-v5-desc,
.grz-home-section__desc {
		display: none;
	}

	.grz-cat-grid,
.grz-news-grid {
		grid-template-columns: 1fr;
	}

	.grz-cat-tile {
		grid-template-columns: 64px minmax(0, 1fr) 30px;
		min-height: 82px;
	}

	.grz-cat-tile__media {
		width: 64px;
		height: 64px;
	}

	.grz-news-card {
		display: grid;
		grid-template-columns: 116px minmax(0, 1fr);
	}

	.grz-news-card__media {
		min-height: 100%;
		aspect-ratio: auto;
	}

	.grz-news-card__body {
		padding: 12px;
	}

	.grz-news-card__excerpt {
		display: none;
	}
}
@media (max-width: 380px) {
	.grz-news-card {
		grid-template-columns: 96px minmax(0, 1fr);
	}
}
@media (prefers-reduced-motion: reduce) {
	.grz-cat-tile__image {
		transition: none;
	}
}
.grz-v5-btn,
.grz-home-section__more--button {
	box-sizing: border-box;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 16px;
	border-radius: var(--grz-ui-radius-control);
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
}
.grz-v5-btn,
.grz-home-section__more--button {
	display: inline-flex;
}
.grz-v5-btn > span,
.grz-home-section__more--button > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.15;
}
.home .grz-site-content {
	background: #fff;
}
.grz-home-section {
	padding-block: clamp(26px, 3.5vw, 46px);
}
.grz-home-section + .grz-home-section {
	border-top-color: rgba(218, 227, 239, 0.72);
}
.grz-v5-head,
.grz-home-section__head {
	margin-bottom: 16px;
}
.grz-cat-tile__go {
	width: 27px;
	height: 27px;
	border-radius: 5px;
}
.grz-news-card {
	box-shadow: 0 3px 11px rgba(24, 50, 85, 0.04);
}
@media (max-width: 1120px) {

	.grz-cat-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width: 720px) {

	.grz-cat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 560px) {

	.grz-cat-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 560px) {

	.grz-news-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 560px) {

	.grz-cat-tile {
		grid-template-columns: 60px minmax(0, 1fr) 28px;
	}
}
@media (max-width: 560px) {

	.grz-cat-tile__media {
		width: 60px;
		height: 60px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.grz-cat-tile {
		transition: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	.grz-news-card {
		transition: none;
	}
}
.grz-major-storefront {
	--grz-major-bg: #f4f7fb;
	--grz-major-panel: #ffffff;
	--grz-major-panel-hover: #f7faff;
	--grz-major-border: #dce5f0;
	--grz-major-line: #e8eef6;
	--grz-major-text: #172033;
	--grz-major-muted: #68778c;
	--grz-major-accent: var(--grz-blue, #0868f2);
	position: relative;
	isolation: isolate;
	padding-block: clamp(34px, 4.5vw, 62px);
	border-block: 1px solid #e8eef6;
	background:
		radial-gradient(760px 260px at 8% 0%, rgba(8, 104, 242, 0.075), transparent 72%),
		linear-gradient(180deg, #f8faff 0%, #f3f6fa 100%);
	color: var(--grz-major-text);
}
.grz-major-storefront--light {
	--grz-major-bg: #f4f7fb;
	--grz-major-panel: #ffffff;
	--grz-major-panel-hover: #f7faff;
	--grz-major-border: #dce5f0;
	--grz-major-line: #e8eef6;
	--grz-major-text: #172033;
	--grz-major-muted: #68778c;
}
/* The optional dark choice remains available in Theme Settings, but upgrades
 * are migrated to the light presentation requested for the live storefront. */
.grz-major-storefront--dark {
	--grz-major-bg: #171d27;
	--grz-major-panel: #202938;
	--grz-major-panel-hover: #252f40;
	--grz-major-border: rgba(255, 255, 255, 0.085);
	--grz-major-line: rgba(255, 255, 255, 0.075);
	--grz-major-text: #f6f8fc;
	--grz-major-muted: #9facbe;
	--grz-major-accent: #2682ff;
	border-block-color: rgba(255, 255, 255, 0.05);
	background:
		radial-gradient(800px 300px at 8% 0%, rgba(38, 130, 255, 0.16), transparent 70%),
		linear-gradient(145deg, #171d27 0%, #1b222d 58%, #161c25 100%);
}
.grz-major-storefront--dark .grz-major-panel {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.grz-major-storefront--dark .grz-major-panel:hover {
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}
.grz-major-storefront--dark .grz-major-panel__head,
.grz-major-storefront--dark .grz-major-panel__more {
	background: transparent;
}
.grz-major-storefront--dark .grz-major-product__media {
	background: rgba(255, 255, 255, 0.05);
}
.grz-major-storefront__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	min-width: 0;
}
.grz-major-panel {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--grz-major-border);
	border-block-end: 1px solid color-mix(in srgb, var(--grz-major-accent) 52%, var(--grz-major-border));
	border-radius: 8px;
	background: var(--grz-major-panel);
	box-shadow: 0 8px 24px rgba(31, 59, 96, 0.065);
}
.grz-major-panel:hover {
	border-color: #cedae9;
	box-shadow: 0 11px 30px rgba(31, 59, 96, 0.085);
}
.grz-major-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 66px;
	padding: 14px 15px;
	border-bottom: 1px solid var(--grz-major-line);
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.grz-major-panel__title-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}
.grz-major-panel__icon {
	flex: 0 0 auto;
	display: inline-grid;
	place-items: center;
	width: 35px;
	height: 35px;
	border: 1px solid rgba(38, 130, 255, 0.32);
	border-color: color-mix(in srgb, var(--grz-major-accent) 32%, transparent);
	border-radius: 7px;
	background: color-mix(in srgb, var(--grz-major-accent) 9%, #ffffff);
	color: var(--grz-major-accent);
}
.grz-major-panel__icon .grz-icon {
	width: 18px;
	height: 18px;
}
.grz-major-panel__title-wrap > div {
	display: grid;
	gap: 2px;
	min-width: 0;
}
.grz-major-panel__title-wrap h3,
.grz-major-panel__title-wrap p {
	margin: 0;
}
.grz-major-panel__title-wrap h3 {
	color: var(--grz-major-text);
	font-size: 15px;
	font-weight: 850;
	line-height: 1.25;
	letter-spacing: -0.015em;
	text-transform: uppercase;
}
.grz-major-panel__title-wrap p {
	max-width: 360px;
	overflow: hidden;
	color: var(--grz-major-muted);
	font-size: 10.5px;
	font-weight: 560;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.grz-major-panel__more {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 36px;
	padding: 7px 9px;
	border: 1px solid var(--grz-major-border);
	border-radius: 6px;
	background: #f8fafd;
	color: color-mix(in srgb, var(--grz-major-text) 82%, var(--grz-major-muted));
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}
.grz-major-panel__more .grz-icon {
	width: 15px;
	height: 15px;
	color: var(--grz-major-accent);
}
.grz-major-panel__more:hover,
.grz-major-panel__more:focus-visible {
	border-color: color-mix(in srgb, var(--grz-major-accent) 38%, transparent);
	background: color-mix(in srgb, var(--grz-major-accent) 10%, transparent);
	color: var(--grz-major-text);
}
.grz-major-panel__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 12px;
	padding: 7px 14px 10px;
}
.grz-major-product {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-width: 0;
	min-height: 72px;
	padding: 10px 2px;
	border-bottom: 1px solid var(--grz-major-line);
	color: var(--grz-major-text);
	text-decoration: none;
}
.grz-major-product:nth-last-child(-n + 3) {
	border-bottom-color: transparent;
}
.grz-major-product__media {
	display: inline-grid;
	place-items: center;
	width: 50px;
	height: 50px;
	overflow: hidden;
	border: 1px solid var(--grz-major-border);
	border-radius: 7px;
	background: #f6f8fb;
}
.grz-major-product__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}
.grz-major-product__placeholder {
	display: inline-grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--grz-major-accent);
}
.grz-major-product__placeholder .grz-icon {
	width: 22px;
	height: 22px;
}
.grz-major-product__copy {
	display: grid;
	gap: 4px;
	min-width: 0;
}
.grz-major-product__copy strong {
	display: -webkit-box;
	overflow: hidden;
	color: var(--grz-major-text);
	font-size: 11.5px;
	font-weight: 760;
	line-height: 1.32;
	letter-spacing: -0.006em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.grz-major-product__copy small {
	overflow: hidden;
	color: var(--grz-major-muted);
	font-size: 9.5px;
	font-weight: 560;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.grz-major-product__price {
	grid-column: 2;
	color: var(--grz-major-accent);
	font-size: 10.5px;
	font-weight: 800;
	line-height: 1.15;
}
.grz-major-product__price del {
	display: none;
}
.grz-major-product__arrow {
	display: none;
	color: var(--grz-major-accent);
}
.grz-major-product:hover,
.grz-major-product:focus-visible {
	border-radius: 6px;
	background: var(--grz-major-panel-hover);
	color: var(--grz-major-text);
	outline: none;
}
.grz-major-product:focus-visible {
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--grz-major-accent) 26%, transparent);
}
.grz-major-product:hover .grz-major-product__copy strong,
.grz-major-product:focus-visible .grz-major-product__copy strong {
	color: var(--grz-major-accent);
}
.grz-major-product:hover .grz-major-product__image,
.grz-major-product:focus-visible .grz-major-product__image {
	transform: scale(1.045);
}
.grz-major-panel__empty {
	display: grid;
	place-items: center;
	gap: 10px;
	min-height: 180px;
	padding: 28px;
	color: var(--grz-major-muted);
	text-align: center;
}
.grz-major-panel__empty > span {
	color: var(--grz-major-accent);
}
.grz-major-panel__empty p {
	max-width: 380px;
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
}
/* Refined secondary homepage sections. */
.grz-cat-section,
.grz-news-section {
	padding-block: clamp(30px, 4vw, 54px);
}
.grz-cat-section {
	background: #f5f7fa;
}
.grz-cat-section .grz-v5-head,
.grz-news-section .grz-v5-head {
	margin-block-end: 18px;
}
.grz-cat-section .grz-v5-title,
.grz-news-section .grz-v5-title {
	font-size: clamp(22px, 2vw, 31px);
	letter-spacing: -0.03em;
}
.grz-cat-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}
.grz-cat-tile {
	grid-template-columns: 64px minmax(0, 1fr) 28px;
	min-height: 82px;
	padding: 8px 9px;
	border-radius: 7px;
	box-shadow: 0 2px 8px rgba(24, 50, 85, 0.035);
}
.grz-cat-tile__media {
	width: 64px;
	height: 64px;
	border-radius: 7px;
}
.grz-cat-tile__name {
	display: -webkit-box;
	overflow: hidden;
	font-size: 12px;
	line-height: 1.32;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.grz-cat-tile__count {
	font-size: 10px;
}
.grz-news-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}
.grz-news-card {
	display: grid;
	grid-template-columns: minmax(126px, 0.78fr) minmax(0, 1.22fr);
	min-height: 178px;
	overflow: hidden;
	border-radius: 8px;
}
.grz-news-card__media {
	min-height: 100%;
	aspect-ratio: auto;
}
.grz-news-card__body {
	align-content: start;
	gap: 8px;
	padding: 14px;
}
.grz-news-card__title {
	display: -webkit-box;
	overflow: hidden;
	font-size: 13px;
	line-height: 1.38;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.grz-news-card__excerpt {
	font-size: 10.5px;
	line-height: 1.5;
	-webkit-line-clamp: 3;
}
@media (max-width: 1260px) {
	.grz-major-panel__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.grz-major-product:nth-last-child(-n + 3) {
		border-bottom-color: var(--grz-major-line);
	}

	.grz-major-product:nth-last-child(-n + 2) {
		border-bottom-color: transparent;
	}

	.grz-cat-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.grz-news-card {
		grid-template-columns: 116px minmax(0, 1fr);
	}
}
@media (max-width: 980px) {
	.grz-major-storefront__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.grz-major-panel__items {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.grz-major-product:nth-last-child(-n + 2) {
		border-bottom-color: var(--grz-major-line);
	}

	.grz-major-product:nth-last-child(-n + 3) {
		border-bottom-color: transparent;
	}

	.grz-cat-grid,
.grz-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 720px) {
	.grz-major-storefront {
		padding-block: 28px;
	}

	.grz-major-panel__title-wrap p {
		display: none;
	}

	.grz-major-panel__head {
		min-height: 58px;
		padding: 11px 12px;
	}

	.grz-major-panel__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 10px;
		padding-inline: 12px;
	}

	.grz-major-product:nth-last-child(-n + 3) {
		border-bottom-color: var(--grz-major-line);
	}

	.grz-major-product:nth-last-child(-n + 2) {
		border-bottom-color: transparent;
	}

	.grz-news-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}
@media (max-width: 520px) {

	.grz-major-panel__icon,
.grz-major-panel__more span {
		display: none;
	}

	.grz-major-panel__more {
		width: 34px;
		min-height: 34px;
		padding: 0;
		border-color: var(--grz-major-border);
	}

	.grz-major-panel__items {
		grid-template-columns: minmax(0, 1fr);
	}

	.grz-major-product,
.grz-major-product:nth-last-child(-n + 2) {
		border-bottom-color: var(--grz-major-line);
	}

	.grz-major-product:last-child {
		border-bottom-color: transparent;
	}

	.grz-major-product__arrow {
		display: inline-flex;
	}

	.grz-cat-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.grz-cat-tile {
		grid-template-columns: 58px minmax(0, 1fr) 28px;
		min-height: 76px;
	}

	.grz-cat-tile__media {
		width: 58px;
		height: 58px;
	}

	.grz-news-card {
		grid-template-columns: 108px minmax(0, 1fr);
		min-height: 145px;
	}

	.grz-news-card__excerpt {
		display: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	.grz-major-product__image {
		transition: none;
	}
}
/* Keep the mobile storefront dense: the category link exposes the remaining products. */
@media (max-width: 720px) {
	.grz-major-panel__items .grz-major-product:nth-child(n + 7) {
		display: none;
	}
}
.grz-cat-section .grz-v5-head {
	display: none;
}
.grz-home-section--featured-offers {
	position: relative;
	z-index: 1;
	padding-block: 16px 22px;
	background: rgba(255, 255, 255, 0.72);
}
.grz-home.has-ambient .grz-home-section--featured-offers {
	background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.9));
}
.grz-home-section--featured-offers .grz-home-section__head {
	margin-bottom: 8px;
}
.grz-home-section--featured-offers .grz-home-section__title {
	font-size: clamp(1.16rem, 1.8vw, 1.5rem);
	letter-spacing: -0.02em;
}
.grz-home-section--featured-offers .grz-home-section__desc {
	max-width: 660px;
	font-size: 0.79rem;
}
.grz-home-section--featured-offers .grz-home-section__more--button {
	min-height: 36px;
	padding: 7px 11px;
	border-radius: 6px;
}
.grz-home-section--featured-offers + .grz-major-storefront {
	margin-top: 0;
}
/* Never collapse the restored category and news blocks because a prior
 * homepage stylesheet expected a different product-section composition. */
.grz-home > .grz-cat-section,
.grz-home > .grz-news-section {
	position: relative;
	visibility: visible;
	opacity: 1;
}
.grz-news-grid--empty {
	grid-template-columns: 1fr;
}
.grz-news-card--empty {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	min-height: 112px;
	padding: 20px;
	border-style: dashed;
	box-shadow: none;
}
.grz-news-card--empty:hover {
	transform: none;
	box-shadow: none;
}
.grz-news-card__empty-icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(8, 104, 242, 0.2);
	border-radius: 8px;
	background: #eef5ff;
	color: var(--grz-blue);
}
.grz-news-card__empty-icon .grz-icon {
	width: 22px;
	height: 22px;
}
.grz-news-card--empty h3,
.grz-news-card--empty p {
	margin: 0;
}
.grz-news-card--empty h3 {
	font-size: 0.94rem;
	line-height: 1.35;
}
.grz-news-card--empty p {
	margin-top: 4px;
	color: #68778c;
	font-size: 0.74rem;
	line-height: 1.5;
}
@media (max-width: 600px) {
	.grz-home-section--featured-offers {
		padding-block: 24px 28px;
	}

	.grz-home-section--featured-offers .grz-home-section__head {
		align-items: center;
	}

	.grz-home-section--featured-offers .grz-home-section__desc {
		display: none;
	}

	.grz-news-card--empty {
		min-height: 96px;
		padding: 15px;
	}
}
.grz-home {
	--grz-home-surface: rgba(255, 255, 255, 0.92);
	--grz-home-surface-solid: #ffffff;
	--grz-home-surface-soft: rgba(249, 251, 254, 0.88);
	--grz-home-line: color-mix(in srgb, var(--grz-hero-ambient, var(--grz-blue)) 12%, #dce5f0);
	--grz-home-line-strong: color-mix(in srgb, var(--grz-hero-ambient, var(--grz-blue)) 22%, #ccd8e8);
	--grz-home-ink: #172033;
	--grz-home-muted: #68778c;
	isolation: isolate;
}
.grz-home.has-ambient {
	background-color: color-mix(in srgb, var(--grz-hero-ambient) 7%, #f5f8fc);
	background-image:
		radial-gradient(ellipse 92% 520px at 50% -74px, color-mix(in srgb, var(--grz-hero-ambient) 20%, #ffffff) 0%, color-mix(in srgb, var(--grz-hero-ambient) 8%, #f8fbff) 46%, transparent 80%),
		linear-gradient(180deg, color-mix(in srgb, var(--grz-hero-ambient) 8%, #f7f9fd) 0%, #f5f7fb 34%, #f5f7fb 66%, color-mix(in srgb, var(--grz-hero-ambient) 6%, #f7f9fd) 100%);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.grz-home.has-ambient::before,
.grz-home.has-ambient::after {
	content: none;
	display: none;
}
.grz-home > * {
	position: relative;
	z-index: 1;
}
/* One continuous homepage canvas. Section identity now comes from content and
 * headings, not unrelated full-width colors. */
.grz-home :is(
	.grz-home-section--featured-offers,
	.grz-major-storefront,
	.grz-cat-section,
	.grz-news-section,
	.grz-home__page-content
) {
	border-block: 0;
	background: transparent;
}
.grz-home .grz-home-section + .grz-home-section {
	border-top: 0;
}
.grz-home :is(
	.grz-home-section--featured-offers,
	.grz-major-storefront,
	.grz-cat-section,
	.grz-news-section
) {
	padding-block: clamp(28px, 4vw, 52px);
}
.grz-home .grz-home-section--featured-offers + .grz-major-storefront,
.grz-home .grz-major-storefront + .grz-cat-section,
.grz-home .grz-cat-section + .grz-news-section {
	padding-block-start: clamp(12px, 2vw, 24px);
}
/* Unified heading system across variation offers, Direct Top-Up / Cards,
 * categories and news. */
.grz-home :is(
	.grz-home-section__title,
	.grz-major-storefront__heading h2,
	.grz-v5-title
) {
	color: var(--grz-home-ink);
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	font-weight: 850;
	letter-spacing: -0.035em;
	line-height: 1.15;
}
.grz-home :is(
	.grz-home-section__desc,
	.grz-major-storefront__heading p,
	.grz-v5-desc
) {
	color: var(--grz-home-muted);
	font-size: 0.79rem;
	line-height: 1.55;
}
.grz-home :is(
	.grz-home-section__more--button,
	.grz-major-panel__more,
	.grz-v5-btn--ghost
) {
	min-height: 38px;
	border: 1px solid var(--grz-home-line);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 3px 10px rgba(24, 50, 85, 0.035);
	color: #4d5e75;
}
.grz-home :is(
	.grz-home-section__more--button,
	.grz-major-panel__more,
	.grz-v5-btn--ghost
):is(:hover, :focus-visible) {
	border-color: var(--grz-home-line-strong);
	background: #ffffff;
	color: var(--grz-blue);
}
/* Unified light surfaces. The approved product layouts and adaptive artwork
 * accents remain untouched; only their surrounding surface language is shared. */
.grz-home :is(
	.grz-major-panel,
	.grz-cat-tile,
	.grz-news-card
) {
	border-color: var(--grz-home-line);
	background: var(--grz-home-surface);
	box-shadow: 0 8px 24px rgba(31, 59, 96, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.grz-home :is(
	.grz-major-panel,
	.grz-cat-tile,
	.grz-news-card
):is(:hover, :focus-within, :focus-visible) {
	border-color: var(--grz-home-line-strong);
	box-shadow: 0 12px 30px rgba(31, 59, 96, 0.09);
}
.grz-home .grz-major-panel {
	border-block-end-color: var(--grz-home-line-strong);
}
.grz-home .grz-major-panel__head {
	border-bottom-color: var(--grz-home-line);
	background: var(--grz-home-surface-soft);
}
.grz-home .grz-major-product {
	border-bottom-color: color-mix(in srgb, var(--grz-home-line) 72%, transparent);
}
.grz-home .grz-major-product__media,
.grz-home .grz-cat-tile__media,
.grz-home .grz-news-card__fallback,
.grz-home .grz-news-card__empty-icon {
	border-color: var(--grz-home-line);
	background: color-mix(in srgb, var(--grz-hero-ambient, var(--grz-blue)) 6%, #f7f9fc);
}
.grz-home .grz-cat-tile__go,
.grz-home .grz-news-card__tag {
	border-color: var(--grz-home-line);
	background: color-mix(in srgb, var(--grz-hero-ambient, var(--grz-blue)) 7%, #f7f9fc);
	color: var(--grz-blue);
}
.grz-home .grz-news-card--empty {
	background: rgba(255, 255, 255, 0.74);
}
.grz-hero-slider,
.grz-hero-slider__viewport,
.grz-hero-slider__track,
.grz-hero-slide,
.grz-hero-slide.is-active,
.grz-hero-slide.is-prev,
.grz-hero-slide.is-next {
	box-shadow: none;
}
/* The two-slide carousel needs a decorative duplicate so the cyclic previous
 * preview remains visible on the left while the same real slide is the next
 * preview on the right. */
.grz-hero-slide--clone {
	user-select: none;
}
.grz-hero-slide--clone .grz-hero-slide__caption {
	display: none;
}
@media (max-width: 759px) {
	.grz-home.has-ambient {
		background-color: color-mix(in srgb, var(--grz-hero-ambient) 7%, #f4f7fc);
		background-image:
			radial-gradient(760px 420px at 50% -40px, color-mix(in srgb, var(--grz-hero-ambient) 16%, #ffffff) 0%, color-mix(in srgb, var(--grz-hero-ambient) 7%, #f7f9fd) 50%, transparent 80%),
			linear-gradient(180deg, color-mix(in srgb, var(--grz-hero-ambient) 7%, #f7f9fd), #f5f7fb 62%, color-mix(in srgb, var(--grz-hero-ambient) 6%, #f7f9fd));
	}

	.grz-home.has-ambient::before,
.grz-home.has-ambient::after {
		display: none;
	}

	.grz-home :is(
		.grz-home-section--featured-offers,
		.grz-major-storefront,
		.grz-cat-section,
		.grz-news-section
	) {
		padding-block: 25px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.grz-home.has-ambient {
		transition: none;
	}
}
@media (forced-colors: active) {
	.grz-home.has-ambient {
		background: Canvas;
	}

	.grz-home :is(.grz-major-panel, .grz-cat-tile, .grz-news-card) {
		border: 1px solid CanvasText;
		background: Canvas;
	}
}