/**
 * GAROE Academy checkout. Ported from the club-branded order page design, scoped
 * under .garoe-checkout so it inherits nothing from, and leaks nothing into, the
 * host theme. The multi-step order form, the live plaque preview, and the Stripe
 * payment step all live in here.
 */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Hanken+Grotesk:wght@400;500;600;700&family=Archivo+Black&display=swap');

.garoe-checkout {
	--club-primary: #0b0b0c;
	--club-on-primary: #ffffff;
	--club-display: "Barlow Condensed", sans-serif;
	--paper: #ffffff;
	--paper-2: #f6f6f4;
	--ink: var(--club-primary);
	--mist: #6b6b71;
	--mist-2: #9a9aa0;
	--line: color-mix(in srgb, var(--club-primary) 14%, transparent);
	--accent: var(--club-primary);
	--font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
	--font-display: var(--club-display);

	max-width: 1180px;
	margin-inline: auto;
	font-family: var(--font-body);
	color: var(--ink);
	line-height: 1.6;
}

.garoe-checkout *,
.garoe-checkout *::before,
.garoe-checkout *::after {
	box-sizing: border-box;
}

.garoe-checkout h2,
.garoe-checkout h3 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	margin: 0;
}

.garoe-checkout img,
.garoe-checkout svg {
	display: block;
	max-width: 100%;
}

/* Buttons */
.garoe-checkout .btn {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	border: 1px solid transparent;
	border-radius: 0;
	padding: 0.95em 1.7em;
	display: inline-flex;
	align-items: center;
	gap: 0.7em;
	transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.garoe-checkout .btn--solid {
	background: var(--club-primary);
	color: var(--club-on-primary);
}

.garoe-checkout .btn--solid:hover {
	transform: translateY(-2px);
}

.garoe-checkout .btn .arrow {
	transition: transform .25s ease;
}

.garoe-checkout .btn:hover .arrow {
	transform: translateX(4px);
}

.garoe-checkout .btn:disabled {
	opacity: 0.55;
	cursor: default;
	transform: none;
}

/* Layout */
.garoe-checkout .order__intro h2 {
	font-size: clamp(1.9rem, 3.4vw, 2.6rem);
	margin-bottom: 0.7rem;
}

.garoe-checkout .order__body {
	margin-top: clamp(28px, 4vw, 48px);
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

@media (max-width: 920px) {
	.garoe-checkout .order__body {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* Live plaque preview */
.garoe-checkout .preview-pane {
	position: sticky;
	top: 90px;
	border-radius: 16px;
	padding: clamp(1.8rem, 3vw, 2.8rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
	background: linear-gradient(165deg, #191a1d, #0a0a0c 78%);
	color: var(--club-on-primary);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 50px 100px -50px rgba(0, 0, 0, 0.7);
}

@media (max-width: 920px) {
	.garoe-checkout .preview-pane {
		position: static;
	}
}

.garoe-checkout .preview-kicker {
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	line-height: 0.95;
	color: var(--club-on-primary);
}

.garoe-checkout .preview-cap {
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--club-on-primary) 56%, transparent);
	margin: 0;
}

.garoe-checkout .plaque-wrap {
	perspective: 1400px;
	width: min(310px, 72vw);
}

.garoe-checkout .plaque {
	position: relative;
	width: 100%;
	aspect-ratio: 210/297;
	border-radius: 8px;
	transform: rotateY(-8deg) rotateX(2deg);
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.06) inset, 0 -2px 0 rgba(0, 0, 0, 0.5) inset, 0 40px 80px -30px rgba(0, 0, 0, 0.7);
	background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px), linear-gradient(152deg, #34363b 0%, #1c1d20 38%, #101113 66%, #222327 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #f3f3f4;
	overflow: hidden;
}

.garoe-checkout .plaque__frame {
	position: absolute;
	inset: 7%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 3px;
}

.garoe-checkout .plaque__inner {
	position: absolute;
	inset: 7%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 9% 7%;
}

.garoe-checkout .plaque__crest {
	width: clamp(46px, 16%, 70px);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	display: grid;
	place-items: center;
	overflow: hidden;
}

.garoe-checkout .plaque__crest img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.garoe-checkout .plaque__club {
	margin-top: auto;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: clamp(0.5rem, 1.5vw, 0.62rem);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.garoe-checkout .plaque__name {
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	font-size: clamp(1.5rem, 5.4vw, 2.5rem);
	line-height: 0.9;
	margin-top: 0.35em;
	letter-spacing: -0.01em;
	color: #fff;
}

.garoe-checkout .plaque__rule {
	width: 34%;
	height: 1px;
	background: rgba(255, 255, 255, 0.22);
	margin: 0.7em 0;
}

.garoe-checkout .plaque__meta {
	margin-top: auto;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: clamp(0.46rem, 1.4vw, 0.58rem);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

/* Form shell */
.garoe-checkout .form {
	position: relative;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: clamp(1.7rem, 3vw, 2.8rem);
	overflow: hidden;
	box-shadow: 0 40px 84px -52px rgba(0, 0, 0, 0.34), 0 2px 10px -5px rgba(0, 0, 0, 0.09);
}

.garoe-checkout .form::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: var(--club-primary);
}

.garoe-checkout .stepper {
	display: flex;
	gap: 1.6rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--line);
	padding-bottom: 1rem;
	flex-wrap: wrap;
}

.garoe-checkout .stepper__item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.82rem;
	color: var(--mist-2);
	font-weight: 600;
	transition: color .3s ease;
}

.garoe-checkout .stepper__item .n {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1.5px solid var(--line);
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.86rem;
	transition: all .35s cubic-bezier(.2, .7, .2, 1);
}

.garoe-checkout .stepper__item.active {
	color: var(--ink);
}

.garoe-checkout .stepper__item.active .n {
	border-color: var(--accent);
	background: var(--accent);
	color: var(--paper);
	transform: scale(1.08);
}

.garoe-checkout .stepper__item.done .n {
	border-color: var(--club-primary);
	background: var(--club-primary);
	color: var(--paper);
}

.garoe-checkout .fstep {
	display: none;
}

.garoe-checkout .fstep.is-active {
	display: block;
	animation: garoeFade .5s cubic-bezier(.2, .7, .2, 1);
}

@keyframes garoeFade {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: none; }
}

.garoe-checkout .fstep h3 {
	font-size: clamp(1.8rem, 2.6vw, 2.2rem);
	letter-spacing: 0;
	margin-bottom: 0.4rem;
	line-height: 1.05;
}

.garoe-checkout .fstep__hint {
	color: var(--mist);
	font-size: 0.98rem;
	margin-bottom: 1.7rem;
	max-width: 46ch;
}

/* Fields */
.garoe-checkout .field {
	margin-bottom: 1.3rem;
}

.garoe-checkout .field label {
	display: block;
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	margin-bottom: 0.5rem;
}

.garoe-checkout .field input[type=text],
.garoe-checkout .field input[type=email],
.garoe-checkout .field input[type=tel],
.garoe-checkout .field input[type=number],
.garoe-checkout .field select {
	width: 100%;
	padding: 0.85em 1em;
	border: 1px solid var(--line);
	background: var(--paper);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--ink);
	border-radius: 0;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.garoe-checkout .field input:focus,
.garoe-checkout .field select:focus {
	outline: none;
	border-color: var(--club-primary);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}

.garoe-checkout .field .row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 480px) {
	.garoe-checkout .field .row2 {
		grid-template-columns: 1fr;
	}
}

.garoe-checkout .choice {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.garoe-checkout .choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.garoe-checkout .choice label {
	flex: 1 1 auto;
	min-width: 84px;
	text-align: center;
	padding: 0.8em 0.9em;
	border: 1px solid var(--line);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--ink);
	transition: all .2s ease;
	user-select: none;
	cursor: pointer;
}

.garoe-checkout .choice label:hover {
	border-color: color-mix(in srgb, var(--club-primary) 40%, transparent);
}

.garoe-checkout .choice input:checked + label {
	border-color: var(--accent);
	box-shadow: 0 0 0 1px var(--accent) inset;
	background: color-mix(in srgb, var(--accent) 6%, transparent);
}

/* Season picker */
.garoe-checkout .season-pick {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--line);
	margin-bottom: 1.5rem;
}

.garoe-checkout .season-pick label {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	padding: 1.1rem 1.2rem;
	cursor: pointer;
	transition: background .2s ease;
}

.garoe-checkout .season-pick label + label {
	border-top: 1px solid var(--line);
}

.garoe-checkout .season-pick input {
	margin-top: 0.25rem;
	accent-color: var(--club-primary);
	width: 18px;
	height: 18px;
}

.garoe-checkout .season-pick .sp-title {
	font-weight: 600;
}

.garoe-checkout .season-pick .sp-sub {
	color: var(--mist);
	font-size: 0.9rem;
	margin-top: 2px;
}

.garoe-checkout .season-pick .sp-price {
	margin-left: auto;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.15rem;
	white-space: nowrap;
}

.garoe-checkout .season-pick label:has(input:checked) {
	background: color-mix(in srgb, var(--accent) 5%, transparent);
}

/* A5 add-on */
.garoe-checkout .addon {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem 1.2rem;
	border: 1px solid var(--line);
	margin-bottom: 1.5rem;
}

.garoe-checkout .addon input[type=checkbox] {
	accent-color: var(--club-primary);
	width: 18px;
	height: 18px;
}

.garoe-checkout .addon .ad-t {
	font-weight: 600;
}

.garoe-checkout .addon .ad-s {
	color: var(--mist);
	font-size: 0.88rem;
}

.garoe-checkout .addon .ad-p {
	margin-left: auto;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	white-space: nowrap;
}

.garoe-checkout .a5-qty {
	display: none;
	align-items: center;
	gap: 0.5rem;
	margin-left: auto;
}

.garoe-checkout .a5-qty.is-active {
	display: flex;
}

.garoe-checkout .qty-btn {
	width: 30px;
	height: 30px;
	border: 1px solid var(--line);
	background: var(--paper);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1;
	display: grid;
	place-items: center;
	color: var(--ink);
	cursor: pointer;
	transition: border-color .2s ease;
}

.garoe-checkout .qty-btn:hover {
	border-color: var(--club-primary);
}

.garoe-checkout .qty-val {
	min-width: 1.4em;
	text-align: center;
	font-weight: 700;
	font-family: var(--font-display);
}

/* Backdating */
.garoe-checkout .inline-back {
	border: 1px dashed var(--line);
	padding: 1.2rem 1.3rem;
	margin-bottom: 1.5rem;
}

.garoe-checkout .inline-back .ib-h {
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.garoe-checkout .inline-back .ib-h .ib-badge {
	display: inline-block;
	margin-left: 0.35rem;
	padding: 0.1em 0.5em;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	vertical-align: middle;
}

.garoe-checkout .inline-back .ib-s {
	color: var(--mist);
	font-size: 0.9rem;
	margin-bottom: 0.9rem;
}

.garoe-checkout .ib-was,
.garoe-checkout .sg-was {
	text-decoration: line-through;
	opacity: 0.6;
	font-weight: 500;
	margin-right: 0.35em;
}

.garoe-checkout .back-season-row + .back-season-row {
	margin-top: 0.6rem;
}

.garoe-checkout .back-season-top {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.7em 0.85em;
	border: 1px solid var(--line);
	font-size: 0.92rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .2s ease;
}

.garoe-checkout .back-season-top input {
	accent-color: var(--club-primary);
	width: 17px;
	height: 17px;
}

.garoe-checkout .back-season-top:has(input:checked) {
	border-color: var(--accent);
	box-shadow: 0 0 0 1px var(--accent) inset;
}

.garoe-checkout .back-season-top .sg-price {
	margin-left: auto;
	color: var(--mist);
	font-weight: 600;
}

.garoe-checkout .back-season-detail {
	display: none;
	border: 1px solid var(--line);
	border-top: none;
	padding: 1rem 1rem 1.1rem;
	background: color-mix(in srgb, var(--accent) 3%, var(--paper));
}

.garoe-checkout .back-season-detail.is-open {
	display: block;
}

.garoe-checkout .back-season-detail .bsd-label {
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 0.02em;
	margin-bottom: 0.45rem;
	display: block;
}

.garoe-checkout .back-season-detail .bsd-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
	align-items: start;
}

@media (max-width: 480px) {
	.garoe-checkout .back-season-detail .bsd-row {
		grid-template-columns: 1fr;
	}
}

/* Nav */
.garoe-checkout .form__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.6rem;
	flex-wrap: wrap;
}

.garoe-checkout .link-btn {
	background: none;
	border: none;
	color: var(--mist);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.4em 0;
	cursor: pointer;
}

.garoe-checkout .link-btn:hover {
	color: var(--ink);
}

/* Summary */
.garoe-checkout .summary {
	border: 1px solid var(--line);
}

.garoe-checkout .summary__row {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	padding: 1rem 1.2rem;
	border-bottom: 1px solid var(--line);
}

.garoe-checkout .summary__row .sr-main {
	font-weight: 500;
}

.garoe-checkout .summary__row .sr-sub {
	color: var(--mist);
	font-size: 0.85rem;
}

.garoe-checkout .summary__row .sr-price {
	margin-left: auto;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	white-space: nowrap;
}

.garoe-checkout .summary__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 1.15rem 1.2rem;
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
}

.garoe-checkout .summary__total .st-n {
	font-size: 1.05rem;
	letter-spacing: 0.04em;
}

.garoe-checkout .summary__total .st-v {
	font-size: 1.7rem;
}

.garoe-checkout .pay-note {
	font-size: 0.78rem;
	color: var(--mist-2);
	margin-top: 1rem;
}

/* Stripe payment step */
.garoe-checkout .pay-block {
	margin-top: 1.6rem;
}

.garoe-checkout #garoe-payment-element {
	margin: 18px 0 22px 0;
}

.garoe-checkout .garoe-error {
	color: #b00020;
	font-size: 0.9rem;
	margin: 8px 0;
	min-height: 18px;
}

/* Confirmation / status */
.garoe-checkout .confirm {
	display: none;
	text-align: center;
	padding: 2rem 0;
}

.garoe-checkout .confirm.is-active {
	display: block;
	animation: garoeFade .6s ease;
}

.garoe-checkout .confirm .tick {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 2px solid var(--club-primary);
	display: grid;
	place-items: center;
	margin: 0 auto 1.4rem;
	font-size: 1.6rem;
}

.garoe-checkout .confirm h3 {
	font-size: 2rem;
	margin-bottom: 0.6rem;
}

.garoe-checkout .confirm p {
	color: var(--mist);
	max-width: 42ch;
	margin: 0 auto;
}

.garoe-checkout .garoe-status {
	text-align: center;
	font-size: 1.1rem;
	padding: 40px 0;
}

@media (prefers-reduced-motion: reduce) {
	.garoe-checkout *,
	.garoe-checkout *::before,
	.garoe-checkout *::after {
		animation: none !important;
		transition: none !important;
	}
	.garoe-checkout .plaque {
		transform: rotateY(-6deg) rotateX(2deg) !important;
	}
}

/* Secondary screens (renewal confirm, resume, return) reuse a small set of
   utility classes, styled to match the same brand language. */
.garoe-checkout__form,
.garoe-checkout .garoe-renew,
.garoe-checkout.garoe-renew {
	max-width: 540px;
	margin-inline: auto;
}

.garoe-renew .form,
.garoe-checkout__form {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: clamp(1.6rem, 3vw, 2.4rem);
}

.garoe-checkout__group {
	border: 1px solid var(--line);
	padding: 1.1rem 1.2rem 0.2rem;
	margin: 0 0 1.3rem;
}

.garoe-checkout__group legend {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
	padding: 0 0.4rem;
}

.garoe-checkout__form label {
	display: block;
	margin: 0 0 1rem;
	font-size: 0.86rem;
	font-weight: 600;
}

.garoe-checkout__form input[type=text],
.garoe-checkout__form input[type=email],
.garoe-checkout__form input[type=tel],
.garoe-checkout__form input[type=number],
.garoe-checkout__form select {
	display: block;
	width: 100%;
	margin-top: 0.4rem;
	padding: 0.85em 1em;
	font-size: 1rem;
	font-weight: 400;
	border: 1px solid var(--line);
	background: var(--paper);
	color: var(--ink);
	border-radius: 0;
}

.garoe-checkout__radio {
	font-weight: 400;
}

.garoe-checkout__radio input {
	margin-right: 0.5rem;
}

.garoe-checkout__submit {
	display: inline-block;
	width: 100%;
	padding: 0.95em 1.7em;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--club-on-primary);
	background: var(--club-primary);
	border: none;
	border-radius: 0;
	cursor: pointer;
}

.garoe-checkout__submit:disabled {
	opacity: 0.55;
	cursor: default;
}

.garoe-checkout__payment {
	margin-top: 1rem;
}

.garoe-checkout__payment #garoe-payment-element {
	margin: 18px 0 22px 0;
}

.garoe-checkout__error {
	color: #b00020;
	font-size: 0.9rem;
	margin: 8px 0;
	min-height: 18px;
}

.garoe-checkout__status {
	text-align: center;
	font-size: 1.1rem;
	padding: 40px 0;
}

/* Welcome / confirmation (return) page */
.garoe-return {
	max-width: 660px;
	margin: 8px auto;
	background: #0b0b0c;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.garoe-return__head {
	text-align: center;
	background: #0b0b0c;
	padding: 52px 36px 0;
	border-bottom: none;
	margin-bottom: 0;
}

.garoe-return__crest {
	width: 136px;
	height: 136px;
	object-fit: contain;
	margin: 0 auto 20px;
	display: block;
	filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
}

.garoe-return__wordmark {
	font-family: var(--font-display);
	font-size: 14px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	color: #9a9aa0;
}

.garoe-return__hero {
	background: #0b0b0c;
	color: #fff;
	padding: 30px 40px 56px;
	text-align: center;
}

.garoe-return__kicker {
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	color: #9a9aa0;
	margin-bottom: 18px;
	position: relative;
	padding-top: 26px;
}

.garoe-return__kicker::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 2px;
	background: rgba(255, 255, 255, 0.28);
}

.garoe-return__title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5.6vw, 3.3rem);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 0.98;
	letter-spacing: -0.01em;
	color: #fff;
	margin: 0 0 18px;
}

.garoe-return__msg {
	font-size: 16px;
	line-height: 1.6;
	color: #c9c9c9;
	max-width: 44ch;
	margin: 0 auto;
}

.garoe-return__summary {
	background: #ffffff;
	padding: 30px 40px 12px;
}

.garoe-return__summary h3 {
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	color: #0b0b0c;
	margin: 0 0 14px;
}

.garoe-return__line {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.garoe-return__line .grl-main {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
}

.garoe-return__line .grl-sub {
	display: block;
	font-size: 13px;
	color: #888;
	margin-top: 2px;
}

.garoe-return__line .grl-price {
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.garoe-return__paid {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 18px 0 6px;
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: #0b0b0c;
}

.garoe-return__meta {
	font-size: 13px;
	color: #777;
	padding-top: 8px;
	line-height: 1.5;
}

.garoe-return__next {
	background: var(--paper-2);
	padding: 36px 40px 40px;
}

.garoe-return__next h3 {
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 16px;
}

.garoe-return__next ol {
	margin: 0;
	padding-left: 1.2em;
}

.garoe-return__next li {
	font-size: 15px;
	line-height: 1.6;
	color: #1a1a1a;
	margin-bottom: 12px;
}

/* Delivery / collection choice */
.garoe-delivery {
	margin-top: 1.7rem;
}

.garoe-delivery__h {
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 0.7rem;
}

.garoe-address {
	margin-top: 1.1rem;
}

/* Discount code box */
.garoe-discount {
	margin-top: 1.4rem;
}

.garoe-discount > label {
	display: block;
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	margin-bottom: 0.5rem;
}

.garoe-discount__row {
	display: flex;
	gap: 0.6rem;
}

.garoe-discount__row input {
	flex: 1 1 auto;
	padding: 0.85em 1em;
	border: 1px solid var(--line);
	background: var(--paper);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--ink);
	border-radius: 0;
}

.garoe-discount__row input:focus {
	outline: none;
	border-color: var(--club-primary);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}

.garoe-discount__apply {
	flex: 0 0 auto;
	padding: 0 1.4em;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--ink);
	background: transparent;
	border: 1px solid var(--line);
	cursor: pointer;
	transition: border-color .2s ease;
}

.garoe-discount__apply:hover {
	border-color: var(--club-primary);
}

.garoe-discount__msg {
	font-size: 0.85rem;
	margin-top: 0.5rem;
	min-height: 1.1em;
}

.garoe-discount__msg.is-ok {
	color: #14622f;
}

.garoe-discount__msg.is-bad {
	color: #b00020;
}
