/* Public checkout presentation. */

body.rt-payment-page {
	background: #f4f5f7;
	overflow-x: hidden;
}

body.rt-payment-page .site-content {
	padding-top: 0;
	padding-bottom: 0;
}

body.rt-payment-page .site-content > .rt-container {
	max-width: 1320px;
	padding-right: 24px;
	padding-left: 24px;
}

body.rt-payment-page .rt-page {
	margin: 0;
}

body.rt-payment-page .entry-header {
	display: none;
}

body.rt-payment-page .entry-content {
	width: 100%;
	max-width: none;
	margin: 0;
	font-size: inherit;
	line-height: normal;
}

body.rt-payment-page .entry-content > *:first-child {
	margin-top: 0;
}

body.rt-payment-page .entry-content > *:last-child {
	margin-bottom: 0;
}

.rt-payment-shell {
	box-sizing: border-box;
	width: 100%;
	max-width: 1240px;
	min-width: 0;
	margin: 0 auto;
	padding: 72px 0 96px;
}

.rt-payment-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	min-width: 0;
	align-items: stretch;
	gap: 64px;
}

.rt-payment-main {
	min-width: 0;
	padding-top: 5px;
}

.rt-payment-intro {
	max-width: 680px;
	min-width: 0;
	margin: 0 0 34px;
}

.rt-payment-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #d20b17;
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .16em;
	line-height: 1;
	text-transform: uppercase;
}

.rt-payment-kicker::before {
	width: 28px;
	height: 3px;
	background: #d20b17;
	content: '';
}

.rt-payment-intro h1 {
	max-width: 660px;
	margin: 14px 0 17px;
	color: #111318;
	font-family: var(--rt-font-display, 'Bebas Neue', 'Arial Narrow', sans-serif);
	font-size: 5rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: .88;
	text-transform: uppercase;
}

.rt-payment-intro p {
	max-width: 600px;
	margin: 0;
	color: #5a626e;
	font-size: 1rem;
	line-height: 1.65;
}

.rt-payment-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	max-width: 720px;
	margin: 0 0 22px;
	padding: 13px 15px;
	border: 1px solid #e7c3c3;
	border-radius: 7px;
	color: #7f1d1d;
	background: #fff6f6;
	font-size: .87rem;
	line-height: 1.45;
}

.rt-payment-notice--success {
	border-color: #b7dfc7;
	color: #166534;
	background: #f1fbf4;
}

.rt-payment-success-card {
	display: block !important;
	padding: 20px 22px !important;
	border-radius: 10px !important;
	box-shadow: 0 4px 16px rgba(22, 101, 52, 0.08);
}

.rt-payment-success-card a:hover {
	background: #990a0a !important;
}

.rt-payment-notice__icon {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	color: #fff;
	background: #b42318;
	font-size: .76rem;
	font-weight: 800;
}

.rt-payment-notice--success .rt-payment-notice__icon {
	background: #16803c;
}

.rt-payment-form {
	width: 100%;
	max-width: 720px;
}

.rt-payment-services-fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.rt-payment-services-fieldset legend {
	margin: 0 0 13px;
	padding: 0;
	color: #16191e;
	font-size: .89rem;
	font-weight: 800;
	letter-spacing: .02em;
}

.rt-payment-services {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 13px;
}

.rt-payment-service {
	display: grid;
	position: relative;
	grid-template-columns: 50px minmax(0, 1fr) auto 22px;
	align-items: center;
	gap: 13px;
	min-height: 124px;
	box-sizing: border-box;
	margin: 0;
	padding: 15px 16px;
	border: 1px solid #dfe3e8;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(16, 22, 29, .045);
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.rt-payment-service:hover {
	border-color: #c9cfd7;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(16, 22, 29, .10);
}

.rt-payment-service:focus-within {
	outline: 3px solid rgba(210, 11, 23, .16);
	outline-offset: 2px;
}

.rt-payment-service.is-selected {
	border-color: #d20b17;
	background: #fffafa;
	box-shadow: 0 0 0 2px rgba(210, 11, 23, .12), 0 12px 26px rgba(16, 22, 29, .09);
}

.rt-payment-service input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.rt-payment-service__icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	color: #fff;
	background: #171a1f;
}

.rt-payment-service.is-selected .rt-payment-service__icon,
.rt-payment-service input:checked ~ .rt-payment-service__icon {
	background: #d20b17;
}

.rt-payment-service__icon svg {
	display: block;
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.rt-payment-service__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

.rt-payment-service__copy strong {
	overflow: hidden;
	color: #171a1f;
	font-size: .98rem;
	font-weight: 800;
	line-height: 1.2;
	text-overflow: ellipsis;
}

.rt-payment-service__copy small {
	display: block;
	color: #737b86;
	font-size: .76rem;
	line-height: 1.35;
}

.rt-payment-service__price {
	align-self: start;
	padding-top: 2px;
	color: #171a1f;
	font-size: .97rem;
	font-weight: 800;
	white-space: nowrap;
}

.rt-payment-service__check {
	display: grid;
	align-self: end;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 1px solid #dfe3e8;
	border-radius: 50%;
	color: transparent;
	font-size: .75rem;
	font-weight: 800;
}

.rt-payment-service.is-selected .rt-payment-service__check,
.rt-payment-service input:checked ~ .rt-payment-service__check {
	border-color: #d20b17;
	color: #fff;
	background: #d20b17;
}

.rt-payment-email {
	display: block;
	margin: 25px 0 15px;
}

.rt-payment-email > span {
	display: block;
	margin-bottom: 8px;
	color: #171a1f;
	font-size: .87rem;
	font-weight: 800;
}

.rt-payment-email input {
	display: block;
	box-sizing: border-box;
	width: 100%;
	min-height: 56px;
	padding: 13px 16px;
	border: 1px solid #dfe3e8;
	border-radius: 7px;
	color: #171a1f;
	background: #fff;
	font: inherit;
	box-shadow: 0 3px 10px rgba(16, 22, 29, .025);
}

.rt-payment-email input:focus {
	border-color: #d20b17;
	outline: 3px solid rgba(210, 11, 23, .14);
	outline-offset: 0;
}

.rt-payment-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 100%;
	min-height: 58px;
	padding: 12px 20px;
	border: 0;
	border-radius: 7px;
	color: #fff;
	background: #d20b17;
	font: inherit;
	font-size: 1rem;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(210, 11, 23, .2);
	transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.rt-payment-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(210, 11, 23, .26);
}

.rt-payment-submit:focus-visible {
	outline: 3px solid rgba(210, 11, 23, .28);
	outline-offset: 3px;
}

.rt-payment-submit:disabled {
	opacity: .65;
	cursor: wait;
	transform: none;
}

.rt-payment-submit svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.rt-payment-status {
	min-height: 22px;
	margin: 11px 0 0;
	color: #b42318;
	font-size: .9rem;
	line-height: 1.4;
	text-align: center;
}

.rt-payment-status.is-error {
	color: #b42318;
}

.rt-payment-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	max-width: 720px;
	margin: 17px 0 0;
	color: #68717d;
	font-size: .8rem;
	line-height: 1.45;
	text-align: center;
}

.rt-payment-trust svg {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	fill: none;
	stroke: #68717d;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.rt-payment-visual {
	position: relative;
	width: 100%;
	align-self: start;
	height: 610px;
	min-height: 610px;
	overflow: hidden;
	border-radius: 10px;
	background: #0d1014;
	box-shadow: 0 22px 48px rgba(14, 18, 24, .22);
	isolation: isolate;
}

.rt-payment-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 74% center;
}

.rt-payment-visual::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(8, 10, 13, .08) 20%, rgba(8, 10, 13, .88) 100%);
	content: '';
	pointer-events: none;
}

.rt-payment-visual__content {
	display: flex;
	position: absolute;
	z-index: 2;
	right: 30px;
	bottom: 30px;
	left: 30px;
	flex-direction: column;
	gap: 13px;
	color: #fff;
}

.rt-payment-visual__eyebrow {
	color: #ff4a52;
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.rt-payment-visual__content h2 {
	max-width: 390px;
	margin: 0;
	color: #fff;
	font-family: var(--rt-font-display, 'Bebas Neue', 'Arial Narrow', sans-serif);
	font-size: 4.15rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: .92;
	text-transform: uppercase;
}

.rt-payment-visual__content p {
	max-width: 390px;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: .95rem;
	line-height: 1.5;
}

.rt-payment-visual__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 999px;
	color: #fff;
	background: rgba(0, 0, 0, .28);
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.rt-payment-visual__badge i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #31d17c;
	box-shadow: 0 0 0 5px rgba(49, 209, 124, .14);
}

.rt-payment-unavailable {
	display: flex;
	flex-direction: column;
	gap: 7px;
	max-width: 720px;
	margin: 0 auto;
	padding: 80px 24px;
	text-align: center;
}

.rt-payment-unavailable strong {
	color: #171a1f;
	font-size: 1.3rem;
}

.rt-payment-unavailable span {
	color: #68717d;
}

@media (max-width: 1100px) {
	.rt-payment-layout {
		grid-template-columns: minmax(0, 1fr) minmax(310px, .78fr);
		gap: 34px;
	}

	.rt-payment-intro h1 {
		font-size: 4.5rem;
	}

	.rt-payment-visual {
		height: 560px;
		min-height: 560px;
	}
}

@media (max-width: 900px) {
	body.rt-payment-page .site-content > .rt-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.rt-payment-shell {
		padding-top: 48px;
		padding-bottom: 70px;
	}

	.rt-payment-layout {
		display: flex;
		flex-direction: column;
		gap: 38px;
	}

	.rt-payment-main {
		order: 1;
		width: 100%;
	}

	.rt-payment-visual {
		order: 2;
		width: 100%;
		max-width: 100%;
		align-self: stretch;
		height: 380px;
		min-height: 380px;
	}

	.rt-payment-intro {
		max-width: 620px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.rt-payment-kicker {
		justify-content: center;
	}

	.rt-payment-intro h1 {
		max-width: 100%;
		font-size: clamp(2.35rem, 12vw, 3.35rem);
		overflow-wrap: anywhere;
	}

	.rt-payment-intro p {
		margin-right: auto;
		margin-left: auto;
	}
}

@media (max-width: 520px) {
	.rt-payment-services {
		grid-template-columns: 1fr;
	}

	.rt-payment-service {
		grid-template-columns: 44px minmax(0, 1fr) auto;
		gap: 10px;
		min-height: 112px;
		padding-right: 46px;
		padding-left: 12px;
	}

	.rt-payment-service__icon {
		width: 44px;
		height: 44px;
	}

	.rt-payment-service__price {
		font-size: .9rem;
	}

	.rt-payment-service__check {
		position: absolute;
		right: 12px;
		bottom: 12px;
	}

	.rt-payment-trust {
		align-items: flex-start;
		justify-content: flex-start;
		text-align: left;
	}

	.rt-payment-visual {
		width: 100%;
		max-width: 100%;
		align-self: stretch;
		height: 330px;
		min-height: 330px;
		border-radius: 8px;
	}

	.rt-payment-visual img {
		object-position: 72% center;
	}

	.rt-payment-visual__content {
		right: 18px;
		bottom: 18px;
		left: 18px;
		gap: 8px;
	}

	.rt-payment-visual__content h2 {
		font-size: clamp(2rem, 7.5vw, 2.7rem);
		line-height: .95;
	}

	.rt-payment-visual__content p {
		font-size: .88rem;
		line-height: 1.4;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rt-payment-service,
	.rt-payment-submit {
		transition: none;
	}
}
