.product-card {
	border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-card__link {}

.product-card__media {
	position: relative;
	background-color: var(--media-card-bg-2);
}

.product-card__actions {
	--actions-offset: 10px;
	position: absolute;
	top: var(--actions-offset);
	right: var(--actions-offset);
	display: flex; gap: 15px;
	flex-direction: column;
	align-items: center;
	z-index: 2;
}

.product-card__action {}

.product-card__image {}

.product-card__body {
	padding: 20px;
	background-color: var(--white-a15);
}

.product-card__title {
	font-weight: 500;
	font-size: 24px;
	line-height: 1;
	color: var(--white);
	margin-bottom: 10px;
}

.product-card__text {
	font-weight: 500;
	font-size: 18px;
	line-height: 1;
	color: var(--white);
	margin-bottom: 30px;
}

.product-card__price {
	font-weight: 500;
	font-size: 24px;
	line-height: 1;
	color: var(--white);
	margin-bottom: 30px;
}

.product-card__button {
	
}

.comparison-button svg > path { transition: fill 0.2s ease; }
.comparison-button.is-active svg > path { fill: cornflowerblue; }

.icon-already-on-wishlist,
.icon-add-on-wishlist {
	width: 100%;
	height: 100%;
	min-width: 35px;
    min-height: 30px;
	max-width: unset !important;
	min-width: unset !important;
}

.tinvwl_add_to_wishlist_button {
	width: auto !important;
    height: auto !important;
}

.wishlist_products_counter_number:not(:empty)::before {
	content: "(";
}
.wishlist_products_counter_number:not(:empty)::after {
	content: ")";
}