@charset "utf-8";

.product-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
	background-color: var(--white);
	box-shadow: var(--box-shadow);
	padding: 205px 15px 15px 15px;
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
}

.product-card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 184px;
	overflow: hidden;
}

.product-card-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
	backface-visibility: hidden;
	transition: transform 0.4s ease;
	transform: scale(1);
}

.product-card-image:hover img {
	transform: scale(1.05);
	transition-duration: 1.2s;
}

.product-card-image .add-to-fav {
	position: absolute;
	bottom: 16px;
	right: 16px;
}

.product-card .h3-title {
	margin-bottom: 10px;
	margin-right: -10px;
}

.product-card .h3-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.4s ease;
}

.product-card .h3-title a:hover {
	color: var(--blue);
}

.product-card p+p {
	margin-top: 4px;
}


.product-card-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 32px;
	margin-top: auto;
	gap: 8px;
}

.product-card-rating {
	position: relative;
	padding-left: 28px;
	font-weight: 300;
	font-size: 12px;
}

.product-card-rating svg {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0.5lh;
	left: 0;
	fill: var(--yellow);
	transform: translateY(-50%);
}

.product-card-rating strong {
	font-weight: normal;
	font-size: 14px;
}

.product-card-price {
	margin-left: auto;
	position: relative;
	text-align: right;
	flex: 0 0 auto;
	top: -4px;
}

.product-card-price strong {
	display: block;
	font-weight: bold;
	font-size: 26px;
}

.product-card-price strong::first-letter {
	font-size: 65%;
	vertical-align: top;
	line-height: 16px;
}

.product-card-price .from {
	font-size: 12px;
	position: absolute;
	top: -24px;
	right: 0;
	white-space: nowrap;
	color: color-mix(in srgb, var(--dark) 50%, transparent);
}

.product-card-price del {
	color: var(--red);
	font-weight: bold;
	text-decoration: line-through;
}

.product-card-location {
	flex: 0 0 auto;
	width: 100%;
	position: relative;
	padding-left: 28px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.product-card-location svg {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0.5lh;
	left: 0;
	transform: translateY(-50%);
}