.op-alternative-products {
	margin: 20px 0;
	width: 100%;
}
.op-alternative-products-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	width: 100%;
}
.op-alternative-products-grid > a {
    display: flex;
	flex-direction: column;
	gap: 10px;
	width: 90px;
}
.op-alternative-product img {
    width: 90px;
    height: 90px;
	object-fit: contain;
    border-radius: 4px;
}
.op-alternative-product .op-alternative-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;	
}

@media (max-width: 768px) {
	.op-alternative-products-grid {
		gap: 5px;
	}
	.op-alternative-products-grid > a {
		display: flex;
		flex-direction: column;
		width: 40px;
	}
	.op-alternative-product img {
		width: 40px;
		height: 40px;
		object-fit: contain;
		border-radius: 4px;
	}
}


.current_product{
	border: 0.9px solid #E93A53;
	border-radius: 4.49px;
}

.blurred {
	position: relative;
	display: inline-block;
}

.blurred::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
	border-radius: 4.2px;
	pointer-events: none;
}

.blurred img {
	display: block;
	position: relative;
	z-index: 0;
	border-radius: 4.2px;
}
