.product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: var(--border-text);
	border-radius: 10px;
	background-color: var(--cf-background);
	width: 100%;
	margin-top: 5px;
	overflow: hidden;
}

.product-card:hover {
	cursor: pointer;
	box-shadow: var(--box-shadow);
}

.pcard-img {
	position: relative;
	height: 200px;
	width: 100%;
	background-color: var(--cf-background-dark);
}

.pcard-product-img {
	width: 100%;
	height: 100%;
	position: relative;
	object-fit: contain;
	object-position: center;
	box-shadow: inset 0 -50px 50px rgba(0, 0, 0, 0.5);
}

.pcard-brand-img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: auto;
	height: 50px;
	object-fit: contain;
}

.pcard-sale {
	background-color: var(--cf-primary);
	border-bottom: var(--border-text);
	border-left: var(--border-text);
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	border-bottom-left-radius: 10px;
	z-index: 99;
	width: auto;
}

.pcard-sale h3 {
	color: var(--cf-foreground);
	font-weight: bolder;
	font-size: 18px;
	padding: 5px;
}
.pcard-sale h3:empty {
	padding: 0;
}

.pcard-price {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: start;
	align-content: start;
	justify-items: left;
	justify-content: left;
	padding: 10px;
	background-color: var(--cf-background);
	border-top-left-radius: 10px;
	width: auto;
}
.pcard-price .price-original {
	color: #777;
	text-decoration: line-through;
	font-size: 18px;
}

.pcard-price .price-discount {
	color: var(--danger);
	font-size: 22px;
}

.pcard-title {
	font-size: 24px;
	color: var(--cf-foreground);
	margin: 10px;
}

.pcard-btn.btn {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: none;
	border-bottom: none;
	position: absolute;
	bottom: 0;
	right: 0;
}

@media (min-width: 800px) {
	.product-card {
		width: 48%;
	}
}

@media (min-width: 1200px) {
	.product-card {
		width: 32%;
	}
}
