/**
 * Easy Dormant Accounts — Minimal UI
 * All selectors scoped under .eda-ui
 */

.eda-ui .eda-auth,
.eda-ui .eda-dashboard {
	--eda-brand: #02A58C;
	--eda-brand-hover: #000000;
	--eda-brand-soft: #f0fdfa;
	--eda-brand-ring: rgba(13, 148, 136, 0.15);
	--eda-ink: #0f172a;
	--eda-ink-secondary: #475569;
	--eda-muted: #64748b;
	--eda-border: #e2e8f0;
	--eda-surface: #ffffff;
	--eda-surface-muted: #F7F9FB;
	--eda-link: #0f766e;
	--eda-link-hover: #0d9488;
	--eda-error: #dc2626;
	--eda-error-soft: #fef2f2;
	--eda-success: #059669;
	--eda-success-soft: #ecfdf5;
	--eda-radius-sm: 6px;
	--eda-radius: 8px;
	--eda-radius-lg: 10px;
	--eda-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	font-family: var(--eda-font);
	font-size: 15px;
	line-height: 1.5;
	color: var(--eda-ink-secondary);
}

.eda-ui .eda-auth,
.eda-ui .eda-dashboard {
	max-width: 920px;
	margin: 0 auto;
	padding: 1.25rem 1rem 2rem;
}

/* Page header */
.eda-ui .eda-page-header {
	margin-bottom: 3rem;
}

.eda-ui .eda-page-header__eyebrow {
	display: inline-block;
	margin-bottom: 0.35rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--eda-muted);
}

.eda-ui .eda-page-header__title {
	margin: 0 0 0.35rem;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--eda-ink);
}

.eda-ui .eda-page-header__subtitle {
	max-width: 34rem;
	margin: 0;
	font-size: 0.9375rem;
	color: var(--eda-muted);
}

.eda-ui .eda-auth--login .eda-page-header {
	text-align: center;
}

.eda-ui .eda-auth--register .eda-page-header {
	text-align: left;
}

.eda-ui .eda-auth--login .eda-page-header__subtitle {
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.eda-ui .eda-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Login page — pixel match to design */
.eda-ui:has(.eda-auth--login) {
	background: #eef1f1;
	padding: 2.75rem 1.5rem 3.5rem;
}

.eda-ui .eda-auth--login {
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
}

.eda-ui .eda-auth--login .eda-page-header {
	margin-bottom: 3rem;
}

.eda-ui .eda-auth--login .eda-page-header__title {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #111827;
}

.eda-ui .eda-auth--login .eda-page-header__subtitle {
	font-size: 1rem;
	line-height: 1.5;
	color: #6b7280;
}

.eda-ui .eda-auth--login .eda-auth__layout {
	grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
	gap: 1.5rem;
	align-items: start;
}

.eda-ui .eda-auth--login .eda-auth__panel--login,
.eda-ui .eda-auth--login .eda-auth__panel--register {
	padding: 2rem 2.125rem 2.25rem;
	background: #F7F9FB;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: none;
}

.eda-ui .eda-auth--login .eda-auth__heading {
	margin: 0 0 1.375rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	color: #111827;
}

.eda-ui .eda-auth--login .eda-form--login .eda-field {
	margin-bottom: 1rem;
}

.eda-ui .eda-auth--login .eda-form--login .eda-field--actions {
	margin-top: 1.375rem;
	margin-bottom: 0;
}

.eda-ui .eda-auth--login .eda-form--login .eda-input {
	min-height: 3rem;
	padding: 0.75rem 0.875rem;
	font-size: 0.9375rem;
	color: #111827;
	border-color: #d1d5db;
	border-radius: 6px;
}

.eda-ui .eda-auth--login .eda-form--login .eda-input::placeholder {
	color: #9ca3af;
	opacity: 1;
}

.eda-ui .eda-auth--login .eda-password-field .eda-input {
	padding-right: 3.25rem;
}

.eda-ui .eda-auth--login .eda-password-toggle {
	right: 0.4375rem;
	width: 2.25rem;
	height: 2.25rem;
	color: #0d9488;
	background: #e6f4f1;
	border-radius: 6px;
}

.eda-ui .eda-auth--login .eda-password-toggle:hover,
.eda-ui .eda-auth--login .eda-password-toggle:focus {
	color: #0f766e;
	background: #d1f0ea;
}

.eda-ui .eda-auth--login .eda-password-toggle__icon {
	width: 1.25rem;
	height: 1.25rem;
}

.eda-ui .eda-auth--login .eda-button {
	padding: 16px 35px;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: 6px;
}

.eda-ui .eda-auth--login .eda-auth__links {
	margin-top: 1rem;
	margin-bottom: 0;
	font-size: 0.9375rem;
}

.eda-ui .eda-auth--login .eda-auth__links a {
	color: #0d9488;
	font-weight: 500;
	text-decoration: none;
}

.eda-ui .eda-auth--login .eda-auth__links a:hover,
.eda-ui .eda-auth--login .eda-auth__links a:focus {
	color: #0f766e;
	text-decoration: underline;
}

.eda-ui .eda-auth--login .eda-auth__intro {
	margin: 0 0 1.625rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #4b5563;
}

.eda-ui .eda-auth--login .eda-auth__panel--register .eda-button {
	margin-top: 0;
}

body.eda-login-page {
	background-color: #eef1f1;
}

/* Surfaces */
.eda-ui .eda-card,
.eda-ui .eda-panel,
.eda-ui .eda-auth__panel--login,
.eda-ui .eda-auth__panel--register,
.eda-ui .eda-section {
	background: var(--eda-surface);
	border: 1px solid var(--eda-border);
	border-radius: var(--eda-radius-lg);
}

.eda-ui .eda-card,
.eda-ui .eda-panel,
.eda-ui .eda-auth__panel--login,
.eda-ui .eda-auth__panel--register,
.eda-ui .eda-section {
	padding: 1rem 1.125rem;
}

.eda-ui .eda-panel + .eda-panel,
.eda-ui .eda-section + .eda-section {
	margin-top: 0.875rem;
}

.eda-ui .eda-panel h2,
.eda-ui .eda-panel h3,
.eda-ui .eda-section__title,
.eda-ui .eda-auth__heading {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--eda-ink);
}

.eda-ui .eda-auth__panel--login .eda-auth__heading::after {
	content: none;
}

.eda-ui .eda-auth__intro {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: var(--eda-muted);
}

/* Auth layout */
.eda-ui .eda-auth__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1rem;
	align-items: stretch;
}

.eda-ui .eda-register--single-column {
	max-width: 560px;
	margin: 0 auto;
}

/* Forms */
.eda-ui .eda-form {
	margin: 0;
}

.eda-ui .eda-field {
	margin-bottom: 0.875rem;
}

.eda-ui .eda-field--actions {
	margin-top: 1rem;
	margin-bottom: 0;
}

.eda-ui .eda-label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--eda-ink-secondary);
}

.eda-ui .eda-required {
	color: var(--eda-error);
}

.eda-ui .eda-input,
.eda-ui .eda-select {
	min-height: 2.625rem;
	padding: 0.55rem 0.75rem;
}

.eda-ui .eda-input:focus,
.eda-ui .eda-select:focus {
	outline: none;
	border-color: var(--eda-brand);
	box-shadow: 0 0 0 3px var(--eda-brand-ring);
}

.eda-ui .eda-input.eda-input--error,
.eda-ui .eda-select.eda-input--error {
	border-color: var(--eda-error);
}

.eda-ui .eda-password-field {
	position: relative;
}

.eda-ui .eda-password-field .eda-input {
	padding-right: 2.75rem;
}

.eda-ui .eda-password-toggle {
	position: absolute;
	top: 50%;
	right: 0.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	margin: 0;
	color: var(--eda-muted);
	background: transparent;
	border: 0;
	border-radius: var(--eda-radius-sm);
	transform: translateY(-50%);
	cursor: pointer;
}

.eda-ui .eda-password-toggle:hover,
.eda-ui .eda-password-toggle:focus {
	color: var(--eda-ink);
	background: var(--eda-surface-muted);
}

.eda-ui .eda-password-toggle:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--eda-brand-ring);
}

.eda-ui .eda-password-toggle__icon {
	display: block;
	width: 1.125rem;
	height: 1.125rem;
}

.eda-ui .eda-password-toggle__icon[hidden] {
	display: none;
}

.eda-ui .eda-auth__panel--register .eda-auth__heading {
	margin-top: 0;
}

.eda-ui .eda-auth__panel--register .eda-auth__intro {
	margin-bottom: 1.25rem;
}

.eda-ui .eda-auth__panel--register .eda-button {
	margin-top: 0.25rem;
}

/* Buttons (layout only; colors enforced in eda-isolation.css) */
.eda-ui .eda-button {
	min-height: 0;
	padding: 16px 35px;
	font-size: 0.9375rem;
}

.eda-ui .eda-button--block {
	width: auto;
	max-width: 100%;
}

/* Notices */
.eda-ui .eda-notice {
	padding: 0.75rem 0.875rem;
	margin-bottom: 1rem;
	font-size: 0.875rem;
	border-radius: var(--eda-radius-sm);
	border: 1px solid transparent;
}

.eda-ui .eda-notice--error {
	color: #991b1b;
	background: var(--eda-error-soft);
	border-color: #fecaca;
}

.eda-ui .eda-notice--success {
	color: #065f46;
	background: var(--eda-success-soft);
	border-color: #a7f3d0;
}

.eda-ui .eda-field-error,
.eda-ui .eda-help {
	margin-top: 0.35rem;
	font-size: 0.8125rem;
}

.eda-ui .eda-field-error {
	color: var(--eda-error);
}

.eda-ui .eda-help {
	color: var(--eda-muted);
}

/* Text links */
.eda-ui .eda-auth__links,
.eda-ui .eda-auth__switch,
.eda-ui .eda-auth__forgot {
	margin-top: 0.875rem;
	font-size: 0.8125rem;
	color: var(--eda-muted);
}

.eda-ui .eda-auth__links a,
.eda-ui .eda-auth__switch a,
.eda-ui .eda-auth__forgot a,
.eda-ui .eda-checkbox a,
.eda-ui .eda-link-button,
.eda-ui .eda-table a,
.eda-ui .eda-service-back a,
.eda-ui .eda-order-item__remove {
	color: var(--eda-link);
	font-weight: 500;
	text-decoration: none;
}

.eda-ui .eda-auth__links a:hover,
.eda-ui .eda-auth__switch a:hover,
.eda-ui .eda-auth__forgot a:hover,
.eda-ui .eda-checkbox a:hover,
.eda-ui .eda-link-button:hover,
.eda-ui .eda-table a:hover,
.eda-ui .eda-service-back a:hover,
.eda-ui .eda-order-item__remove:hover {
	color: var(--eda-link-hover);
	text-decoration: underline;
}

.eda-ui .eda-section__title {
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--eda-border);
}

.eda-ui .eda-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.875rem;
	line-height: 1.45;
	cursor: pointer;
}

.eda-ui .eda-divider {
	height: 1px;
	margin: 1rem 0;
	background: var(--eda-border);
}

/* Services — pricing cards */
.eda-ui .eda-services {
	max-width: 1120px;
	padding-top: 1.5rem;
	padding-bottom: 2.5rem;
}

.eda-ui .eda-services .eda-page-header {
	margin-bottom: 3rem;
	text-align: center;
}

.eda-ui .eda-services .eda-page-header__eyebrow {
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--eda-brand);
}

.eda-ui .eda-services .eda-page-header__title {
	max-width: 28rem;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--eda-ink);
}

.eda-ui .eda-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.eda-ui .eda-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 1.5rem 1.25rem 1.25rem;
	background: var(--eda-surface);
	border: 1px solid #e8edf2;
	border-radius: 14px;
	box-shadow: none;
}

.eda-ui .eda-service-card--highlighted {
	border-color: rgba(13, 148, 136, 0.2);
}

.eda-ui .eda-service-card__badge-wrap {
	display: flex;
	justify-content: center;
	margin: -0.35rem 0 0.75rem;
}

.eda-ui .eda-service-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.85rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #fff;
	background: var(--eda-brand);
	border-radius: 999px;
}

.eda-ui .eda-service-card__badge-icon {
	font-size: 0.6875rem;
	line-height: 1;
}

.eda-ui .eda-service-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.85rem;
	color: var(--eda-brand);
	background: var(--eda-brand-soft);
	border-radius: 10px;
}

.eda-ui .eda-service-card__title {
	margin: 0 0 0.65rem;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--eda-ink);
}

.eda-ui .eda-service-card__pricing {
	margin-bottom: 0.75rem;
}

.eda-ui .eda-service-card__price {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--eda-brand);
}

.eda-ui .eda-service-card__price-note {
	margin: 0.35rem 0 0;
	font-size: 0.8125rem;
	color: var(--eda-muted);
}

.eda-ui .eda-service-card__excerpt {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--eda-ink-secondary);
}

.eda-ui .eda-service-card__actions {
	margin-bottom: 1rem;
}

.eda-ui .eda-service-card__features {
	margin-bottom: 1rem;
}

.eda-ui .eda-service-card__features-title {
	margin: 0 0 0.65rem;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--eda-ink);
}

.eda-ui .eda-service-card__feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.eda-ui .eda-service-card__feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin-bottom: 0.45rem;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--eda-ink-secondary);
}

.eda-ui .eda-service-card__feature-list li:last-child {
	margin-bottom: 0;
}

.eda-ui .eda-service-card__check {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1.125rem;
	height: 1.125rem;
	margin-top: 0.1rem;
	color: #fff;
	background: var(--eda-brand);
	border-radius: 999px;
}

.eda-ui .eda-service-card .eda-button--outline {
	margin-top: auto;
}

.eda-ui .eda-button--outline {
	color: var(--eda-ink) !important;
	background: #fff !important;
	border: 1px solid #cbd5e1 !important;
	box-shadow: none !important;
}

.eda-ui .eda-button--outline:hover,
.eda-ui .eda-button--outline:focus {
	color: var(--eda-ink) !important;
	background: var(--eda-surface-muted) !important;
	border-color: #94a3b8 !important;
}

.eda-ui .eda-service-back {
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

/* Service detail page */
.eda-ui .eda-services--single {
	max-width: 1120px;
}

.eda-ui .eda-service-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
	gap: 2rem;
	align-items: center;
	padding: 1.75rem 1.5rem;
	margin-bottom: 1.25rem;
	background: var(--eda-surface);
	border: 1px solid #e8edf2;
	border-radius: 14px;
	box-shadow: none;
}

.eda-ui .eda-service-detail__type-badge {
	display: inline-block;
	margin-bottom: 0.75rem;
	padding: 0.3rem 0.75rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--eda-brand);
	background: var(--eda-brand-soft);
	border-radius: 999px;
}

.eda-ui .eda-service-detail__title {
	margin: 0 0 0.65rem;
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--eda-ink);
}

.eda-ui .eda-service-detail__price {
	margin: 0 0 0.35rem;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--eda-brand);
}

.eda-ui .eda-service-detail__price-note {
	margin: 0 0 0.85rem;
	font-size: 0.8125rem;
	color: var(--eda-muted);
}

.eda-ui .eda-service-detail__content {
	margin-bottom: 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--eda-ink-secondary);
}

.eda-ui .eda-service-detail__content p:last-child {
	margin-bottom: 0;
}

.eda-ui .eda-service-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.eda-ui .eda-service-hero__visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.eda-ui .eda-service-hero__visual-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(240, 253, 250, 0.95) 0%, rgba(236, 253, 245, 0.55) 100%);
	border-radius: 999px;
}

/* Upsell banner */
.eda-ui .eda-upsell-banner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
	gap: 1.25rem;
	align-items: center;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.25rem;
	background: var(--eda-surface);
	border: 1px solid #e8edf2;
	border-radius: 14px;
	box-shadow: none;
}

.eda-ui .eda-upsell-banner__intro {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.eda-ui .eda-upsell-banner__icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	color: var(--eda-brand);
	background: var(--eda-brand-soft);
	border-radius: 999px;
}

.eda-ui .eda-upsell-banner__eyebrow {
	display: block;
	margin-bottom: 0.15rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--eda-brand);
}

.eda-ui .eda-upsell-banner__intro h2 {
	margin: 0 0 0.2rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--eda-ink);
}

.eda-ui .eda-upsell-banner__intro p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--eda-muted);
}

.eda-ui .eda-upsell-banner__offer h3 {
	margin: 0 0 0.35rem;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--eda-ink);
}

.eda-ui .eda-upsell-banner__price {
	margin: 0;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--eda-brand);
}

.eda-ui .eda-upsell-banner--special {
	border-color: rgba(13, 148, 136, 0.28);
	background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}

.eda-ui .eda-upsell-banner__icon--special {
	color: #b45309;
	background: #fffbeb;
}

.eda-ui .eda-upsell-banner__meta--savings {
	font-weight: 600;
	color: #b45309;
}

.eda-ui .eda-upsell-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-end;
}

/* Cross-sell cards */
.eda-ui .eda-recommendations__eyebrow {
	display: inline-block;
	margin-bottom: 0.35rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eda-brand);
}

.eda-ui .eda-cross-sell-card {
	display: flex;
	flex-direction: column;
	padding: 1.25rem;
	background: var(--eda-surface);
	border: 1px solid #e8edf2;
	border-radius: 14px;
	box-shadow: none;
}

.eda-ui .eda-cross-sell-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	margin-bottom: 0.85rem;
	color: var(--eda-brand);
	background: var(--eda-brand-soft);
	border-radius: 10px;
}

.eda-ui .eda-cross-sell-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--eda-ink);
}

.eda-ui .eda-cross-sell-card__excerpt {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--eda-ink-secondary);
}

.eda-ui .eda-cross-sell-card__price {
	margin: 0 0 1rem;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--eda-brand);
}

.eda-ui .eda-cross-sell-card__actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: auto;
}

/* Trust bar */
.eda-ui .eda-trust-bar {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.eda-ui .eda-trust-bar__item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.eda-ui .eda-trust-bar__icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--eda-brand);
	background: var(--eda-brand-soft);
	border-radius: 999px;
}

.eda-ui .eda-trust-bar__item strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.9375rem;
	color: var(--eda-ink);
}

.eda-ui .eda-trust-bar__item p {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--eda-muted);
}

.eda-ui .eda-service-detail__badge {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 0.5rem;
}

/* Checkout */
.eda-ui .eda-order-summary__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0.875rem;
	margin-top: 0.75rem;
	font-size: 0.9375rem;
	background: var(--eda-surface-muted);
	border: 1px solid var(--eda-border);
	border-radius: var(--eda-radius-sm);
}

.eda-ui .eda-order-summary__total strong {
	font-size: 1rem;
	color: var(--eda-ink);
}

.eda-ui .eda-order-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.eda-ui .eda-order-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--eda-border);
}

.eda-ui .eda-order-item:last-child {
	border-bottom: 0;
}

.eda-ui .eda-order-item__details strong {
	display: block;
	font-size: 0.9375rem;
	color: var(--eda-ink);
}

.eda-ui .eda-order-item__details p {
	margin: 0.25rem 0 0;
	font-size: 0.8125rem;
	color: var(--eda-muted);
}

.eda-ui .eda-order-item__price {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--eda-ink);
	text-align: right;
}

.eda-ui .eda-order-item__remove {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.75rem;
}

/* Payment */
.eda-ui .eda-payment-methods {
	display: grid;
	gap: 0.5rem;
	margin: 0.75rem 0 1rem;
}

.eda-ui .eda-payment-method {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	padding: 0.75rem;
	border: 1px solid var(--eda-border);
	border-radius: var(--eda-radius-sm);
	cursor: pointer;
}

.eda-ui .eda-payment-method:has(input:checked) {
	border-color: var(--eda-brand);
	background: var(--eda-brand-soft);
}

.eda-ui .eda-payment-method__label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--eda-ink);
}

.eda-ui .eda-payment-method__note,
.eda-ui .eda-payment__panel p {
	font-size: 0.8125rem;
	color: var(--eda-muted);
}

.eda-ui .eda-payment__panel {
	margin-bottom: 0.875rem;
}

.eda-ui .eda-payment__panel h3 {
	margin: 0 0 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
}

/* Recommendations */
.eda-ui .eda-recommendations {
	display: grid;
	gap: 1rem;
	margin: 1rem 0;
}

.eda-ui .eda-recommendations__header h2 {
	margin: 0.35rem 0 0.25rem;
	font-size: 1rem;
	font-weight: 600;
}

.eda-ui .eda-recommendations__header p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--eda-muted);
}

.eda-ui .eda-recommendation-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.75rem;
}

.eda-ui .eda-recommendation-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.875rem;
	border: 1px solid var(--eda-border);
	border-radius: var(--eda-radius);
	background: var(--eda-surface-muted);
}

.eda-ui .eda-recommendation-card h3 {
	margin: 0 0 0.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
}

.eda-ui .eda-recommendation-card p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--eda-muted);
}

.eda-ui .eda-recommendation-card__price {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--eda-brand);
}

.eda-ui .eda-recommendation-card__meta {
	font-size: 0.75rem;
}

.eda-ui .eda-recommendation-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* Dashboard */
.eda-ui .eda-dashboard {
	max-width: 980px;
}

.eda-ui .eda-dashboard__header {
	padding: 1rem 1.125rem;
	margin-bottom: 0.875rem;
	background: var(--eda-surface);
	border: 1px solid var(--eda-border);
	border-radius: var(--eda-radius-lg);
}

.eda-ui .eda-dashboard__title {
	margin: 0 0 0.25rem;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--eda-ink);
}

.eda-ui .eda-dashboard__welcome {
	margin: 0;
	font-size: 0.875rem;
	color: var(--eda-muted);
}

.eda-ui .eda-dashboard__nav {
	margin-bottom: 0.875rem;
	padding: 0.35rem;
	background: var(--eda-surface);
	border: 1px solid var(--eda-border);
	border-radius: var(--eda-radius-lg);
}

.eda-ui .eda-dashboard__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.eda-ui .eda-dashboard__nav a {
	display: block;
	padding: 0.5rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--eda-muted);
	text-decoration: none;
	border-radius: var(--eda-radius-sm);
}

.eda-ui .eda-dashboard__nav a:hover,
.eda-ui .eda-dashboard__nav a:focus {
	color: var(--eda-ink);
	background: var(--eda-surface-muted);
	text-decoration: none;
}

.eda-ui .eda-dashboard__nav a.is-active {
	color: var(--eda-brand);
	background: var(--eda-brand-soft);
}

.eda-ui .eda-dashboard__nav-logout {
	margin-left: auto;
}

.eda-ui .eda-dashboard__nav-logout a {
	color: var(--eda-muted);
}

.eda-ui .eda-dashboard__nav-logout a:hover,
.eda-ui .eda-dashboard__nav-logout a:focus {
	color: var(--eda-error);
	background: #fef2f2;
}

.eda-ui .eda-dashboard__content .eda-panel {
	margin-bottom: 0;
}

.eda-ui .eda-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.eda-ui .eda-stat {
	padding: 0.875rem;
	background: var(--eda-surface-muted);
	border: 1px solid var(--eda-border);
	border-radius: var(--eda-radius);
}

.eda-ui .eda-stat__value {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--eda-ink);
}

.eda-ui .eda-stat__label {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--eda-muted);
}

.eda-ui .eda-table-wrap {
	overflow-x: auto;
	margin-bottom: 1rem;
	border: 1px solid var(--eda-border);
	border-radius: var(--eda-radius);
	background: var(--eda-surface);
}

.eda-ui .eda-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.8125rem;
}

.eda-ui .eda-table thead th {
	padding: 0.65rem 0.75rem;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--eda-muted);
	background: var(--eda-surface-muted);
	border-bottom: 1px solid var(--eda-border);
}

.eda-ui .eda-table tbody td {
	padding: 0.7rem 0.75rem;
	border-bottom: 1px solid var(--eda-border);
}

.eda-ui .eda-table tbody tr:last-child td {
	border-bottom: 0;
}

.eda-ui .eda-table__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.eda-ui .eda-inline-form {
	display: inline;
}

.eda-ui .eda-link-button {
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.eda-ui .eda-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.eda-ui .eda-list li {
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--eda-border);
}

.eda-ui .eda-list li:last-child {
	border-bottom: 0;
}

.eda-ui .eda-list strong {
	display: block;
	margin-bottom: 0.15rem;
	font-size: 0.875rem;
	color: var(--eda-ink);
}

.eda-ui .eda-list span {
	display: block;
	font-size: 0.8125rem;
	color: var(--eda-muted);
}

.eda-ui .eda-order-detail h3 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 600;
}

.eda-ui .eda-order-detail .eda-list li {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 0.5rem;
}

.eda-ui .eda-order-detail .eda-list strong {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--eda-muted);
}

.eda-ui .eda-empty-state {
	padding: 1.5rem 1rem;
	text-align: center;
	color: var(--eda-muted);
}

.eda-ui .eda-empty-state .eda-button {
	margin-top: 0.75rem;
}

/* Badges */
.eda-ui .eda-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.2rem 0.5rem;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.2;
	border-radius: 999px;
}

.eda-ui .eda-badge--muted {
	color: #475569;
	background: #f1f5f9;
}

.eda-ui .eda-badge--accent {
	color: #0f766e;
	background: #ccfbf1;
}

.eda-ui .eda-badge--paid,
.eda-ui .eda-badge--completed {
	color: #065f46;
	background: #d1fae5;
}

.eda-ui .eda-badge--unpaid,
.eda-ui .eda-badge--pending {
	color: #92400e;
	background: #fef3c7;
}

.eda-ui .eda-badge--processing {
	color: #1d4ed8;
	background: #dbeafe;
}

.eda-ui .eda-badge--cancelled,
.eda-ui .eda-badge--failed {
	color: #991b1b;
	background: #fee2e2;
}

.eda-ui .eda-badge--refunded {
	color: #475569;
	background: #e2e8f0;
}

@media (max-width: 768px) {
	.eda-ui:has(.eda-auth--login) {
		padding: 1.75rem 1rem 2.5rem;
	}

	.eda-ui .eda-auth--login .eda-page-header {
		margin-bottom: 3rem;
	}

	.eda-ui .eda-auth--login .eda-page-header__title {
		font-size: 1.5rem;
	}

	.eda-ui .eda-auth--login .eda-auth__layout {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.eda-ui .eda-auth--login .eda-auth__panel--login,
	.eda-ui .eda-auth--login .eda-auth__panel--register {
		padding: 1.5rem 1.375rem 1.75rem;
	}

	.eda-ui .eda-auth__layout {
		grid-template-columns: 1fr;
	}

	.eda-ui .eda-service-grid {
		grid-template-columns: 1fr;
	}

	.eda-ui .eda-service-hero {
		grid-template-columns: 1fr;
	}

	.eda-ui .eda-service-hero__visual {
		order: -1;
	}

	.eda-ui .eda-service-hero__visual-circle {
		width: 160px;
		height: 160px;
		margin: 0 auto;
	}

	.eda-ui .eda-upsell-banner {
		grid-template-columns: 1fr;
	}

	.eda-ui .eda-upsell-banner__actions {
		justify-content: flex-start;
	}

	.eda-ui .eda-trust-bar {
		grid-template-columns: 1fr;
	}

	.eda-ui .eda-auth,
	.eda-ui .eda-dashboard {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.eda-ui .eda-order-detail .eda-list li {
		grid-template-columns: 1fr;
	}

	.eda-ui .eda-upsell-banner__actions .eda-button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.eda-ui:has(.eda-auth--login) {
		padding: 1.5rem 0.75rem 2rem;
	}

	.eda-ui .eda-auth--login .eda-auth__panel--login,
	.eda-ui .eda-auth--login .eda-auth__panel--register {
		padding: 1.25rem 1rem 1.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.eda-ui .eda-button,
	.eda-ui .eda-input,
	.eda-ui .eda-select,
	.eda-ui .eda-dashboard__nav a {
		transition: none;
	}
}
