/* =========================================================================
   ExoCash Core — Professional Dark Wallet UI (v2.5)
   RTL-first, dark slate, framework free. CSS only — no logic changes.
   ========================================================================= */

.exocash-dashboard,
.exocash-panel,
.exocash-wallets,
.exocash-wallet-shell,
.exocash-wallet-hub,
.exocash-payment-page,
.exocash-admin-page {
	--exo-ink: #0d1b2a;
	--exo-ink-soft: #5b6b7f;
	--exo-line: #e4e9f0;
	--exo-line-strong: #d3dae4;
	--exo-surface: #ffffff;
	--exo-surface-2: #f6f8fb;
	--exo-brand: #00a97a;
	--exo-brand-dark: #04835f;
	--exo-brand-soft: #e6f7f1;
	--exo-navy: #0d2340;
	--exo-navy-2: #123a5e;
	--exo-warn: #b45309;
	--exo-warn-soft: #fef4e2;
	--exo-danger: #c62828;
	--exo-danger-soft: #fdeceb;
	--exo-radius: 16px;
	--exo-radius-sm: 10px;
	--exo-shadow: 0 1px 2px rgba(13, 27, 42, .05), 0 8px 24px rgba(13, 27, 42, .06);
	--exo-shadow-lg: 0 18px 46px rgba(13, 35, 64, .16);

	color: var(--exo-ink);
	font-family: "Cairo", "Tajawal", "Segoe UI", system-ui, -apple-system, sans-serif;
	line-height: 1.7;
}

.exocash-dashboard *,
.exocash-panel *,
.exocash-wallet-hub *,
.exocash-admin-page * {
	box-sizing: border-box;
}

/* ---------------------------------------------------------------- layout */

.exocash-dashboard,
.exocash-wallet-hub {
	display: block;
	max-width: 1180px;
	margin: 0 auto;
	padding: 4px;
}

.exocash-dashboard-section {
	margin: 0 0 26px;
}

.exocash-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.exocash-eyebrow,
.exocash-admin-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--exo-brand-dark);
	background: var(--exo-brand-soft);
	border-radius: 999px;
	padding: 4px 12px;
	margin-bottom: 10px;
}

.exocash-section-heading h2,
.exocash-page-heading h2 {
	margin: 0;
	font-size: 22px;
	font-weight: 800;
	color: var(--exo-ink);
}

.exocash-section-heading p,
.exocash-page-heading p {
	margin: 4px 0 0;
	color: var(--exo-ink-soft);
	font-size: 14px;
}

.exocash-section-heading,
.exocash-page-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

/* ------------------------------------------------------------------ hero */

.exocash-dashboard-hero,
.exocash-wallet-hub__hero,
.exocash-admin-hero {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	background: linear-gradient(135deg, var(--exo-navy) 0%, var(--exo-navy-2) 55%, var(--exo-brand-dark) 100%);
	color: #fff;
	border-radius: 22px;
	padding: 30px 32px;
	margin-bottom: 22px;
	box-shadow: var(--exo-shadow-lg);
}

.exocash-dashboard-hero::after,
.exocash-wallet-hub__hero::after {
	content: "";
	position: absolute;
	inset-inline-start: -60px;
	top: -80px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	pointer-events: none;
}

.exocash-dashboard-hero h1,
.exocash-wallet-hub__hero h1,
.exocash-admin-hero h1 {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	color: #fff;
}

.exocash-dashboard-hero p,
.exocash-wallet-hub__hero p,
.exocash-admin-hero p {
	margin: 6px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
}

.exocash-dashboard-hero .exocash-eyebrow,
.exocash-wallet-hub__hero .exocash-eyebrow,
.exocash-admin-hero .exocash-admin-eyebrow {
	background: rgba(255, 255, 255, .14);
	color: #eafff7;
}

.exocash-hero-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.exocash-wallet-hub__total {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -.5px;
	color: #fff;
}

/* --------------------------------------------------------------- buttons */

.exocash-btn,
.exocash-copy-btn,
.exocash-admin-action,
.exocash-notification-toast__open {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid transparent;
	border-radius: 12px;
	background: var(--exo-brand);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 22px;
	cursor: pointer;
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
	box-shadow: 0 6px 16px rgba(0, 169, 122, .22);
}

.exocash-btn:hover,
.exocash-copy-btn:hover,
.exocash-admin-action:hover {
	background: var(--exo-brand-dark);
	color: #fff;
	transform: translateY(-1px);
}

.exocash-btn:focus-visible,
.exocash-input:focus-visible,
.exocash-dashboard-nav a:focus-visible {
	outline: 3px solid rgba(0, 169, 122, .35);
	outline-offset: 2px;
}

.exocash-btn--ghost,
.exocash-btn--white,
.exocash-btn--secondary {
	background: #fff;
	color: var(--exo-navy);
	border-color: var(--exo-line-strong);
	box-shadow: none;
}

.exocash-btn--ghost:hover,
.exocash-btn--white:hover,
.exocash-btn--secondary:hover {
	background: var(--exo-surface-2);
	color: var(--exo-navy);
	border-color: var(--exo-brand);
}

.exocash-btn--danger {
	background: var(--exo-danger);
	box-shadow: 0 6px 16px rgba(198, 40, 40, .2);
}

.exocash-btn--danger:hover {
	background: #a01d1d;
}

.exocash-btn--small {
	padding: 8px 14px;
	font-size: 13px;
	border-radius: 10px;
}

.exocash-btn--wide {
	width: 100%;
}

/* ------------------------------------------------------------------ nav */

.exocash-dashboard-nav {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
	background: var(--exo-surface);
	border: 1px solid var(--exo-line);
	border-radius: 16px;
	padding: 10px;
	margin-bottom: 24px;
	box-shadow: var(--exo-shadow);
}

.exocash-dashboard-nav a {
	padding: 10px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--exo-ink-soft);
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}

.exocash-dashboard-nav a:hover {
	background: var(--exo-brand-soft);
	color: var(--exo-brand-dark);
}

.exocash-nav-notifications {
	margin-inline-start: auto;
	background: var(--exo-surface-2);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.exocash-nav-notifications span {
	background: var(--exo-danger);
	color: #fff;
	font-size: 12px;
	min-width: 20px;
	height: 20px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
}

/* --------------------------------------------------------------- panels */

.exocash-panel,
.exocash-box,
.exocash-wallet-shell,
.exocash-admin-panel {
	background: var(--exo-surface);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius);
	padding: 22px;
	box-shadow: var(--exo-shadow);
}

.exocash-panel {
	margin-bottom: 20px;
}

.exocash-panel__title {
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--exo-line);
}

.exocash-box--muted {
	background: var(--exo-surface-2);
	color: var(--exo-ink-soft);
	box-shadow: none;
	font-size: 14px;
}

.exocash-box--verified {
	background: var(--exo-brand-soft);
	border-color: rgba(0, 169, 122, .3);
	color: var(--exo-brand-dark);
	box-shadow: none;
}

.exocash-muted,
.exocash-hint {
	color: var(--exo-ink-soft);
	font-size: 13px;
}

/* ---------------------------------------------------------------- wallet */

.exocash-wallet-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.exocash-wallet-head h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
}

.exocash-wallet-head p {
	margin: 2px 0 0;
	color: var(--exo-ink-soft);
	font-size: 14px;
}

.exocash-wallet-head-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--exo-brand-soft);
	color: var(--exo-brand-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.exocash-wallet-grid,
.exocash-wallets,
.exocash-wallet-hub__wallets {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.exocash-wallet-tile,
.exocash-wallet-card {
	position: relative;
	background: linear-gradient(160deg, #ffffff 0%, #f4f9f7 100%);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius);
	padding: 18px;
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.exocash-wallet-tile:hover,
.exocash-wallet-card:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 169, 122, .45);
	box-shadow: 0 14px 30px rgba(13, 35, 64, .1);
}

.exocash-wallet-tile__top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.exocash-wallet-tile__top strong {
	display: block;
	font-size: 15px;
	font-weight: 800;
}

.exocash-wallet-tile__top small,
.exocash-wallet-method small {
	display: block;
	color: var(--exo-ink-soft);
	font-size: 12px;
}

.exocash-wallet-tile__icon,
.exocash-wallet-method__icon,
.exocash-method-card__icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--exo-navy);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: 700;
	flex: none;
	overflow: hidden;
}

.exocash-method-card__icon-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.exocash-wallet-tile__balance,
.exocash-wallet-card__value,
.exocash-card__value {
	font-size: 26px;
	font-weight: 800;
	color: var(--exo-navy);
	letter-spacing: -.4px;
	direction: ltr;
	text-align: right;
	unicode-bidi: plaintext;
}

.exocash-wallet-card__label,
.exocash-card__label {
	display: block;
	font-size: 13px;
	color: var(--exo-ink-soft);
	margin-bottom: 6px;
}

.exocash-wallet-methods {
	margin-top: 20px;
	border-top: 1px dashed var(--exo-line-strong);
	padding-top: 18px;
}

.exocash-wallet-methods__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	font-size: 14px;
}

.exocash-wallet-methods__head span {
	color: var(--exo-ink-soft);
	font-size: 12px;
}

.exocash-wallet-methods__grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.exocash-wallet-method {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--exo-surface-2);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius-sm);
	padding: 10px 12px;
}

/* ------------------------------------------------- wallet hub / services */

.exocash-wallet-hub__actions,
.exocash-control-services {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	margin: 22px 0;
}

.exocash-wallet-hub__action,
.exocash-control-service {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--exo-surface);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius);
	padding: 16px;
	text-decoration: none;
	color: var(--exo-ink);
	font-weight: 700;
	box-shadow: var(--exo-shadow);
	transition: transform .16s ease, border-color .16s ease;
}

.exocash-wallet-hub__action:hover,
.exocash-control-service:hover {
	transform: translateY(-2px);
	border-color: var(--exo-brand);
	color: var(--exo-ink);
}

.exocash-wallet-hub__action small {
	display: block;
	font-weight: 500;
	font-size: 12px;
	color: var(--exo-ink-soft);
}

.exocash-wallet-hub__action-icon,
.exocash-control-service-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: var(--exo-brand-soft);
	color: var(--exo-brand-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	flex: none;
}

.exocash-wallet-hub__notice {
	background: var(--exo-warn-soft);
	border: 1px solid rgba(180, 83, 9, .2);
	color: var(--exo-warn);
	border-radius: var(--exo-radius-sm);
	padding: 12px 16px;
	font-size: 14px;
}

/* ----------------------------------------------------------------- forms */

.exocash-form,
.exocash-form-grid {
	display: grid;
	gap: 16px;
}

.exocash-field {
	display: block;
}

.exocash-field > span {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--exo-ink);
	margin-bottom: 6px;
}

.exocash-input,
.exocash-panel input[type="text"],
.exocash-panel input[type="number"],
.exocash-panel input[type="email"],
.exocash-panel input[type="password"],
.exocash-panel select,
.exocash-panel textarea {
	width: 100%;
	background: var(--exo-surface);
	border: 1px solid var(--exo-line-strong);
	border-radius: 12px;
	color: var(--exo-ink);
	font-family: inherit;
	font-size: 15px;
	padding: 12px 14px;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.exocash-input:focus,
.exocash-panel textarea:focus,
.exocash-panel select:focus {
	border-color: var(--exo-brand);
	box-shadow: 0 0 0 4px rgba(0, 169, 122, .12);
	outline: none;
}

.exocash-input::placeholder {
	color: #9aa7b6;
}

.exocash-inline-form {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

/* --------------------------------------------------------- method cards */

.exocash-method-cards,
.exocash-pay-currency-grid,
.exocash-kyc-doc-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.exocash-method-card,
.exocash-coin-card,
.exocash-kyc-doc-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--exo-surface);
	border: 1.5px solid var(--exo-line);
	border-radius: var(--exo-radius);
	padding: 14px;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.exocash-method-card:hover,
.exocash-coin-card:hover {
	border-color: var(--exo-brand);
	transform: translateY(-1px);
}

.exocash-method-card.is-selected,
.exocash-method-card:has(input:checked),
.exocash-coin-card:has(input:checked) {
	border-color: var(--exo-brand);
	background: var(--exo-brand-soft);
}

.exocash-method-card input,
.exocash-coin-card input {
	accent-color: var(--exo-brand);
}

.exocash-method-card strong,
.exocash-coin-card strong {
	display: block;
	font-size: 14px;
}

.exocash-method-card small,
.exocash-coin-card small {
	display: block;
	color: var(--exo-ink-soft);
	font-size: 12px;
}

.exocash-coin-symbol {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--exo-navy);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.exocash-method-info {
	margin-top: 12px;
	background: var(--exo-surface-2);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius-sm);
	padding: 14px;
	font-size: 14px;
}

.exocash-method-info__head {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	margin-bottom: 8px;
}

.exocash-method-info__stats {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	color: var(--exo-ink-soft);
	font-size: 13px;
}

.exocash-method-info__warning {
	margin-top: 10px;
	color: var(--exo-warn);
	background: var(--exo-warn-soft);
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 13px;
}

.exocash-methods {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.exocash-methods li {
	background: var(--exo-surface-2);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius-sm);
	padding: 14px;
}

/* -------------------------------------------------------------- exchange */

.exocash-exchange-tabs {
	display: inline-flex;
	gap: 6px;
	background: var(--exo-surface-2);
	border: 1px solid var(--exo-line);
	border-radius: 14px;
	padding: 6px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.exocash-exchange-tabs a {
	padding: 9px 18px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--exo-ink-soft);
	text-decoration: none;
}

.exocash-exchange-tabs a.is-active {
	background: var(--exo-navy);
	color: #fff;
}

.exocash-exchange-grid,
.exocash-crypto-withdraw-grid,
.exocash-detail-grid,
.exocash-kyc-history-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.exocash-detail-grid__wide {
	grid-column: 1 / -1;
}

.exocash-exchange-card {
	background: var(--exo-surface-2);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius);
	padding: 16px;
}

.exocash-exchange-card--receive {
	background: var(--exo-brand-soft);
	border-color: rgba(0, 169, 122, .28);
}

.exocash-exchange-amount,
.exocash-exchange-result,
.exocash-withdraw-receive,
.exocash-withdraw-total {
	font-size: 22px;
	font-weight: 800;
	color: var(--exo-navy);
	direction: ltr;
	unicode-bidi: plaintext;
}

.exocash-exchange-summary,
.exocash-withdraw-summary {
	display: grid;
	gap: 10px;
	background: var(--exo-surface-2);
	border: 1px dashed var(--exo-line-strong);
	border-radius: var(--exo-radius-sm);
	padding: 14px;
	font-size: 14px;
}

.exocash-exchange-summary > div,
.exocash-withdraw-summary > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.exocash-exchange-swap,
.exocash-exchange-switch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--exo-navy);
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 18px;
}

.exocash-exchange-rate,
.exocash-exchange-balance,
.exocash-exchange-note {
	font-size: 13px;
	color: var(--exo-ink-soft);
}

/* ---------------------------------------------------------- notifications */

.exocash-notifications {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	gap: 10px;
}

.exocash-notifications li,
.exocash-notification-item {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--exo-surface);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius);
	padding: 14px 16px;
}

.exocash-notifications li.is-unread,
.exocash-notification-item.is-unread {
	background: var(--exo-brand-soft);
	border-color: rgba(0, 169, 122, .3);
}

.exocash-notifications li strong,
.exocash-notification-item strong {
	font-size: 15px;
	font-weight: 800;
}

.exocash-notifications li p,
.exocash-notification-item p {
	margin: 4px 0;
	color: var(--exo-ink-soft);
	font-size: 14px;
}

.exocash-notifications li time,
.exocash-notification-item time {
	font-size: 12px;
	color: #8895a6;
}

.exocash-notification-item__icon {
	color: var(--exo-brand);
	font-size: 12px;
	line-height: 2;
}

.exocash-notification-item__body {
	flex: 1;
}

.exocash-notification-list {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
}

/* «تعليم الكل كمقروء» — always visible, prominent */
.exocash-notifications-actions,
.exocash-notifications-page form,
.exocash-panel#exocash-notifications form {
	position: sticky;
	bottom: 0;
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	background: linear-gradient(to top, var(--exo-surface) 70%, rgba(255, 255, 255, 0));
	padding-top: 12px;
}

.exocash-notifications-actions .exocash-btn,
.exocash-notifications-page form .exocash-btn,
.exocash-panel#exocash-notifications form .exocash-btn {
	background: var(--exo-navy);
	color: #fff;
	border-color: var(--exo-navy);
	box-shadow: 0 6px 16px rgba(13, 35, 64, .18);
}

.exocash-notifications-actions .exocash-btn:hover,
.exocash-notifications-page form .exocash-btn:hover,
.exocash-panel#exocash-notifications form .exocash-btn:hover {
	background: var(--exo-brand-dark);
	border-color: var(--exo-brand-dark);
}

.exocash-notification-toast {
	position: fixed;
	inset-inline-end: 20px;
	bottom: 20px;
	z-index: 9999;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	max-width: 360px;
	background: var(--exo-surface);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius);
	box-shadow: var(--exo-shadow-lg);
	padding: 16px;
	direction: rtl;
	text-align: right;
}

.exocash-notification-toast__dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--exo-danger);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	flex: none;
}

.exocash-notification-toast__open {
	background: none;
	border: none;
	color: var(--exo-brand-dark);
	font-weight: 800;
	padding: 6px 0;
	box-shadow: none;
}

.exocash-notification-toast__close,
.exocash-notification-dismiss {
	background: none;
	border: none;
	color: var(--exo-ink-soft);
	cursor: pointer;
	font-size: 18px;
}

/* --------------------------------------------------------- badges/status */

.exocash-badge,
.exocash-status,
.exocash-admin-status,
.exocash-payment-status,
.exocash-live-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: 999px;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 800;
	font-style: normal;
	background: var(--exo-surface-2);
	color: var(--exo-ink-soft);
	border: 1px solid var(--exo-line);
}

.exocash-badge--success,
.exocash-status--approved,
.exocash-status--completed,
.exocash-status--paid,
.exocash-payment-status--success {
	background: var(--exo-brand-soft);
	color: var(--exo-brand-dark);
	border-color: rgba(0, 169, 122, .3);
}

.exocash-badge--warn,
.exocash-status--pending,
.exocash-status--processing,
.exocash-payment-status--pending {
	background: var(--exo-warn-soft);
	color: var(--exo-warn);
	border-color: rgba(180, 83, 9, .25);
}

.exocash-badge--danger,
.exocash-status--rejected,
.exocash-status--failed,
.exocash-status--cancelled,
.exocash-payment-status--danger {
	background: var(--exo-danger-soft);
	color: var(--exo-danger);
	border-color: rgba(198, 40, 40, .25);
}

.exocash-credit {
	color: var(--exo-brand-dark);
	font-weight: 700;
}

.exocash-debit {
	color: var(--exo-danger);
	font-weight: 700;
}

.exocash-money {
	direction: ltr;
	unicode-bidi: plaintext;
	font-weight: 700;
}

/* --------------------------------------------------------------- alerts */

.exocash-alert {
	border-radius: var(--exo-radius-sm);
	padding: 13px 16px;
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid var(--exo-line);
	background: var(--exo-surface-2);
}

.exocash-alert--success {
	background: var(--exo-brand-soft);
	border-color: rgba(0, 169, 122, .3);
	color: var(--exo-brand-dark);
}

.exocash-alert--error {
	background: var(--exo-danger-soft);
	border-color: rgba(198, 40, 40, .25);
	color: var(--exo-danger);
}

/* --------------------------------------------------------------- tables */

.exocash-table,
.exocash-modern-table,
.exocash-transactions table,
.exocash-history-table-wrap table,
.exocash-withdrawal-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--exo-surface);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius);
	overflow: hidden;
	font-size: 14px;
}

.exocash-table th,
.exocash-modern-table th,
.exocash-transactions th,
.exocash-withdrawal-table th {
	background: var(--exo-surface-2);
	color: var(--exo-ink-soft);
	font-size: 12px;
	font-weight: 800;
	text-align: right;
	padding: 12px 14px;
	border-bottom: 1px solid var(--exo-line);
	white-space: nowrap;
}

.exocash-table td,
.exocash-modern-table td,
.exocash-transactions td,
.exocash-withdrawal-table td {
	padding: 13px 14px;
	border-bottom: 1px solid var(--exo-line);
	vertical-align: middle;
}

.exocash-table tbody tr:hover,
.exocash-modern-table tbody tr:hover {
	background: #fafcfe;
}

.exocash-history-table-wrap,
.exocash-withdrawals-table-wrap,
.exocash-transactions {
	overflow-x: auto;
}

.exocash-empty-cell {
	text-align: center;
	color: var(--exo-ink-soft);
	padding: 26px;
}

/* -------------------------------------------------------------- requests */

.exocash-request-columns {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.exocash-request-column__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.exocash-request-column__head span {
	color: var(--exo-ink-soft);
	font-size: 13px;
}

.exocash-request-column__head strong {
	display: block;
	font-size: 22px;
	font-weight: 800;
}

.exocash-request-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--exo-brand-soft);
	color: var(--exo-brand-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.exocash-request-list {
	display: grid;
	gap: 10px;
}

.exocash-request-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	background: var(--exo-surface);
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius-sm);
	padding: 14px;
	text-decoration: none;
	color: var(--exo-ink);
	transition: border-color .15s ease, transform .15s ease;
}

.exocash-request-card:hover {
	border-color: var(--exo-brand);
	transform: translateX(-2px);
	color: var(--exo-ink);
}

.exocash-request-card small {
	display: block;
	color: var(--exo-ink-soft);
	font-size: 12px;
}

.exocash-request-card__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 13px;
}

.exocash-info-request-box {
	background: var(--exo-warn-soft);
	border: 1px solid rgba(180, 83, 9, .22);
	border-radius: var(--exo-radius);
	padding: 16px;
	margin-bottom: 16px;
}

.exocash-info-request-box__eyebrow {
	font-size: 12px;
	font-weight: 800;
	color: var(--exo-warn);
}

/* --------------------------------------------------------- payment page */

.exocash-payment-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(1200px 600px at 50% -10%, #eaf4ff 0%, #f6f8fb 60%);
	padding: 30px 16px;
}

.exocash-payment-card {
	width: 100%;
	max-width: 520px;
	background: var(--exo-surface);
	border: 1px solid var(--exo-line);
	border-radius: 22px;
	padding: 30px;
	box-shadow: var(--exo-shadow-lg);
}

.exocash-payment-brand {
	font-size: 20px;
	font-weight: 900;
	color: var(--exo-navy);
	letter-spacing: .5px;
	margin-bottom: 6px;
}

.exocash-payment-subtitle {
	color: var(--exo-ink-soft);
	font-size: 14px;
}

.exocash-payment-amount {
	font-size: 30px;
	font-weight: 800;
	color: var(--exo-navy);
	direction: ltr;
	unicode-bidi: plaintext;
}

.exocash-payment-coin {
	font-size: 13px;
	color: var(--exo-ink-soft);
}

.exocash-payment-qr img {
	max-width: 220px;
	border-radius: 12px;
	border: 1px solid var(--exo-line);
	padding: 8px;
	background: #fff;
}

.exocash-payment-address-row {
	display: flex;
	gap: 8px;
	align-items: center;
	background: var(--exo-surface-2);
	border: 1px solid var(--exo-line);
	border-radius: 12px;
	padding: 10px 12px;
	word-break: break-all;
	direction: ltr;
}

.exocash-copy-btn {
	padding: 8px 14px;
	font-size: 13px;
	flex: none;
}

.exocash-payment-warning {
	display: grid;
	gap: 4px;
	background: var(--exo-warn-soft);
	border: 1px solid rgba(180, 83, 9, .22);
	color: var(--exo-warn);
	border-radius: 12px;
	padding: 12px 14px;
	margin: 16px 0;
	font-size: 13px;
}

.exocash-payment-flow {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 12px;
	color: var(--exo-ink-soft);
}

.exocash-payment-order {
	text-align: center;
	color: var(--exo-ink-soft);
	font-size: 12px;
}

/* ------------------------------------------------------------------ auth */

.exocash-auth-box {
	max-width: 420px;
	margin: 40px auto;
	background: var(--exo-surface);
	border: 1px solid var(--exo-line);
	border-radius: 20px;
	padding: 28px;
	box-shadow: var(--exo-shadow-lg);
}

.exocash-auth-remember {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--exo-ink-soft);
}

/* ---------------------------------------------------------------- admin */

.exocash-admin-page,
.exocash-admin-dashboard,
.exocash-admin {
	direction: rtl;
	text-align: right;
	font-family: "Cairo", "Tajawal", "Segoe UI", system-ui, sans-serif;
	color: var(--exo-ink, #0d1b2a);
}

.exocash-admin-hero--compact {
	padding: 20px 24px;
}

.exocash-admin-stat-grid,
.exocash-admin-panel-grid,
.exocash-admin-activity-grid,
.exocash-order-kpis {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	margin-bottom: 22px;
}

.exocash-admin-stat,
.exocash-order-kpi {
	background: #fff;
	border: 1px solid var(--exo-line);
	border-inline-start: 4px solid var(--exo-brand);
	border-radius: var(--exo-radius);
	padding: 18px;
	box-shadow: var(--exo-shadow);
}

.exocash-admin-stat strong,
.exocash-order-kpi strong {
	display: block;
	font-size: 26px;
	font-weight: 800;
	color: var(--exo-navy);
	direction: ltr;
	unicode-bidi: plaintext;
	text-align: right;
}

.exocash-admin-stat span,
.exocash-order-kpi span {
	color: var(--exo-ink-soft);
	font-size: 13px;
}

.exocash-admin-stat--green { border-inline-start-color: #00a97a; }
.exocash-admin-stat--blue { border-inline-start-color: #2563eb; }
.exocash-admin-stat--yellow { border-inline-start-color: #d97706; }
.exocash-admin-stat--red { border-inline-start-color: #c62828; }

.exocash-admin-panel {
	margin-bottom: 22px;
}

.exocash-admin-panel--wide {
	grid-column: 1 / -1;
}

.exocash-admin-panel-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--exo-line);
	font-weight: 800;
}

.exocash-admin-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.exocash-admin-action--green { background: var(--exo-brand); }
.exocash-admin-action--blue { background: #2563eb; box-shadow: 0 6px 16px rgba(37, 99, 235, .2); }
.exocash-admin-action--yellow { background: #d97706; box-shadow: 0 6px 16px rgba(217, 119, 6, .2); }

.exocash-admin-row,
.exocash-admin-status-list li,
.exocash-admin-balance-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--exo-line);
}

.exocash-admin-status-list,
.exocash-admin-balance-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.exocash-admin-balance {
	font-weight: 800;
	color: var(--exo-navy);
	direction: ltr;
	unicode-bidi: plaintext;
}

.exocash-admin-empty,
.exocash-admin-message {
	background: var(--exo-surface-2);
	border: 1px dashed var(--exo-line-strong);
	border-radius: var(--exo-radius-sm);
	padding: 18px;
	color: var(--exo-ink-soft);
	text-align: center;
}

.exocash-chart-bars {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	height: 160px;
	padding-top: 10px;
}

.exocash-chart-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: var(--exo-ink-soft);
}

.exocash-chart-bar {
	width: 100%;
	border-radius: 8px 8px 0 0;
	background: linear-gradient(180deg, var(--exo-brand) 0%, var(--exo-navy) 100%);
	min-height: 4px;
}

.exocash-chart-total,
.exocash-chart-value {
	font-weight: 700;
	color: var(--exo-navy);
}

/* ---------------------------------------------- admin withdrawal cards */

.exocash-withdrawal-card {
	background: #fff;
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius);
	padding: 16px;
	margin-bottom: 12px;
	box-shadow: var(--exo-shadow);
}

.exocash-withdrawal-card__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.exocash-withdrawal-card__grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	font-size: 13px;
}

.exocash-withdrawal-card__actions,
.exocash-withdrawal-actions,
.exocash-order-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.exocash-withdrawal-mobile-list { display: none; }

/* --------------------------------------------------------------- B2B */

.exocash-b2b,
.exocash-b2b-offers,
.exocash-b2b-trades,
.exocash-b2b-escrow,
.exocash-b2b-fees,
.exocash-b2b-disputes,
.exocash-b2b-monitor {
	background: #fff;
	border: 1px solid var(--exo-line);
	border-radius: var(--exo-radius);
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--exo-shadow);
}

.exocash-b2b h2,
.exocash-b2b h3 {
	font-weight: 800;
	color: var(--exo-navy);
}

/* --------------------------------------------------------------- misc */

.exocash-wrap {
	max-width: 1180px;
	margin: 0 auto;
}

.exocash-live-badge {
	background: var(--exo-brand-soft);
	color: var(--exo-brand-dark);
	border-color: rgba(0, 169, 122, .3);
}

.exocash-cancelled-note,
.exocash-completed-note {
	font-size: 13px;
	color: var(--exo-ink-soft);
}

/* ---------------------------------- customer-to-customer internal transfers */
/* Internal wallet transfers are a first-class wallet service. */
#exocash-transfer.exocash-transfer-page {
	display: block;
	visibility: visible;
}

/* -------------------------------------------------------------- mobile */

@media (max-width: 782px) {
	.exocash-dashboard-hero,
	.exocash-wallet-hub__hero,
	.exocash-admin-hero {
		padding: 22px;
		border-radius: 18px;
	}

	.exocash-dashboard-hero h1,
	.exocash-wallet-hub__hero h1 {
		font-size: 22px;
	}

	.exocash-hero-actions .exocash-btn {
		flex: 1 1 100%;
	}

	.exocash-panel,
	.exocash-wallet-shell,
	.exocash-admin-panel {
		padding: 16px;
		border-radius: 14px;
	}

	.exocash-dashboard-nav {
		overflow-x: auto;
		flex-wrap: nowrap;
		justify-content: flex-start;
	}

	.exocash-dashboard-nav a {
		white-space: nowrap;
	}

	.exocash-notification-toast {
		inset-inline: 12px;
		max-width: none;
	}

	.exocash-withdrawal-table,
	.exocash-withdrawals-table-wrap table { display: none; }
	.exocash-withdrawal-mobile-list { display: block; }
}

@media (prefers-reduced-motion: reduce) {
	.exocash-btn,
	.exocash-wallet-tile,
	.exocash-request-card,
	.exocash-wallet-hub__action {
		transition: none;
	}
}

/* ==============================================================
   Admin layout safety — keep WordPress admin shell LTR.
   RTL is scoped to ExoCash panels only; applying direction:rtl to
   the WordPress admin body can reserve a duplicate sidebar-width
   blank area on the right in non-RTL wp-admin shells.
   ============================================================== */
body.exocash-admin-page {
	direction: ltr !important;
	text-align: left !important;
}
body.exocash-admin-page #wpcontent,
body.exocash-admin-page #wpbody,
body.exocash-admin-page #wpbody-content {
	direction: ltr !important;
}
body.exocash-admin-page .wrap,
body.exocash-admin-page .exocash-wrap,
body.exocash-admin-page .exocash-admin-hero,
body.exocash-admin-page .exocash-admin-panel,
body.exocash-admin-page .exocash-control-page,
body.exocash-admin-page .exocash-admin-dashboard,
body.exocash-admin-page .exocash-admin {
	direction: rtl;
	text-align: right;
}
body.exocash-admin-page .exocash-admin-page,
body.exocash-admin-page .exocash-admin-page * {
	box-sizing: border-box;
}

/* ==============================================================
   v2.5 — Professional Dark Slate theme
   ============================================================== */

.exocash-dashboard,
.exocash-panel,
.exocash-wallets,
.exocash-wallet-shell,
.exocash-wallet-hub,
.exocash-payment-page,
.exocash-admin-page {
	--exo-ink: #f8fafc;
	--exo-ink-soft: #94a3b8;
	--exo-line: #263245;
	--exo-line-strong: #334155;
	--exo-surface: #111827;
	--exo-surface-2: #172033;
	--exo-brand: #818cf8;
	--exo-brand-dark: #a5b4fc;
	--exo-brand-soft: #222b52;
	--exo-navy: #4f46e5;
	--exo-navy-2: #6d28d9;
	--exo-warn: #fbbf24;
	--exo-warn-soft: #322913;
	--exo-danger: #fb7185;
	--exo-danger-soft: #351b25;
	--exo-radius: 14px;
	--exo-radius-sm: 10px;
	--exo-shadow: 0 1px 1px rgba(0, 0, 0, .28), 0 12px 34px rgba(0, 0, 0, .22);
	--exo-shadow-lg: 0 24px 70px rgba(0, 0, 0, .42);
	color: var(--exo-ink);
	letter-spacing: 0;
}

.exocash-dashboard {
	max-width: 1220px;
	padding: 8px;
}

.exocash-dashboard-hero,
.exocash-wallet-hub__hero,
.exocash-admin-hero {
	background: linear-gradient(135deg, #312e81 0%, #4f46e5 52%, #6d28d9 100%);
	border: 1px solid rgba(165, 180, 252, .25);
	border-radius: 20px;
	padding: 34px 36px;
	box-shadow: 0 28px 60px rgba(0, 0, 0, .38), 0 12px 30px rgba(79, 70, 229, .18);
}

.exocash-dashboard-hero::after,
.exocash-wallet-hub__hero::after {
	display: none;
}

.exocash-dashboard-hero h1,
.exocash-wallet-hub__hero h1,
.exocash-admin-hero h1,
.exocash-dashboard-hero p,
.exocash-wallet-hub__hero p,
.exocash-admin-hero p,
.exocash-wallet-hub__total {
	color: #f8fafc;
}

.exocash-dashboard-hero .exocash-eyebrow,
.exocash-wallet-hub__hero .exocash-eyebrow,
.exocash-admin-hero .exocash-admin-eyebrow {
	background: rgba(15, 23, 42, .32);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #e0e7ff;
}

.exocash-dashboard-nav {
	position: sticky;
	top: 12px;
	z-index: 20;
	background: rgba(17, 24, 39, .92);
	border-color: var(--exo-line);
	box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
	backdrop-filter: blur(14px);
}

.exocash-dashboard-nav a:hover {
	background: var(--exo-brand-soft);
	color: #c7d2fe;
}

.exocash-nav-notifications {
	background: var(--exo-surface-2);
}

.exocash-panel,
.exocash-box,
.exocash-wallet-shell,
.exocash-admin-panel,
.exocash-wallet-tile,
.exocash-wallet-card,
.exocash-wallet-hub__action,
.exocash-control-service,
.exocash-method-card,
.exocash-coin-card,
.exocash-kyc-doc-card,
.exocash-request-card,
.exocash-notification-item,
.exocash-notifications li,
.exocash-withdrawal-card,
.exocash-b2b,
.exocash-b2b-offers,
.exocash-b2b-trades,
.exocash-b2b-escrow,
.exocash-b2b-fees,
.exocash-b2b-disputes,
.exocash-b2b-monitor {
	background: var(--exo-surface);
	border-color: var(--exo-line);
	color: var(--exo-ink);
}

.exocash-wallet-shell,
.exocash-panel,
.exocash-admin-panel {
	box-shadow: var(--exo-shadow);
}

.exocash-wallet-tile,
.exocash-wallet-card {
	background: linear-gradient(155deg, #172033 0%, #101827 100%);
}

.exocash-wallet-tile:hover,
.exocash-wallet-card:hover,
.exocash-wallet-hub__action:hover,
.exocash-control-service:hover,
.exocash-method-card:hover,
.exocash-coin-card:hover,
.exocash-request-card:hover {
	border-color: #6366f1;
	box-shadow: 0 16px 34px rgba(0, 0, 0, .3);
}

.exocash-wallet-tile__icon,
.exocash-wallet-method__icon,
.exocash-method-card__icon,
.exocash-coin-symbol {
	background: #272f46;
	border: 1px solid #3b4662;
	color: #a5b4fc;
}

.exocash-wallet-tile__balance,
.exocash-wallet-card__value,
.exocash-card__value,
.exocash-exchange-amount,
.exocash-exchange-result,
.exocash-withdraw-receive,
.exocash-withdraw-total,
.exocash-admin-stat strong,
.exocash-order-kpi strong,
.exocash-admin-balance,
.exocash-chart-total,
.exocash-chart-value,
.exocash-payment-brand,
.exocash-payment-amount,
.exocash-b2b h2,
.exocash-b2b h3 {
	color: var(--exo-ink);
}

.exocash-wallet-method,
.exocash-box--muted,
.exocash-method-info,
.exocash-methods li,
.exocash-exchange-card,
.exocash-exchange-summary,
.exocash-withdraw-summary,
.exocash-admin-empty,
.exocash-admin-message {
	background: var(--exo-surface-2);
	border-color: var(--exo-line);
}

.exocash-input,
.exocash-panel input[type="text"],
.exocash-panel input[type="number"],
.exocash-panel input[type="email"],
.exocash-panel input[type="password"],
.exocash-panel select,
.exocash-panel textarea {
	background: #0d1524;
	border-color: var(--exo-line-strong);
	color: var(--exo-ink);
	color-scheme: dark;
}

.exocash-input::placeholder {
	color: #64748b;
}

.exocash-input:focus,
.exocash-panel textarea:focus,
.exocash-panel select:focus {
	border-color: #818cf8;
	box-shadow: 0 0 0 4px rgba(99, 102, 241, .18);
}

.exocash-btn,
.exocash-copy-btn,
.exocash-admin-action,
.exocash-notification-toast__open {
	background: #4f46e5;
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(79, 70, 229, .24);
}

.exocash-btn:hover,
.exocash-copy-btn:hover,
.exocash-admin-action:hover {
	background: #6366f1;
	color: #ffffff;
}

.exocash-btn--ghost,
.exocash-btn--white,
.exocash-btn--secondary {
	background: rgba(15, 23, 42, .58);
	border-color: rgba(255, 255, 255, .2);
	color: #f8fafc;
	box-shadow: none;
}

.exocash-btn--ghost:hover,
.exocash-btn--white:hover,
.exocash-btn--secondary:hover {
	background: #27324a;
	border-color: #818cf8;
	color: #ffffff;
}

.exocash-table,
.exocash-modern-table,
.exocash-transactions table,
.exocash-history-table-wrap table,
.exocash-withdrawal-table {
	background: var(--exo-surface);
	border-color: var(--exo-line);
	color: var(--exo-ink);
}

.exocash-table th,
.exocash-modern-table th,
.exocash-transactions th,
.exocash-withdrawal-table th {
	background: #172033;
	color: #aebbd0;
	border-color: var(--exo-line);
}

.exocash-table td,
.exocash-modern-table td,
.exocash-transactions td,
.exocash-withdrawal-table td {
	border-color: var(--exo-line);
}

.exocash-table tbody tr:hover,
.exocash-modern-table tbody tr:hover {
	background: #172033;
}

.exocash-notifications li.is-unread,
.exocash-notification-item.is-unread,
.exocash-method-card.is-selected,
.exocash-method-card:has(input:checked),
.exocash-coin-card:has(input:checked),
.exocash-exchange-card--receive {
	background: #20294b;
	border-color: #4f5aa8;
}

.exocash-notifications-actions,
.exocash-notifications-page form,
.exocash-panel#exocash-notifications form {
	background: linear-gradient(to top, var(--exo-surface) 72%, rgba(17, 24, 39, 0));
}

.exocash-notifications-actions .exocash-btn,
.exocash-notifications-page form .exocash-btn,
.exocash-panel#exocash-notifications form .exocash-btn {
	background: #4f46e5;
	border-color: #6366f1;
	color: #ffffff;
}

.exocash-notification-toast,
.exocash-auth-box,
.exocash-payment-card {
	background: var(--exo-surface);
	border-color: var(--exo-line);
	color: var(--exo-ink);
}

.exocash-payment-page {
	background: #080d16;
}

.exocash-payment-qr img {
	background: #ffffff;
}

.exocash-admin-stat,
.exocash-order-kpi {
	background: linear-gradient(155deg, #172033 0%, #111827 100%);
	border-color: var(--exo-line);
}

.exocash-admin-stat--green { border-inline-start-color: #34d399; }
.exocash-admin-stat--blue { border-inline-start-color: #60a5fa; }
.exocash-admin-stat--yellow { border-inline-start-color: #fbbf24; }
.exocash-admin-stat--red { border-inline-start-color: #fb7185; }

.exocash-admin-action--green { background: #059669; }
.exocash-admin-action--blue { background: #4f46e5; }
.exocash-admin-action--yellow { background: #d97706; }

.exocash-chart-bar {
	background: linear-gradient(180deg, #818cf8 0%, #4f46e5 100%);
}

@media (max-width: 782px) {
	.exocash-dashboard {
		padding: 0;
	}

	.exocash-dashboard-nav {
		top: 6px;
	}

	.exocash-wallet-grid,
	.exocash-wallets,
	.exocash-wallet-hub__wallets,
	.exocash-wallet-hub__actions,
	.exocash-control-services {
		grid-template-columns: 1fr;
	}
}


/* =====================================================================
   EXCOINCASH — Professional Deposit UI v2.5.1
   Scoped to #exocash-deposit. Backend/payment flow is unchanged.
   ===================================================================== */
#exocash-deposit.exocash-deposit-page{--dep-bg:#0b1220;--dep-card:#111a2b;--dep-card2:#0d1727;--dep-line:rgba(148,163,184,.15);--dep-text:#f8fafc;--dep-muted:#94a3b8;--dep-brand:#6366f1;--dep-brand2:#818cf8;max-width:1180px;margin:0 auto;padding:10px 0 40px;color:var(--dep-text)}
#exocash-deposit .exocash-deposit-hero{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:28px 30px;border:1px solid var(--dep-line);border-radius:24px;background:radial-gradient(circle at 15% 0%,rgba(99,102,241,.2),transparent 35%),linear-gradient(145deg,#121d31,#0b1322);box-shadow:0 24px 60px rgba(0,0,0,.24);margin-bottom:18px}
#exocash-deposit .exocash-deposit-kicker{display:inline-flex;letter-spacing:.12em;font-size:11px;font-weight:800;color:#a5b4fc;margin-bottom:8px}
#exocash-deposit .exocash-deposit-hero h2{font-size:32px;line-height:1.15;margin:0 0 8px;color:#fff}
#exocash-deposit .exocash-deposit-hero p{margin:0;color:#aab7ca;max-width:690px;font-size:14px;line-height:1.8}
#exocash-deposit .exocash-deposit-trust{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
#exocash-deposit .exocash-deposit-trust span{font-size:12px;color:#dbe4f1;border:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.035);border-radius:999px;padding:7px 11px}
#exocash-deposit .exocash-deposit-trust b{color:#a5b4fc;margin-left:4px}
#exocash-deposit .exocash-deposit-hero__badge{min-width:210px;border:1px solid rgba(129,140,248,.2);border-radius:18px;background:rgba(99,102,241,.08);padding:18px;text-align:center}
#exocash-deposit .exocash-deposit-hero__badge span{display:block;font-size:28px;color:#a5b4fc;margin-bottom:5px}
#exocash-deposit .exocash-deposit-hero__badge strong{display:block;font-size:15px;color:#fff}
#exocash-deposit .exocash-deposit-hero__badge small{display:block;color:#94a3b8;margin-top:5px}
#exocash-deposit .exocash-deposit-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;padding:8px;border:1px solid var(--dep-line);border-radius:16px;background:rgba(17,26,43,.82);margin-bottom:16px}
#exocash-deposit .exocash-deposit-steps>div{display:flex;align-items:center;justify-content:center;gap:8px;padding:9px;border-radius:11px;color:#64748b;font-size:12px;font-weight:700}
#exocash-deposit .exocash-deposit-steps i{font-style:normal;width:25px;height:25px;border-radius:50%;display:grid;place-items:center;border:1px solid var(--dep-line);background:#0c1525}
#exocash-deposit .exocash-deposit-steps .is-active{color:#e0e7ff;background:rgba(99,102,241,.1)}
#exocash-deposit .exocash-deposit-steps .is-active i{background:var(--dep-brand);border-color:var(--dep-brand);color:#fff}
#exocash-deposit .exocash-deposit-notice{display:flex;gap:12px;padding:14px 16px;margin-bottom:16px;border:1px solid rgba(129,140,248,.18);background:rgba(99,102,241,.07);border-radius:15px;color:#cbd5e1;font-size:13px}
#exocash-deposit .exocash-deposit-notice>span{font-size:18px;color:#a5b4fc}
#exocash-deposit .exocash-deposit-notice strong{display:block;color:#fff;margin-bottom:4px}
#exocash-deposit .exocash-deposit-notice p{margin:3px 0;color:#94a3b8}
#exocash-deposit .exocash-deposit-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:16px;align-items:start}
#exocash-deposit .exocash-deposit-main,#exocash-deposit .exocash-deposit-summary,#exocash-deposit .exocash-deposit-help{border:1px solid var(--dep-line);background:linear-gradient(145deg,var(--dep-card),var(--dep-card2));border-radius:20px}
#exocash-deposit .exocash-deposit-main{padding:22px}
#exocash-deposit .exocash-deposit-section-head{margin:0 0 13px}
#exocash-deposit .exocash-deposit-section-head>div{display:flex;align-items:center;gap:11px}
#exocash-deposit .exocash-deposit-section-head>div>span{font-size:11px;font-weight:900;color:#a5b4fc;border:1px solid rgba(129,140,248,.2);background:rgba(99,102,241,.08);padding:5px 7px;border-radius:8px}
#exocash-deposit .exocash-deposit-section-head strong{display:block;font-size:15px;color:#fff}
#exocash-deposit .exocash-deposit-section-head small{display:block;color:#718096;font-size:11px;margin-top:3px}
#exocash-deposit .exocash-deposit-methods-wrap .exocash-method-cards{grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:10px;margin-bottom:12px}
#exocash-deposit .exocash-method-card{position:relative;min-height:74px;padding:12px;border-radius:14px;background:#0d1727;border-color:rgba(148,163,184,.14);overflow:hidden}
#exocash-deposit .exocash-method-card:has(input:checked){background:linear-gradient(145deg,rgba(99,102,241,.18),rgba(99,102,241,.06));border-color:#6366f1;box-shadow:0 10px 28px rgba(79,70,229,.13)}
#exocash-deposit .exocash-method-card input{position:absolute;opacity:0;pointer-events:none}
#exocash-deposit .exocash-method-card__icon{width:40px;height:40px;min-width:40px;border-radius:12px;background:#18243a;border:1px solid rgba(255,255,255,.08);display:grid;place-items:center;color:#c7d2fe}
#exocash-deposit .exocash-method-card strong{color:#f8fafc;font-size:13px}
#exocash-deposit .exocash-method-card small{color:#8391a7;margin-top:3px}
#exocash-deposit .exocash-method-info{background:#0b1423;border-color:rgba(129,140,248,.16);border-radius:14px;padding:13px;margin-bottom:20px}
#exocash-deposit .exocash-method-info__head{color:#fff}
#exocash-deposit .exocash-method-info__stats{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-top:10px}
#exocash-deposit .exocash-method-info__stats>span{display:block;padding:9px 10px;border:1px solid rgba(148,163,184,.1);background:rgba(255,255,255,.02);border-radius:10px}
#exocash-deposit .exocash-method-info__stats b{display:block;color:#718096;font-size:10px;margin-bottom:3px}
#exocash-deposit .exocash-method-info__stats strong{display:block;color:#e5e7eb;font-size:12px}
#exocash-deposit .exocash-method-info__instructions{margin-top:10px;padding-top:10px;border-top:1px solid rgba(148,163,184,.1);color:#a9b5c7;font-size:12px;line-height:1.8}
#exocash-deposit .exocash-deposit-amount-wrap{padding:15px;border:1px solid var(--dep-line);border-radius:16px;background:#0b1423;margin-bottom:22px}
#exocash-deposit .exocash-deposit-amount-field{margin:0}
#exocash-deposit .exocash-deposit-amount-field>span{color:#cbd5e1;font-size:12px;margin-bottom:7px}
#exocash-deposit .exocash-deposit-amount-input{display:flex;align-items:center;border:1px solid rgba(148,163,184,.18);background:#0a111e;border-radius:13px;padding-left:13px;direction:ltr}
#exocash-deposit .exocash-deposit-amount-input:focus-within{border-color:#818cf8;box-shadow:0 0 0 4px rgba(99,102,241,.13)}
#exocash-deposit .exocash-deposit-amount-input input{border:0!important;box-shadow:none!important;background:transparent!important;font-size:25px!important;font-weight:800;padding:15px 13px!important;color:#fff!important}
#exocash-deposit .exocash-deposit-amount-input b{color:#a5b4fc;font-size:12px;white-space:nowrap}
#exocash-deposit .exocash-deposit-quick{display:flex;gap:7px;flex-wrap:wrap;margin-top:9px}
#exocash-deposit .exocash-deposit-quick button{border:1px solid rgba(148,163,184,.13);background:#121d30;color:#b9c4d4;border-radius:9px;padding:7px 12px;cursor:pointer;font:700 11px inherit}
#exocash-deposit .exocash-deposit-quick button:hover{border-color:#6366f1;color:#e0e7ff;background:rgba(99,102,241,.09)}
#exocash-deposit .exocash-deposit-extra{border-top:1px solid rgba(148,163,184,.09);padding-top:20px}
#exocash-deposit .exocash-field>span{color:#cbd5e1;font-size:12px}
#exocash-deposit .exocash-field>span em{font-style:normal;color:#64748b;font-weight:500}
#exocash-deposit .exocash-field{margin-bottom:12px}
#exocash-deposit .exocash-input,#exocash-deposit .exocash-panel input[type=text],#exocash-deposit .exocash-panel textarea{background:#0a111e;border-color:rgba(148,163,184,.16);color:#f8fafc}
#exocash-deposit .exocash-deposit-upload{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;min-height:125px;border:1px dashed rgba(129,140,248,.35);border-radius:14px;background:rgba(99,102,241,.035);padding:17px;overflow:hidden;cursor:pointer}
#exocash-deposit .exocash-deposit-upload:hover{border-color:#818cf8;background:rgba(99,102,241,.07)}
#exocash-deposit .exocash-deposit-upload input{position:absolute;inset:0;width:100%;height:100%;opacity:0;cursor:pointer;z-index:2}
#exocash-deposit .exocash-deposit-upload__icon{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;background:#18243a;color:#a5b4fc;font-size:20px;margin-bottom:7px}
#exocash-deposit .exocash-deposit-upload strong{font-size:12px;color:#e5e7eb}
#exocash-deposit .exocash-deposit-upload small{font-size:10px;color:#64748b;margin-top:3px}
#exocash-deposit .exocash-deposit-upload b{font-size:10px;color:#a5b4fc;margin-top:7px;max-width:90%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
#exocash-deposit .exocash-deposit-side{position:sticky;top:18px;display:grid;gap:10px}
#exocash-deposit .exocash-deposit-summary{padding:18px}
#exocash-deposit .exocash-deposit-summary__top{display:flex;justify-content:space-between;align-items:center;color:#fff;font-size:14px;font-weight:800;margin-bottom:18px}
#exocash-deposit .exocash-deposit-summary__top b{font-size:10px;color:#a5b4fc;font-weight:700}
#exocash-deposit .exocash-deposit-summary__amount{padding:13px;border:1px solid rgba(129,140,248,.14);border-radius:13px;background:rgba(99,102,241,.055);margin-bottom:12px}
#exocash-deposit .exocash-deposit-summary__amount small{display:block;color:#718096;font-size:10px;margin-bottom:4px}
#exocash-deposit .exocash-deposit-summary__amount strong{font-size:22px;color:#fff;direction:ltr;display:block}
#exocash-deposit .exocash-deposit-summary__amount i{font-style:normal;color:#a5b4fc;font-size:11px}
#exocash-deposit .exocash-deposit-summary__row{display:flex;justify-content:space-between;gap:10px;padding:10px 0;border-bottom:1px solid rgba(148,163,184,.07);font-size:11px}
#exocash-deposit .exocash-deposit-summary__row span{color:#718096}
#exocash-deposit .exocash-deposit-summary__row strong{color:#dbe4f1;text-align:left;max-width:55%}
#exocash-deposit .exocash-deposit-summary__divider{height:7px}
#exocash-deposit .exocash-deposit-summary__secure{display:flex;gap:9px;padding:11px 0 14px}
#exocash-deposit .exocash-deposit-summary__secure>span{width:26px;height:26px;border-radius:8px;background:rgba(99,102,241,.13);color:#a5b4fc;display:grid;place-items:center;font-size:12px}
#exocash-deposit .exocash-deposit-summary__secure strong{display:block;color:#e5e7eb;font-size:11px}
#exocash-deposit .exocash-deposit-summary__secure small{display:block;color:#64748b;font-size:9px;line-height:1.6;margin-top:2px}
#exocash-deposit .exocash-deposit-submit{width:100%;display:flex;align-items:center;justify-content:space-between;border:0!important;border-radius:13px;padding:13px 15px!important;font-size:13px!important;background:linear-gradient(135deg,#4f46e5,#6366f1)!important}
#exocash-deposit .exocash-deposit-submit b{font-size:17px}
#exocash-deposit .exocash-deposit-summary .exocash-hint{font-size:10px;line-height:1.6;color:#64748b;margin:9px 0 0}
#exocash-deposit .exocash-deposit-help{display:flex;gap:10px;align-items:center;padding:12px 14px}
#exocash-deposit .exocash-deposit-help>span{width:29px;height:29px;border-radius:9px;background:#18243a;color:#a5b4fc;display:grid;place-items:center;font-weight:900}
#exocash-deposit .exocash-deposit-help strong{display:block;font-size:11px;color:#e5e7eb}
#exocash-deposit .exocash-deposit-help small{display:block;font-size:9px;color:#64748b;margin-top:2px}
#exocash-deposit .exocash-pay-currency{margin-top:10px}
@media(max-width:900px){#exocash-deposit .exocash-deposit-layout{grid-template-columns:1fr}#exocash-deposit .exocash-deposit-side{position:static}#exocash-deposit .exocash-deposit-hero__badge{min-width:170px}}
@media(max-width:640px){#exocash-deposit{padding:4px 0 25px}#exocash-deposit .exocash-deposit-hero{padding:20px 17px;border-radius:18px;align-items:flex-start}#exocash-deposit .exocash-deposit-hero h2{font-size:25px}#exocash-deposit .exocash-deposit-hero__badge{display:none}#exocash-deposit .exocash-deposit-trust{gap:5px}#exocash-deposit .exocash-deposit-trust span{font-size:9px;padding:6px 8px}#exocash-deposit .exocash-deposit-steps{gap:3px;padding:5px}#exocash-deposit .exocash-deposit-steps>div{font-size:9px;padding:7px 3px;gap:4px}#exocash-deposit .exocash-deposit-steps i{width:21px;height:21px;font-size:9px}#exocash-deposit .exocash-deposit-main{padding:14px;border-radius:16px}#exocash-deposit .exocash-method-info__stats{grid-template-columns:repeat(2,1fr)}#exocash-deposit .exocash-deposit-methods-wrap .exocash-method-cards{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}#exocash-deposit .exocash-method-card{min-height:66px;padding:9px;gap:8px}#exocash-deposit .exocash-method-card__icon{width:33px;height:33px;min-width:33px;border-radius:9px}#exocash-deposit .exocash-method-card strong{font-size:11px}#exocash-deposit .exocash-method-card small{font-size:9px}#exocash-deposit .exocash-deposit-summary{padding:14px;border-radius:16px}}


/* =========================================================
   v2.5.4 — Dashboard / Wallet Hub polish
   ========================================================= */
.exocash-dashboard--pro .exocash-dashboard-nav{display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.exocash-dashboard--pro .exocash-dashboard-nav a{min-height:36px;display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border:1px solid rgba(148,163,184,.10);border-radius:10px;background:rgba(255,255,255,.025);color:#cbd5e1;text-decoration:none!important;font-size:11px;font-weight:800}
.exocash-dashboard--pro .exocash-dashboard-nav a:hover,.exocash-dashboard--pro .exocash-dashboard-nav a.is-transfer{border-color:rgba(99,102,241,.38);background:rgba(99,102,241,.10);color:#fff}
.exocash-dashboard--pro .exocash-dashboard-nav .exocash-nav-notifications span{min-width:19px;height:19px;padding:0 5px;border-radius:999px;display:inline-grid;place-items:center;background:#ef4444;color:#fff;font-size:9px}
.exocash-dashboard-section{scroll-margin-top:28px}
.exocash-section-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:16px}
.exocash-section-link{font-size:11px;font-weight:800;color:#9fb8ff;text-decoration:none!important;white-space:nowrap}
.exocash-section-link:hover{color:#fff}
.exocash-dashboard-notifications .exocash-panel{margin:0}
.exocash-dashboard-notifications .exocash-panel__title{display:none}
.exocash-dashboard-notifications .exocash-notifications{max-height:300px;overflow:auto;margin:0}
.exocash-dashboard-notifications .exocash-notification-actions{margin-top:10px}
.exocash-dashboard-finance__stack{display:grid;grid-template-columns:minmax(0,1fr);gap:18px}
.exocash-dashboard-finance__stack>#exocash-deposit,.exocash-dashboard-finance__stack>#exocash-withdraw{width:100%;min-width:0}
/* Never nest the already two-column deposit layout inside another narrow dashboard column. */
.exocash-dashboard-finance .exocash-deposit-layout{grid-template-columns:minmax(0,1fr) minmax(270px,.36fr)}
.exocash-dashboard-finance .exocash-deposit-main{min-width:0}

/* Short payment instructions; full content is still available via toggle. */
#exocash-deposit .exocash-method-info__instructions{margin-top:10px;padding:10px 11px;border:1px solid rgba(148,163,184,.10);border-radius:12px;background:rgba(255,255,255,.025)}
#exocash-deposit .exocash-method-info__instructions-head{display:flex;align-items:center;justify-content:space-between;gap:10px}
#exocash-deposit .exocash-method-info__instructions-head b{font-size:11px;color:#e5e7eb}
#exocash-deposit .exocash-method-info__toggle{border:1px solid rgba(129,140,248,.22);background:rgba(99,102,241,.08);color:#a5b4fc;border-radius:8px;padding:5px 8px;font-size:9px;font-weight:800;cursor:pointer}
#exocash-deposit .exocash-method-info__instructions-body{margin-top:8px;color:#a9b5c7;font-size:10px;line-height:1.75;max-height:240px;overflow:auto}
#exocash-deposit .exocash-method-info__instructions.is-collapsed .exocash-method-info__instructions-body{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;max-height:58px}

/* Wallet Hub: More menu contains transfer + notifications + history. */
.exocash-wallet-hub__more{position:relative;min-width:0}
.exocash-wallet-hub__more>summary{list-style:none;cursor:pointer}
.exocash-wallet-hub__more>summary::-webkit-details-marker{display:none}
.exocash-wallet-hub__more[open]>summary{border-color:rgba(96,157,255,.45);background:rgba(72,120,255,.12)}
.exocash-wallet-hub__more-menu{position:absolute;z-index:40;right:0;top:calc(100% + 8px);width:230px;padding:8px;border:1px solid rgba(129,140,248,.20);border-radius:14px;background:rgba(9,17,34,.98);box-shadow:0 18px 45px rgba(0,0,0,.38);backdrop-filter:blur(14px)}
.exocash-wallet-hub__more-menu a{display:grid;grid-template-columns:30px 1fr;column-gap:9px;row-gap:2px;align-items:center;padding:9px;border-radius:10px;text-decoration:none!important;color:#fff!important}
.exocash-wallet-hub__more-menu a:hover{background:rgba(99,102,241,.10)}
.exocash-wallet-hub__more-menu a>span{grid-row:1/3;width:28px;height:28px;display:grid;place-items:center;border-radius:8px;background:rgba(99,102,241,.12);color:#a5b4fc}
.exocash-wallet-hub__more-menu a b{font-size:10px}
.exocash-wallet-hub__more-menu a small{font-size:8px;color:rgba(255,255,255,.48)}
@media(max-width:900px){.exocash-dashboard-finance .exocash-deposit-layout{grid-template-columns:1fr}.exocash-dashboard--pro .exocash-dashboard-nav{overflow-x:auto;flex-wrap:nowrap;padding-bottom:3px}.exocash-dashboard--pro .exocash-dashboard-nav a{white-space:nowrap}.exocash-wallet-hub__more-menu{right:auto;left:0}}
\n/* v2.5.5 — BoltUtil multi-network checkout */
.exocash-boltutil-network-picker{margin:14px 0 18px;padding:16px 18px;border:1px solid rgba(95,120,255,.28);border-radius:18px;background:linear-gradient(135deg,rgba(44,74,150,.22),rgba(23,31,57,.72));box-shadow:0 14px 34px rgba(0,0,0,.12)}
.exocash-boltutil-network-picker__head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:12px}.exocash-boltutil-network-picker__head strong{display:block;font-size:15px}.exocash-boltutil-network-picker__head small{display:block;margin-top:4px;opacity:.65;line-height:1.6}.exocash-boltutil-network-picker__head>span{padding:7px 10px;border-radius:10px;background:rgba(76,88,255,.18);font-size:11px;font-weight:800;letter-spacing:.08em}.exocash-boltutil-network-picker__grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:9px}.exocash-boltutil-network-option{border:1px solid rgba(255,255,255,.09);border-radius:12px;background:rgba(8,14,30,.52);padding:11px 8px;color:inherit;cursor:pointer;text-align:right;transition:.18s}.exocash-boltutil-network-option span{display:block;font-size:10px;opacity:.55;margin-bottom:4px}.exocash-boltutil-network-option b{display:block;font-size:12px}.exocash-boltutil-network-option:hover,.exocash-boltutil-network-option.is-selected{border-color:rgba(100,118,255,.72);background:rgba(74,77,220,.22);transform:translateY(-1px)}
@media(max-width:800px){.exocash-boltutil-network-picker__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
/* v2.5.5 — Wallet Hub professional control bar */
.exocash-wallet-hub__controlbar{display:grid;grid-template-columns:minmax(0,1.2fr) repeat(3,minmax(0,.65fr));gap:10px;margin:14px 0 20px;padding:10px;border:1px solid rgba(104,125,255,.18);border-radius:18px;background:linear-gradient(135deg,rgba(21,34,67,.88),rgba(12,19,35,.92));box-shadow:0 14px 30px rgba(0,0,0,.12)}
.exocash-wallet-hub__controlbar-intro{display:flex;align-items:center;gap:11px;padding:8px 10px}.exocash-wallet-hub__controlbar-intro-icon{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:linear-gradient(135deg,#3946ff,#6c2cff);box-shadow:0 7px 18px rgba(65,61,255,.25)}.exocash-wallet-hub__controlbar-intro strong{display:block;font-size:13px}.exocash-wallet-hub__controlbar-intro small{display:block;margin-top:3px;opacity:.55;font-size:10px}.exocash-wallet-hub__controlbar-link{display:flex;align-items:center;justify-content:center;gap:8px;min-height:50px;padding:0 10px;border:1px solid rgba(255,255,255,.06);border-radius:13px;background:rgba(255,255,255,.025);color:inherit;text-decoration:none;transition:.18s}.exocash-wallet-hub__controlbar-link:hover{background:rgba(75,85,230,.16);border-color:rgba(102,117,255,.35);transform:translateY(-1px)}.exocash-wallet-hub__controlbar-link b{font-size:12px}.exocash-wallet-hub__controlbar-link span{font-size:16px}.exocash-wallet-hub__controlbar-link em{font-style:normal;font-size:9px;opacity:.48;display:block}@media(max-width:800px){.exocash-wallet-hub__controlbar{grid-template-columns:1fr 1fr}.exocash-wallet-hub__controlbar-intro{grid-column:1/-1}}@media(max-width:520px){.exocash-wallet-hub__controlbar{grid-template-columns:1fr}.exocash-wallet-hub__controlbar-intro{grid-column:auto}}

/* =========================================================
   v2.5.6 — Professional manual payment details + automatic crypto UX
   ========================================================= */
#exocash-deposit .exocash-method-info__instructions{padding:12px!important;border:1px solid rgba(99,102,241,.16)!important;border-radius:14px!important;background:linear-gradient(145deg,rgba(17,28,47,.96),rgba(10,18,31,.96))!important}
#exocash-deposit .exocash-method-info__instructions-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:8px}
#exocash-deposit .exocash-method-info__instructions-head b{font-size:12px;color:#fff}
#exocash-deposit .exocash-method-info__instructions-head span{font-size:9px;color:#718096}
#exocash-deposit .exocash-payment-details{display:grid;gap:7px;margin-top:8px}
#exocash-deposit .exocash-payment-details__title{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:3px 1px 5px}
#exocash-deposit .exocash-payment-details__title b{font-size:10px;color:#fbbf24}
#exocash-deposit .exocash-payment-details__title span{font-size:9px;color:#64748b}
#exocash-deposit .exocash-payment-detail{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:9px 10px;border:1px solid rgba(245,158,11,.24);border-radius:11px;background:linear-gradient(90deg,rgba(245,158,11,.075),rgba(17,27,44,.82));box-shadow:inset 3px 0 0 rgba(245,158,11,.8)}
#exocash-deposit .exocash-payment-detail>div{min-width:0;display:flex;flex-direction:column;gap:3px}
#exocash-deposit .exocash-payment-detail small{font-size:9px;color:#94a3b8}
#exocash-deposit .exocash-payment-detail strong{font-size:15px;letter-spacing:.2px;color:#ffd166;word-break:break-all}
#exocash-deposit .exocash-copy-payment{flex:0 0 auto;border:1px solid rgba(245,158,11,.3);background:#f59e0b;color:#16110a;border-radius:8px;padding:6px 10px;font:800 10px inherit;cursor:pointer;box-shadow:0 5px 16px rgba(245,158,11,.12)}
#exocash-deposit .exocash-copy-payment:hover{background:#fbbf24;transform:translateY(-1px)}
#exocash-deposit .exocash-payment-instructions-text{margin-top:8px;padding:8px 9px;border-radius:10px;background:rgba(255,255,255,.025);color:#a9b5c7;font-size:10px;line-height:1.8}
#exocash-deposit .exocash-deposit-extra[hidden]{display:none!important}
#exocash-deposit [data-exocash-field="proof"][hidden],#exocash-deposit [data-exocash-field="txid"][hidden],#exocash-deposit [data-exocash-field="note"][hidden]{display:none!important}
@media(max-width:640px){#exocash-deposit .exocash-payment-detail strong{font-size:13px}#exocash-deposit .exocash-payment-detail{padding:8px}#exocash-deposit .exocash-copy-payment{padding:6px 8px}}


/* =========================================================
   v2.5.14 — Professional Withdrawal UX
   Presentation layer only; server-side withdrawal logic remains unchanged.
   ========================================================= */
#exocash-withdraw.exocash-withdraw-pro{padding:0;background:transparent;border:0;box-shadow:none;overflow:visible}
#exocash-withdraw .exocash-withdraw-hero{display:flex;align-items:center;justify-content:space-between;gap:22px;padding:28px 30px;border:1px solid rgba(99,102,241,.18);border-radius:24px;background:radial-gradient(circle at 100% 0%,rgba(99,102,241,.18),transparent 34%),linear-gradient(145deg,#111c34,#0b1424);margin-bottom:16px}
#exocash-withdraw .exocash-withdraw-hero h2{margin:4px 0 8px;color:#fff;font-size:30px;line-height:1.15}
#exocash-withdraw .exocash-withdraw-hero p{margin:0;color:#9fb0c8;font-size:13px;max-width:650px;line-height:1.8}
#exocash-withdraw .exocash-withdraw-trust{display:flex;flex-wrap:wrap;gap:7px;margin-top:14px}
#exocash-withdraw .exocash-withdraw-trust span{display:inline-flex;align-items:center;padding:7px 10px;border:1px solid rgba(148,163,184,.12);border-radius:999px;background:rgba(255,255,255,.03);color:#cbd5e1;font-size:10px;font-weight:800}
#exocash-withdraw .exocash-withdraw-hero__badge{min-width:180px;padding:16px 17px;border-radius:18px;border:1px solid rgba(99,102,241,.23);background:rgba(99,102,241,.09);text-align:center}
#exocash-withdraw .exocash-withdraw-hero__badge strong{display:block;color:#e0e7ff;font-size:14px}.exocash-withdraw-hero__badge small{display:block;margin-top:5px;color:#8190a7;font-size:9px;line-height:1.7}
#exocash-withdraw .exocash-withdraw-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:7px;padding:7px;margin-bottom:14px;border:1px solid rgba(148,163,184,.10);border-radius:16px;background:#0c1526}
#exocash-withdraw .exocash-withdraw-steps>div{display:flex;align-items:center;justify-content:center;gap:8px;padding:10px 8px;border-radius:11px;color:#70809a;font-size:11px;font-weight:800}
#exocash-withdraw .exocash-withdraw-steps>div.is-active{background:linear-gradient(135deg,rgba(99,102,241,.2),rgba(99,102,241,.08));color:#fff}
#exocash-withdraw .exocash-withdraw-steps i{font-style:normal;width:22px;height:22px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(148,163,184,.13);font-size:9px}
#exocash-withdraw .exocash-withdraw-steps .is-active i{background:#6366f1;color:#fff;border-color:#6366f1}
#exocash-withdraw .exocash-withdraw-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(270px,.65fr);gap:16px;align-items:start}
#exocash-withdraw .exocash-withdraw-main{padding:20px;border:1px solid rgba(148,163,184,.10);border-radius:21px;background:linear-gradient(180deg,rgba(13,24,42,.94),rgba(10,18,32,.96))}
#exocash-withdraw .exocash-withdraw-side{display:grid;gap:12px;position:sticky;top:18px}
#exocash-withdraw .exocash-withdraw-section-head{display:flex;justify-content:space-between;align-items:center;margin:2px 0 12px}
#exocash-withdraw .exocash-withdraw-section-head>div{display:grid;grid-template-columns:auto 1fr;column-gap:9px;align-items:center}
#exocash-withdraw .exocash-withdraw-section-head span{grid-row:1 / span 2;width:25px;height:25px;border-radius:8px;display:grid;place-items:center;background:rgba(99,102,241,.12);color:#a5b4fc;font-size:9px;font-weight:900}
#exocash-withdraw .exocash-withdraw-section-head strong{color:#f8fafc;font-size:14px}.exocash-withdraw-section-head small{display:block;color:#718096;font-size:9px;margin-top:2px}
#exocash-withdraw .exocash-withdraw-method-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:15px}
#exocash-withdraw .exocash-withdraw-method-grid .exocash-method-card{position:relative;min-height:86px;padding:13px 13px 13px 41px;border:1px solid rgba(148,163,184,.12);border-radius:16px;background:#0c1729;display:flex;align-items:center;gap:11px;transition:.18s ease;overflow:hidden;cursor:pointer}
#exocash-withdraw .exocash-withdraw-method-grid .exocash-method-card:hover{transform:translateY(-1px);border-color:rgba(129,140,248,.42);background:#101d34}
#exocash-withdraw .exocash-withdraw-method-grid .exocash-method-card.is-selected{border-color:#6366f1;background:linear-gradient(145deg,rgba(99,102,241,.18),rgba(99,102,241,.05));box-shadow:0 12px 28px rgba(79,70,229,.12)}
#exocash-withdraw .exocash-withdraw-method-grid .exocash-method-card input{position:absolute;opacity:0;pointer-events:none}
#exocash-withdraw .exocash-method-card__icon{width:44px;height:44px;min-width:44px;border-radius:13px;display:grid;place-items:center;background:#18243a;border:1px solid rgba(255,255,255,.08);color:#dbe4ff;font-size:20px}
#exocash-withdraw .exocash-method-card__icon-img{width:100%;height:100%;object-fit:contain;border-radius:inherit;padding:6px;box-sizing:border-box}
#exocash-withdraw .exocash-withdraw-card__body{min-width:0;display:flex;flex-direction:column;gap:4px}.exocash-withdraw-card__body strong{color:#f8fafc;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.exocash-withdraw-card__body small{color:#8fa0b7;font-size:9px}
#exocash-withdraw .exocash-withdraw-card__badge{position:absolute;right:10px;top:9px;padding:4px 6px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid rgba(148,163,184,.09);color:#75849b;font-size:7px;font-weight:800}
#exocash-withdraw .exocash-withdraw-card__check{position:absolute;left:11px;bottom:11px;width:20px;height:20px;border-radius:50%;display:grid;place-items:center;background:rgba(99,102,241,.08);border:1px solid rgba(99,102,241,.12);color:transparent;font-size:10px;font-weight:900}
#exocash-withdraw .exocash-method-card.is-selected .exocash-withdraw-card__check{background:#6366f1;color:#fff;border-color:#6366f1}
#exocash-withdraw .exocash-method-info{margin:0 0 16px;padding:14px;border:1px solid rgba(129,140,248,.16);border-radius:16px;background:#0a1424}
#exocash-withdraw .exocash-method-info__head{display:flex;gap:10px;align-items:center;color:#fff}.exocash-method-info__icon{width:26px;height:26px;border-radius:8px;display:grid;place-items:center;background:rgba(99,102,241,.13);color:#a5b4fc;font-size:11px}.exocash-method-info__head div{display:grid;gap:3px}.exocash-method-info__head small{color:#72839d;font-size:9px}.exocash-method-info__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-top:9px}.exocash-method-info__stats>span{padding:9px 10px;border-radius:10px;background:rgba(255,255,255,.025);border:1px solid rgba(148,163,184,.08)}.exocash-method-info__stats b{display:block;color:#687a95;font-size:8px;margin-bottom:2px}.exocash-method-info__stats strong{display:block;color:#e5e7eb;font-size:10px}
#exocash-withdraw .exocash-withdraw-amount-card{padding:14px;border:1px solid rgba(148,163,184,.10);border-radius:16px;background:#0a1424;margin-bottom:16px}
#exocash-withdraw .exocash-withdraw-amount-input{display:flex;align-items:center;gap:4px;border:1px solid rgba(148,163,184,.15);background:#09111f;border-radius:14px;direction:ltr;padding-left:12px}.exocash-withdraw-amount-input:focus-within{border-color:#818cf8;box-shadow:0 0 0 4px rgba(99,102,241,.10)}
#exocash-withdraw .exocash-withdraw-amount-input input{border:0!important;background:transparent!important;box-shadow:none!important;color:#fff!important;font-size:27px!important;font-weight:900;padding:16px 13px!important;min-width:0}.exocash-withdraw-amount-input b{color:#a5b4fc;font-size:11px;white-space:nowrap;padding-right:4px}
#exocash-withdraw .exocash-withdraw-quick{display:flex;gap:7px;flex-wrap:wrap;margin-top:9px}.exocash-withdraw-quick button{padding:7px 12px;border-radius:9px;border:1px solid rgba(148,163,184,.12);background:#111d31;color:#b9c4d4;font:800 10px inherit;cursor:pointer}.exocash-withdraw-quick button:hover{border-color:#6366f1;color:#eef2ff;background:rgba(99,102,241,.08)}
#exocash-withdraw .exocash-withdraw-address-field{padding:14px;border:1px solid rgba(148,163,184,.10);border-radius:16px;background:#0a1424;margin-bottom:13px}.exocash-withdraw-address-field input{margin-top:8px!important}
#exocash-withdraw .exocash-withdraw-selected-route{display:flex;justify-content:space-between;align-items:center;gap:10px;padding:10px 12px;border-radius:12px;background:rgba(99,102,241,.06);border:1px solid rgba(99,102,241,.12);margin-bottom:13px}.exocash-withdraw-selected-route span{color:#718096;font-size:9px}.exocash-withdraw-selected-route strong{color:#c7d2fe;font-size:10px;direction:ltr}
#exocash-withdraw .exocash-withdraw-submit{width:100%;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:14px 16px!important;border:0!important;border-radius:14px;background:linear-gradient(135deg,#4f46e5,#6366f1)!important;color:#fff!important;font-size:13px!important;box-shadow:0 14px 34px rgba(79,70,229,.18)}.exocash-withdraw-submit b{font-size:18px}.exocash-withdraw-note{margin-top:9px;font-size:9px!important;line-height:1.8;color:#63738b}
#exocash-withdraw .exocash-withdraw-summary-card{padding:18px;border-radius:19px;border:1px solid rgba(129,140,248,.15);background:linear-gradient(160deg,rgba(26,38,72,.86),rgba(11,20,35,.96))}.exocash-withdraw-summary-card__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:13px}.exocash-withdraw-summary-card__top span{display:block;color:#fff;font-size:13px;font-weight:900}.exocash-withdraw-summary-card__top small{display:block;color:#70819a;font-size:8px;margin-top:2px}.exocash-withdraw-summary-card__top i{font-style:normal;width:28px;height:28px;display:grid;place-items:center;border-radius:9px;background:rgba(99,102,241,.12);color:#a5b4fc}
#exocash-withdraw .exocash-withdraw-summary-card__amount{padding:14px;border-radius:14px;background:rgba(99,102,241,.08);border:1px solid rgba(129,140,248,.12);margin-bottom:10px}.exocash-withdraw-summary-card__amount small{display:block;color:#718096;font-size:9px;margin-bottom:4px}.exocash-withdraw-summary-card__amount strong{display:block;color:#fff;font-size:24px;direction:ltr}
#exocash-withdraw .exocash-withdraw-summary-row{display:flex;justify-content:space-between;gap:10px;padding:9px 0;border-bottom:1px solid rgba(148,163,184,.07);font-size:9px}.exocash-withdraw-summary-row span{color:#718096}.exocash-withdraw-summary-row strong{color:#dbe4f1;text-align:left;max-width:60%}.exocash-withdraw-summary-row--total{padding-top:12px;border-bottom:0}.exocash-withdraw-summary-row--total strong{font-size:11px;color:#fff}
#exocash-withdraw .exocash-withdraw-summary-secure{display:flex;gap:8px;align-items:flex-start;padding-top:11px;border-top:1px solid rgba(148,163,184,.07)}.exocash-withdraw-summary-secure>span{width:24px;height:24px;border-radius:8px;display:grid;place-items:center;background:rgba(34,197,94,.10);color:#86efac;font-size:10px}.exocash-withdraw-summary-secure strong{display:block;color:#e2e8f0;font-size:9px}.exocash-withdraw-summary-secure small{display:block;color:#677891;font-size:8px;line-height:1.7;margin-top:2px}
#exocash-withdraw .exocash-withdraw-help{display:flex;gap:10px;padding:14px;border-radius:16px;border:1px solid rgba(148,163,184,.08);background:#0c1627}.exocash-withdraw-help>span{width:28px;height:28px;border-radius:9px;display:grid;place-items:center;background:#18243a;color:#a5b4fc;font-weight:900}.exocash-withdraw-help strong{color:#e5e7eb;font-size:10px}.exocash-withdraw-help p{margin:4px 0 0;color:#64748b;font-size:8px;line-height:1.8}
@media(max-width:900px){#exocash-withdraw .exocash-withdraw-layout{grid-template-columns:1fr}#exocash-withdraw .exocash-withdraw-side{position:static}#exocash-withdraw .exocash-withdraw-hero__badge{display:none}}
@media(max-width:640px){#exocash-withdraw .exocash-withdraw-hero{padding:21px 17px;border-radius:19px}#exocash-withdraw .exocash-withdraw-hero h2{font-size:24px}#exocash-withdraw .exocash-withdraw-steps{gap:3px;padding:5px}#exocash-withdraw .exocash-withdraw-steps>div{font-size:8px;padding:7px 3px;gap:4px}#exocash-withdraw .exocash-withdraw-steps i{width:21px;height:21px;font-size:8px}#exocash-withdraw .exocash-withdraw-main{padding:13px;border-radius:16px}#exocash-withdraw .exocash-withdraw-method-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}#exocash-withdraw .exocash-withdraw-method-grid .exocash-method-card{min-height:78px;padding:10px 8px 10px 31px;gap:7px;border-radius:13px}.exocash-withdraw-method-grid .exocash-method-card__icon{width:34px;height:34px;min-width:34px;border-radius:10px;font-size:15px}.exocash-withdraw-card__body strong{font-size:10px}.exocash-withdraw-card__body small{font-size:7px}.exocash-withdraw-card__badge{display:none}.exocash-withdraw-card__check{left:7px;bottom:7px;width:17px;height:17px;font-size:8px}#exocash-withdraw .exocash-method-info__stats{grid-template-columns:repeat(2,1fr)} }
