.ww-product-card {
	background:
		url("../../images/backgrounds/bg_card.jpg") center,
		var(--ww-color-bone-white);
	border: 1px solid rgba(36, 23, 19, 0.22);
	border-radius: var(--ww-radius-sm);
	color: var(--ww-color-ink);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: var(--ww-space-2);
	position: relative;
}

.ww-product-card.ww-product-card--home {
	padding: var(--ww-space-4);
}

.ww-product-card::before {
	content: "";
	inset: 7px;
	pointer-events: none;
	position: absolute;
}

.ww-product-card--home {
	--ww-product-card-mask: url("../../svg/product-card-torn.svg");

	border-color: transparent;
	border-radius: 0;
	mask: var(--ww-product-card-mask) center / 100% 100% no-repeat;
	-webkit-mask: var(--ww-product-card-mask) center / 100% 100% no-repeat;
}

.ww-product-card--home::before {
	content: none;
}

.ww-product-grid--home > .ww-product-card--home:nth-of-type(2) {
	--ww-product-card-mask: url("../../svg/product-card-torn-2.svg");
}

.ww-product-grid--home > .ww-product-card--home:nth-of-type(3) {
	--ww-product-card-mask: url("../../svg/product-card-torn-3.svg");
}

.ww-product-card__media {
	aspect-ratio: 1.22;
	background: var(--ww-color-forest-black);
	border-radius: var(--ww-radius-md);
	display: block;
	overflow: hidden;
	position: relative;
}

.ww-product-card__img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ww-product-card__placeholder {
	align-items: center;
	background: linear-gradient(135deg, rgba(92, 61, 30, 0.9), rgba(28, 28, 26, 0.96));
	color: var(--ww-color-bone-white);
	display: flex;
	font-size: 5rem;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.ww-product-card .ww-badge {
	left: var(--ww-space-2);
	position: absolute;
	top: var(--ww-space-2);
}

.ww-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: var(--ww-space-2) var(--ww-space-1) var(--ww-space-1);
}

.ww-product-card__title {
	font-family: var(--ww-font-body);
	font-size: clamp(1.25rem, 2.1vw, 1.65rem);
	line-height: 1.12;
	margin-bottom: var(--ww-space-1);
}

.ww-product-card__description {
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.35;
	margin-bottom: var(--ww-space-2);
}

.ww-product-card__footer {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--ww-space-2);
	justify-content: space-between;
	margin-top: auto;
}

.ww-product-card__price {
	color: var(--ww-color-price);
	flex: 1 1 auto;
	font-size: 1.55rem;
	font-weight: 700;
	white-space: nowrap;
}

.ww-product-card__button {
	flex: 0 1 auto;
	max-width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	text-align: center;
	white-space: normal;
}

@media (max-width: 900px) {
	.ww-product-card__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.ww-product-card__button {
		width: 100%;
	}
}
