.depilart-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	color: #111;
	background: #fff;
	border: 1px solid #ded6e6;
	border-radius: 8px;
}

.woocommerce ul.products li.product.depilart-product-loop-card,
.woocommerce-page ul.products li.product.depilart-product-loop-card {
	display: flex;
	margin-bottom: 32px;
	text-align: left;
}

.woocommerce ul.products li.product.depilart-product-loop-card .depilart-product-card,
.woocommerce-page ul.products li.product.depilart-product-loop-card .depilart-product-card {
	width: 100%;
}

.woocommerce ul.products li.product.depilart-product-loop-card a,
.woocommerce-page ul.products li.product.depilart-product-loop-card a {
	text-decoration: none;
}

.woocommerce ul.products li.product.depilart-product-loop-card .price,
.woocommerce-page ul.products li.product.depilart-product-loop-card .price {
	margin: 0;
}

.depilart-product-card__media {
	position: relative;
	display: grid;
	min-height: 245px;
	padding: 24px 18px 8px;
	place-items: center;
	background: #fff;
}

.depilart-product-card__image,
.depilart-product-card__media img {
	width: 100%;
	height: 210px;
	object-fit: contain;
	transition: transform 0.2s ease;
}

.depilart-product-card__media:hover img,
.depilart-product-card__media:focus-visible img {
	transform: scale(1.03);
}

.depilart-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 10px;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: var(--wp--preset--color--primary, #614d76);
	border-radius: 9999px;
}

.depilart-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 0 8px 8px;
}

.depilart-product-card__sizes {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	margin-bottom: 8px;
	gap: 4px;
	text-align: center;
}

.depilart-product-card__size {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	min-height: 32px;
	padding: 6px 7px;
	color: #111;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	background: #fff;
	border: 1px solid #cfc7d8;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

a.depilart-product-card__size:hover,
a.depilart-product-card__size:focus-visible {
	color: var(--wp--preset--color--primary, #614d76);
	border-color: var(--wp--preset--color--primary, #614d76);
}

.depilart-product-card__size.is-active {
	font-size: 1rem;
	border-color: var(--wp--preset--color--primary, #614d76);
}

.depilart-product-card__size.is-on-sale {
	color: #fff;
	background: #c69214;
	border-color: #9b6f0d;
}

a.depilart-product-card__size.is-on-sale:hover,
a.depilart-product-card__size.is-on-sale:focus-visible {
	color: #fff;
	background: #ad7b10;
	border-color: #845c08;
}

.depilart-product-card__size.is-active.is-on-sale {
	box-shadow: 0 0 0 2px rgba(198, 146, 20, 0.28);
}

.depilart-product-card__more-sizes {
	color: #111;
	font-size: 0.52rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.depilart-product-card__title {
	min-height: 42px;
	margin: 0 0 16px;
	color: #111;
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1.45;
}

.depilart-product-card__title a:focus-visible,
.depilart-product-card__button:focus-visible,
.depilart-product-card__media:focus-visible {
	outline: 3px solid rgba(97, 77, 118, 0.22);
	outline-offset: 3px;
}

.depilart-product-card__price {
	margin-bottom: 5px;
	color: var(--wp--preset--color--primary, #614d76);
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.2;
}

.depilart-product-card__price del {
	margin-right: 6px;
	color: #7a8493;
	font-weight: 500;
}

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

.depilart-product-card__installment {
	margin: 0 0 8px;
	color: #111;
	font-size: 0.68rem;
	line-height: 1.35;
}

.depilart-product-card__excerpt {
	display: -webkit-box;
	min-height: 48px;
	margin: 0 0 12px;
	overflow: hidden;
	color: #111;
	font-size: 0.76rem;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.depilart-product-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 29px;
	margin-top: auto;
	padding: 8px 18px;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	background: var(--wp--preset--color--primary, #614d76);
	border-radius: 9999px;
	transition: filter 0.18s ease;
}

.depilart-product-card__button:hover {
	filter: brightness(0.95);
}

@media (max-width: 480px) {
	.depilart-product-card__media {
		min-height: 220px;
	}

	.depilart-product-card__image,
	.depilart-product-card__media img {
		height: 190px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.depilart-product-card__image,
	.depilart-product-card__media img,
	.depilart-product-card__button {
		transition: none;
	}
}
