.aura-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	color:  var(--aura-color-burgundy);
	font-family: Manrope, sans-serif;
}

.aura-product-card a {
	color: inherit;
	text-decoration: none;
	overflow: visible;
}

.aura-product-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 5;
	background: #f8f2ed;
	line-height: 0;
}

.aura-product-card__image-wrap {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	line-height: 0;
}

.aura-product-card .aura-product-card__image-wrap picture,
.aura-product-card .aura-product-card__image-wrap figure {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.aura-product-card .aura-product-card__media .aura-product-card__image-wrap > img.aura-product-card__image,
.aura-product-card .aura-product-card__media .aura-product-card__image-wrap picture > img.aura-product-card__image,
.aura-product-card .aura-product-card__media .aura-product-card__image-wrap figure > img.aura-product-card__image,
.aura-product-card .aura-product-card__media .aura-product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	object-fit: cover;
	object-position: center;
	line-height: 0;
	transition: opacity 420ms ease, transform 620ms ease;
}

.aura-product-card .aura-product-card__image--hover {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.aura-product-card__badges {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	max-width: calc(100% - 20px);
	pointer-events: none;
}

.aura-product-card__badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	padding: 4px 7px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: Manrope, sans-serif;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.aura-product-card__badge--sale {
	background: #f4a6a4;
	color: #ffffff;
}

.aura-product-card__badge--featured {
	background:  var(--aura-color-burgundy);
	color: #ffffff;
}

.aura-product-card__badge--out-of-stock {
	border-color: rgba(75, 28, 34, 0.55);
	background: #fffefa;
	color:  var(--aura-color-burgundy);
	text-transform: none;
}

@media (hover: hover) and (pointer: fine) {
	.aura-product-card__media:hover .aura-product-card__image--primary {
		opacity: 0;
	}

	.aura-product-card__media:hover .aura-product-card__image--hover {
		opacity: 1;
		transform: scale(1.015);
	}
}

.aura-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-top: 12px;
}

.aura-product-card__summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 10px;
	min-width: 0;
}

.aura-product-card__copy {
	min-width: 0;
}

.aura-product-card__title {
	margin: 0;
	color: #4b1c22;
	font-family: Manrope, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 1.5px;
	text-transform: none;
}

.aura-product-card__title a {
	display: inline;
}

.aura-product-card__category {
	margin-top: 4px;
	color: rgba(75, 28, 34, 0.62);
	font-family: Manrope, sans-serif;
	font-size: 10px;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: 0;
}

.aura-product-card__price {
	color:  var(--aura-color-burgundy);
	font-family: Manrope, sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.35;
	text-align: right;
	white-space: nowrap;
}

.aura-product-card__price del {
	color: rgba(75, 28, 34, 0.45);
	font-weight: 300;
}

.aura-product-card__price ins {
	text-decoration: none;
}

.aura-product-card__cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	align-self: flex-start;
	width: auto;
	margin-top: 12px;
	padding: 0 0 3px;
	border: 0;
	background: transparent;
	color:  var(--aura-color-burgundy);
	font-family: Manrope, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: none;
	transition: border-color 220ms ease, color 220ms ease;
}

.aura-product-card__cta::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 240ms ease;
}

.aura-product-card__cta-icon {
	display: inline-flex;
	width: 12px;
	height: 12px;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 220ms ease, transform 220ms ease;
}

.aura-product-card__cta-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.aura-product-card__cta:hover,
.aura-product-card__cta:focus-visible {
	color: #4b1c22;
}

.aura-product-card__cta:hover::after,
.aura-product-card__cta:focus-visible::after {
	transform: scaleX(1);
}

.aura-product-card__cta:hover .aura-product-card__cta-icon,
.aura-product-card__cta:focus-visible .aura-product-card__cta-icon {
	opacity: 1;
	transform: translateX(0);
}

.aura-product-card__media:focus-visible,
.aura-product-card__title a:focus-visible,
.aura-product-card__cta:focus-visible {
	outline: 1px solid #4b1c22;
	outline-offset: 4px;
}

@media (min-width: 1024px) {
	.aura-product-card__price {
		font-size: 15px;
		font-weight: 600;
	}
}

.aura-product-card a.added_to_cart {
	display: inline-flex;
	margin-top: 8px;
	color: #4b1c22;
	font-family: Manrope, sans-serif;
	font-size: 10px;
	line-height: 1.2;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 767px) {
	.aura-product-card__body {
		padding-top: 9px;
	}

	.aura-product-card__summary {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 8px;
	}

	.aura-product-card__title {
		font-size: 11px;
		letter-spacing: 0;
	}

	.aura-product-card__category {
		font-size: 9px;
	}

	.aura-product-card__price {
		max-width: 68px;
		font-size: 10px;
		justify-self: end;
		text-align: right;
		white-space: normal;
	}

	.aura-product-card__cta {
		margin-top: 10px;
		font-size: 13px;
	}

	.aura-product-card__badges {
		top: 8px;
		left: 8px;
		gap: 4px;
		max-width: calc(100% - 16px);
	}

	.aura-product-card__badge {
		padding: 4px 6px;
		font-size: 9px;
	}

	.aura-product-card__cta-icon {
		width: 11px;
		height: 11px;
		opacity: 1;
		transform: none;
	}
}
