/* ── mitn_product_highlight ──────────────────────────────────── */
.mitn-ph {
	position: relative;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
	transition: box-shadow .2s;
}
.mitn-ph:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); }

/* Badge */
.mitn-ph__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 20px;
	line-height: 1.5;
}

/* Layout: ngang */
.mitn-ph--horizontal .mitn-ph__inner {
	display: flex;
	align-items: stretch;
}
.mitn-ph--horizontal .mitn-ph__image {
	width: 42%;
	flex-shrink: 0;
}
.mitn-ph--horizontal .mitn-ph__body {
	flex: 1;
	padding: 20px 22px 20px 0;
}

/* Layout: dọc */
.mitn-ph--vertical .mitn-ph__inner {
	display: flex;
	flex-direction: column;
}
.mitn-ph--vertical .mitn-ph__image { width: 100%; }
.mitn-ph--vertical .mitn-ph__body { padding: 16px 20px 20px; }

/* Ảnh */
.mitn-ph__image a { display: block; height: 100%; }
.mitn-ph__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Body */
.mitn-ph__body {
	display: flex;
	flex-direction: column;
}

/* Tiêu đề */
.mitn-ph__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 10px;
	color: #1a1a1a;
}
.mitn-ph__title a { color: inherit; text-decoration: none; }
.mitn-ph__title a:hover { color: var(--color-primary, #2563eb); }

/* Highlights */
.mitn-ph__highlights {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.mitn-ph__highlights li {
	font-size: .8125rem;
	color: #555;
	padding-left: 14px;
	position: relative;
	line-height: 1.4;
}
.mitn-ph__highlights li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-primary, #16a34a);
	font-weight: 700;
	font-size: .7em;
	top: 2px;
}

/* Giá */
.mitn-ph__price {
	font-size: 1.125rem;
	font-weight: 800;
	color: #e53e3e;
	margin-bottom: 8px;
	line-height: 1.2;
}
.mitn-ph__price ins { text-decoration: none; }
.mitn-ph__price del { font-size: .8em; color: #999; font-weight: 400; margin-right: 4px; }

/* CPP */
.mitn-ph__cpp {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px;
}
.mitn-ph__cpp-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: .75rem;
	color: #555;
	background: #f5f5f5;
	border-radius: 4px;
	padding: 3px 8px;
}
.mitn-ph__cpp-item svg { flex-shrink: 0; }

/* CTA */
.mitn-ph__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	margin-top: auto;
	padding: 9px 18px;
	background: var(--color-primary, #2563eb);
	color: #fff !important;
	border-radius: 6px;
	font-size: .875rem;
	font-weight: 700;
	text-decoration: none !important;
	transition: background .15s, transform .15s;
}
.mitn-ph__cta:hover {
	filter: brightness(1.1);
	transform: translateY(-1px);
}
.mitn-ph__cta svg { flex-shrink: 0; }

/* Mobile */
@media (max-width: 600px) {
	.mitn-ph--horizontal .mitn-ph__inner { flex-direction: column; }
	.mitn-ph--horizontal .mitn-ph__image { width: 100%; }
	.mitn-ph--horizontal .mitn-ph__body { padding: 14px 16px 16px; }
}
