.wiix-product-group-showcase {
	/* --wiix-group-accent: #1677a8;
	--wiix-group-border: #c9e0ed;
	--wiix-group-soft: #eef9ff; */
	position: relative;
	isolation: isolate;
	box-sizing: border-box;
	width: 100%;
	margin: 25px 0 0 0;
	overflow: hidden;
	border: 1px solid var(--wiix-group-border);
	border-radius: 10px;
	padding: 28px;
	background: linear-gradient(145deg, var(--wiix-group-soft) 0, #fff 42%, #fff 100%);
	box-shadow: 0 12px 32px rgb(15 23 42 / 10%), 0 2px 8px rgb(15 23 42 / 5%);
	transition: transform 180ms ease, box-shadow 180ms ease;
	background: #050a30;
}

.wiix-product-group-showcase::before {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--wiix-group-accent);
	background: linear-gradient(90deg, var(--wiix-group-accent), color-mix(in srgb, var(--wiix-group-accent), #fff 45%));
	content: "";
	display: none;
}

.wiix-product-group-showcase::after {
	position: absolute;
	z-index: 0;
	top: -105px;
	right: -70px;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: var(--wiix-group-soft);
	content: "";
	opacity: 0.9;
}

/* .wiix-product-group-showcase--gift-pen-packaging {
	--wiix-group-accent: #b7791f;
	--wiix-group-border: #ead7b7;
	--wiix-group-soft: #fff8e8;
}

.wiix-product-group-showcase--common-accessories {
	--wiix-group-accent: #1677a8;
	--wiix-group-border: #c9e0ed;
	--wiix-group-soft: #eef9ff;
} */

.wiix-product-group-showcase__header {
	position: relative;
	z-index: 1;
	margin-bottom: 26px;
}

.wiix-product-group-showcase__header h2 {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 7px;
	color: #fff;
	font-size: clamp(24px, 2.2vw, 31px);
	font-weight: 750;
	line-height: 1.25;
}

.wiix-product-group-showcase__header h2::before {
	display: inline-block;
	flex: 0 0 10px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #b7791f;
	box-shadow: 0 0 0 5px color-mix(in srgb, #b7791f, transparent 84%);
	content: "";
}

.wiix-product-group-showcase__header p {
	margin: 0 0 0 21px;
	color: #5b6473;
	font-size: 16px;
	line-height: 1.65;
	display: none;
}

.wiix-product-group-showcase__products {
	position: relative;
	z-index: 1;
}

.wiix-product-group-showcase__products>.woocommerce {
	width: 100%;
}

.wiix-product-group-showcase__products ul.products {
	margin-top: 0;
	margin-bottom: 0;
}

@media (hover: hover) {
	.wiix-product-group-showcase:hover {
		transform: translateY(-2px);
		box-shadow: 0 18px 42px rgb(15 23 42 / 13%), 0 3px 10px rgb(15 23 42 / 6%);
	}
}

@media (max-width: 767px) {
	.wiix-product-group-showcase {
		margin-bottom: 26px;
		border-radius: 15px;
		padding: 20px 16px;
	}

	.wiix-product-group-showcase__header {
		margin-bottom: 20px;
		border-radius: 11px;
		padding: 15px;
	}

	.wiix-product-group-showcase__header h2 {
		gap: 9px;
		font-size: 23px;
	}

	.wiix-product-group-showcase__header p {
		margin-left: 19px;
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wiix-product-group-showcase {
		transition: none;
	}
}