/* ─── Pricing Table Widget ───────────────────────────────────────────────── */

.hbc-pt-wrap {
	display: flex;
	align-items: flex-start;
	gap: 36px;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* ─── Left column ────────────────────────────────────────────────────────── */

.hbc-pt-left {
	width: 28%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hbc-pt-title {
	font-size: 28px;
	font-weight: 700;
	color: #111;
	line-height: 1.2;
	margin: 0;
}

.hbc-pt-desc {
	font-size: 13px;
	color: #888;
	line-height: 1.75;
	margin: 0;
}

/* ─── Cards grid ─────────────────────────────────────────────────────────── */

.hbc-pt-cards {
	flex: 1;
	min-width: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

/* ─── Single card ────────────────────────────────────────────────────────── */

.hbc-pt-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 8px;
	padding: 28px 20px;
	text-align: center;
}

.hbc-pt-card:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: calc(-9px - 0.5px);
	width: 1px;
	height: 100%;
	background: rgba(0, 0, 0, 0.12);
}

/* ─── Size label ─────────────────────────────────────────────────────────── */

.hbc-pt-size {
	font-size: 11px;
	color: #555;
	line-height: 1.4;
}

/* ─── Price ──────────────────────────────────────────────────────────────── */

.hbc-pt-price {
	font-size: 42px;
	font-weight: 700;
	color: #e0961e;
	line-height: 1;
	margin: 8px 0 16px;
	word-break: break-word;
}

/* ─── Features list ──────────────────────────────────────────────────────── */

.hbc-pt-features {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}

.hbc-pt-features li {
	font-size: 12px;
	color: #444;
	padding: 7px 0;
	line-height: 1.45;
}

.hbc-pt-features li:first-child {
	border-top: 0;
}

/* ─── Button ─────────────────────────────────────────────────────────────── */

.hbc-pt-btn-wrap {
	margin-top: auto;
	padding-top: 20px;
	text-align: center;
}

.hbc-pt-btn-link {
	display: inline-block;
	text-decoration: none;
}

.hbc-pt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 10px 22px;
	background-color: #1a1a2e;
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.25s ease;
}

.hbc-pt-btn-link:hover .hbc-pt-btn,
.hbc-pt-btn:hover {
	background-color: #3688ED;
	border-color: #3688ED;
	color: #ffffff;
	opacity: 1;
	text-decoration: none;
}

.hbc-pt-btn i,
.hbc-pt-btn svg {
	font-size: 16px;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: inherit;
	fill: currentColor;
	transition: color 0.2s ease, fill 0.2s ease;
}

.hbc-pt-btn svg path {
	fill: currentColor;
}

/* ─── Tablet (≤1024px) ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.hbc-pt-wrap {
		gap: 20px;
	}
	.hbc-pt-left {
		width: 30%;
	}
	.hbc-pt-price {
		font-size: 32px;
	}
}

/* ─── Mobile (≤767px) ────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.hbc-pt-wrap {
		flex-direction: column;
		gap: 24px;
		width: 100%;
		padding: 28px 18px;
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	}
	.hbc-pt-left {
		width: 100% !important;
		gap: 10px;
		text-align: center;
	}
	.hbc-pt-cards {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 0;
		overflow: hidden;
	}
	.hbc-pt-card {
		width: 100%;
		padding: 26px 16px;
		border-radius: 0;
	}
	.hbc-pt-card:not(:last-child)::after {
		top: auto;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: rgba(0, 0, 0, 0.12);
	}
	.hbc-pt-title {
		font-size: 24px;
	}
	.hbc-pt-desc {
		font-size: 13px;
	}
	.hbc-pt-size {
		font-size: 11px;
	}
	.hbc-pt-price {
		font-size: 36px;
	}
	.hbc-pt-features li {
		font-size: 12px;
	}
	.hbc-pt-btn {
		width: 100%;
		max-width: 220px;
		white-space: normal;
	}
}
