/* ==========================================================================
   Product Card
   ========================================================================== */

.product-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.product.sale .amount bdi{
  color:var(--color-sale);
}

/* Image area */
.product-card__image-wrap {
	position: relative;
	background-color: var(--color-bg-alt);
	border-radius: 15px;
	aspect-ratio: 1;
	overflow: hidden;
}

.product-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
	padding: 14px 14%;
}

.product-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}


/* Badges */
.product-card__badge {
	font-size: var(--text-xs);
	font-weight: 500;
	color: var(--color-primary);
	min-height: 1em;
	display: block;
  min-height:18px;
}

.product-card__sale-badge {
	position: absolute;
	top: var(--space-2);
	right: var(--space-3);
	background-color: var(--color-primary);
	color: #fff;
	font-size: var(--text-xs);
	font-weight: 500;
	padding: 4px 12px;
	border-radius: var(--radius-pill);
	z-index: 1;
}

/* Body */
.product-card__body {
	display: flex;
	flex-direction: column;
}

.product-card__name-link {
	text-decoration: none;
	color: inherit;
}
.swiper-slide .product-card{
  gap: 20px;
}
.swiper-slide .swatch-row{
  margin-bottom:30px;
}

.product-card__name {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
	margin: 0;
	line-height: 1.3;
}


.product-card__gender {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text-muted);
	margin: 0;
	min-height: 17px;
  line-height:normal;
}

.product-card__price {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
}

.product-card__price del {
	color: var(--color-sale);
	text-decoration: line-through;
}

.product-card__price ins {
	text-decoration: none;
	color: var(--color-text);
}

/* Loading state on grid */
.product-grid.is-loading {
	opacity: 0.5;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

/* Wishlist heart button */
.product-card__wishlist {
	position: absolute;
	top: 10px;
	left: 12px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	color: var(--color-text-muted);
	box-shadow: 0 1px 4px rgba(0 0 0 / 0.08);
	transition: color 0.15s;
}

.product-card__wishlist:hover,
.product-card__wishlist.is-active {
	color: var(--color-primary);
}

.product-card__wishlist.is-active svg path {
	fill: currentColor;
}
