/**
 * Hark Tier Pricing - frontend styles
 * Matches the look of the prior "Bulk Deal" table from Advanced Dynamic Pricing PRO.
 */

.hark-tp-wrap {
	margin: 20px 0 0;
	clear: both;
	max-width: 360px;
	font-family: inherit;
}

.hark-tp-caption {
	color: #d11;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 8px;
	letter-spacing: 0.2px;
}

.hark-tp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	background: #fff;
	border: 1px solid #e5e5e5;
	margin: 0;
}

.hark-tp-table thead th {
	background: #fafafa;
	color: #333;
	font-weight: 500;
	padding: 10px 14px;
	text-align: center;
	border-bottom: 1px solid #e5e5e5;
}

.hark-tp-table tbody td {
	padding: 10px 14px;
	text-align: center;
	color: #555;
	border-top: 1px solid #f0f0f0;
}

.hark-tp-table tbody tr:nth-child(even) td {
	background: #fafafa;
}

/* Active tier highlight (driven by JS based on current qty) */
.hark-tp-table tbody tr.hark-tp-active td {
	background: #fff4e6;
	color: #222;
	font-weight: 600;
}

/* Mobile */
@media (max-width: 480px) {
	.hark-tp-wrap { max-width: 100%; }
	.hark-tp-table { font-size: 14px; }
	.hark-tp-table thead th,
	.hark-tp-table tbody td { padding: 8px 10px; }
}
