/* App checkout overrides. */

.rmx-checkout-page {
	background: #f4f6f8;
	color: #080b12;
	font-weight: 400;
}

.rmx-checkout-page .header_header__VGOmR,
.rmx-checkout-page .footer_footer__h4ePd,
.rmx-checkout-page .skip-link {
	display: none !important;
}

.rmx-checkout-page .rmx_site_main {
	min-height: 100vh;
	padding: 0;
	background: #f4f6f8;
}

.checkout-shell {
	min-height: 100vh;
	padding: 24px 18px 56px;
	background: #f4f6f8;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.checkout-wrap {
	width: min(100%, 1040px);
	margin: 0 auto;
	padding: 0;
}

.checkout-empty,
.checkout-step[data-step="1"],
.checkout-step[data-step="3"],
.summary-rail__inner {
	border: 1px solid #dce1ea;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.checkout-empty {
	display: grid;
	justify-items: center;
	gap: 18px;
	padding: 64px 24px;
	text-align: center;
}

.checkout-empty h1,
.checkout-step h1 {
	margin: 0;
	color: #030712;
	font-size: 2.1rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.1;
}

.stepper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	color: #7a8495;
}

.stepper__step {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 28px;
	font-size: 0.92rem;
	font-weight: 600;
	white-space: nowrap;
}

.stepper__step + .stepper__step::before {
	content: "";
	width: 18px;
	height: 18px;
	margin-right: 6px;
	background: linear-gradient(135deg, transparent 45%, #c4cad5 45%, #c4cad5 56%, transparent 56%);
	transform: rotate(-45deg);
}

.stepper__step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 29px;
	height: 22px;
	border-radius: 999px;
	background: #e6ebf3;
	color: #9ca5b4;
	font-size: 0.78rem;
	font-weight: 700;
}

.stepper__step strong {
	font-weight: 600;
}

.stepper__step.is-active {
	color: #05070c;
}

.stepper__step.is-active span {
	background: #ff5b22;
	color: #fff;
}

.stepper__step.is-complete span {
	background: #dfe5ef;
	color: #778196;
}

.checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 378px;
	align-items: start;
	gap: 32px;
}

.checkout-main {
	min-height: 454px;
	padding: 0;
}

.checkout-step[hidden] {
	display: none !important;
}

.checkout-step {
	display: grid;
	gap: 24px;
}

.checkout-step[data-step="1"],
.checkout-step[data-step="3"] {
	padding: 36px 42px;
}

.checkout-step[data-step="2"] {
	gap: 16px;
}

.checkout-step[data-step="2"] > h1 {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.checkout-step > form {
	display: grid;
	gap: 16px;
	width: min(100%, 390px);
	margin: 8px auto 0;
}

.checkout-step[data-step="1"] {
	justify-items: center;
	text-align: center;
}

.live-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: max-content;
	min-height: 30px;
	padding: 6px 14px;
	border-radius: 999px;
	background: #e7fbf4;
	color: #07111e;
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 600;
}

.live-pill::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10c994;
	box-shadow: 0 0 0 4px rgba(16, 201, 148, 0.12);
}

.live-pill strong,
.live-pill [data-live-users] {
	color: #06ad7e;
	font-weight: 800;
}

.field {
	position: relative;
	display: grid;
	gap: 6px;
	text-align: left;
}

.field--icon {
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	min-height: 54px;
	padding: 7px 14px;
	border: 1px solid #d7dde7;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.field--icon .icon,
.field--icon svg {
	grid-row: 1 / span 2;
	width: 22px;
	height: 22px;
	color: #ff5b66;
}

.field--icon span {
	color: #858e9e;
	font-size: 0.74rem;
	font-weight: 500;
	line-height: 1;
}

.field--icon input {
	width: 100%;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #141923;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 500;
}

.field__error {
	display: none;
	grid-column: 2;
	min-height: 0;
	color: #d61f36;
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 800;
}

.field__error:not(:empty) {
	display: block;
	margin-top: 2px;
}

.checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #374151;
	font-size: 0.88rem;
	font-weight: 500;
	text-align: left;
}

.checkbox input {
	width: 18px;
	height: 18px;
	accent-color: #111827;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 0;
	border-radius: 8px;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}

.btn:disabled,
.btn.is-loading {
	cursor: not-allowed;
	opacity: 0.62;
	pointer-events: none;
}

.btn-primary {
	background: linear-gradient(135deg, #ff7a24, #ff2d12);
	color: #fff;
	box-shadow: 0 8px 18px rgba(255, 91, 34, 0.18);
}

.btn-ghost {
	border: 1px solid #d7dde7;
	background: #fff;
	color: #04070d;
}

.btn-block {
	width: 100%;
}

.btn-lg {
	min-height: 54px;
	font-size: 1rem;
}

.btn:hover {
	transform: translateY(-1px);
}

.meta {
	margin: 0;
	color: #445064;
	font-size: 0.86rem;
	font-weight: 500;
}

.registration-card {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ffe08a;
	border-radius: 10px;
	background: #fff8da;
	color: #6b4a00;
	text-align: left;
}

.summary-rail {
	position: sticky;
	top: 24px;
	align-self: start;
}

.summary-rail__toggle {
	display: none;
}

.summary-rail__inner {
	display: grid;
	gap: 16px;
	padding: 18px;
}

.summary-rail__inner h2 {
	margin: 0;
	color: #111827;
	font-size: 0.92rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.summary-empty {
	margin: 0;
	color: #6b7280;
	font-weight: 700;
}

.summary-group {
	display: grid;
	gap: 8px;
	padding: 12px 0;
	border-top: 1px solid #edf0f4;
}

.summary-group > strong {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #4b5563;
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.summary-group > strong::before {
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 6px;
	background: linear-gradient(135deg, #ff9b2f, #ff2c86 45%, #6b5cff);
}

.summary-group [data-summary-complete] {
	justify-self: end;
	margin-top: -28px;
	color: #10a574;
	font-size: 0.78rem;
	font-weight: 700;
}

.summary-group p {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	margin: 0;
	color: #263143;
	font-size: 0.88rem;
	font-weight: 500;
}

.summary-group b {
	font-weight: 800;
	white-space: nowrap;
}

.summary-total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding-top: 12px;
	border-top: 1px solid #dce1ea;
}

.summary-total span {
	color: #111827;
	font-weight: 800;
}

.summary-total strong {
	color: #030712;
	font-size: 1.25rem;
	font-weight: 800;
}

.bundle-banner {
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: 18px;
	border: 1px solid #ffc425;
	border-radius: 14px;
	background: linear-gradient(135deg, #ffe987, #ffbd16);
	color: #643a00;
	text-align: center;
}

.bundle-banner strong {
	font-weight: 800;
}

.bundle-banner p {
	margin: 0;
	font-size: 0.84rem;
	font-weight: 600;
}

.platform-card-stack {
	display: grid;
	gap: 16px;
}

.platform-card-select {
	border: 1px solid #dce1ea;
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
}

.platform-card-select summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 24px;
	cursor: pointer;
	list-style: none;
}

.platform-card-select summary::-webkit-details-marker {
	display: none;
}

.profile-mini {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	align-items: center;
	column-gap: 12px;
	row-gap: 3px;
	min-width: 0;
}

.profile-mini .avatar {
	grid-row: 1 / span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 2px solid #ff3b63;
	border-radius: 999px;
	background: #f7f8fb;
	overflow: hidden;
}

.profile-mini .avatar .icon,
.profile-mini .avatar svg {
	width: 22px;
	height: 22px;
}

.profile-mini .avatar img,
.profile-ring img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-mini span:nth-child(2) {
	color: #0f172a;
	font-size: 1rem;
	font-weight: 700;
}

.profile-mini strong {
	display: block;
	color: #4b5563;
	font-size: 0.82rem;
	font-weight: 500;
}

.follower-count {
	color: #4b5563;
	font-size: 0.82rem;
	font-weight: 500;
}

.platform-card__body {
	display: grid;
	gap: 14px;
	padding: 0 24px 24px;
}

.platform-card__body h3 {
	margin: 0;
	color: #030712;
	font-size: 0.92rem;
	font-weight: 800;
}

.post-counter,
.comment-counter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	min-height: 58px;
	padding: 10px 14px;
	border: 1px solid #e1e6ef;
	border-radius: 14px;
	background: #f8fafc;
	color: #647084;
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
}

.post-counter span:not(.chip),
.comment-counter {
	min-height: 34px;
	padding: 9px 12px;
	border-radius: 8px;
	background: #fff;
}

.post-counter .chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 14px;
	border-radius: 9px;
	background: #ff5b22;
	color: #fff;
	box-shadow: 0 5px 12px rgba(255, 91, 34, 0.18);
}

.post-counter .meta {
	background: transparent;
	color: #798397;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 10px 0 0;
}

.post-grid > .meta {
	grid-column: 1 / -1;
	padding: 18px 0;
	color: #475569;
	line-height: 1.45;
}

.post-grid.skeleton {
	min-height: 260px;
	border-radius: 12px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0)) 0 0 / 220px 100% no-repeat,
		#edf1f7;
	animation: rmx-checkout-shimmer 1.2s linear infinite;
}

@keyframes rmx-checkout-shimmer {
	to {
		background-position: 100% 0, 0 0;
	}
}

.post-tile {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 8px;
	background: #e6ebf2;
	color: #fff;
	cursor: pointer;
	padding: 0;
}

.post-tile img,
.post-tile > span {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-tile > span {
	background: linear-gradient(135deg, #d7dce5, #a7afbd);
}

.post-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 160ms ease;
}

.post-tile.is-selected {
	border-color: #ff5b22;
	box-shadow: 0 0 0 2px #ff5b22;
}

.post-tile.is-selected::before {
	content: "+" attr(data-units);
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	min-width: 76px;
	padding: 8px 10px;
	border-radius: 999px;
	background: #ff5b22;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 800;
}

.post-tile:disabled {
	cursor: not-allowed;
	filter: grayscale(1);
	opacity: 0.72;
}

.post-tile:disabled::after {
	background: rgba(0, 0, 0, 0.34);
}

.post-tile em {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	transform: translate(-50%, -50%);
	max-width: calc(100% - 14px);
	padding: 6px 9px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.62);
	color: #fff;
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
}

.post-tile em + em {
	top: auto;
	bottom: 9px;
	background: #ffd360;
	color: #9a5a00;
}

.theme-picker {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 0 1px 6px;
	scroll-padding-left: 1px;
	scrollbar-width: none;
}

.theme-picker::-webkit-scrollbar {
	display: none;
}

.theme-chip {
	flex: 0 0 auto;
	min-height: 34px;
	padding: 8px 12px;
	border: 1px solid #d7dde7;
	border-radius: 999px;
	background: #fff;
	color: #4b5563;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 600;
	cursor: pointer;
}

.theme-chip.is-active {
	border-color: #ff5b22;
	background: #fff0ea;
	color: #ff4d1a;
}

.comment-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list li {
	padding: 10px 12px;
	border: 1px solid #e1e6ef;
	border-radius: 10px;
	background: #f8fafc;
	color: #1f2937;
	font-size: 0.86rem;
	font-weight: 500;
	text-align: left;
}

.order-card {
	display: grid;
	gap: 14px;
	padding: 16px;
	border: 1px solid #dce1ea;
	border-radius: 14px;
	background: #fff;
}

.order-card header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.profile-ring {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 2px solid #ff3b63;
	border-radius: 999px;
	background: #f7f8fb;
}

.delivery-pill {
	margin-left: auto;
	padding: 5px 9px;
	border-radius: 999px;
	background: #e7fbf4;
	color: #059669;
	font-size: 0.74rem;
	font-weight: 700;
}

.order-card__thumbs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.order-card__thumbs span {
	aspect-ratio: 1;
	border-radius: 8px;
	background: #edf1f7;
}

.wc-checkout-shell {
	display: grid;
	gap: 16px;
}

.wc-checkout-shell .woocommerce {
	width: 100%;
}

.wc-checkout-shell input,
.wc-checkout-shell select,
.wc-checkout-shell textarea {
	min-height: 46px;
	border: 1px solid #d7dde7 !important;
	border-radius: 9px !important;
	box-shadow: none !important;
}

.wc-checkout-shell button,
.wc-checkout-shell #place_order {
	min-height: 48px;
	border: 0 !important;
	border-radius: 8px !important;
	background: linear-gradient(135deg, #ffb478, #ff6c82) !important;
	color: #fff !important;
	font-weight: 700 !important;
}

@media (max-width: 980px) {
	.checkout-layout {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.summary-rail {
		position: static;
		order: -1;
	}

	.summary-rail__inner {
		padding: 14px;
	}
}

@media (max-width: 640px) {
	.checkout-shell {
		padding: 18px 12px 32px;
	}

	.checkout-main {
		border-radius: 14px;
	}

	.checkout-step[data-step="1"],
	.checkout-step[data-step="3"] {
		padding: 26px 18px;
	}

	.checkout-step h1 {
		font-size: 1.8rem;
	}

	.stepper {
		justify-content: flex-start;
		gap: 10px;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.stepper__step + .stepper__step::before {
		width: 12px;
		margin-right: 0;
	}

	.stepper__step strong {
		font-size: 0.85rem;
	}

	.platform-card-select summary,
	.platform-card__body {
		padding-left: 14px;
		padding-right: 14px;
	}

	.post-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.delivery-pill {
		display: none;
	}
}

@media (max-width: 420px) {
	.checkout-shell {
		padding-left: 10px;
		padding-right: 10px;
	}

	.checkout-main {
		min-height: 0;
	}

	.checkout-step[data-step="1"],
	.checkout-step[data-step="3"] {
		padding: 22px 14px;
	}

	.checkout-step > form {
		width: 100%;
	}

	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.summary-group p {
		font-size: 0.82rem;
	}
}


/* Functional checkout controls added for the state-machine flow. */
.checkout-stepper-nav {
	width: 100%;
}

.stepper__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	padding: 0;
	cursor: pointer;
}

.stepper__link:disabled {
	cursor: default;
	opacity: 0.72;
}

.stepper__link:focus-visible,
.checkout-back-link:focus-visible {
	outline: 2px solid #ff5b22;
	outline-offset: 4px;
	border-radius: 6px;
}

.checkout-back-link {
	justify-self: start;
	color: #647084;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
}

.checkout-step[data-step="1"] .checkout-back-link {
	margin-bottom: -6px;
}

.checkout-message {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid #f5b6ac;
	border-radius: 10px;
	background: #fff1ee;
	color: #a33320;
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.45;
}

.checkout-message[hidden] {
	display: none !important;
}

.checkout-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 4px;
}

.checkout-actions .btn-primary {
	flex: 1;
}

.checkout-step__header {
	display: grid;
	gap: 16px;
}

.checkout-step__header .checkout-step__back {
	justify-self: start;
}

.comments-panel {
	display: grid;
	gap: 12px;
	padding-top: 4px;
}

.comment-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px;
	border: 1px solid #e1e6ef;
	border-radius: 9px;
	background: #fff;
	color: #334155;
	font-size: .88rem;
	line-height: 1.35;
	cursor: pointer;
}

.comment-list input {
	flex: 0 0 auto;
	margin-top: 2px;
	accent-color: #ff5b22;
}

.post-tile.has-image-error > span,
.post-tile.has-image-error::before {
	background: linear-gradient(135deg, #e4e8ef, #c7cfdb);
}

.order-card__thumbs img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: cover;
}

@media (max-width: 640px) {
	.checkout-actions {
		flex-direction: column-reverse;
	}

	.checkout-actions .btn {
		width: 100%;
	}
}


/* v1.2 post quota selection states. All loaded public media is enabled until quota is filled. */
.post-tile:not(:disabled) { cursor: pointer; filter: none; opacity: 1; }
.post-tile.is-selected { cursor: pointer; }
.post-tile .selected-label {
    background: #ff5b22;
    color: #fff;
}
.post-tile:disabled { cursor: not-allowed; }

/* v1.2.6 — completed order experience */
.checkout-shell--received { background: #f7f8fc; min-height: calc(100vh - 120px); padding: clamp(28px, 5vw, 58px) 0 64px; }
.rmx-order-received-wrap { max-width: 1080px; }
.checkout-shell--received .woocommerce-order > .woocommerce-notice--success,
.checkout-shell--received .woocommerce-order > .woocommerce-thankyou-order-received { display: none; }
.rmx-success { font-family: inherit; color: #080916; }
.rmx-success__hero { align-items: center; background: #fff; border: 1px solid #e1e5ee; border-radius: 26px; box-shadow: 0 12px 30px rgba(12,18,35,.05); display: flex; gap: 20px; margin-bottom: 22px; padding: clamp(22px,4vw,34px); }
.rmx-success__check { align-items: center; background: #61ed8b; border: 2px solid #0a0a12; border-radius: 50%; display: inline-flex; flex: 0 0 58px; font-size: 32px; font-weight: 800; height: 58px; justify-content: center; }
.rmx-success__eyebrow { color: #119448; font-size: 12px; font-weight: 800; letter-spacing: .08em; margin: 0 0 6px; text-transform: uppercase; }
.rmx-success__hero h1 { font-size: clamp(26px,3vw,34px); font-style: italic; font-weight: 900; line-height: 1.05; margin: 0 0 7px; }
.rmx-success__hero p:not(.rmx-success__eyebrow) { color: #596274; margin: 0; }
.rmx-success__status { background: #effff3; border: 1px solid #a4ebbc; border-radius: 999px; color: #08843d; font-size: 13px; font-weight: 800; margin-left: auto; padding: 8px 15px; white-space: nowrap; }
.rmx-success__grid { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0,1fr)); margin-bottom: 20px; }
.rmx-success-card { background: #fff; border: 2px solid #10111c; border-radius: 24px; min-height: 225px; padding: 22px; }
.rmx-success-card h2 { font-size: 17px; font-weight: 850; margin: 0 0 18px; }
.rmx-success-account__profile { align-items: center; display: flex; gap: 12px; margin-bottom: 23px; }
.rmx-success-account__avatar { align-items: center; background: #f03c86; border: 2px solid #10111c; border-radius: 14px; display: flex; height: 52px; justify-content: center; overflow: hidden; width: 52px; }
.rmx-success-account__avatar img { height: 100%; object-fit: cover; width: 100%; }
.rmx-success-account__avatar svg { color: #fff; height: 27px; width: 27px; }
.rmx-success-account__platform { color: #657083; display: block; font-size: 12px; font-weight: 700; }
.rmx-success-account__profile strong { display: block; font-size: 16px; }
.rmx-success-delivery { align-items: center; background: #f2fff4; border-radius: 12px; display: flex; justify-content: space-between; padding: 12px; }
.rmx-success-delivery span, .rmx-success-total span { color: #657083; font-size: 13px; font-weight: 700; }
.rmx-success-delivery strong { background: #dbf8e4; border-radius: 999px; color: #087937; font-size: 13px; padding: 5px 10px; }
.rmx-success-services { display: grid; gap: 8px; }
.rmx-success-services div { align-items: center; background: #f4f5fa; border-radius: 11px; display: flex; justify-content: space-between; padding: 10px 12px; }
.rmx-success-services span { color: #4b5567; font-weight: 700; }
.rmx-success-services strong { font-size: 17px; }
.rmx-success-total { border-top: 1px dashed #c5cad6; display: flex; justify-content: space-between; margin-top: 14px; padding-top: 13px; }
.rmx-success-total strong { font-size: 17px; }
.rmx-success-card__heading { align-items: center; display: flex; justify-content: space-between; }
.rmx-success-card__heading span { background: #0b0c13; border-radius: 999px; color: #fff; font-size: 12px; font-weight: 800; padding: 5px 10px; }
.rmx-success-thumbs { display: grid; gap: 7px; grid-template-columns: repeat(5, minmax(0,1fr)); }
.rmx-success-thumbs span { aspect-ratio: 1; background: #eef0f5; border-radius: 8px; display: block; overflow: hidden; }
.rmx-success-thumbs img { height: 100%; object-fit: cover; width: 100%; }
.rmx-success-muted { color: #667083; font-size: 13px; margin: 14px 0 0; }
.rmx-success__next { background: #fff; border: 1px solid #e0e4ec; border-radius: 22px; display: grid; gap: 14px; grid-template-columns: 1.25fr repeat(3,1fr); padding: 20px 24px; }
.rmx-success__next h2 { align-self: center; font-size: 19px; font-style: italic; font-weight: 850; margin: 0; }
.rmx-success__next div { align-items: center; display: flex; gap: 10px; }
.rmx-success__next strong { align-items: center; background: #11121d; border-radius: 50%; color: #fff; display: inline-flex; flex: 0 0 29px; height: 29px; justify-content: center; }
.rmx-success__next p { color: #596274; font-size: 13px; line-height: 1.4; margin: 0; }
.checkout-shell--received ul.woocommerce-order-overview { background: #fff; border: 1px solid #e0e4ec; border-radius: 20px; display: flex; flex-wrap: wrap; gap: 18px 28px; list-style: none; margin: 22px 0; padding: 18px 22px; }
.checkout-shell--received .woocommerce-order-details,
.checkout-shell--received .woocommerce-customer-details { background:#fff; border:1px solid #e0e4ec; border-radius:22px; margin-top:20px; padding:22px; }
.checkout-shell--received .woocommerce-order-details__title,
.checkout-shell--received .woocommerce-column__title { font-size:20px; font-weight:850; margin:0 0 16px; }
@media (max-width: 920px) { .rmx-success__grid { grid-template-columns: 1fr; } .rmx-success__next { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .rmx-success__hero { align-items:flex-start; flex-wrap:wrap; } .rmx-success__status { margin-left:78px; } .rmx-success-card { min-height:0; } }

/* ========================================================================== 
   Rushmax Checkout Flow redesign v1.3.0
   Presentation adapted from the supplied checkout redesign while retaining
   WooCommerce and Rushmax Core integration hooks.
   ========================================================================== */
.rmx-checkout-page {
	--checkout-ink: #111111;
	--checkout-paper: #fffefd;
	--checkout-purple: #9665ed;
	--checkout-purple-dark: #6b2bd6;
	--checkout-pink: #fb6fa9;
	--checkout-yellow: #ffdc3c;
	--checkout-green: #17aa6d;
	--checkout-mint: #ddf7ea;
	--checkout-line: #d8d5de;
	--checkout-muted: #62636b;
	--checkout-bg: #d8d2fd;
	background: var(--checkout-bg);
	color: var(--checkout-ink);
	font-family: Inter, Arial, sans-serif;
}

.rmx-checkout-page .rmx_site_main {
	background: radial-gradient(circle at 51% 34%, rgba(255,255,255,.44), transparent 38%), radial-gradient(circle at 4% 91%, rgba(110,238,199,.46), transparent 22%), radial-gradient(circle at 99% 3%, rgba(111,235,198,.5), transparent 22%), var(--checkout-bg);
}

.rmx-checkout-page .checkout-shell {
	position: relative;
	isolation: isolate;
	min-height: 100vh;
	padding: 26px 34px 42px;
	background: transparent;
	font-family: Inter, Arial, sans-serif;
}

.rmx-checkout-page .checkout-wrap {
	position: relative;
	z-index: 2;
	width: min(100%, 1350px);
	margin: 0 auto;
	padding: 0;
}

.checkout-brand {
	position: fixed;
	z-index: 3;
	left: 39px;
	top: 28px;
	color: #fff;
	font-family: Fredoka, Inter, Arial, sans-serif;
	font-size: 36px;
	font-style: italic;
	font-weight: 700;
	line-height: 1;
	text-shadow: 3px 3px 0 #111, -1px -1px 0 #111;
}

.checkout-brand span {
	margin-left: 6px;
	font-size: 19px;
	font-style: normal;
	vertical-align: top;
}

.checkout-decor {
	position: fixed;
	z-index: 0;
	pointer-events: none;
}

.checkout-decor--corner {
	right: -16px;
	top: -18px;
	width: 190px;
	height: 132px;
	background: #8ce9ca;
	border: 7px solid #fff;
	clip-path: polygon(15% 0, 100% 0, 100% 100%, 81% 60%, 66% 93%, 48% 56%, 29% 79%, 32% 33%, 9% 32%);
}

.checkout-decor--star {
	left: -9px;
	top: 245px;
	color: var(--checkout-yellow);
	font-size: 92px;
	line-height: 1;
	-webkit-text-stroke: 5px white;
	filter: drop-shadow(2px 3px 0 #111);
	transform: rotate(-12deg);
}

.checkout-decor--blob {
	left: -30px;
	bottom: -4px;
	width: 144px;
	height: 430px;
	background: #8deac9;
	border: 7px solid #fff;
	border-radius: 0 65% 50% 0 / 0 22% 22% 0;
	transform: rotate(-4deg);
}

.checkout-decor--heart {
	left: 61px;
	bottom: 27px;
	color: var(--checkout-pink);
	font-size: 67px;
	-webkit-text-stroke: 8px white;
	filter: drop-shadow(2px 3px 0 #111);
}

.checkout-decor--smile {
	right: 47px;
	bottom: 24px;
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border: 7px solid #fff;
	border-radius: 50%;
	background: var(--checkout-yellow);
	box-shadow: inset 0 0 0 3px #111;
	font-size: 50px;
	line-height: 1;
}

.rmx-checkout-page .checkout-stepper-nav {
	position: relative;
	z-index: 2;
	margin: 0 0 25px;
}

.rmx-checkout-page .stepper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 52px;
	height: 68px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rmx-checkout-page .stepper__step {
	position: relative;
	display: block;
	min-height: auto;
	font-size: 17px;
	font-weight: 700;
}

.rmx-checkout-page .stepper__step + .stepper__step::before {
	position: absolute;
	left: -43px;
	top: 26px;
	width: 34px;
	height: 4px;
	margin: 0;
	background: radial-gradient(circle, #111 2px, transparent 2.4px) 0 0 / 10px 4px repeat-x;
	transform: none;
}

.rmx-checkout-page .stepper__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-width: 170px;
	height: 55px;
	padding: 0 22px;
	border: 0;
	border-radius: 32px;
	background: rgba(255,255,255,.65);
	color: var(--checkout-ink);
	font: 700 17px Inter, Arial, sans-serif;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.rmx-checkout-page .stepper__link:disabled {
	cursor: not-allowed;
	opacity: .85;
}

.rmx-checkout-page .stepper__link span {
	display: grid;
	place-items: center;
	width: 39px;
	height: 39px;
	border-radius: 50%;
	background: rgba(97,69,189,.12);
	color: #111;
	font-size: 18px;
	font-weight: 700;
}

.rmx-checkout-page .stepper__link strong {
	font-weight: 700;
}

.rmx-checkout-page .stepper__step.is-active .stepper__link {
	border: 3px solid var(--checkout-ink);
	background: var(--checkout-yellow);
	box-shadow: 0 4px 0 var(--checkout-ink);
}

.rmx-checkout-page .stepper__step.is-active .stepper__link span {
	background: var(--checkout-ink);
	color: #fff;
}

.rmx-checkout-page .stepper__step.is-complete .stepper__link span {
	background: #c8f1d9;
	color: #167848;
}

.rmx-checkout-page .checkout-layout {
	display: grid;
	grid-template-columns: minmax(650px, 1.68fr) minmax(360px, .9fr);
	gap: 35px;
	align-items: start;
}

.rmx-checkout-page .checkout-main {
	min-height: 0;
}

.rmx-checkout-page .checkout-card,
.rmx-checkout-page .summary-rail__inner,
.rmx-checkout-page .checkout-empty {
	border: 3px solid var(--checkout-ink);
	border-radius: 29px;
	background: rgba(255,255,255,.95);
	box-shadow: 0 6px 0 var(--checkout-ink), 0 15px 24px rgba(52,37,98,.08);
}

.rmx-checkout-page .checkout-step[data-step="1"],
.rmx-checkout-page .checkout-step[data-step="3"] {
	padding: 0;
}

.rmx-checkout-page .checkout-details {
	position: relative;
	justify-items: stretch;
	min-height: 730px;
	padding: 42px 84px 42px !important;
	text-align: left;
}

.checkout-heart-badge {
	position: absolute;
	right: 38px;
	top: 26px;
	width: 74px;
	height: 74px;
	display: grid;
	place-items: center;
	border: 3px solid #111;
	border-radius: 19px;
	background: var(--checkout-pink);
	color: #fff;
	font-size: 40px;
	line-height: 1;
	transform: rotate(12deg);
}

.rmx-checkout-page .checkout-back-link,
.rmx-checkout-page .checkout-step__back {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	width: max-content;
	margin: 0 0 44px;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.rmx-checkout-page .checkout-back-link .icon,
.rmx-checkout-page .checkout-step__back .icon {
	width: 22px;
	height: 22px;
}

.rmx-checkout-page .checkout-step h1 {
	color: #111;
	font-family: Fredoka, Inter, Arial, sans-serif;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0;
}

.rmx-checkout-page .checkout-details h1 {
	margin: 0 0 18px;
	font-size: clamp(46px, 5vw, 58px);
	line-height: 1;
	text-align: center;
}

.rmx-checkout-page .live-pill {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	min-height: 43px;
	padding: 0 20px;
	border-radius: 28px;
	background: var(--checkout-mint);
	color: #111;
	font-size: 15px;
	font-weight: 700;
}

.rmx-checkout-page .live-pill::before {
	width: 13px;
	height: 13px;
	background: var(--checkout-green);
	box-shadow: none;
}

.rmx-checkout-page .live-pill strong,
.rmx-checkout-page .live-pill [data-live-users] {
	color: #111;
	font-weight: 700;
}

.rmx-checkout-page .checkout-details > .live-pill {
	margin: 0 auto 25px;
}

.rmx-checkout-page .checkout-details > form {
	display: grid;
	gap: 22px;
	width: min(100%, 606px);
	margin: 0 auto;
}

.rmx-checkout-page .field--icon {
	position: relative;
	display: block;
	min-height: 85px;
	padding: 16px 19px 12px 88px;
	border: 2.5px solid #111;
	border-radius: 18px;
	background: #fff;
	transition: border-color .18s, box-shadow .18s;
}

.rmx-checkout-page .field--icon:focus-within {
	border-color: var(--checkout-purple);
	box-shadow: 0 0 0 4px rgba(150,101,237,.15);
}

.rmx-checkout-page .field--icon > .icon {
	position: absolute;
	left: 20px;
	top: 18px;
	width: 48px;
	height: 48px;
	color: var(--checkout-pink);
}

.rmx-checkout-page .field--icon > span:not(.icon) {
	display: block;
	margin: 0 0 5px;
	color: #44454d;
	font-size: 15px;
	font-weight: 600;
}

.rmx-checkout-page .field--icon input {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	outline: none;
	background: transparent;
	color: #111;
	font-size: 18px;
	font-weight: 650;
}

.rmx-checkout-page .field__error {
	position: absolute;
	left: 23px;
	top: calc(100% + 5px);
	color: #d74064;
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
}

.rmx-checkout-page .field:has(.field__error:not(:empty)) {
	margin-bottom: 11px;
	border-color: #d74064;
}

.rmx-checkout-page .checkbox {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0 5px 2px;
	font-size: 17px;
	font-weight: 600;
}

.rmx-checkout-page .checkbox input {
	appearance: none;
	flex: none;
	width: 30px;
	height: 30px;
	border: 2px solid #111;
	border-radius: 5px;
	background: #111;
}

.rmx-checkout-page .checkbox input:checked::after {
	content: "✓";
	display: grid;
	place-items: center;
	height: 100%;
	color: #fff;
	font-size: 21px;
	font-weight: 800;
}

.rmx-checkout-page .checkout-continue,
.rmx-checkout-page .checkout-actions .btn-primary {
	position: relative;
	height: 78px;
	border: 3px solid #111;
	border-radius: 18px;
	background: linear-gradient(105deg, #a47af8, #b386ee);
	box-shadow: 0 6px 0 #111;
	color: #111;
	font: 700 27px Fredoka, Inter, Arial, sans-serif;
	transition: transform .16s, box-shadow .16s;
}

.rmx-checkout-page .checkout-continue span,
.rmx-checkout-page .checkout-actions .btn-primary span {
	position: absolute;
	right: 27px;
	top: 19px;
	color: var(--checkout-yellow);
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	text-shadow: 2px 2px #111;
}

.rmx-checkout-page .checkout-continue:hover:not(:disabled),
.rmx-checkout-page .checkout-actions .btn-primary:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 0 #111;
}

.rmx-checkout-page .checkout-continue:disabled,
.rmx-checkout-page .checkout-actions .btn-primary:disabled {
	opacity: .58;
	cursor: not-allowed;
}

.rmx-checkout-page .secure-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 14px 0 0;
	color: #666670;
	font-size: 15px;
	font-weight: 600;
}

.rmx-checkout-page .secure-note .icon {
	width: 23px;
	height: 26px;
	color: var(--checkout-purple);
}

.rmx-checkout-page .checkout-message {
	border-radius: 12px;
	background: #ffe8ee;
	color: #b32148;
	font-weight: 700;
}

/* Summary rail */
.rmx-checkout-page .summary-rail {
	position: sticky;
	top: 24px;
}

.rmx-checkout-page .summary-rail__toggle {
	display: none;
}

.rmx-checkout-page .summary-rail__inner {
	display: flex;
	flex-direction: column;
	min-height: 725px;
	padding: 30px 27px;
}

.rmx-checkout-page .summary-rail__inner h2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 23px;
	font: 700 30px Fredoka, Inter, Arial, sans-serif;
	text-transform: uppercase;
}

.summary-spark {
	color: var(--checkout-yellow);
	font-size: 42px;
	text-shadow: 2px 2px #111;
}

.rmx-checkout-page .summary-rail .live-pill {
	margin-bottom: 22px;
}

.summary-products {
	border-top: 1px solid #d4d3d7;
	border-bottom: 1px solid #d4d3d7;
	padding: 21px 0;
}

.rmx-checkout-page .summary-group {
	padding: 0;
	border: 0;
}

.rmx-checkout-page .summary-group + .summary-group {
	padding-top: 18px;
}

.summary-group__platform {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	align-items: center;
	gap: 2px 13px;
}

.summary-group__platform .icon {
	grid-row: span 2;
	width: 47px;
	height: 47px;
	padding: 7px;
	border-radius: 13px;
	background: radial-gradient(circle at 24% 103%, #ffdd68, #f57a30 30%, #eb2871 61%, #6a3dda 96%);
	color: #fff;
}

.summary-group__platform strong {
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
}

.summary-group__platform span {
	grid-column: 2;
	color: #1aa36a;
	font-size: 14px;
	font-weight: 700;
}

.rmx-checkout-page .summary-group p {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin: 10px 0 0 61px;
	color: #111;
	font-size: 15px;
	font-weight: 600;
}

.rmx-checkout-page .summary-group p b {
	font-size: 21px;
	font-weight: 800;
}

.rmx-checkout-page .bundle-banner {
	position: relative;
	margin: 28px 0 30px;
	padding: 23px 20px 24px;
	border: 3px solid #111;
	border-radius: 21px;
	background: var(--checkout-yellow);
}

.rmx-checkout-page .bundle-banner strong {
	display: block;
	margin: 0 0 18px;
	font: 700 27px Fredoka, Inter, Arial, sans-serif;
}

.rmx-checkout-page .bundle-banner p {
	max-width: 230px;
	margin: 0 0 22px;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.65;
}

.bundle-seal {
	position: absolute;
	right: 18px;
	top: 15px;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 2px solid #111;
	border-radius: 50%;
	background: #cab5ff;
	font-size: 23px;
}

.rmx-checkout-page .bundle-banner .btn {
	height: 63px;
	border: 3px solid #111;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 7px 0 var(--checkout-pink), 0 9px 0 #111;
	color: #111;
	font: 700 23px Fredoka, Inter, Arial, sans-serif;
}

.rmx-checkout-page .summary-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 27px;
	border-top: 1px solid #d2d1d6;
	font: 700 30px Fredoka, Inter, Arial, sans-serif;
}

.rmx-checkout-page .summary-total strong {
	font-size: 46px;
}

/* Selection panel */
.rmx-checkout-page .checkout-selection {
	min-height: 795px;
	padding: 23px 29px 18px;
}

.rmx-checkout-page .platform-card-stack {
	display: grid;
	gap: 18px;
}

.rmx-checkout-page .platform-card-select {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.rmx-checkout-page .platform-card-select summary {
	padding: 0 0 15px;
	border: 0;
}

.rmx-checkout-page .profile-mini {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 1px 20px;
	align-items: center;
}

.rmx-checkout-page .profile-mini .avatar {
	grid-row: span 2;
	width: 72px;
	height: 72px;
	border-radius: 20px;
}

.rmx-checkout-page .profile-mini > span:nth-child(2) {
	font-size: 26px;
	font-weight: 750;
}

.rmx-checkout-page .profile-mini strong {
	display: block;
	font-size: 17px;
}

.rmx-checkout-page .follower-count {
	grid-column: 2;
	color: var(--checkout-purple-dark);
	font-size: 17px;
	font-weight: 700;
}

.rmx-checkout-page .platform-card-select summary > .icon {
	display: none;
}

.rmx-checkout-page .platform-card__body {
	padding: 0;
}

.rmx-checkout-page .platform-card__body h3 {
	position: relative;
	display: inline-block;
	margin: 12px 0 22px;
	color: #111;
	font: 700 29px Kalam, Fredoka, Inter, sans-serif;
}

.rmx-checkout-page .platform-card__body h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: min(285px, 100%);
	height: 5px;
	border-radius: 999px;
	background: var(--checkout-yellow);
}

.rmx-checkout-page .post-counter {
	display: flex;
	gap: 10px;
	height: 64px;
	margin: 0 0 21px;
	padding: 8px;
	border: 2px solid var(--checkout-line);
	border-radius: 18px;
}

.rmx-checkout-page .post-counter span {
	flex: 1;
	display: grid;
	place-items: center;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.rmx-checkout-page .post-counter .chip {
	background: var(--checkout-yellow);
}

.rmx-checkout-page .post-counter .meta {
	margin: 0;
	color: #111;
}

.rmx-checkout-page .post-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px 19px;
	margin: 0 0 17px;
}

.rmx-checkout-page .post-tile {
	position: relative;
	aspect-ratio: 1.12 / 1;
	min-height: 132px;
	padding: 0;
	border: 0;
	border-radius: 13px;
	overflow: hidden;
	background: #e3e3e3;
	transition: transform .16s, box-shadow .16s;
}

.rmx-checkout-page .post-tile:hover {
	transform: translateY(-2px);
}

.rmx-checkout-page .post-tile.is-selected {
	box-shadow: 0 0 0 4px #ffc61d;
}

.rmx-checkout-page .post-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rmx-checkout-page .post-tile__check {
	background: var(--checkout-yellow);
	border: 3px solid #fff;
}

.rmx-checkout-page [data-load-more] {
	height: 58px;
	border: 2px solid #d7d5df;
	border-radius: 14px;
	background: #fff;
	color: #a178eb;
	font: 700 20px Kalam, Fredoka, sans-serif;
}

.rmx-checkout-page .checkout-actions {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 25px;
	margin-top: 16px;
}

.rmx-checkout-page .checkout-actions .btn-ghost {
	height: 61px;
	border: 0;
	border-radius: 14px;
	background: #fff;
	font-size: 20px;
}

.rmx-checkout-page .checkout-actions .btn-primary {
	height: 61px;
	border-radius: 15px;
	background: var(--checkout-yellow);
	font: 700 26px Kalam, Fredoka, sans-serif;
}

.rmx-checkout-page .checkout-actions .btn-primary span {
	right: 28px;
	top: 7px;
	color: #111;
	font-size: 38px;
	text-shadow: none;
}

/* Payment step and native WooCommerce checkout */
.rmx-checkout-page .checkout-payment {
	min-height: 1120px;
	padding: 34px 37px 26px !important;
}

.rmx-checkout-page .checkout-step__header {
	display: block;
}

.rmx-checkout-page .checkout-payment .checkout-step__back {
	margin-bottom: 15px;
	padding: 0;
}

.rmx-checkout-page .checkout-payment h1 {
	margin: 0 0 20px;
	font-size: 48px;
}

.rmx-checkout-page .order-card {
	position: relative;
	min-height: 230px;
	margin: 0 0 17px;
	padding: 15px 18px;
	border: 2px solid #111;
	border-radius: 17px;
	background: #fff;
}

.rmx-checkout-page .order-card header {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 19px;
	font-weight: 800;
}

.rmx-checkout-page .profile-ring {
	width: 49px;
	height: 49px;
	border-radius: 10px;
	background: linear-gradient(135deg,#fb982c,#ed2471,#573bd8);
	color: #fff;
}

.rmx-checkout-page .delivery-pill {
	position: absolute;
	right: 18px;
	top: 22px;
	height: 37px;
	padding: 0 15px;
	border-radius: 24px;
	background: var(--checkout-mint);
	color: var(--checkout-green);
	font-size: 13px;
	font-weight: 700;
}

.rmx-checkout-page .order-card__thumbs {
	display: flex;
	gap: 10px;
	margin-top: 13px;
}

.rmx-checkout-page .order-card__thumbs span {
	width: 178px;
	height: 139px;
	border-radius: 11px;
}

.rmx-checkout-page .order-card__thumbs span:not(:first-child) {
	width: 112px;
}

.rmx-checkout-page .wc-checkout-shell .woocommerce-form-coupon-toggle {
	margin: 0 0 18px;
}

.rmx-checkout-page .wc-checkout-shell .woocommerce-info {
	min-height: 52px;
	margin: 0 !important;
	padding: 15px 17px !important;
	border: 2px solid #111 !important;
	border-radius: 11px;
	background: #fff !important;
	font-size: 14px;
	font-weight: 600;
}

.rmx-checkout-page .wc-checkout-shell form.checkout_coupon {
	margin: 10px 0 18px !important;
	padding: 15px !important;
	border: 2px solid #111 !important;
	border-radius: 12px;
}

.rmx-checkout-page .wc-checkout-shell form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .84fr);
	gap: 18px 32px;
}

.rmx-checkout-page .wc-checkout-shell .col2-set {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, .84fr);
	gap: 34px;
	width: 100%;
}

.rmx-checkout-page .wc-checkout-shell .col-1,
.rmx-checkout-page .wc-checkout-shell .col-2 {
	float: none;
	width: 100%;
}

.rmx-checkout-page .wc-checkout-shell h3,
.rmx-checkout-page .wc-checkout-shell #order_review_heading {
	margin: 0 0 14px;
	font: italic 700 24px Fredoka, Inter, Arial, sans-serif;
}

.rmx-checkout-page .wc-checkout-shell .form-row {
	margin: 0 0 10px;
	padding: 0;
}

.rmx-checkout-page .wc-checkout-shell .form-row label {
	margin: 0 0 6px;
	color: #111;
	font-size: 12px;
	font-weight: 700;
}

.rmx-checkout-page .wc-checkout-shell .input-text,
.rmx-checkout-page .wc-checkout-shell select,
.rmx-checkout-page .wc-checkout-shell .select2-selection {
	min-height: 39px;
	padding: 0 10px;
	border: 1.6px solid #cccad2;
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
	font-size: 13px;
}

.rmx-checkout-page .wc-checkout-shell textarea.input-text {
	min-height: 138px;
	padding: 12px;
}

.rmx-checkout-page .wc-checkout-shell #order_review_heading,
.rmx-checkout-page .wc-checkout-shell #order_review {
	grid-column: 1 / -1;
}

.rmx-checkout-page .wc-checkout-shell #order_review_heading {
	margin-top: 4px;
}

.rmx-checkout-page .wc-checkout-shell table.shop_table {
	border: 2px solid #111 !important;
	border-radius: 12px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	font-size: 13px;
}

.rmx-checkout-page .wc-checkout-shell table.shop_table th,
.rmx-checkout-page .wc-checkout-shell table.shop_table td {
	padding: 10px 12px;
	border-bottom: 1px solid #d4d4d7;
}

.rmx-checkout-page .wc-checkout-shell table.shop_table tr:last-child th,
.rmx-checkout-page .wc-checkout-shell table.shop_table tr:last-child td {
	border-bottom: 0;
}

.rmx-checkout-page .wc-checkout-shell #payment {
	margin-top: 11px;
	padding: 12px 15px 14px;
	border: 2px solid #111;
	border-radius: 12px;
	background: #f7f2ff;
}

.rmx-checkout-page .wc-checkout-shell #payment ul.payment_methods,
.rmx-checkout-page .wc-checkout-shell #payment div.form-row {
	padding: 0;
	border: 0;
}

.rmx-checkout-page .wc-checkout-shell #place_order {
	float: none;
	width: 100%;
	height: 53px;
	margin: 12px 0 0;
	border: 3px solid #111;
	border-radius: 12px;
	background: var(--checkout-purple);
	box-shadow: 0 5px 0 #111;
	color: #111;
	font: 700 21px Fredoka, Inter, sans-serif;
}

.rmx-checkout-page .wc-checkout-shell #place_order:hover {
	transform: translateY(-2px);
}

/* Empty and order-received layouts */
.rmx-checkout-page .checkout-empty {
	margin-top: 95px;
	padding: 70px 25px;
}

.rmx-checkout-page .checkout-empty .btn {
	border: 3px solid #111;
	border-radius: 16px;
	background: var(--checkout-purple);
	box-shadow: 0 5px 0 #111;
}

.rmx-checkout-page .checkout-shell--received .rmx-order-received-wrap {
	width: min(100%, 980px);
	margin: 82px auto 0;
}

/* Responsive treatment */
@media (max-width: 1260px) {
	.checkout-brand {
		position: relative;
		left: auto;
		top: auto;
		display: block;
		margin: 0 0 14px 4px;
	}

	.rmx-checkout-page .checkout-layout {
		grid-template-columns: minmax(0, 1fr) 345px;
		gap: 24px;
	}

	.rmx-checkout-page .checkout-details {
		padding-right: 50px !important;
		padding-left: 50px !important;
	}
}

@media (max-width: 1040px) {
	.rmx-checkout-page .checkout-shell {
		padding: 21px 17px 42px;
	}

	.checkout-decor:not(.checkout-decor--corner) {
		display: none;
	}

	.rmx-checkout-page .checkout-layout {
		display: flex;
		flex-direction: column;
		max-width: 780px;
		margin: 0 auto;
	}

	.rmx-checkout-page .checkout-main {
		order: 1;
		width: 100%;
	}

	.rmx-checkout-page .summary-rail {
		position: static;
		order: 0;
		width: 100%;
	}

	.rmx-checkout-page .summary-rail__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 56px;
		margin: 0 0 13px;
		padding: 0 18px;
		border: 3px solid #111;
		border-radius: 16px;
		background: var(--checkout-yellow);
		font-weight: 800;
	}

	.rmx-checkout-page .summary-rail__inner {
		display: none;
		min-height: 0;
		margin-bottom: 25px;
	}

	.rmx-checkout-page .summary-rail.is-open .summary-rail__inner {
		display: flex;
	}

	.rmx-checkout-page .stepper {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 8px;
	}
}

@media (max-width: 700px) {
	.checkout-brand {
		font-size: 31px;
	}

	.checkout-decor--corner {
		width: 130px;
		height: 96px;
	}

	.rmx-checkout-page .stepper {
		gap: 12px;
	}

	.rmx-checkout-page .stepper__step + .stepper__step::before {
		display: none;
	}

	.rmx-checkout-page .stepper__link {
		min-width: 136px;
		height: 50px;
		gap: 10px;
		padding: 0 13px;
		font-size: 14px;
	}

	.rmx-checkout-page .stepper__link span {
		width: 34px;
		height: 34px;
		font-size: 15px;
	}

	.rmx-checkout-page .checkout-card,
	.rmx-checkout-page .summary-rail__inner {
		border-radius: 22px;
	}

	.rmx-checkout-page .checkout-details,
	.rmx-checkout-page .checkout-payment {
		min-height: 0;
		padding: 23px 16px 28px !important;
	}

	.checkout-heart-badge {
		display: none;
	}

	.rmx-checkout-page .checkout-back-link {
		margin-bottom: 27px;
	}

	.rmx-checkout-page .checkout-details h1 {
		font-size: 42px;
	}

	.rmx-checkout-page .field--icon {
		padding-left: 70px;
	}

	.rmx-checkout-page .field--icon > .icon {
		left: 14px;
		width: 42px;
		height: 42px;
	}

	.rmx-checkout-page .checkbox {
		font-size: 14px;
	}

	.rmx-checkout-page .checkout-continue {
		height: 67px;
		font-size: 23px;
	}

	.rmx-checkout-page .summary-rail__inner {
		padding: 23px 16px;
	}

	.rmx-checkout-page .summary-rail__inner h2 {
		font-size: 25px;
	}

	.rmx-checkout-page .summary-total strong {
		font-size: 37px;
	}

	.rmx-checkout-page .checkout-selection {
		min-height: 0;
		padding: 18px 13px;
	}

	.rmx-checkout-page .post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 13px;
	}

	.rmx-checkout-page .post-tile {
		min-height: 125px;
	}

	.rmx-checkout-page .post-counter {
		height: auto;
		min-height: 62px;
		flex-wrap: wrap;
	}

	.rmx-checkout-page .post-counter span {
		min-width: calc(50% - 6px);
		min-height: 44px;
	}

	.rmx-checkout-page .checkout-actions {
		grid-template-columns: 95px 1fr;
		gap: 10px;
	}

	.rmx-checkout-page .checkout-actions .btn-primary {
		font-size: 18px;
	}

	.rmx-checkout-page .checkout-actions .btn-primary span {
		display: none;
	}

	.rmx-checkout-page .checkout-payment h1 {
		font-size: 38px;
	}

	.rmx-checkout-page .delivery-pill {
		position: static;
		margin-left: auto;
		padding: 0 8px;
		font-size: 11px;
	}

	.rmx-checkout-page .order-card__thumbs span,
	.rmx-checkout-page .order-card__thumbs span:not(:first-child) {
		flex: 1;
		width: auto;
		height: 112px;
	}

	.rmx-checkout-page .wc-checkout-shell form.checkout,
	.rmx-checkout-page .wc-checkout-shell .col2-set {
		display: block;
	}

	.rmx-checkout-page .wc-checkout-shell .col-2 {
		margin-top: 22px;
	}
}

@media (max-width: 400px) {
	.rmx-checkout-page .checkout-shell {
		padding-inline: 10px;
	}

	.rmx-checkout-page .stepper__link {
		min-width: 123px;
		font-size: 13px;
	}

	.rmx-checkout-page .summary-group p {
		margin-left: 0;
	}
}

.rmx-checkout-page .post-tile .selected-label {
	position: absolute;
	right: 7px;
	top: 7px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--checkout-yellow);
	font-size: 0;
	font-style: normal;
}
.rmx-checkout-page .post-tile .selected-label::before {
	content: "✓";
	font-size: 20px;
	font-weight: 900;
}
.rmx-checkout-page .post-tile[disabled]:not(.is-selected) {
	opacity: .55;
}

.rmx-checkout-page .summary-group__platform .icon-tiktok {
	background: #111;
}
.rmx-checkout-page .summary-group__platform .icon-youtube {
	background: #f04444;
}
.rmx-checkout-page .comments-panel {
	margin-top: 20px;
	padding: 18px;
	border: 2px solid #111;
	border-radius: 16px;
	background: #f7f2ff;
}
.rmx-checkout-page .comments-panel h3 {
	margin-top: 0;
	font: 700 22px Fredoka, Inter, sans-serif;
}
.rmx-checkout-page .theme-chip,
.rmx-checkout-page [data-regenerate] {
	border: 2px solid #111;
	border-radius: 999px;
	background: #fff;
	font-weight: 700;
}
.rmx-checkout-page .theme-chip.is-active {
	background: var(--checkout-yellow);
}
.rmx-checkout-page .comment-list label {
	border-radius: 10px;
	background: #fff;
}

/* v1.3.1 checkout polish and commerce-connected summary components. */
@media (min-width: 1111px) {
	.rmx-checkout-page .checkout-wrap {
		max-width: 1288px;
	}
	.rmx-checkout-page .checkout-layout {
		grid-template-columns: minmax(610px, 1.62fr) minmax(350px, .9fr);
		gap: 30px;
	}
	.rmx-checkout-page .checkout-details {
		min-height: 694px;
		padding: 37px 72px 38px !important;
	}
	.rmx-checkout-page .checkout-selection {
		min-height: 754px;
	}
	.rmx-checkout-page .summary-rail__inner {
		min-height: 684px;
		padding: 27px 24px 25px;
	}
}

.checkout-brand--logo {
	position: absolute;
	left: clamp(20px, 2.7vw, 39px);
	top: clamp(19px, 2vw, 28px);
	z-index: 4;
}

.checkout-brand--logo .logo_logo__DP9jK {
	display: block;
	color: #111;
}

.checkout-brand--logo .logo_logo__DP9jK svg {
	display: block;
	width: clamp(184px, 18vw, 238px);
	height: auto;
}

.rmx-checkout-page .summary-products {
	display: grid;
	gap: 14px;
	padding: 17px 0 18px;
}

.rmx-checkout-page .summary-group {
	display: grid;
	gap: 12px;
	padding: 14px 13px 13px;
	border: 1.5px solid #ece9f2;
	border-radius: 18px;
	background: #fff;
}

.rmx-checkout-page .summary-group + .summary-group {
	padding-top: 14px;
}

.rmx-checkout-page .summary-group__platform {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 11px;
	align-items: center;
}

.rmx-checkout-page .summary-platform-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: radial-gradient(circle at 24% 103%, #ffdd68, #f57a30 30%, #eb2871 61%, #6a3dda 96%);
	color: #fff;
}

.rmx-checkout-page .summary-platform-icon .icon {
	width: 30px;
	height: 30px;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.rmx-checkout-page .summary-group__platform strong {
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.rmx-checkout-page .summary-group__platform [data-summary-complete] {
	display: block;
	grid-column: auto;
	margin-top: 3px;
	color: var(--checkout-green);
	font-size: 13px;
	font-weight: 700;
}

.rmx-checkout-page .summary-group__items {
	display: grid;
	gap: 9px;
}

.rmx-checkout-page .summary-product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: start;
	padding: 11px 12px;
	border-radius: 12px;
	background: #f7f4ff;
}

.rmx-checkout-page .summary-product__copy strong {
	display: block;
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.35;
}

.rmx-checkout-page .summary-product__copy span {
	display: block;
	color: #68636f;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.35;
}

.rmx-checkout-page .summary-product__price {
	white-space: nowrap;
	color: #111;
	font-size: 16px;
	font-weight: 800;
}

.rmx-checkout-page .summary-coupon {
	position: relative;
	margin: 19px 0 24px;
	padding: 18px 16px 17px;
	border: 2.5px dashed #111;
	border-radius: 18px;
	background: #fff7cf;
}

.rmx-checkout-page .summary-coupon__head {
	display: grid;
	grid-template-columns: 43px minmax(0, 1fr);
	gap: 11px;
	align-items: center;
	margin-bottom: 14px;
}

.rmx-checkout-page .summary-coupon__ticket {
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	border: 2px solid #111;
	border-radius: 12px;
	background: var(--checkout-yellow);
	font: 800 22px Fredoka, Inter, Arial, sans-serif;
}

.rmx-checkout-page .summary-coupon h3 {
	margin: 0 0 2px;
	font: 700 20px Fredoka, Inter, Arial, sans-serif;
}

.rmx-checkout-page .summary-coupon p {
	margin: 0;
	color: #5c5963;
	font-size: 12px;
	font-weight: 650;
}

.rmx-checkout-page .summary-coupon__form {
	display: flex;
	gap: 8px;
}

.rmx-checkout-page .summary-coupon__form input {
	min-width: 0;
	width: 100%;
	height: 48px;
	padding: 0 13px;
	border: 2px solid #111;
	border-radius: 12px;
	background: #fff;
	font-size: 13px;
	font-weight: 650;
	text-transform: uppercase;
}

.rmx-checkout-page .summary-coupon__form button {
	flex: none;
	height: 48px;
	padding: 0 16px;
	border: 2px solid #111;
	border-radius: 12px;
	background: var(--checkout-purple);
	box-shadow: 0 3px 0 #111;
	font-size: 13px;
	font-weight: 800;
}

.rmx-checkout-page .summary-coupon__form button:disabled {
	opacity: .65;
	cursor: wait;
}

.rmx-checkout-page .summary-coupon__notice {
	margin: 13px 0 0;
	padding: 9px 10px;
	border-radius: 9px;
	background: #e5f8ed;
	color: #087744;
	font-size: 12px;
	font-weight: 700;
}

.rmx-checkout-page .summary-coupon__notice.is-error {
	background: #ffe8ed;
	color: #bb2049;
}

.rmx-checkout-page .woocommerce-form-coupon-toggle,
.rmx-checkout-page form.checkout_coupon {
	display: none !important;
}

.rmx-checkout-page .summary-total strong[data-summary-total] {
	font-size: clamp(36px, 3vw, 42px);
}

/* Align WooCommerce order confirmation within the redesigned canvas. */
.rmx-checkout-page .checkout-shell--received {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	padding: clamp(24px, 4vw, 36px) 18px clamp(42px, 7vw, 64px);
	background: radial-gradient(circle at 50% 18%, rgba(255,255,255,.52), transparent 32%), var(--checkout-bg);
}

.rmx-checkout-page .checkout-shell--received .checkout-brand--logo {
	position: static;
	align-self: flex-start;
	margin: 0 0 clamp(28px, 4vw, 40px) clamp(0px, 1vw, 16px);
}

.rmx-checkout-page .rmx-order-received-wrap {
	width: min(100%, 980px);
	margin: 0 auto;
}

.rmx-checkout-page .checkout-shell--received .woocommerce-order {
	width: 100%;
	margin: 0 auto;
}

@media (max-width: 1110px) {
	.checkout-brand--logo {
		position: relative;
		left: auto;
		top: auto;
		display: flex;
		justify-content: center;
		margin: 0 auto 15px;
	}
	.checkout-brand--logo .logo_logo__DP9jK svg {
		width: min(214px, 60vw);
	}
}

@media (max-width: 700px) {
	.rmx-checkout-page .summary-group {
		padding: 12px 11px;
	}
	.rmx-checkout-page .summary-coupon {
		margin-bottom: 18px;
	}
	.rmx-checkout-page .summary-coupon__form {
		gap: 7px;
	}
	.rmx-checkout-page .summary-coupon__form button {
		padding-inline: 14px;
	}
	.rmx-checkout-page .checkout-shell--received .checkout-brand--logo {
		align-self: center;
		margin-left: 0;
	}
}

/* v1.3.2 summary product alignment, matched details height, and compact overflow control. */
@media (min-width: 1111px) {
	.rmx-checkout-page .checkout-stepper-nav {
		margin-bottom: 39px;
	}
	.rmx-checkout-page .checkout-layout {
		align-items: stretch;
	}
	.rmx-checkout-page .summary-rail,
	.rmx-checkout-page .summary-rail__inner {
		height: 694px;
		min-height: 694px;
	}
	.rmx-checkout-page .summary-rail.products-expanded,
	.rmx-checkout-page .summary-rail.products-expanded .summary-rail__inner {
		height: auto;
		min-height: 694px;
	}
}

.rmx-checkout-page .summary-products-shell {
	position: relative;
	margin: 17px 0 20px;
	padding: 14px 0;
	border-top: 1px solid #d4d3d7;
	border-bottom: 1px solid #d4d3d7;
}

.rmx-checkout-page .summary-products-shell.has-overflow {
	margin-bottom: 35px;
	padding-bottom: 17px;
}

.rmx-checkout-page .summary-products {
	display: grid;
	gap: 11px;
	padding: 0;
	border: 0;
	transition: max-height .22s ease;
}

.rmx-checkout-page .summary-products.is-collapsed {
	max-height: 193px;
	overflow: hidden;
}

.rmx-checkout-page .summary-products.is-expanded {
	max-height: 900px;
}

.rmx-checkout-page .summary-group {
	gap: 10px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.rmx-checkout-page .summary-group + .summary-group {
	padding-top: 11px;
	border-top: 1px dashed #dedbe4;
}

.rmx-checkout-page .summary-group__platform {
	grid-template-columns: 40px minmax(0, 1fr);
	gap: 9px;
}

.rmx-checkout-page .summary-platform-icon {
	width: 40px;
	height: 40px;
	border-radius: 11px;
}

.rmx-checkout-page .summary-platform-icon .icon {
	width: 25px;
	height: 25px;
}

.rmx-checkout-page .summary-group__platform strong {
	font-size: 14px;
}

.rmx-checkout-page .summary-group__platform [data-summary-complete] {
	font-size: 12px;
}

.rmx-checkout-page .summary-group__items {
	display: grid;
	gap: 7px;
}

.rmx-checkout-page .summary-product {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) max-content;
	align-items: center;
	gap: 9px;
	min-height: 62px;
	padding: 8px 10px;
	border: 1px solid #ece7f8;
	border-radius: 13px;
	background: #f7f4ff;
}

.rmx-checkout-page .summary-product__media {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 10px;
	background: #fff;
	color: var(--checkout-purple);
}

.rmx-checkout-page .summary-product__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rmx-checkout-page .summary-product__media .icon,
.rmx-checkout-page .summary-product__media svg {
	width: 23px;
	height: 23px;
}

.rmx-checkout-page .summary-product__copy {
	min-width: 0;
}

.rmx-checkout-page .summary-product__copy strong {
	margin-bottom: 2px;
	overflow: hidden;
	font-size: 13px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rmx-checkout-page .summary-product__copy span {
	overflow: hidden;
	font-size: 11.5px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rmx-checkout-page .summary-product__price {
	align-self: center;
	font-size: 14px;
	line-height: 1;
}

.rmx-checkout-page .summary-products__expand {
	position: absolute;
	left: 50%;
	bottom: -20px;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 2px solid #111;
	border-radius: 999px;
	background: var(--checkout-yellow);
	box-shadow: 0 3px 0 #111;
	transform: translateX(-50%);
	transition: transform .18s ease, background .18s ease;
}

.rmx-checkout-page .summary-products__expand:hover {
	transform: translate(-50%, -2px);
}

.rmx-checkout-page .summary-products__expand .service-card_serviceCard__arrow__QonMf {
	position: static;
	z-index: 1;
	display: inline-block;
	width: 19px;
	height: 19px;
	transform: none;
	transition: transform .18s ease;
}

.rmx-checkout-page .summary-products__expand[aria-expanded="true"] .service-card_serviceCard__arrow__QonMf {
	transform: rotate(180deg);
}

.rmx-checkout-page .summary-coupon {
	margin-top: 10px;
	margin-bottom: 17px;
	padding-top: 15px;
	padding-bottom: 14px;
}

.rmx-checkout-page .summary-coupon__head {
	margin-bottom: 11px;
}

.rmx-checkout-page .summary-total {
	padding-top: 18px;
}

@media (max-width: 1110px) {
	.rmx-checkout-page .checkout-stepper-nav {
		margin-bottom: 27px;
	}
	.rmx-checkout-page .summary-products.is-collapsed {
		max-height: 201px;
	}
}

/* v1.3.3 layout corrections: inputs, summary rows, media fallbacks and order confirmation. */
.rmx-checkout-page .checkout-details .field--icon input,
.rmx-checkout-page .checkout-details .field--icon input:focus,
.rmx-checkout-page .checkout-details .field--icon input:active,
.rmx-checkout-page .checkout-details .field--icon input:-webkit-autofill {
	border: 0 !important;
	border-color: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
	background: transparent !important;
}
.rmx-checkout-page .checkout-details .field--icon input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}

/* Product rows are intentionally two-column so money never escapes a narrow rail. */
.rmx-checkout-page .summary-products-shell {
	margin-top: 14px;
	padding-top: 13px;
}
.rmx-checkout-page .summary-products {
	gap: 13px;
}
.rmx-checkout-page .summary-group {
	gap: 12px;
}
.rmx-checkout-page .summary-group__items {
	gap: 9px;
}
.rmx-checkout-page .summary-product {
	grid-template-columns: 44px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 11px;
	row-gap: 5px;
	min-width: 0;
	min-height: 70px;
	padding: 10px 11px;
}
.rmx-checkout-page .summary-product__media {
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 44px;
	height: 44px;
}
.rmx-checkout-page .summary-product__copy {
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
	padding-right: 1px;
}
.rmx-checkout-page .summary-product__copy strong,
.rmx-checkout-page .summary-product__copy span {
	white-space: normal;
	word-break: break-word;
}
.rmx-checkout-page .summary-product__copy strong {
	font-size: 13.5px;
	line-height: 1.25;
}
.rmx-checkout-page .summary-product__copy span {
	margin-top: 3px;
	font-size: 11.5px;
	line-height: 1.3;
}
.rmx-checkout-page .summary-product__price {
	grid-column: 2;
	grid-row: 2;
	justify-self: end;
	max-width: 100%;
	font-size: 15px;
	font-weight: 850;
	line-height: 1.15;
	white-space: nowrap;
}
.rmx-checkout-page .summary-total {
	gap: 12px;
	min-width: 0;
}
.rmx-checkout-page .summary-total strong[data-summary-total] {
	min-width: 0;
	max-width: 65%;
	font-size: clamp(30px, 2.5vw, 38px);
	line-height: 1;
	text-align: right;
	white-space: nowrap;
}

/* Selection state and real-media fallbacks. */
.rmx-checkout-page .post-counter .chip,
.rmx-checkout-page .post-counter .chip.is-active {
	background: var(--checkout-mint);
	color: #116c48;
}
.rmx-checkout-page .profile-mini .avatar,
.rmx-checkout-page .profile-ring {
	overflow: hidden;
}
.rmx-checkout-page .profile-mini .avatar img,
.rmx-checkout-page .profile-ring img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rmx-checkout-page .profile-mini .avatar.has-image-error,
.rmx-checkout-page .profile-ring.has-image-error {
	background: linear-gradient(135deg, #fb982c, #ed2471, #573bd8);
	color: #fff;
}
.rmx-checkout-page .order-card__thumbs span {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #f2eefc;
}
.rmx-checkout-page .order-card__thumbs span.has-image-error::after,
.rmx-checkout-page .order-card__thumbs span:empty::after {
	content: "✦";
	color: var(--checkout-purple);
	font-size: 28px;
	font-weight: 800;
}

/* Step-three alignment and a cleaner native WooCommerce order review. */
.rmx-checkout-page .checkout-payment {
	padding-bottom: 32px !important;
}
.rmx-checkout-page .wc-checkout-shell form.checkout {
	align-items: start;
	gap: 20px 28px;
}
.rmx-checkout-page .wc-checkout-shell .col2-set {
	gap: 28px;
}
.rmx-checkout-page .wc-checkout-shell #order_review_heading {
	margin: 13px 0 12px;
}
.rmx-checkout-page .wc-checkout-shell #order_review {
	padding: 16px;
	border: 2px solid #111;
	border-radius: 18px;
	background: #fff;
}
.rmx-checkout-page .wc-checkout-shell table.shop_table {
	width: 100%;
	margin: 0 0 15px !important;
	border: 1px solid #e6def3 !important;
	border-radius: 13px;
	background: #fbf9ff;
	box-shadow: none;
	table-layout: fixed;
}
.rmx-checkout-page .wc-checkout-shell table.shop_table th:first-child,
.rmx-checkout-page .wc-checkout-shell table.shop_table td:first-child {
	width: calc(100% - 108px);
	word-break: break-word;
}
.rmx-checkout-page .wc-checkout-shell table.shop_table th:last-child,
.rmx-checkout-page .wc-checkout-shell table.shop_table td:last-child {
	width: 108px;
	text-align: right;
	white-space: nowrap;
}
.rmx-checkout-page .wc-checkout-shell table.shop_table thead th {
	background: #f4efff;
	font-size: 13px;
	font-weight: 800;
}
.rmx-checkout-page .wc-checkout-shell table.shop_table .product-name {
	line-height: 1.4;
}
.rmx-checkout-page .wc-checkout-shell table.shop_table .order-total th,
.rmx-checkout-page .wc-checkout-shell table.shop_table .order-total td {
	padding-top: 14px;
	padding-bottom: 14px;
	background: #fff7cf;
	font-weight: 850;
}
.rmx-checkout-page .wc-checkout-shell #payment {
	margin-top: 0;
	border-radius: 14px;
}

/* Completed order has a visible page header and a clear route home. */
.rmx-checkout-page .checkout-shell--received {
	padding-top: clamp(20px, 3vw, 30px);
}
.rmx-checkout-page .rmx-received-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: min(100%, 1080px);
	margin: 0 auto clamp(24px, 3.5vw, 34px);
}
.rmx-checkout-page .rmx-received-header .checkout-brand--logo {
	position: static;
	margin: 0;
}
.rmx-checkout-page .rmx-received-home {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 50px;
	padding: 0 19px;
	border: 2px solid #111;
	border-radius: 999px;
	background: var(--checkout-yellow);
	box-shadow: 0 4px 0 #111;
	color: #111;
	font-weight: 800;
	text-decoration: none;
}
.rmx-checkout-page .rmx-received-home .icon {
	width: 18px;
	height: 18px;
}
.rmx-checkout-page .rmx-order-received-wrap {
	margin-top: 0 !important;
}
@media (max-width: 700px) {
	.rmx-checkout-page .summary-product {
		grid-template-columns: 41px minmax(0, 1fr);
		padding: 9px;
	}
	.rmx-checkout-page .summary-total strong[data-summary-total] {
		font-size: 30px;
	}
	.rmx-checkout-page .wc-checkout-shell #order_review {
		padding: 11px;
	}
	.rmx-checkout-page .wc-checkout-shell table.shop_table th:last-child,
	.rmx-checkout-page .wc-checkout-shell table.shop_table td:last-child {
		width: 92px;
	}
	.rmx-checkout-page .rmx-received-header {
		flex-direction: column;
	}
}


/* v1.3.4 — checkout summary language, selection accents, and compact payment review. */
.rmx-checkout-page .summary-platform-icon--help {
	background: #f2edff;
	color: var(--checkout-purple-dark);
}
.rmx-checkout-page .summary-platform-icon--help .icon,
.rmx-checkout-page .summary-platform-icon--help svg {
	width: 25px;
	height: 25px;
}
.rmx-checkout-page .summary-group__platform {
	align-items: center;
}
.rmx-checkout-page .summary-group__platform > div {
	display: grid;
	gap: 3px;
	min-width: 0;
}
.rmx-checkout-page .post-counter .chip,
.rmx-checkout-page .post-counter .chip.is-active {
	background: var(--checkout-purple);
	color: #fff;
	box-shadow: none;
}
.rmx-checkout-page .profile-mini .avatar img,
.rmx-checkout-page .profile-ring img {
	background: #f3edff;
}
.rmx-checkout-page .checkout-payment {
	min-height: 0;
	padding-bottom: 30px !important;
}
.rmx-checkout-page .order-card {
	min-height: 0;
	padding: 14px 16px 16px;
	gap: 13px;
}
.rmx-checkout-page .profile-ring {
	flex: 0 0 45px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
}
.rmx-checkout-page .order-card__selection {
	display: grid;
	gap: 10px;
	padding: 12px;
	border-radius: 13px;
	background: #f7f3ff;
}
.rmx-checkout-page .order-card__selection-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #4e435d;
	font-size: 12px;
	font-weight: 750;
	text-transform: uppercase;
}
.rmx-checkout-page .order-card__selection-head strong {
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--checkout-purple);
	color: #fff;
	font-size: 11px;
}
.rmx-checkout-page .order-card__thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 9px;
	margin-top: 0;
}
.rmx-checkout-page .order-card__thumbs .order-thumb {
	position: relative;
	width: auto;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	border: 2px solid #fff;
	box-shadow: 0 1px 4px rgba(42, 22, 78, .12);
	background: #eee8fc;
}
.rmx-checkout-page .order-card__thumbs .order-thumb:not(:first-child) {
	width: auto;
}
.rmx-checkout-page .order-card__thumbs .order-thumb i {
	position: absolute;
	right: 5px;
	bottom: 5px;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--checkout-purple);
	color: #fff;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
}
.rmx-checkout-page .order-card__thumbs .order-thumb--more {
	display: grid;
	place-items: center;
	background: #e8ddff;
	color: var(--checkout-purple-dark);
	font-size: 17px;
	font-weight: 800;
}
.rmx-checkout-page .order-card__thumbs .order-thumb--more::after {
	display: none;
}
.rmx-checkout-page .order-card__empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 13px;
	border: 1px dashed #d3c5f4;
	border-radius: 9px;
	color: #6a6179;
	font-size: 13px;
}
.rmx-checkout-page .wc-checkout-shell #order_review {
	padding: 13px;
	border-radius: 15px;
}
@media (max-width: 700px) {
	.rmx-checkout-page .order-card__thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.rmx-checkout-page .delivery-pill { position: static; margin-left: auto; }
}


/* v1.3.5 — customer-directed checkout spacing, flex alignment and icon refinements. */
.rmx-checkout-page .summary-group__platform {
	display: flex;
	align-items: center;
	gap: 9px;
}
.rmx-checkout-page .summary-group__platform > div {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-direction: column;
	gap: 0;
}
.rmx-checkout-page .summary-platform-icon--help {
	flex: 0 0 40px;
	background: #f2edff;
	color: #111;
}
.rmx-checkout-page .summary-platform-icon--help .icon,
.rmx-checkout-page .summary-platform-icon--help svg {
	width: 29px;
	height: 29px;
}
.rmx-checkout-page .summary-group__platform strong {
	font: 700 15px/1.22 Fredoka, Inter, Arial, sans-serif;
	letter-spacing: .01em;
}
.rmx-checkout-page .summary-group__platform > div > span {
	margin-top: 2px;
	font: 650 12.5px/1.35 Inter, Arial, sans-serif;
}
.rmx-checkout-page .summary-rail .live-pill { margin-bottom: 0; }
.rmx-checkout-page .summary-rail__inner h2 { margin: 0; }
.rmx-checkout-page .summary-products.is-collapsed { max-height: 150px; }
.rmx-checkout-page .checkout-details > .live-pill { margin: 0 auto; }
.rmx-checkout-page .checkout-details h1 { margin: 0; }
.rmx-checkout-page .field--icon svg {
	width: 48px;
	height: 48px;
	color: #FB6FA9;
}
.rmx-checkout-page .field--icon svg rect { stroke-width: 2; }

/* Flex rows keep the cart item content visually aligned at all rail widths. */
.rmx-checkout-page .summary-products,
.rmx-checkout-page .summary-group,
.rmx-checkout-page .summary-group__items {
	display: flex;
	flex-direction: column;
}
.rmx-checkout-page .summary-product {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 66px;
	padding: 10px 11px;
}
.rmx-checkout-page .summary-product__media {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
}
.rmx-checkout-page .summary-product__copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	gap: 2px;
}
.rmx-checkout-page .summary-product__copy strong {
	margin: 0;
	font: 700 14px/1.28 Fredoka, Inter, Arial, sans-serif;
}
.rmx-checkout-page .summary-product__copy span {
	margin: 0;
	font: 600 12px/1.35 Inter, Arial, sans-serif;
}
.rmx-checkout-page .summary-product__price {
	flex: 0 0 auto;
	align-self: center;
	margin-left: auto;
	font: 750 15px/1.1 Fredoka, Inter, Arial, sans-serif;
}
@media (max-width: 700px) {
	.rmx-checkout-page .summary-products.is-collapsed { max-height: 150px; }
	.rmx-checkout-page .summary-product { align-items: flex-start; }
}


/* v1.3.6 — black help glyph and enforced selection transition. */
.rmx-checkout-page .summary-platform-icon--help,
.rmx-checkout-page .summary-platform-icon--help .icon,
.rmx-checkout-page .summary-platform-icon--help svg {
	color: #111;
}

/* v1.3.7 — customer-supplied cart/checkout CSS refinements and flex payment layout. */
.rmx-checkout-page .post-counter span {
	border-radius: 8px;
	padding: 10px 0;
}
.rmx-checkout-page .checkout-continue span,
.rmx-checkout-page .checkout-actions .btn-primary span {
	top: 12px;
}
.rmx-checkout-page .delivery-pill {
	padding: 10px 15px;
}
.rmx-checkout-page #details article.selection {
	height: auto;
}
.rmx-checkout-page #order_review_heading,
.rmx-checkout-page .wc-checkout-shell table.shop_table {
	display: none;
}

/* Step 3 WooCommerce checkout: use flex instead of grid for cleaner alignment. */
.rmx-checkout-page .wc-checkout-shell form.checkout {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 18px;
}
.rmx-checkout-page .wc-checkout-shell .col2-set {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
}
.rmx-checkout-page .wc-checkout-shell .col-1,
.rmx-checkout-page .wc-checkout-shell .col-2 {
	float: none;
	width: auto;
	min-width: 0;
}
.rmx-checkout-page .wc-checkout-shell .col-1 {
	flex: 1 1 62%;
}
.rmx-checkout-page .wc-checkout-shell .col-2 {
	flex: 0 1 38%;
}
.rmx-checkout-page .wc-checkout-shell #customer_details {
	order: 1;
}
.rmx-checkout-page .wc-checkout-shell #order_review {
	order: 2;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

/* Redesigned payment card. */
.rmx-checkout-page .wc-checkout-shell #payment {
	width: 100%;
	margin: 0;
	padding: 16px;
	border: 2px solid #111;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 6px 0 #111;
}
.rmx-checkout-page .wc-checkout-shell #payment ul.payment_methods {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0 !important;
	border: 0 !important;
}
.rmx-checkout-page .wc-checkout-shell #payment .wc_payment_method {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 14px;
	border: 1.6px solid #ded4f5;
	border-radius: 14px;
	background: #f7f2ff;
}
.rmx-checkout-page .wc-checkout-shell #payment .wc_payment_method > label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #111;
	font: 800 16px/1.2 Fredoka, Inter, Arial, sans-serif;
}
.rmx-checkout-page .wc-checkout-shell #payment .payment_box {
	position: relative;
	margin: 0 !important;
	padding: 12px 13px !important;
	border: 1px solid #eadfff;
	border-radius: 12px;
	background: #fff !important;
	color: #5a5265;
	font: 600 13px/1.5 Inter, Arial, sans-serif;
}
.rmx-checkout-page .wc-checkout-shell #payment .payment_box::before,
.rmx-checkout-page .wc-checkout-shell #payment .payment_box::after {
	display: none !important;
}
.rmx-checkout-page .wc-checkout-shell #payment .payment_box p {
	margin: 0;
}
.rmx-checkout-page .wc-checkout-shell #payment .form-row.place-order {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 12px 0 0;
	padding: 0 !important;
	border: 0 !important;
}
.rmx-checkout-page .wc-checkout-shell .woocommerce-terms-and-conditions-wrapper {
	font: 500 12px/1.5 Inter, Arial, sans-serif;
	color: #675f70;
}
.rmx-checkout-page .wc-checkout-shell .woocommerce-privacy-policy-text p {
	margin: 0;
}
.rmx-checkout-page .wc-checkout-shell .woocommerce-privacy-policy-link {
	color: var(--checkout-purple-dark);
	font-weight: 800;
}
.rmx-checkout-page .wc-checkout-shell #place_order {
	margin: 0;
}
@media (max-width: 900px) {
	.rmx-checkout-page .wc-checkout-shell .col2-set {
		flex-direction: column;
	}
	.rmx-checkout-page .wc-checkout-shell .col-1,
	.rmx-checkout-page .wc-checkout-shell .col-2,
	.rmx-checkout-page .wc-checkout-shell #order_review {
		width: 100%;
		max-width: none;
	}
}

/* v1.3.8 — keep native Woo fields available only as hidden data, not visible forms. */
.rmx-checkout-page .wc-checkout-shell #customer_details,
.rmx-checkout-page .wc-checkout-shell .woocommerce-billing-fields,
.rmx-checkout-page .wc-checkout-shell .woocommerce-shipping-fields,
.rmx-checkout-page .wc-checkout-shell .woocommerce-additional-fields,
.rmx-checkout-page .wc-checkout-shell #order_comments_field,
.rmx-checkout-page .wc-checkout-shell .rmx-hidden-billing-email {
	display: none !important;
}
.rmx-checkout-page .wc-checkout-shell form.checkout {
	align-items: center;
}
.rmx-checkout-page .wc-checkout-shell #order_review {
	width: min(100%, 720px);
}

/* v1.4.0 — fully responsive Review & Pay step. */
.rmx-checkout-page .checkout-card.checkout-payment {
	width: min(100%, 980px);
	max-width: 980px;
	margin-inline: auto;
	box-sizing: border-box;
	overflow: visible;
}
.rmx-checkout-page .checkout-payment .checkout-step__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	width: 100%;
}
.rmx-checkout-page .checkout-payment .checkout-step__back {
	flex: 0 1 auto;
	white-space: nowrap;
}
.rmx-checkout-page .checkout-payment h1 {
	flex: 1 1 auto;
	min-width: 180px;
	text-align: right;
}
.rmx-checkout-page .checkout-payment .order-card {
	width: 100%;
	max-width: 720px;
	margin-inline: auto;
	box-sizing: border-box;
	overflow: hidden;
}
.rmx-checkout-page .checkout-payment .order-card > header {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.rmx-checkout-page .checkout-payment .profile-ring {
	flex: 0 0 auto;
}
.rmx-checkout-page .checkout-payment .order-card > header strong {
	flex: 1 1 170px;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.rmx-checkout-page .checkout-payment .delivery-pill {
	position: static;
	inset: auto;
	flex: 0 0 auto;
	margin-left: auto;
	white-space: nowrap;
}
.rmx-checkout-page .checkout-payment .order-card__selection,
.rmx-checkout-page .checkout-payment .order-card__selection-head,
.rmx-checkout-page .checkout-payment .order-card__thumbs {
	max-width: 100%;
	box-sizing: border-box;
}
.rmx-checkout-page .checkout-payment .order-card__selection-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}
.rmx-checkout-page .wc-checkout-shell {
	width: 100%;
	max-width: 720px;
	margin-inline: auto;
	box-sizing: border-box;
}
.rmx-checkout-page .wc-checkout-shell .woocommerce,
.rmx-checkout-page .wc-checkout-shell form.checkout,
.rmx-checkout-page .wc-checkout-shell #order_review,
.rmx-checkout-page .wc-checkout-shell #payment {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.rmx-checkout-page .wc-checkout-shell #payment {
	box-shadow: 0 4px 0 #111;
}
.rmx-checkout-page .wc-checkout-shell #payment .wc_payment_method,
.rmx-checkout-page .wc-checkout-shell #payment .form-row.place-order,
.rmx-checkout-page .wc-checkout-shell #place_order {
	width: 100%;
	box-sizing: border-box;
}
.rmx-checkout-page .wc-checkout-shell #place_order {
	min-height: 52px;
	white-space: normal;
}
@media (max-width: 760px) {
	.rmx-checkout-page .checkout-card.checkout-payment {
		width: 100%;
		padding-inline: 14px;
	}
	.rmx-checkout-page .checkout-payment .checkout-step__header {
		align-items: flex-start;
	}
	.rmx-checkout-page .checkout-payment .checkout-step__back,
	.rmx-checkout-page .checkout-payment h1 {
		width: 100%;
		text-align: left;
	}
	.rmx-checkout-page .checkout-payment .order-card {
		border-radius: 18px;
		padding: 14px;
	}
	.rmx-checkout-page .checkout-payment .order-card > header {
		align-items: flex-start;
	}
	.rmx-checkout-page .checkout-payment .delivery-pill {
		width: 100%;
		justify-content: center;
		text-align: center;
		margin-left: 0;
	}
	.rmx-checkout-page .wc-checkout-shell #payment {
		padding: 14px;
		border-radius: 16px;
		box-shadow: 0 3px 0 #111;
	}
	.rmx-checkout-page .wc-checkout-shell #payment .payment_box {
		font-size: 12.5px;
	}
}
@media (max-width: 420px) {
	.rmx-checkout-page .checkout-card.checkout-payment {
		padding-inline: 10px;
	}
	.rmx-checkout-page .checkout-payment .order-card,
	.rmx-checkout-page .wc-checkout-shell #payment {
		border-radius: 14px;
	}
	.rmx-checkout-page .checkout-payment .order-card__selection-head strong {
		width: 100%;
	}
}


/* v1.4.1 — Step 1 continue button loader after valid form submit. */
.rmx-checkout-page .checkout-continue.is-loading {
	pointer-events: none;
}

.rmx-checkout-page .checkout-continue.is-loading::before {
	content: "";
	position: absolute;
	left: 28px;
	top: 50%;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	border: 3px solid rgba(17, 17, 17, .25);
	border-top-color: #111;
	border-radius: 999px;
	animation: rmxCheckoutButtonSpin .72s linear infinite;
}

.rmx-checkout-page .checkout-continue.is-loading span {
	opacity: .65;
}

@keyframes rmxCheckoutButtonSpin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 520px) {
	.rmx-checkout-page .checkout-continue.is-loading::before {
		left: 20px;
		width: 20px;
		height: 20px;
		margin-top: -10px;
	}
}

/* v1.4.2 — responsive Review & Pay media, stepper, and mobile summary chevron. */
.rmx-checkout-page .checkout-stepper-nav {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 4px;
}
.rmx-checkout-page .stepper {
	min-width: 0;
	max-width: 100%;
	gap: clamp(10px, 4vw, 52px);
}
.rmx-checkout-page .stepper__link {
	box-sizing: border-box;
	min-width: clamp(112px, 24vw, 170px);
	gap: clamp(8px, 2vw, 18px);
	padding-inline: clamp(10px, 2.4vw, 22px);
}
.rmx-checkout-page .stepper__step + .stepper__step::before {
	left: clamp(-34px, -3.8vw, -18px);
	width: clamp(16px, 3vw, 34px);
}
.rmx-checkout-page .summary-rail__toggle {
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.rmx-checkout-page .summary-rail__chevron {
	display: inline-grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border: 1.8px solid #111;
	border-radius: 999px;
	background: #fff;
	color: #111;
	box-shadow: 0 2px 0 #111;
	transition: transform .18s ease, box-shadow .18s ease;
}
.rmx-checkout-page .summary-rail__chevron svg {
	width: 18px;
	height: 18px;
}
.rmx-checkout-page .summary-rail.is-open .summary-rail__chevron,
.rmx-checkout-page .summary-rail__toggle[aria-expanded="true"] .summary-rail__chevron {
	transform: rotate(180deg);
	box-shadow: 0 -2px 0 #111;
}
.rmx-checkout-page .checkout-payment .order-card {
	max-width: min(100%, 680px);
}
.rmx-checkout-page .checkout-payment .order-card__selection {
	overflow: hidden;
}
.rmx-checkout-page .checkout-payment .order-card__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
	align-items: stretch;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}
.rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb {
	width: 100% !important;
	min-width: 0;
	max-width: 100%;
	height: auto !important;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	box-sizing: border-box;
}
.rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
}
.rmx-checkout-page .checkout-payment .order-card__empty {
	width: 100%;
	box-sizing: border-box;
}
@media (max-width: 820px) {
	.rmx-checkout-page .checkout-layout {
		grid-template-columns: 1fr;
	}
	.rmx-checkout-page .stepper {
		justify-content: flex-start;
		gap: 10px;
	}
	.rmx-checkout-page .stepper__step + .stepper__step::before {
		display: none;
	}
	.rmx-checkout-page .stepper__link {
		min-width: 132px;
		height: 48px;
		font-size: 14px;
	}
	.rmx-checkout-page .stepper__link span {
		width: 31px;
		height: 31px;
		font-size: 14px;
	}
	.rmx-checkout-page .checkout-card.checkout-payment {
		padding: 16px !important;
	}
	.rmx-checkout-page .checkout-payment .order-card__thumbs {
		grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
	}
}
@media (max-width: 480px) {
	.rmx-checkout-page .checkout-stepper-nav {
		margin-inline: -10px;
		padding-inline: 10px;
	}
	.rmx-checkout-page .stepper__link {
		min-width: 92px;
		padding-inline: 9px;
	}
	.rmx-checkout-page .stepper__link strong {
		font-size: 12px;
	}
	.rmx-checkout-page .stepper__link span {
		width: 27px;
		height: 27px;
	}
	.rmx-checkout-page .checkout-card.checkout-payment {
		padding: 12px !important;
	}
	.rmx-checkout-page .checkout-payment .order-card {
		padding: 12px !important;
	}
	.rmx-checkout-page .checkout-payment .order-card__thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}
}

/* v1.4.3 — mobile stepper, summary toggle spacing, SVG-safe order images. */
@media (max-width: 820px) {
	.rmx-checkout-page .checkout-stepper-nav {
		width: 100%;
		overflow: visible;
		padding-inline: 0;
		margin-inline: 0;
	}
	.rmx-checkout-page .stepper {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: stretch;
		gap: 8px;
	}
	.rmx-checkout-page .stepper__step {
		flex: 1 1 0;
		min-width: 0;
		display: flex;
		justify-content: center;
	}
	.rmx-checkout-page .stepper__link {
		width: 100%;
		min-width: 0 !important;
		justify-content: center;
		align-items: center;
		text-align: center;
		gap: 7px;
		padding-inline: 6px;
	}
	.rmx-checkout-page .summary-rail__toggle {
		width: 100%;
		display: flex;
		justify-content: space-between !important;
		align-items: center;
		text-align: left;
		gap: 14px;
	}
	.rmx-checkout-page .summary-rail__chevron {
		flex: 0 0 auto;
	}
}
@media (max-width: 520px) {
	.rmx-checkout-page .stepper {
		gap: 6px;
	}
	.rmx-checkout-page .stepper__link {
		height: auto;
		min-height: 48px;
		flex-direction: column;
		padding: 7px 4px;
	}
	.rmx-checkout-page .stepper__link strong {
		font-size: 11.5px;
		line-height: 1.12;
	}
}
.rmx-checkout-page .summary-product__media {
	background: transparent !important;
	border: 1px solid rgba(116, 65, 194, .14);
	overflow: hidden;
}
.rmx-checkout-page .summary-product__media img,
.rmx-checkout-page .summary-product__media svg {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	padding: 4px;
	box-sizing: border-box;
	object-fit: contain !important;
	object-position: center;
	background: transparent !important;
}
.rmx-checkout-page .summary-product__media .icon {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--checkout-purple);
}
.rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb img,
.rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb svg {
	object-fit: cover;
	max-width: 100%;
	max-height: 100%;
}

/* v1.4.4 — service-colored SVG product media and guest-safe selection UI. */
.rmx-checkout-page .summary-product__media {
	padding: 0 !important;
	border: 0 !important;
	box-sizing: border-box !important;
	background: #f3eefc !important;
}
.rmx-checkout-page .summary-product__media--followers {
	background: #FF4AAF !important;
}
.rmx-checkout-page .summary-product__media--views,
.rmx-checkout-page .summary-product__media--comments {
	background: #2BC0ED !important;
}
.rmx-checkout-page .summary-product__media--likes {
	background: #FF1C1C !important;
}
.rmx-checkout-page .summary-product__media img,
.rmx-checkout-page .summary-product__media svg {
	padding: 10px !important;
	box-sizing: border-box !important;
	object-fit: contain !important;
	object-position: center !important;
	background: transparent !important;
}
.rmx-checkout-page .summary-product__media .icon {
	background: transparent !important;
}


/* v1.4.5 — mobile checkout stepper single-row fix and Step 3 containment. */
@media (max-width: 820px) {
	.rmx-checkout-page .checkout-stepper-nav {
		width: 100%;
		margin-top: 8px !important;
		margin-bottom: 18px !important;
		padding-top: 8px !important;
		padding-bottom: 8px !important;
		overflow: visible !important;
		box-sizing: border-box;
	}
	.rmx-checkout-page .stepper {
		width: 100%;
		display: flex !important;
		flex-wrap: nowrap !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 7px !important;
		height: auto !important;
		min-height: 50px;
		padding: 0 !important;
		overflow: visible !important;
	}
	.rmx-checkout-page .stepper__step {
		flex: 1 1 0 !important;
		min-width: 0 !important;
		max-width: none !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}
	.rmx-checkout-page .stepper__step + .stepper__step::before {
		display: none !important;
	}
	.rmx-checkout-page .stepper__link {
		width: 100% !important;
		min-width: 0 !important;
		height: 44px !important;
		min-height: 44px !important;
		padding: 4px 5px !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 5px !important;
		border-radius: 24px !important;
		font-size: 11px !important;
		line-height: 1 !important;
		white-space: nowrap !important;
		box-sizing: border-box !important;
	}
	.rmx-checkout-page .stepper__link span {
		flex: 0 0 25px !important;
		width: 25px !important;
		height: 25px !important;
		font-size: 12px !important;
		line-height: 1 !important;
	}
	.rmx-checkout-page .stepper__link strong {
		display: block !important;
		min-width: 0 !important;
		max-width: 100% !important;
		font-size: 11px !important;
		line-height: 1.05 !important;
		font-weight: 800 !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
	}
	.rmx-checkout-page .stepper__step.is-active .stepper__link {
		border-width: 2px !important;
		box-shadow: 0 3px 0 var(--checkout-ink) !important;
		transform: none !important;
	}
}

@media (max-width: 380px) {
	.rmx-checkout-page .stepper {
		gap: 4px !important;
	}
	.rmx-checkout-page .stepper__link {
		height: 40px !important;
		min-height: 40px !important;
		padding-inline: 3px !important;
		gap: 3px !important;
	}
	.rmx-checkout-page .stepper__link span {
		flex-basis: 22px !important;
		width: 22px !important;
		height: 22px !important;
		font-size: 10.5px !important;
	}
	.rmx-checkout-page .stepper__link strong {
		font-size: 9.8px !important;
	}
}

.rmx-checkout-page .checkout-card.checkout-payment,
.rmx-checkout-page .checkout-payment .order-card,
.rmx-checkout-page .checkout-payment .order-card__selection,
.rmx-checkout-page .checkout-payment .order-card__thumbs {
	max-width: 100% !important;
	box-sizing: border-box !important;
}
.rmx-checkout-page .checkout-payment .order-card__thumbs {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(62px, 1fr)) !important;
	gap: 8px !important;
	overflow: hidden !important;
}
.rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	aspect-ratio: 1 / 1 !important;
	height: auto !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}
.rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
}
@media (max-width: 520px) {
	.rmx-checkout-page .checkout-payment .order-card__thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

/* v1.4.6 — Step 3 desktop heading alignment and drawer product media containment. */
.rmx-checkout-page .checkout-payment .checkout-step__header {
	justify-content: flex-start !important;
}
.rmx-checkout-page .checkout-payment h1 {
	text-align: left !important;
	margin-right: auto !important;
}

/* v1.5.0 — selection label and Review & Pay selected-post media bounds. */
.rmx-checkout-page .post-tile .selected-label {
    top: 20px !important;
}
.rmx-checkout-page .checkout-payment .order-card__thumbs {
    grid-template-columns: repeat(auto-fit, minmax(58px, 72px)) !important;
    justify-content: start !important;
    align-items: start !important;
    overflow: hidden !important;
}
.rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    min-width: 0 !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
}
.rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb img,
.rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb svg {
    width: 100% !important;
    height: 100% !important;
    max-width: 72px !important;
    max-height: 72px !important;
    object-fit: cover !important;
    object-position: center !important;
}
@media (max-width: 520px) {
    .rmx-checkout-page .checkout-payment .order-card__thumbs {
        grid-template-columns: repeat(4, minmax(48px, 1fr)) !important;
    }
    .rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb,
    .rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb img,
    .rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb svg {
        width: 100% !important;
        height: auto !important;
        max-width: 64px !important;
        max-height: 64px !important;
    }
    .rmx-checkout-page .checkout-payment .order-card__thumbs .order-thumb {
        height: 64px !important;
    }
}


/* v1.6.7 logged-in checkout target account option */
.rmx-checkout-page .checkout-account-switch {
  appearance: none !important;
  width: min(100%, 460px) !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) 28px !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 8px 0 20px !important;
  border: 1.5px solid rgba(176, 131, 240, .46) !important;
  background: #fff !important;
  color: #000 !important;
  border-radius: 18px !important;
  padding: 10px 12px !important;
  font-family: inherit !important;
  text-align: left !important;
  cursor: pointer !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06) !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease !important;
}
.rmx-checkout-page .checkout-account-switch:hover,
.rmx-checkout-page .checkout-account-switch:focus-visible {
  border-color: #B083F0 !important;
  background: #fbf8ff !important;
  box-shadow: 0 14px 30px rgba(176, 131, 240, .18) !important;
  outline: none !important;
  transform: translateY(-1px) !important;
}
.rmx-checkout-page .checkout-account-switch__icon {
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 14px !important;
  background: #B083F0 !important;
  color: #fff !important;
  flex: 0 0 42px !important;
}
.rmx-checkout-page .checkout-account-switch__icon svg {
  width: 19px !important;
  height: 19px !important;
  color: #fff !important;
  stroke: currentColor !important;
}
.rmx-checkout-page .checkout-account-switch__copy {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}
.rmx-checkout-page .checkout-account-switch__copy strong {
  display: block !important;
  color: #000 !important;
  font-size: .9rem !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: -.01em !important;
}
.rmx-checkout-page .checkout-account-switch__copy small {
  display: block !important;
  color: rgba(0, 0, 0, .58) !important;
  font-size: .76rem !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}
.rmx-checkout-page .checkout-account-switch__arrow {
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #000 !important;
  color: #fff !important;
  font-size: .95rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}
.rmx-checkout-page .checkout-selection > .checkout-account-switch,
.rmx-checkout-page .checkout-payment > .checkout-account-switch {
  align-self: flex-start !important;
}
@media (max-width: 640px) {
  .rmx-checkout-page .checkout-account-switch {
    width: 100% !important;
    grid-template-columns: 38px minmax(0, 1fr) 26px !important;
    gap: 10px !important;
    border-radius: 16px !important;
    margin: 8px 0 16px !important;
    padding: 9px 10px !important;
  }
  .rmx-checkout-page .checkout-account-switch__icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 13px !important;
  }
  .rmx-checkout-page .checkout-account-switch__copy strong {
    font-size: .84rem !important;
  }
  .rmx-checkout-page .checkout-account-switch__copy small {
    font-size: .7rem !important;
  }
}

/* v1.6.8 compact checkout account switch */
.rmx-checkout-page .checkout-selection__top {
  align-items: flex-start !important;
  display: flex !important;
  gap: 12px !important;
  justify-content: space-between !important;
  margin-bottom: 14px !important;
}
.rmx-checkout-page .checkout-selection__top h1 {
  margin: 0 !important;
}
.rmx-checkout-page .checkout-step__title-row {
  align-items: center !important;
  display: flex !important;
  gap: 12px !important;
  justify-content: space-between !important;
  width: 100% !important;
}
.rmx-checkout-page .checkout-step__title-row h1 {
  margin: 0 !important;
  text-align: left !important;
}
.rmx-checkout-page .checkout-account-switch.checkout-account-switch--compact {
  appearance: none !important;
  align-items: center !important;
  background: #fff !important;
  border: 2px solid #111 !important;
  border-radius: 999px !important;
  box-shadow: 3px 3px 0 #111 !important;
  color: #111 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  font-family: inherit !important;
  gap: 8px !important;
  margin: 0 !important;
  max-width: none !important;
  min-height: 42px !important;
  padding: 8px 12px !important;
  text-align: center !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease !important;
  width: auto !important;
}
.rmx-checkout-page .checkout-account-switch.checkout-account-switch--compact:hover,
.rmx-checkout-page .checkout-account-switch.checkout-account-switch--compact:focus-visible {
  background: #f8f3ff !important;
  border-color: #B083F0 !important;
  box-shadow: 3px 3px 0 #111, 0 0 0 4px rgba(176, 131, 240, .16) !important;
  outline: none !important;
  transform: translateY(-1px) !important;
}
.rmx-checkout-page .checkout-account-switch__mark {
  align-items: center !important;
  background: #B083F0 !important;
  border-radius: 999px !important;
  color: #111 !important;
  display: inline-flex !important;
  flex: 0 0 24px !important;
  font-size: .86rem !important;
  font-weight: 950 !important;
  height: 24px !important;
  justify-content: center !important;
  line-height: 1 !important;
  width: 24px !important;
}
.rmx-checkout-page .checkout-account-switch__text {
  color: #111 !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  letter-spacing: -.01em !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}
@media (max-width: 700px) {
  .rmx-checkout-page .checkout-selection__top,
  .rmx-checkout-page .checkout-step__title-row {
    align-items: stretch !important;
    flex-direction: column !important;
  }
  .rmx-checkout-page .checkout-account-switch.checkout-account-switch--compact {
    justify-content: center !important;
    width: 100% !important;
  }
}


/* v1.7.1 — follower-only checkout / Genie Insta logo refinements */
.logo_logo__DP9jK.logo_logo--genie-insta img,
.logo_logo__DP9jK.logo_logo--genie-insta svg {
	display: block;
	height: var(--height, 40px);
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	width: var(--width, 240px);
}
.rmx-checkout-page .order-card--no-posts {
	min-height: auto;
}
.rmx-checkout-page .order-card--no-posts .order-card__selection,
.rmx-checkout-page .order-card[data-requires-posts="0"] .order-card__selection {
	display: none !important;
}
.rmx-success.rmx-success--no-posts .rmx-success__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rmx-success.rmx-success--no-posts .rmx-success-account,
.rmx-success.rmx-success--no-posts .rmx-success-plan {
	min-height: 0;
}
@media (max-width: 920px) {
	.rmx-success.rmx-success--no-posts .rmx-success__grid {
		grid-template-columns: 1fr;
	}
}
