/* ============================================================
   XYTEX Subscription Page — subscription-payment.css
   Primary palette: LIGHT TEAL #63D0DF · SMOKE #D2D0CD · PEWTER #99999A · CHARCOAL #262729
   Supplemental: ICE GRAY #DBD9D6 · SLATE #55565A · BLACK #232222 · NAVY #003B71 · DARK TEAL #00ACC8 · GOLD #FFB547
   ============================================================ */

:root {
	--xytex-white:       #ffffff;
	--xytex-navy:        #003B71;
	--xytex-gold:        #FFB547;
	--xytex-teal:        #63D0DF;
	--xytex-teal-dark:   #00ACC8;
	--xytex-teal-hover:  color-mix(in srgb, var(--xytex-teal-dark) 72%, var(--xytex-navy) 28%);
	--xytex-teal-light:  color-mix(in srgb, var(--xytex-teal) 28%, var(--xytex-white));
	--xytex-teal-xlight: color-mix(in srgb, var(--xytex-teal) 14%, var(--xytex-white));
	--xytex-slate:       #55565A;
	--xytex-slate-dark:  #262729;
	--xytex-gray-border: #DBD9D6;
	--xytex-gray-bg:     color-mix(in srgb, #D2D0CD 28%, var(--xytex-white));
	--xytex-text:        #262729;
	--xytex-text-muted:  #99999A;
	--xytex-danger:      #003B71;
	--xytex-radius:      8px;
	--xytex-radius-lg:   14px;
	--xytex-shadow:      0 2px 16px rgba(99, 208, 223, 0.12);
	--xytex-shadow-lg:   0 8px 40px rgba(99, 208, 223, 0.2);
	--xytex-transition:  all 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Box-sizing reset ────────────────────────────────────── */
.xytex-subscribe-hero *,
.xytex-trust-bar *,
.xytex-subscription-page * {
	box-sizing: border-box;
}

/* ============================================================
   HERO
   ============================================================ */
.xytex-subscribe-hero {
	background: linear-gradient(135deg, var(--xytex-slate-dark) 0%, var(--xytex-slate) 100%);
	padding: 60px 0 52px;
	position: relative;
	overflow: hidden;
}

.xytex-subscribe-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 72% 50%, rgba(99,208,223,0.25) 0%, transparent 62%);
	pointer-events: none;
}

/* Decorative circles */
.xytex-subscribe-hero::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	border: 1px solid rgba(99,208,223,0.15);
	top: -120px;
	left: -80px;
	pointer-events: none;
}

.xytex-subscribe-hero__inner {
	text-align: center;
	position: relative;
	z-index: 1;
}

.xytex-subscribe-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(99,208,223,0.20);
	color: rgba(99, 208, 223, 0.96);
	border: 1px solid rgba(99,208,223,0.38);
	border-radius: 30px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 5px 18px;
	margin-bottom: 18px;
}

.xytex-subscribe-hero__title {
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 800;
	color: var(--xytex-white);
	margin: 0 0 14px;
	letter-spacing: -0.02em;
	line-height: 1.12;
}

.xytex-subscribe-hero__subtitle {
	font-size: 16px;
	color: rgba(255,255,255,0.72);
	margin: 0 0 36px;
	line-height: 1.65;
}

.xytex-subscribe-hero__steps-wrap {
	display: inline-block;
	background: rgba(35, 34, 34, 0.2);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: var(--xytex-radius-lg);
	padding: 20px 32px 22px;
	backdrop-filter: blur(6px);
}

.xytex-subscribe-hero__steps-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.50);
	margin: 0 0 12px;
}

.xytex-subscribe-hero__steps {
	display: inline-flex;
	flex-direction: column;
	gap: 9px;
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: steps;
	text-align: left;
}

.xytex-subscribe-hero__steps li {
	counter-increment: steps;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,0.88);
}

.xytex-subscribe-hero__steps li::before {
	content: counter(steps);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--xytex-teal-dark);
	color: var(--xytex-white);
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.xytex-trust-bar {
	background: var(--xytex-white);
	border-bottom: 1px solid var(--xytex-gray-border);
	padding: 18px 0;
}

.xytex-trust-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}

.xytex-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 28px;
	font-size: 13.5px;
	color: var(--xytex-text-muted);
}

.xytex-trust-item svg {
	color: var(--xytex-teal);
	flex-shrink: 0;
}

.xytex-trust-item strong {
	color: var(--xytex-text);
}

.xytex-trust-divider {
	width: 1px;
	height: 28px;
	background: var(--xytex-gray-border);
	flex-shrink: 0;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.xytex-subscription-page {
	background: var(--xytex-gray-bg);
	padding: 52px 0 72px;
}

/* ============================================================
   ALERT
   ============================================================ */
.xytex-alert {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 18px;
	border-radius: var(--xytex-radius);
	margin-bottom: 28px;
	font-size: 14px;
	font-weight: 500;
}

.xytex-alert--danger {
	background: color-mix(in srgb, var(--xytex-navy) 8%, var(--xytex-white));
	border: 1px solid var(--xytex-navy);
	color: var(--xytex-danger);
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.xytex-features-strip {
	background: var(--xytex-white);
	border: 1px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius-lg);
	padding: 40px 40px 36px;
	margin-bottom: 32px;
}

.xytex-features-strip__title {
	text-align: center;
	font-size: clamp(17px, 2.4vw, 22px);
	font-weight: 800;
	color: var(--xytex-text);
	margin: 0 0 32px;
}

.xytex-features-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.xytex-feature-item {
	text-align: center;
	padding: 0 8px;
}

.xytex-feature-item__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--xytex-teal-xlight);
	color: var(--xytex-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.xytex-feature-item h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--xytex-text);
	margin: 0 0 8px;
}

.xytex-feature-item p {
	font-size: 13px;
	color: var(--xytex-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* ============================================================
   PLAN SECTION
   ============================================================ */
.xytex-plan-section {
	margin-bottom: 32px;
}

.xytex-plan-section__intro {
	text-align: center;
	margin-bottom: 32px;
}

.xytex-plan-section__intro h2 {
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 800;
	color: var(--xytex-text);
	margin: 0 0 10px;
}

.xytex-plan-section__intro p {
	font-size: 15px;
	color: var(--xytex-text-muted);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ── Plan Grid ───────────────────────────────────────────── */
.xytex-plan-grid {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 24px;
	flex-wrap: wrap;
}

/* ── Plan Card ───────────────────────────────────────────── */
.xytex-plan-card {
	position: relative;
	background: var(--xytex-white);
	border: 2px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius-lg);
	width: 310px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: var(--xytex-transition);
}

.xytex-plan-card:hover {
	transform: translateY(-4px);
}

.xytex-plan-card.is-selected {
	border-color: var(--xytex-teal);
}

/* Popular badge */
.xytex-plan-card__popular-badge {
	display: none;
	align-items: center;
	gap: 5px;
	position: absolute;
	top: 0;
	right: 20px;
	background: var(--xytex-teal-dark);
	color: var(--xytex-white);
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 0 0 10px 10px;
	z-index: 2;
}

.xytex-plan-card--premium .xytex-plan-card__popular-badge {
	display: flex;
}

/* Card header */
.xytex-plan-card__header {
	padding: 32px 28px 22px;
}

.xytex-plan-card--standard .xytex-plan-card__header {
	background: linear-gradient(140deg, var(--xytex-slate) 0%, var(--xytex-slate-dark) 100%);
}

.xytex-plan-card--premium .xytex-plan-card__header {
	background: linear-gradient(140deg, var(--xytex-teal) 0%, var(--xytex-teal-dark) 100%);
}

.xytex-plan-card__badge {
	display: inline-block;
	background: rgba(255,255,255,0.20);
	color: rgba(255,255,255,0.90);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	padding: 3px 12px;
	border-radius: 20px;
	margin-bottom: 8px;
}

.xytex-plan-card__title {
	font-size: 22px;
	font-weight: 800;
	color: var(--xytex-white);
	margin: 0 0 6px;
}

.xytex-plan-card__tagline {
	font-size: 12.5px;
	color: rgba(255,255,255,0.65);
	margin: 0;
}

/* Card body */
.xytex-plan-card__body {
	padding: 24px 28px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Price */
.xytex-plan-card__price {
	display: flex;
	align-items: flex-start;
	line-height: 1;
	margin-bottom: 4px;
}

.xytex-plan-card__price-original {
	width: 100%;
	font-size: 14px;
	color: var(--xytex-text-muted);
	text-decoration: line-through;
	margin-bottom: 2px;
}

.xytex-plan-card__price-dollar {
	font-size: 22px;
	font-weight: 700;
	color: var(--xytex-teal);
	padding-top: 10px;
}

.xytex-plan-card__price-amount {
	font-size: 68px;
	font-weight: 900;
	color: var(--xytex-teal);
	line-height: 1;
	letter-spacing: -0.03em;
}

.xytex-plan-card__price-cents {
	font-size: 22px;
	font-weight: 700;
	color: var(--xytex-teal);
	padding-top: 10px;
}

.xytex-plan-card__price-note {
	font-size: 11.5px;
	color: var(--xytex-text-muted);
	margin: 0 0 20px;
}

/* Features */
.xytex-plan-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 11px;
	flex: 1;
	border-top: 1px solid var(--xytex-gray-border);
	padding-top: 18px;
}

.xytex-plan-card__features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--xytex-text);
	font-weight: 500;
}

.xytex-plan-card__features li svg {
	color: var(--xytex-teal);
	flex-shrink: 0;
}

/* Plan Button */
.xytex-plan-card__btn {
	display: block;
	width: 100%;
	padding: 13px 20px;
	border: 2px solid var(--xytex-slate);
	border-radius: var(--xytex-radius);
	background: transparent;
	color: var(--xytex-slate);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	transition: var(--xytex-transition);
	text-align: center;
}

.xytex-plan-card--premium .xytex-plan-card__btn {
	border-color: var(--xytex-teal);
	color: var(--xytex-teal);
}

.xytex-plan-card__btn:hover,
.xytex-plan-card__btn.is-active {
	background: var(--xytex-slate);
	color: var(--xytex-white);
	transform: none;
}

.xytex-plan-card--premium .xytex-plan-card__btn:hover,
.xytex-plan-card--premium .xytex-plan-card__btn.is-active {
	background: var(--xytex-teal-dark);
	color: var(--xytex-white);
}

/* Disclaimer */
.xytex-plan-disclaimer {
	text-align: center;
	font-size: 12px;
	color: var(--xytex-text-muted);
	margin: 22px auto 0;
	max-width: 660px;
	line-height: 1.6;
}

/* ============================================================
   TERMS SECTION
   ============================================================ */
.xytex-terms-section {
	background: var(--xytex-white);
	border: 1px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius-lg);
	padding: 36px 44px;
	max-width: 820px;
	margin: 0 auto 32px;
	text-align: center;
}

.xytex-terms-section__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--xytex-teal-light);
	color: var(--xytex-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.xytex-terms-section__title {
	font-size: 20px;
	font-weight: 800;
	color: var(--xytex-text);
	margin: 0 0 20px;
}

.xytex-terms-section__content {
	font-size: 13.5px;
	color: var(--xytex-text-muted);
	line-height: 1.8;
	text-align: left;
	border-top: 1px solid var(--xytex-gray-border);
	border-bottom: 1px solid var(--xytex-gray-border);
	padding: 22px 0;
	margin-bottom: 22px;
}

.xytex-terms-section__content p {
	margin: 0 0 13px;
}

.xytex-terms-section__content p:last-child {
	margin-bottom: 0;
}

.xytex-terms-section__content strong {
	color: var(--xytex-text);
}

/* ── Custom Checkbox ─────────────────────────────────────── */
.xytex-terms-section__checkbox {
	display: flex;
	justify-content: center;
}

.xytex-checkbox-label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: var(--xytex-text);
	user-select: none;
}

.xytex-checkbox-label input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.xytex-checkbox-box {
	width: 22px;
	height: 22px;
	border: 2px solid var(--xytex-gray-border);
	border-radius: 5px;
	background: var(--xytex-white);
	flex-shrink: 0;
	transition: var(--xytex-transition);
	position: relative;
}

.xytex-checkbox-label input[type="checkbox"]:focus ~ .xytex-checkbox-box {
	outline: 2px solid var(--xytex-teal);
	outline-offset: 2px;
}

.xytex-checkbox-label input[type="checkbox"]:checked ~ .xytex-checkbox-box {
	background: var(--xytex-teal-dark);
	border-color: var(--xytex-teal-dark);
}

.xytex-checkbox-label input[type="checkbox"]:checked ~ .xytex-checkbox-box::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 6px;
	width: 6px;
	height: 11px;
	border: 2px solid var(--xytex-white);
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
}

/* ============================================================
   ACTION BUTTONS
   ============================================================ */
.xytex-terms-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.xytex-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 34px;
	border-radius: var(--xytex-radius);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
	transition: var(--xytex-transition);
	border: 2px solid transparent;
}

.xytex-btn--primary {
	background: var(--xytex-teal-dark);
	color: var(--xytex-white);
	border-color: var(--xytex-teal-dark);
}

.xytex-btn--primary:hover:not(:disabled) {
	background: var(--xytex-teal-hover);
	border-color: var(--xytex-teal-hover);
	transform: translateY(-1px);
}

.xytex-btn--primary:disabled {
	opacity: 0.42;
	cursor: not-allowed;
}

.xytex-btn--ghost {
	background: transparent;
	color: var(--xytex-text-muted);
	border-color: var(--xytex-gray-border);
}

.xytex-btn--ghost:hover {
	background: var(--xytex-gray-bg);
	color: var(--xytex-text);
	border-color: var(--xytex-gray-border);
}

/* ============================================================
   LEGACY STYLES (backward compatibility)
   ============================================================ */
.subscription-payment-layout { margin-top: 10px; }
.subscription-payment-layout .form-fields { background: var(--xytex-white); border: 1px solid var(--xytex-gray-border); border-radius: 4px; padding: 20px; }
.subscription-payment-layout .error-message { color: var(--xytex-danger); margin-bottom: 12px; }
.subscription-payment-layout .btn-out { margin-top: 10px; }
.subscription-payment-layout .xytex-api-loading { margin-left: 10px; }
.subscription-payment-image-wrap { min-height: 100%; display: flex; align-items: stretch; }
.subscription-payment-image-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; border: 1px solid var(--xytex-gray-border); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
	.xytex-features-strip__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.xytex-subscribe-hero {
		padding: 40px 0 36px;
	}

	.xytex-subscribe-hero__subtitle br {
		display: none;
	}

	.xytex-subscribe-hero__steps-wrap {
		padding: 16px 20px 18px;
	}

	.xytex-trust-bar__inner {
		flex-direction: column;
		gap: 4px;
	}

	.xytex-trust-divider {
		width: 40px;
		height: 1px;
	}

	.xytex-features-strip {
		padding: 28px 20px 24px;
	}

	.xytex-features-strip__grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.xytex-plan-grid {
		flex-direction: column;
		align-items: center;
	}

	.xytex-plan-card {
		width: 100%;
		max-width: 360px;
	}

	.xytex-terms-section {
		padding: 28px 20px;
	}

	.xytex-terms-actions {
		flex-direction: column;
	}

	.xytex-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 420px) {
	.xytex-features-strip__grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   XYTEX Subscription Page — subscription-payment.css
   Primary palette: LIGHT TEAL #63D0DF · SMOKE #D2D0CD · PEWTER #99999A · CHARCOAL #262729
   Supplemental: ICE GRAY #DBD9D6 · SLATE #55565A · BLACK #232222 · NAVY #003B71 · DARK TEAL #00ACC8 · GOLD #FFB547
   ============================================================ */

:root {
	--xytex-white:       #ffffff;
	--xytex-navy:        #003B71;
	--xytex-gold:        #FFB547;
	--xytex-teal:        #63D0DF;
	--xytex-teal-dark:   #00ACC8;
	--xytex-teal-hover:  color-mix(in srgb, var(--xytex-teal-dark) 72%, var(--xytex-navy) 28%);
	--xytex-teal-light:  color-mix(in srgb, var(--xytex-teal) 28%, var(--xytex-white));
	--xytex-teal-xlight: color-mix(in srgb, var(--xytex-teal) 14%, var(--xytex-white));
	--xytex-slate:       #55565A;
	--xytex-slate-dark:  #262729;
	--xytex-gray-border: #DBD9D6;
	--xytex-gray-bg:     color-mix(in srgb, #D2D0CD 28%, var(--xytex-white));
	--xytex-text:        #262729;
	--xytex-text-muted:  #99999A;
	--xytex-danger:      #003B71;
	--xytex-radius:      8px;
	--xytex-radius-lg:   14px;
	--xytex-shadow:      0 2px 16px rgba(99, 208, 223, 0.12);
	--xytex-shadow-lg:   0 8px 40px rgba(99, 208, 223, 0.2);
	--xytex-transition:  all 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Box-sizing reset ────────────────────────────────────── */
.xytex-subscribe-hero *,
.xytex-trust-bar *,
.xytex-subscription-page * {
	box-sizing: border-box;
}

/* ============================================================
   HERO
   ============================================================ */
.xytex-subscribe-hero {
	background: linear-gradient(135deg, var(--xytex-slate-dark) 0%, var(--xytex-slate) 100%);
	padding: 60px 0 52px;
	position: relative;
	overflow: hidden;
}

.xytex-subscribe-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 72% 50%, rgba(99,208,223,0.25) 0%, transparent 62%);
	pointer-events: none;
}

/* Decorative circles */
.xytex-subscribe-hero::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	border: 1px solid rgba(99,208,223,0.15);
	top: -120px;
	left: -80px;
	pointer-events: none;
}

.xytex-subscribe-hero__inner {
	text-align: center;
	position: relative;
	z-index: 1;
}

.xytex-subscribe-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(99,208,223,0.20);
	color: rgba(99, 208, 223, 0.96);
	border: 1px solid rgba(99,208,223,0.38);
	border-radius: 30px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 5px 18px;
	margin-bottom: 18px;
}

.xytex-subscribe-hero__title {
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 800;
	color: var(--xytex-white);
	margin: 0 0 14px;
	letter-spacing: -0.02em;
	line-height: 1.12;
}

.xytex-subscribe-hero__subtitle {
	font-size: 16px;
	color: rgba(255,255,255,0.72);
	margin: 0 0 36px;
	line-height: 1.65;
}

.xytex-subscribe-hero__steps-wrap {
	display: inline-block;
	background: rgba(35, 34, 34, 0.2);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: var(--xytex-radius-lg);
	padding: 20px 32px 22px;
	backdrop-filter: blur(6px);
}

.xytex-subscribe-hero__steps-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.50);
	margin: 0 0 12px;
}

.xytex-subscribe-hero__steps {
	display: inline-flex;
	flex-direction: column;
	gap: 9px;
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: steps;
	text-align: left;
}

.xytex-subscribe-hero__steps li {
	counter-increment: steps;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,0.88);
}

.xytex-subscribe-hero__steps li::before {
	content: counter(steps);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--xytex-teal-dark);
	color: var(--xytex-white);
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.xytex-trust-bar {
	background: var(--xytex-white);
	border-bottom: 1px solid var(--xytex-gray-border);
	padding: 18px 0;
}

.xytex-trust-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}

.xytex-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 28px;
	font-size: 13.5px;
	color: var(--xytex-text-muted);
}

.xytex-trust-item svg {
	color: var(--xytex-teal);
	flex-shrink: 0;
}

.xytex-trust-item strong {
	color: var(--xytex-text);
}

.xytex-trust-divider {
	width: 1px;
	height: 28px;
	background: var(--xytex-gray-border);
	flex-shrink: 0;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.xytex-subscription-page {
	background: var(--xytex-gray-bg);
	padding: 52px 0 72px;
}

/* ============================================================
   ALERT
   ============================================================ */
.xytex-alert {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 18px;
	border-radius: var(--xytex-radius);
	margin-bottom: 28px;
	font-size: 14px;
	font-weight: 500;
}

.xytex-alert--danger {
	background: color-mix(in srgb, var(--xytex-navy) 8%, var(--xytex-white));
	border: 1px solid var(--xytex-navy);
	color: var(--xytex-danger);
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.xytex-features-strip {
	background: var(--xytex-white);
	border: 1px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius-lg);
	padding: 40px 40px 36px;
	margin-bottom: 32px;
}

.xytex-features-strip__title {
	text-align: center;
	font-size: clamp(17px, 2.4vw, 22px);
	font-weight: 800;
	color: var(--xytex-text);
	margin: 0 0 32px;
}

.xytex-features-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.xytex-feature-item {
	text-align: center;
	padding: 0 8px;
}

.xytex-feature-item__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--xytex-teal-xlight);
	color: var(--xytex-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.xytex-feature-item h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--xytex-text);
	margin: 0 0 8px;
}

.xytex-feature-item p {
	font-size: 13px;
	color: var(--xytex-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* ============================================================
   PLAN SECTION
   ============================================================ */
.xytex-plan-section {
	margin-bottom: 32px;
}

.xytex-plan-section__intro {
	text-align: center;
	margin-bottom: 32px;
}

.xytex-plan-section__intro h2 {
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 800;
	color: var(--xytex-text);
	margin: 0 0 10px;
}

.xytex-plan-section__intro p {
	font-size: 15px;
	color: var(--xytex-text-muted);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ── Plan Grid ───────────────────────────────────────────── */
.xytex-plan-grid {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 24px;
	flex-wrap: wrap;
}

/* ── Plan Card ───────────────────────────────────────────── */
.xytex-plan-card {
	position: relative;
	background: var(--xytex-white);
	border: 2px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius-lg);
	width: 310px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: var(--xytex-transition);
}

.xytex-plan-card:hover {
	transform: translateY(-4px);
}

.xytex-plan-card.is-selected {
	border-color: var(--xytex-teal);
}

/* Popular badge */
.xytex-plan-card__popular-badge {
	display: none;
	align-items: center;
	gap: 5px;
	position: absolute;
	top: 0;
	right: 20px;
	background: var(--xytex-teal-dark);
	color: var(--xytex-white);
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 0 0 10px 10px;
	z-index: 2;
}

.xytex-plan-card--premium .xytex-plan-card__popular-badge {
	display: flex;
}

/* Card header */
.xytex-plan-card__header {
	padding: 32px 28px 22px;
}

.xytex-plan-card--standard .xytex-plan-card__header {
	background: linear-gradient(140deg, var(--xytex-slate) 0%, var(--xytex-slate-dark) 100%);
}

.xytex-plan-card--premium .xytex-plan-card__header {
	background: linear-gradient(140deg, var(--xytex-teal) 0%, var(--xytex-teal-dark) 100%);
}

.xytex-plan-card__badge {
	display: inline-block;
	background: rgba(255,255,255,0.20);
	color: rgba(255,255,255,0.90);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	padding: 3px 12px;
	border-radius: 20px;
	margin-bottom: 8px;
}

.xytex-plan-card__title {
	font-size: 22px;
	font-weight: 800;
	color: var(--xytex-white);
	margin: 0 0 6px;
}

.xytex-plan-card__tagline {
	font-size: 12.5px;
	color: rgba(255,255,255,0.65);
	margin: 0;
}

/* Card body */
.xytex-plan-card__body {
	padding: 24px 28px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Price */
.xytex-plan-card__price {
	display: flex;
	align-items: flex-start;
	line-height: 1;
	margin-bottom: 4px;
}

.xytex-plan-card__price-original {
	width: 100%;
	font-size: 14px;
	color: var(--xytex-text-muted);
	text-decoration: line-through;
	margin-bottom: 2px;
}

.xytex-plan-card__price-dollar {
	font-size: 22px;
	font-weight: 700;
	color: var(--xytex-teal);
	padding-top: 10px;
}

.xytex-plan-card__price-amount {
	font-size: 68px;
	font-weight: 900;
	color: var(--xytex-teal);
	line-height: 1;
	letter-spacing: -0.03em;
}

.xytex-plan-card__price-cents {
	font-size: 22px;
	font-weight: 700;
	color: var(--xytex-teal);
	padding-top: 10px;
}

.xytex-plan-card__price-note {
	font-size: 11.5px;
	color: var(--xytex-text-muted);
	margin: 0 0 20px;
}

/* Features */
.xytex-plan-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 11px;
	flex: 1;
	border-top: 1px solid var(--xytex-gray-border);
	padding-top: 18px;
}

.xytex-plan-card__features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--xytex-text);
	font-weight: 500;
}

.xytex-plan-card__features li svg {
	color: var(--xytex-teal);
	flex-shrink: 0;
}

/* Plan Button */
.xytex-plan-card__btn {
	display: block;
	width: 100%;
	padding: 13px 20px;
	border: 2px solid var(--xytex-slate);
	border-radius: var(--xytex-radius);
	background: transparent;
	color: var(--xytex-slate);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	transition: var(--xytex-transition);
	text-align: center;
}

.xytex-plan-card--premium .xytex-plan-card__btn {
	border-color: var(--xytex-teal);
	color: var(--xytex-teal);
}

.xytex-plan-card__btn:hover,
.xytex-plan-card__btn.is-active {
	background: var(--xytex-slate);
	color: var(--xytex-white);
	transform: none;
}

.xytex-plan-card--premium .xytex-plan-card__btn:hover,
.xytex-plan-card--premium .xytex-plan-card__btn.is-active {
	background: var(--xytex-teal-dark);
	color: var(--xytex-white);
}

/* Disclaimer */
.xytex-plan-disclaimer {
	text-align: center;
	font-size: 12px;
	color: var(--xytex-text-muted);
	margin: 22px auto 0;
	max-width: 660px;
	line-height: 1.6;
}

/* ============================================================
   TERMS SECTION
   ============================================================ */
.xytex-terms-section {
	background: var(--xytex-white);
	border: 1px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius-lg);
	padding: 36px 44px;
	max-width: 820px;
	margin: 0 auto 32px;
	text-align: center;
}

.xytex-terms-section__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--xytex-teal-light);
	color: var(--xytex-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.xytex-terms-section__title {
	font-size: 20px;
	font-weight: 800;
	color: var(--xytex-text);
	margin: 0 0 20px;
}

.xytex-terms-section__content {
	font-size: 13.5px;
	color: var(--xytex-text-muted);
	line-height: 1.8;
	text-align: left;
	border-top: 1px solid var(--xytex-gray-border);
	border-bottom: 1px solid var(--xytex-gray-border);
	padding: 22px 0;
	margin-bottom: 22px;
}

.xytex-terms-section__content p {
	margin: 0 0 13px;
}

.xytex-terms-section__content p:last-child {
	margin-bottom: 0;
}

.xytex-terms-section__content strong {
	color: var(--xytex-text);
}

/* ── Custom Checkbox ─────────────────────────────────────── */
.xytex-terms-section__checkbox {
	display: flex;
	justify-content: center;
}

.xytex-checkbox-label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: var(--xytex-text);
	user-select: none;
}

.xytex-checkbox-label input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.xytex-checkbox-box {
	width: 22px;
	height: 22px;
	border: 2px solid var(--xytex-gray-border);
	border-radius: 5px;
	background: var(--xytex-white);
	flex-shrink: 0;
	transition: var(--xytex-transition);
	position: relative;
}

.xytex-checkbox-label input[type="checkbox"]:focus ~ .xytex-checkbox-box {
	outline: 2px solid var(--xytex-teal);
	outline-offset: 2px;
}

.xytex-checkbox-label input[type="checkbox"]:checked ~ .xytex-checkbox-box {
	background: var(--xytex-teal-dark);
	border-color: var(--xytex-teal-dark);
}

.xytex-checkbox-label input[type="checkbox"]:checked ~ .xytex-checkbox-box::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 6px;
	width: 6px;
	height: 11px;
	border: 2px solid var(--xytex-white);
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
}

/* ============================================================
   ACTION BUTTONS
   ============================================================ */
.xytex-terms-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.xytex-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 34px;
	border-radius: var(--xytex-radius);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
	transition: var(--xytex-transition);
	border: 2px solid transparent;
}

.xytex-btn--primary {
	background: var(--xytex-teal-dark);
	color: var(--xytex-white);
	border-color: var(--xytex-teal-dark);
}

.xytex-btn--primary:hover:not(:disabled) {
	background: var(--xytex-teal-hover);
	border-color: var(--xytex-teal-hover);
	transform: translateY(-1px);
}

.xytex-btn--primary:disabled {
	opacity: 0.42;
	cursor: not-allowed;
}

.xytex-btn--ghost {
	background: transparent;
	color: var(--xytex-text-muted);
	border-color: var(--xytex-gray-border);
}

.xytex-btn--ghost:hover {
	background: var(--xytex-gray-bg);
	color: var(--xytex-text);
	border-color: var(--xytex-gray-border);
}

/* ============================================================
   LEGACY STYLES (backward compatibility)
   ============================================================ */
.subscription-payment-layout { margin-top: 10px; }
.subscription-payment-layout .form-fields { background: var(--xytex-white); border: 1px solid var(--xytex-gray-border); border-radius: 4px; padding: 20px; }
.subscription-payment-layout .error-message { color: var(--xytex-danger); margin-bottom: 12px; }
.subscription-payment-layout .btn-out { margin-top: 10px; }
.subscription-payment-layout .xytex-api-loading { margin-left: 10px; }
.subscription-payment-image-wrap { min-height: 100%; display: flex; align-items: stretch; }
.subscription-payment-image-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; border: 1px solid var(--xytex-gray-border); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
	.xytex-features-strip__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.xytex-subscribe-hero {
		padding: 40px 0 36px;
	}

	.xytex-subscribe-hero__subtitle br {
		display: none;
	}

	.xytex-subscribe-hero__steps-wrap {
		padding: 16px 20px 18px;
	}

	.xytex-trust-bar__inner {
		flex-direction: column;
		gap: 4px;
	}

	.xytex-trust-divider {
		width: 40px;
		height: 1px;
	}

	.xytex-features-strip {
		padding: 28px 20px 24px;
	}

	.xytex-features-strip__grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.xytex-plan-grid {
		flex-direction: column;
		align-items: center;
	}

	.xytex-plan-card {
		width: 100%;
		max-width: 360px;
	}

	.xytex-terms-section {
		padding: 28px 20px;
	}

	.xytex-terms-actions {
		flex-direction: column;
	}

	.xytex-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 420px) {
	.xytex-features-strip__grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   PAYMENT PAGE — HERO VARIANT
   ============================================================ */
.xytex-subscribe-hero--payment {
	background: linear-gradient(135deg, var(--xytex-teal-dark) 0%, var(--xytex-teal) 100%);
	padding: 44px 0 38px;
}

.xytex-subscribe-hero--payment::before {
	background: radial-gradient(ellipse at 72% 50%, rgba(255,255,255,0.18) 0%, transparent 62%);
}

.xytex-subscribe-hero--payment::after {
	border-color: rgba(255,255,255,0.24);
}

.xytex-subscribe-hero--payment .xytex-subscribe-hero__subtitle {
	margin-bottom: 0;
}

/* ============================================================
   PAYMENT PAGE — ALERT WARNING
   ============================================================ */
.xytex-alert--warning {
	background: color-mix(in srgb, var(--xytex-gold) 16%, var(--xytex-white));
	border: 1px solid var(--xytex-gold);
	color: var(--xytex-text);
}

/* ============================================================
   PAYMENT LAYOUT GRID
   ============================================================ */
.xytex-payment-layout { width: 100%; }

.xytex-payment-grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 28px;
	align-items: start;
}

/* ============================================================
   ORDER SUMMARY PILL
   ============================================================ */
.xytex-order-summary {
	background: var(--xytex-teal-dark);
	border-radius: var(--xytex-radius-lg);
	padding: 16px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
	color: var(--xytex-white);
}

.xytex-order-summary__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	opacity: 0.88;
}

.xytex-order-summary__details {
	display: flex;
	align-items: center;
	gap: 16px;
}

.xytex-order-summary__package {
	font-size: 14px;
	font-weight: 600;
	opacity: 0.9;
}

.xytex-order-summary__price {
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -0.02em;
}

/* ============================================================
   PAYMENT CARD
   ============================================================ */
.xytex-payment-card {
	background: var(--xytex-white);
	border: 1px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius-lg);
	overflow: hidden;
}

.xytex-payment-card__header {
	padding: 20px 28px;
	border-bottom: 1px solid var(--xytex-gray-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: var(--xytex-gray-bg);
}

.xytex-payment-card__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 700;
	color: var(--xytex-text);
	margin: 0;
}

.xytex-payment-card__title svg { color: var(--xytex-teal); }

.xytex-card-icons { display: flex; gap: 6px; }

.xytex-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	padding: 0 8px;
	border-radius: 4px;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.04em;
	border: 1px solid var(--xytex-gray-border);
	background: var(--xytex-white);
}

.xytex-card-icon--visa,
.xytex-card-icon--mc,
.xytex-card-icon--amex  { color: var(--xytex-navy); }

.xytex-payment-card__body { padding: 28px; }

/* ============================================================
   PAYMENT ERROR
   (Overrides global ul li::before checkmarks from custom-styles.css)
   ============================================================ */
.xytex-payment-error {
	list-style: none;
	margin: 0 0 20px;
	padding: 14px 16px 14px 46px;
	position: relative;
	background: color-mix(in srgb, var(--xytex-gold) 18%, var(--xytex-white));
	border: 1px solid color-mix(in srgb, var(--xytex-gold) 65%, var(--xytex-slate) 35%);
	border-radius: var(--xytex-radius);
	color: var(--xytex-text);
	font-size: 13.5px;
	font-weight: 600;
}

/* Warning triangle — not the global success checkmark */
.xytex-payment-error::before {
	content: "";
	position: absolute;
	left: 14px;
	top: 15px;
	width: 22px;
	height: 22px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23262729' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E") no-repeat center / contain;
	pointer-events: none;
}

.xytex-payment-error.hidden { display: none; }

.xytex-payment-error li {
	padding: 0 !important;
	margin: 0;
	position: static;
}

.xytex-payment-error li::before {
	content: none !important;
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	background: none !important;
	float: none !important;
}

.xytex-payment-error li:last-child {
	padding-bottom: 0 !important;
}

.xytex-payment-error__detail {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--xytex-slate);
}

.xytex-payment-error__support {
	display: block;
	margin-top: 10px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--xytex-slate-dark);
	line-height: 1.55;
}

/* Interim state while complete_purchase runs after a decline (not the final message). */
.xytex-payment-error--pending {
	font-weight: 500;
}

.xytex-payment-error--pending::before {
	opacity: 0.65;
	animation: xytex-payment-pending-pulse 1.4s ease-in-out infinite;
}

.xytex-payment-error__pending {
	display: block;
	font-style: italic;
	font-weight: 500;
	color: var(--xytex-text-muted);
}

@keyframes xytex-payment-pending-pulse {
	0%, 100% { opacity: 0.65; }
	50% { opacity: 0.35; }
}

/* ============================================================
   FORM
   ============================================================ */
.xytex-form { display: flex; flex-direction: column; gap: 0; }

.xytex-form__section-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--xytex-text-muted);
	margin: 0 0 16px;
	padding-top: 4px;
}

.xytex-form__section-label--card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
}

.xytex-form__secure-note {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 10.5px;
	font-weight: 600;
	color: var(--xytex-teal);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.xytex-form__row {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.xytex-form__row--2col { grid-template-columns: 1fr 1fr; }

.xytex-form__group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.xytex-form__row .xytex-form__group { margin-bottom: 0; }

.xytex-form__label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--xytex-text);
	display: flex;
	align-items: center;
	gap: 6px;
}

.xytex-form__input {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius);
	font-size: 14px;
	color: var(--xytex-text);
	background: var(--xytex-white);
	transition: var(--xytex-transition);
	appearance: none;
	-webkit-appearance: none;
	line-height: 1.4;
}

.xytex-form__input::placeholder { color: var(--xytex-text-muted); }

.xytex-form__input:focus {
	outline: none;
	border-color: var(--xytex-teal);
}

.xytex-form__select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2399999A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
	cursor: pointer;
}

.xytex-form__input-icon-wrap { position: relative; }
.xytex-form__input-icon-wrap .xytex-form__input { padding-right: 44px; }

.xytex-form__input-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--xytex-text-muted);
	pointer-events: none;
}

.xytex-form__cvv-tip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--xytex-gray-border);
	color: var(--xytex-text-muted);
	font-size: 10px;
	font-weight: 700;
	cursor: help;
	font-style: normal;
}

/* ============================================================
   PAYMENT ACTIONS
   ============================================================ */
.xytex-payment-actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--xytex-gray-border);
}

.xytex-btn--full { width: 100%; justify-content: center; }
.xytex-payment-actions .xytex-btn--full { width: calc(50% - 5px); }

.xytex-api-loading { display: none; text-align: center; color: var(--xytex-teal); font-size: 18px; }
.xytex-payment-actions .xytex-api-loading { flex-basis: 100%; }
.xytex-api-loading:not(.hidden) { display: block; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.xytex-payment-sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: sticky;
	top: 24px;
}

.xytex-sidebar-card {
	background: var(--xytex-white);
	border: 1px solid var(--xytex-gray-border);
	border-radius: var(--xytex-radius-lg);
	padding: 22px 24px;
}

.xytex-sidebar-card__title {
	font-size: 13px;
	font-weight: 700;
	color: var(--xytex-text);
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.xytex-sidebar-feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.xytex-sidebar-feature-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--xytex-text);
	font-weight: 500;
}

.xytex-sidebar-feature-list li svg { color: var(--xytex-teal); flex-shrink: 0; }

.xytex-sidebar-card--security {
	background: var(--xytex-teal-xlight);
	border-color: rgba(99,208,223,0.20);
	text-align: left;
}

.xytex-sidebar-security__title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.xytex-sidebar-security__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--xytex-teal-light);
	color: var(--xytex-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.xytex-sidebar-card--security h4 { font-size: 14px; font-weight: 700; color: var(--xytex-text); margin: 0; }
.xytex-sidebar-card--security p  { font-size: 12.5px; color: var(--xytex-text-muted); line-height: 1.65; margin: 0; }

.xytex-sidebar-card--contact {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
}
 
.xytex-sidebar-card--contact svg { color: var(--xytex-teal); flex-shrink: 0; display: block; }
.xytex-sidebar-card--contact p   { font-size: 13px; color: var(--xytex-text-muted); margin: 0; padding: 0; line-height: 1; display: flex; align-items: center; }
.xytex-sidebar-card--contact a   { color: var(--xytex-teal); text-decoration: none; font-weight: 700; }
.xytex-sidebar-card--contact a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE — PAYMENT PAGE ADDITIONS
   ============================================================ */
@media (max-width: 900px) {
	.xytex-payment-grid { grid-template-columns: 1fr; }
	.xytex-payment-sidebar { position: static; }
}

@media (max-width: 680px) {
	.xytex-payment-card__body  { padding: 20px 18px; }
	.xytex-form__row--2col     { grid-template-columns: 1fr; }
	.xytex-order-summary       { flex-direction: column; align-items: flex-start; gap: 8px; }
	.xytex-payment-card__header { flex-wrap: wrap; gap: 10px; }
	.xytex-payment-actions { flex-direction: column; }
	.xytex-payment-actions .xytex-btn--full { width: 100%; }
}