.wcpsn-shop-navigator {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	margin: 0 0 22px;
}

.wcpsn-shop-navigator__item {
	align-items: center;
	background: #f6faf8;
	border: 1px solid #d7e7df;
	border-radius: 6px;
	color: #143c35;
	display: flex;
	font-weight: 700;
	justify-content: space-between;
	line-height: 1.2;
	min-height: 48px;
	padding: 10px 12px;
	text-decoration: none;
	transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.wcpsn-shop-navigator__item:hover,
.wcpsn-shop-navigator__item:focus {
	background: #edf6f2;
	border-color: #9ccbb8;
	color: #0d2f29;
}

.wcpsn-shop-navigator__item small {
	background: #fff;
	border: 1px solid #d7e7df;
	border-radius: 999px;
	color: #315d52;
	font-size: 12px;
	line-height: 1;
	margin-left: 8px;
	min-width: 28px;
	padding: 5px 7px;
	text-align: center;
}

.wcpsn-product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 6px 0 8px;
}

.wcpsn-product-badges--single {
	margin: 0 0 12px;
}

.wcpsn-product-badge {
	background: #f0f5f2;
	border: 1px solid #d2e2d8;
	border-radius: 999px;
	color: #254b3c;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 5px 8px;
}

@media (max-width: 600px) {
	.wcpsn-shop-navigator {
		grid-template-columns: 1fr 1fr;
	}

	.wcpsn-shop-navigator__item {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.wcpsn-shop-navigator__item small {
		margin-left: 0;
	}
}

