/**
 * Product card — đồng bộ shop, category, related, shortcode.
 */

.ankhang-product-card__shell {
	background: #fff;
	border: 1px solid #e8edf3;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ankhang-product-card:hover .ankhang-product-card__shell {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(28, 34, 204, 0.12);
	border-color: #c7d2fe;
}

/* Image */
.ankhang-product-card__media {
	position: relative;
	background: #f8fafc;
	margin: 0 !important;
}

.ankhang-product-card__image-wrap {
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.ankhang-product-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.ankhang-product-card:hover .ankhang-product-card__image-wrap img {
	transform: scale(1.04);
}

.ankhang-product-card__badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	pointer-events: none;
}

.ankhang-product-card__badges .badge {
	margin: 0;
}

/* Body */
.ankhang-product-card__body {
	padding: 16px 16px 18px !important;
	text-align: left !important;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ankhang-product-card__body .product-cat {
	color: #94a3b8 !important;
	font-size: 0.72rem !important;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.ankhang-product-card__body .product-title,
.ankhang-product-card__body .woocommerce-loop-product__title {
	font-size: 1rem !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	color: #0f172a !important;
	margin: 0 !important;
}

.ankhang-product-card__body .product-title a,
.ankhang-product-card__body .woocommerce-loop-product__title a {
	color: inherit !important;
}

.ankhang-product-card__body .product-title a:hover {
	color: var(--ankhang-color-primary, #1c22cc) !important;
}

.ankhang-product-card__price .price {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ankhang-color-accent, #d32f2f);
	margin: 0;
}

.ankhang-product-card__quote {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: #64748b;
}

/* Compact — sidebar / widget */
.ankhang-product-card--compact .ankhang-product-card__shell {
	box-shadow: none;
	border-radius: 10px;
}

.ankhang-product-card--compact .ankhang-product-card__image-wrap {
	aspect-ratio: 1 / 1;
}

.ankhang-product-card-li {
	list-style: none;
	margin-bottom: 16px;
}

.products .ankhang-product-card.col {
	padding: 0 8px 16px;
}

@media (max-width: 849px) {
	.ankhang-product-card__body {
		padding: 14px !important;
	}
}
