.patches-product-pricing {
	display: grid;
	gap: 1.2rem;
	margin-block: 1.6rem;
	padding: 1.6rem;
	border: 1px solid var(--patches-color-border, #3a3a3a);
	border-radius: var(--patches-radius-card, 0.8rem);
	background: var(--patches-color-surface, #17191b);
	background: color-mix(in srgb, var(--patches-color-surface, #17191b) 92%, transparent);
}

.patches-product-pricing__title {
	margin: 0;
	color: var(--patches-color-accent, #caa46a);
	font-family: var(--patches-font-heading, inherit);
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
}

.patches-product-pricing__current {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.patches-product-pricing__current span {
	display: grid;
	gap: 0.2rem;
	font-size: 1.3rem;
}

.patches-product-pricing__current strong {
	color: var(--patches-color-text, #f4f0e8);
	font-size: 1.7rem;
}

.patches-product-pricing__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1.35rem;
}

.patches-product-pricing__table th,
.patches-product-pricing__table td {
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--patches-color-border, #3a3a3a);
	text-align: left;
}

.patches-product-pricing__table th:last-child,
.patches-product-pricing__table td:last-child {
	text-align: right;
}

.patches-product-pricing__note {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.5;
}

@media (max-width: 479px) {
	.patches-product-pricing__current {
		grid-template-columns: 1fr;
	}
}
