/**
 * Popular Categories section (theme options).
 */
.spz-popular-categories__title {
	color: var(--color-text);
	font-family: var(--font-family);
	font-size: 2.121rem; /* 33.944px */
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	text-align: center;
	text-transform: uppercase;
}

.spz-popular-categories__title--with-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.spz-popular-categories__title-icon {
	display: inline-flex;
	flex-shrink: 0;
	line-height: 0;
}


.spz-popular-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem 1.5rem;
	justify-items: stretch;
}

.spz-pop-cat {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	max-width: 24.4375rem; /* 391px */
	height: 7.6875rem; /* 123px */
	padding: 0em 1.591rem; /* 10.183px 25.458px */
	flex-direction: row;
	justify-content: space-between;
	border-radius: 1.06075rem; /* 16.972px */
	border: 2px solid rgba(255, 255, 255, 0.1);
	background: #07046b;
	box-shadow: 0 0.636rem 2.551rem 0 rgba(0, 0, 0, 0.2);
	color: var(--color-text);
	text-decoration: none;
	overflow: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease;
	align-items: center;
}

.spz-pop-cat:hover {
	opacity: 0.92;
	text-decoration: none;
}

.spz-pop-cat__label {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.25rem;
	font-family: var(--font-family);
	font-size: 2.1215rem; /* 33.944px */
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}

.spz-pop-cat__label {
	background: linear-gradient(92deg, #EF330E 1.6%, #FFF 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.spz-pop-cat__word {
	display: inline-flex;
	white-space: nowrap;
}

.spz-pop-cat__label-first {
	color: var(--color-pop-cat-label-accent);
}

.spz-pop-cat__label-rest {
	color: var(--color-text);
}

.spz-pop-cat__icon {
	position: relative;
	z-index: 0;
	display: block;
	width: auto;
	height: 100%;
	max-height: 7rem;
	max-width: 55%;
	object-fit: contain;
	object-position: right bottom;

	/* For WebKit browsers */
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		black 150%
	);
	-webkit-mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;

	/* Standard */
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		black 150%
	);
	mask-size: 100% 100%;
	mask-repeat: no-repeat;
}

@media (max-width: 1200px) {
	.spz-popular-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spz-pop-cat {
		max-width: none;
	}
}

@media (max-width: 768px) {
	.spz-popular-categories__title {
		font-size: 1.823rem; /* 29.169px */
		font-style: normal;
		font-weight: 700;
		line-height: 120%;
	}

	.spz-popular-categories__title-icon svg {
		width: 2rem;
		height: 2rem;
	}

	.spz-popular-categories__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.spz-pop-cat {
		height: auto;
		min-height: 7.6875rem;
	}

	.spz-pop-cat__label {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.spz-pop-cat__label {
		font-size: 1.25rem;
	}
}