/* Payment options — used by [navi_payment_options]. Self-contained so it
   reads correctly on the light-body pages the shortcode sits on. */

.navi-pay {
	max-width: 1080px;
	margin: 0 auto;
}

/* Intro + steps are centred as a block above the two cards, so the top of the
   page reads as one balanced column rather than a lopsided left rail. */
.navi-pay__intro {
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--slate-700, #334155);
	max-width: 58ch;
	margin: 0 auto 1.5rem;
	text-align: center;
}

.navi-pay__amount {
	font-size: 1.1rem;
	color: var(--slate-900, #0f172a);
	margin: 0 0 1.5rem;
}
.navi-pay__amount strong {
	color: var(--cyan-600, #0891b2);
	font-size: 1.35rem;
}

.navi-pay__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.75rem;
	align-items: start;
}

/* A short "how it works" note above the two methods — a centred block with
   its list text kept left-aligned so the numbers line up. */
.navi-pay__steps {
	width: fit-content;
	max-width: 100%;
	margin: 0 auto 2.25rem;
	padding: 0 0 0 1.3rem;
	color: var(--slate-600, #475569);
	font-size: 0.98rem;
	line-height: 1.7;
	text-align: left;
}
.navi-pay__steps li { margin: 0.2rem 0; }

.navi-pay__card {
	background: #ffffff;
	border: 1px solid var(--slate-200, #e2e8f0);
	border-radius: 14px;
	padding: 1.5rem;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 10px 30px rgba(15, 23, 42, 0.05);
}

.navi-pay__method {
	margin: 0 0 1rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--slate-900, #0f172a);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.navi-pay__qr {
	display: block;
	width: 280px;
	max-width: 100%;
	height: auto;
	margin: 0 auto 1rem;
	border-radius: 10px;
	border: 1px solid var(--slate-200, #e2e8f0);
}

.navi-pay__note {
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--slate-600, #475569);
	margin: 0.75rem 0 0;
}

.navi-pay__bank {
	margin: 0;
}

.navi-pay__row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid var(--slate-100, #f1f5f9);
}
.navi-pay__row:last-child {
	border-bottom: 0;
}

.navi-pay__row dt {
	font-size: 0.85rem;
	color: var(--slate-500, #64748b);
	margin: 0;
}
.navi-pay__row dd {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--slate-900, #0f172a);
	text-align: right;
	/* Account numbers are copied by hand — let them be selected cleanly. */
	font-variant-numeric: tabular-nums;
	word-break: break-word;
}

.navi-pay__ref {
	margin: 1.75rem auto 0;
	max-width: 720px;
	padding: 0.85rem 1.1rem;
	background: var(--slate-50, #f8fafc);
	border-left: 3px solid var(--cyan-500, #06b6d4);
	border-radius: 6px;
	font-size: 0.9rem;
	color: var(--slate-700, #334155);
}

/* "Not booked yet?" link under the payment methods. */
.navi-pay-cta {
	margin-top: 2.25rem;
	font-size: 1rem;
	color: var(--slate-600, #475569);
}

/* When the shortcode is dropped onto a dark section, opt in with a wrapper
   class of navi-pay--on-dark on an ancestor. Left light by default because
   the Payment page body is light. */
.navi-pay--on-dark .navi-pay__intro,
.navi-pay--on-dark .navi-pay__amount {
	color: #e2e8f0;
}
