/**
 * NexoraLogin — Frontend CSS
 * @package NexoraLogin
 * @version 2.0.0
 */

:root {
    --nxl-primary: #00fefb;
    --nxl-secondary: #0a1628;
    --nxl-accent: #7c3aed;
    --nxl-accent-hover: #6d28d9;
    --nxl-accent-rgb: 124,58,237;
    --nxl-bg: #f8f9fb;
    --nxl-card: #ffffff;
    --nxl-border: #e2e8f0;
    --nxl-text: #1e293b;
    --nxl-text-muted: #64748b;
    --nxl-success: #10b981;
    --nxl-error: #ef4444;
    --nxl-warning: #f59e0b;
    --nxl-info: #3b82f6;
    --nxl-radius: 12px;
    --nxl-radius-sm: 8px;
    --nxl-shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.04);
    --nxl-shadow-lg: 0 4px 24px rgba(0,0,0,.1);
    --nxl-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --nxl-transition: .2s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
.nxl-auth-wrapper *, .nxl-account-wrapper * { box-sizing: border-box; }
.nxl-auth-wrapper, .nxl-account-wrapper { font-family: var(--nxl-font); color: var(--nxl-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── Auth Card (Login/Register) ───────────────────────────── */
.nxl-auth-wrapper { display: flex; justify-content: center; padding: 2rem 1rem; min-height: 60vh; }
.nxl-auth-card { width: 100%; max-width: 460px; background: var(--nxl-card); border-radius: var(--nxl-radius); padding: 2.5rem; box-shadow: var(--nxl-shadow-lg); border: 1px solid var(--nxl-border); }
.nxl-auth-card--register { max-width: 580px; }
.nxl-auth-header { text-align: center; margin-bottom: 2rem; }
.nxl-auth-logo { max-height: 48px; margin-bottom: 1rem; }
.nxl-auth-header h2 { font-size: 1.5rem; font-weight: 700; margin: 0 0 .25rem; }
.nxl-auth-subtitle { color: var(--nxl-text-muted); font-size: .95rem; margin: 0; }
.nxl-auth-footer { text-align: center; margin-top: 1.5rem; font-size: .9rem; color: var(--nxl-text-muted); }
.nxl-auth-footer a { color: var(--nxl-accent); text-decoration: none; font-weight: 600; }

/* ── Honeypot ─────────────────────────────────────────────── */
.nxl-hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── Form Fields ──────────────────────────────────────────── */
.nxl-form-fields { display: flex; flex-wrap: wrap; gap: .75rem; }
.nxl-field { margin-bottom: .5rem; }
.nxl-field--full { width: 100%; }
.nxl-field--half { width: calc(50% - .375rem); }
.nxl-field--between { display: flex; justify-content: space-between; align-items: center; }
.nxl-field__label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .35rem; color: var(--nxl-text); }
.nxl-field__desc { font-size: .8rem; color: var(--nxl-text-muted); margin-top: .2rem; display: block; }
.nxl-required { color: var(--nxl-error); margin-left: 2px; }
.nxl-input, .nxl-textarea, .nxl-select {
    width: 100%; padding: .7rem .9rem; border: 1.5px solid var(--nxl-border); border-radius: var(--nxl-radius-sm);
    font-size: .95rem; background: var(--nxl-card); color: var(--nxl-text); transition: border var(--nxl-transition), box-shadow var(--nxl-transition);
    font-family: var(--nxl-font);
}
.nxl-input:focus, .nxl-textarea:focus, .nxl-select:focus { outline: none; border-color: var(--nxl-accent); box-shadow: 0 0 0 3px rgba(var(--nxl-accent-rgb,124,58,237),.12); }
.nxl-textarea { resize: vertical; min-height: 80px; }

/* Password toggle */
.nxl-password-wrap { position: relative; }
.nxl-password-wrap .nxl-input { padding-right: 2.8rem; }
.nxl-password-toggle { position: absolute; right: .6rem; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--nxl-text-muted); padding: 4px; }

/* Checkbox & Radio */
.nxl-checkbox, .nxl-radio { display: flex; align-items: center; gap: .5rem; font-size: .9rem; cursor: pointer; }
.nxl-checkbox input, .nxl-radio input { width: 18px; height: 18px; accent-color: var(--nxl-accent); }
.nxl-radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Section heading */
.nxl-section-heading { font-size: 1.1rem; font-weight: 700; margin: 1rem 0 .25rem; padding-top: .5rem; border-top: 1px solid var(--nxl-border); }

/* ── Buttons ──────────────────────────────────────────────── */
.nxl-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .7rem 1.5rem; border-radius: var(--nxl-radius-sm); font-size: .95rem; font-weight: 600;
    cursor: pointer; border: 2px solid transparent; transition: all var(--nxl-transition); font-family: var(--nxl-font);
    text-decoration: none; line-height: 1.4;
}
.nxl-btn--primary { background: var(--nxl-accent); color: #fff; }
.nxl-btn--primary:hover { background: var(--nxl-accent-hover, #6d28d9); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(var(--nxl-accent-rgb,124,58,237),.3); }
.nxl-btn--outline { background: transparent; border-color: var(--nxl-border); color: var(--nxl-text); }
.nxl-btn--outline:hover { border-color: var(--nxl-accent); color: var(--nxl-accent); }
.nxl-btn--danger { background: var(--nxl-error); color: #fff; }
.nxl-btn--danger:hover { background: #dc2626; }
.nxl-btn--small { padding: .4rem 1rem; font-size: .85rem; }
.nxl-btn--full { width: 100%; }
.nxl-btn__loader { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: nxlSpin .6s linear infinite; }
@keyframes nxlSpin { to { transform: rotate(360deg); } }

/* ── Alerts & Notices ─────────────────────────────────────── */
.nxl-alert, .nxl-notice { padding: .8rem 1rem; border-radius: var(--nxl-radius-sm); font-size: .9rem; margin-bottom: 1rem; }
.nxl-alert--success, .nxl-notice--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.nxl-alert--error, .nxl-notice--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.nxl-alert--warning, .nxl-notice--warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.nxl-alert--info, .nxl-notice--info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ── Social Login ─────────────────────────────────────────── */
.nxl-social-login { margin-top: 1.5rem; }
.nxl-social-login__divider { text-align: center; position: relative; margin-bottom: 1rem; }
.nxl-social-login__divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--nxl-border); }
.nxl-social-login__divider span { position: relative; background: var(--nxl-card); padding: 0 1rem; font-size: .85rem; color: var(--nxl-text-muted); }
.nxl-social-login__buttons { display: flex; gap: .75rem; }
.nxl-social-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .7rem; border: 1.5px solid var(--nxl-border); border-radius: var(--nxl-radius-sm);
    background: var(--nxl-card); font-size: .9rem; font-weight: 600; cursor: pointer;
    transition: all var(--nxl-transition); font-family: var(--nxl-font); color: var(--nxl-text);
}
.nxl-social-btn:hover { border-color: var(--nxl-accent); background: rgba(var(--nxl-accent-rgb,124,58,237),.06); transform: translateY(-1px); }

/* ── Account Layout ───────────────────────────────────────── */
.nxl-account-wrapper { display: flex; gap: 1.5rem; max-width: 1100px; margin: 0 auto; padding: 1rem; }
.nxl-account-sidebar { width: 260px; flex-shrink: 0; background: var(--nxl-card); border-radius: var(--nxl-radius); padding: 1.5rem 1rem; box-shadow: var(--nxl-shadow); border: 1px solid var(--nxl-border); align-self: flex-start; position: sticky; top: 100px; }
.nxl-account-content { flex: 1; min-width: 0; background: var(--nxl-card); border-radius: var(--nxl-radius); padding: 2rem; box-shadow: var(--nxl-shadow); border: 1px solid var(--nxl-border); }

/* User section */
.nxl-account-user { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--nxl-border); }
.nxl-account-avatar { margin-bottom: .75rem; }
.nxl-avatar-emoji { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; font-size: 28px; }
.nxl-avatar-emoji--large { width: 96px; height: 96px; font-size: 42px; }
.nxl-avatar-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.nxl-avatar-img--large { width: 96px; height: 96px; }
.nxl-account-name { font-weight: 700; font-size: 1rem; }
.nxl-account-email { font-size: .85rem; color: var(--nxl-text-muted); word-break: break-all; }

/* Navigation */
.nxl-account-nav { display: flex; flex-direction: column; gap: .25rem; }
.nxl-nav-item { display: flex; align-items: center; gap: .6rem; padding: .6rem .8rem; border-radius: var(--nxl-radius-sm); color: var(--nxl-text); text-decoration: none; font-size: .9rem; font-weight: 500; transition: all var(--nxl-transition); }
.nxl-nav-item:hover { background: #f1f5f9; }
.nxl-nav-item--active { background: rgba(var(--nxl-accent-rgb,124,58,237),.10); color: var(--nxl-accent); font-weight: 600; }
.nxl-nav-item--logout { color: var(--nxl-error); margin-top: .5rem; }
.nxl-nav-item--logout:hover { background: #fef2f2; }
.nxl-nav-item svg { flex-shrink: 0; }

/* ── Dashboard Cards ──────────────────────────────────────── */
.nxl-dashboard h2 { font-size: 1.4rem; margin: 0 0 .5rem; }
.nxl-dashboard-intro { color: var(--nxl-text-muted); margin-bottom: 1.5rem; }
.nxl-dashboard-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.nxl-dash-card { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: 1.25rem 1rem; background: var(--nxl-bg); border-radius: var(--nxl-radius-sm); text-decoration: none; color: var(--nxl-text); transition: all var(--nxl-transition); border: 1px solid transparent; }
.nxl-dash-card:hover { border-color: var(--nxl-accent); background: rgba(var(--nxl-accent-rgb,124,58,237),.06); transform: translateY(-2px); }
.nxl-dash-card__icon { color: var(--nxl-accent); }
.nxl-dash-card__num { font-size: 1.5rem; font-weight: 700; }
.nxl-dash-card__label { font-size: .8rem; color: var(--nxl-text-muted); }

/* ── Tables ───────────────────────────────────────────────── */
.nxl-table { width: 100%; border-collapse: collapse; }
.nxl-table th, .nxl-table td { padding: .6rem .8rem; text-align: left; border-bottom: 1px solid var(--nxl-border); font-size: .9rem; }
.nxl-table th { font-weight: 600; background: var(--nxl-bg); }
.nxl-table tr:hover td { background: #f8fafc; }

/* ── Status badges ────────────────────────────────────────── */
.nxl-status { display: inline-block; padding: .2rem .6rem; border-radius: 20px; font-size: .75rem; font-weight: 600; text-transform: capitalize; }
.nxl-status--open, .nxl-status--processing { background: #dbeafe; color: #1d4ed8; }
.nxl-status--pending, .nxl-status--awaiting-reply, .nxl-status--on-hold { background: #fef3c7; color: #92400e; }
.nxl-status--completed, .nxl-status--delivered, .nxl-status--resolved { background: #d1fae5; color: #065f46; }
.nxl-status--closed, .nxl-status--cancelled, .nxl-status--failed, .nxl-status--returned { background: #fee2e2; color: #991b1b; }
.nxl-status--shipped, .nxl-status--in_transit, .nxl-status--in-progress { background: #e0e7ff; color: #3730a3; }
.nxl-status--out_delivery { background: #fef3c7; color: #92400e; }
.nxl-priority { font-size: .75rem; font-weight: 600; text-transform: capitalize; }
.nxl-priority--urgent { color: var(--nxl-error); }
.nxl-priority--high { color: #ea580c; }

/* ── Order/Download/Ticket/Shipment Cards ─────────────────── */
.nxl-order-card, .nxl-download-card, .nxl-ticket-card, .nxl-shipment-card {
    padding: 1rem 1.25rem; border: 1px solid var(--nxl-border); border-radius: var(--nxl-radius-sm);
    margin-bottom: .75rem; transition: border var(--nxl-transition);
}
.nxl-order-card:hover, .nxl-ticket-card:hover, .nxl-shipment-card:hover { border-color: var(--nxl-accent); }
.nxl-order-header, .nxl-shipment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.nxl-order-body { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; color: var(--nxl-text-muted); font-size: .9rem; }
.nxl-order-total { font-weight: 700; color: var(--nxl-text); }
.nxl-order-actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* Download card */
.nxl-download-card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nxl-download-info { display: flex; align-items: center; gap: .75rem; }
.nxl-download-icon { color: var(--nxl-accent); }
.nxl-download-meta { font-size: .85rem; color: var(--nxl-text-muted); display: flex; gap: 1rem; }

/* Ticket card */
.nxl-ticket-card { display: flex; justify-content: space-between; align-items: center; text-decoration: none; color: var(--nxl-text); }
.nxl-ticket-card__status { display: flex; gap: .5rem; align-items: center; }

/* Ticket view */
.nxl-ticket-view__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.nxl-ticket-view__header h2 { margin: 0; font-size: 1.2rem; }
.nxl-ticket-view__meta { font-size: .85rem; color: var(--nxl-text-muted); margin-bottom: 1rem; }
.nxl-ticket-message-bubble { padding: 1rem; border-radius: var(--nxl-radius-sm); margin-bottom: .75rem; font-size: .9rem; line-height: 1.7; }
.nxl-ticket-message--user { background: rgba(var(--nxl-accent-rgb,124,58,237),.10); border-left: 3px solid var(--nxl-accent); }
.nxl-ticket-message--admin { background: #f0fdf4; border-left: 3px solid var(--nxl-success); }
.nxl-ticket-reply-meta { display: flex; justify-content: space-between; font-size: .8rem; color: var(--nxl-text-muted); margin-bottom: .4rem; }
.nxl-ticket-reply-actions { display: flex; gap: .5rem; margin-top: .75rem; }
.nxl-ticket-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.nxl-ticket-create-form { background: var(--nxl-bg); padding: 1.5rem; border-radius: var(--nxl-radius-sm); margin-bottom: 1.5rem; }

/* Shipment details */
.nxl-shipment-body { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: .75rem; }
.nxl-shipment-detail { font-size: .9rem; }
.nxl-shipment-detail .nxl-label { display: block; font-size: .8rem; color: var(--nxl-text-muted); }
.nxl-shipment-actions { border-top: 1px solid var(--nxl-border); padding-top: .75rem; }

/* ── Avatar ───────────────────────────────────────────────── */
.nxl-avatar-current { text-align: center; margin-bottom: 2rem; }
.nxl-avatar-preview { display: inline-flex; }
.nxl-avatar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)); gap: .75rem; margin-bottom: 2rem; }
.nxl-avatar-option { display: flex; flex-direction: column; align-items: center; gap: .3rem; padding: .75rem .5rem; border: 2px solid var(--nxl-border); border-radius: var(--nxl-radius-sm); background: none; cursor: pointer; transition: all var(--nxl-transition); }
.nxl-avatar-option:hover { border-color: var(--nxl-accent); background: rgba(var(--nxl-accent-rgb,124,58,237),.06); }
.nxl-avatar-option--selected { border-color: var(--nxl-accent); background: rgba(var(--nxl-accent-rgb,124,58,237),.10); }
.nxl-avatar-label { font-size: .7rem; color: var(--nxl-text-muted); }

/* Upload area */
.nxl-upload-area { border: 2px dashed var(--nxl-border); border-radius: var(--nxl-radius-sm); padding: 2rem; text-align: center; cursor: pointer; transition: all var(--nxl-transition); position: relative; }
.nxl-upload-area:hover { border-color: var(--nxl-accent); background: rgba(var(--nxl-accent-rgb,124,58,237),.06); }
.nxl-upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.nxl-upload-area svg { color: var(--nxl-text-muted); margin-bottom: .5rem; }
.nxl-upload-area p { margin: 0; font-weight: 600; }
.nxl-upload-hint { font-size: .8rem; color: var(--nxl-text-muted); }

/* ── Password strength ────────────────────────────────────── */
.nxl-password-strength { height: 4px; border-radius: 2px; margin-top: .4rem; background: var(--nxl-border); overflow: hidden; }
.nxl-password-strength .nxl-strength-bar { height: 100%; border-radius: 2px; transition: width .3s, background .3s; }

/* ── Modal ────────────────────────────────────────────────── */
.nxl-modal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.nxl-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.nxl-modal__content { position: relative; background: var(--nxl-card); border-radius: var(--nxl-radius); padding: 2rem; max-width: 480px; width: 90%; box-shadow: var(--nxl-shadow-lg); }
.nxl-modal__content h3 { margin: 0 0 1rem; }
.nxl-modal__actions { display: flex; gap: .5rem; justify-content: flex-end; margin-top: 1rem; }

/* ── Empty state ──────────────────────────────────────────── */
.nxl-empty-state { text-align: center; padding: 3rem 1rem; color: var(--nxl-text-muted); }
.nxl-empty-state svg { margin-bottom: .75rem; opacity: .5; }
.nxl-empty-state p { font-size: 1rem; margin-bottom: 1rem; }

/* ── Language Switcher ────────────────────────────────────── */
.nxl-lang-switcher { position: relative; display: inline-block; }
.nxl-lang-switcher__toggle { display: flex; align-items: center; gap: .4rem; background: var(--nxl-card); border: 1px solid var(--nxl-border); border-radius: var(--nxl-radius-sm); padding: .4rem .8rem; cursor: pointer; font-size: .85rem; font-family: var(--nxl-font); }
.nxl-lang-switcher__dropdown { display: none; position: absolute; top: 100%; right: 0; background: var(--nxl-card); border: 1px solid var(--nxl-border); border-radius: var(--nxl-radius-sm); box-shadow: var(--nxl-shadow-lg); list-style: none; margin: .25rem 0 0; padding: .25rem; min-width: 160px; z-index: 100; }
.nxl-lang-switcher__dropdown.nxl-open { display: block; }
.nxl-lang-option { display: flex; align-items: center; gap: .5rem; width: 100%; padding: .5rem .75rem; border: none; background: none; cursor: pointer; font-size: .85rem; border-radius: 4px; }
.nxl-lang-option:hover { background: var(--nxl-bg); }
.nxl-lang--active { background: rgba(var(--nxl-accent-rgb,124,58,237),.10); color: var(--nxl-accent); font-weight: 600; }

/* ── Pro badge ────────────────────────────────────────────── */
.nxl-pro-notice { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); color: #fff; padding: .75rem 1rem; border-radius: var(--nxl-radius-sm); font-size: .9rem; display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.nxl-pro-badge { background: #fff; color: var(--nxl-accent); font-size: .7rem; font-weight: 800; padding: .15rem .5rem; border-radius: 4px; }
.nxl-pro-notice a { color: #fff; text-decoration: underline; }

/* ── Misc ─────────────────────────────────────────────────── */
.nxl-link { color: var(--nxl-accent); text-decoration: none; font-size: .9rem; }
.nxl-link:hover { text-decoration: underline; }
.nxl-text-center { text-align: center; }
.nxl-text-muted { color: var(--nxl-text-muted); }
.nxl-badge { display: inline-block; padding: .2rem .6rem; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.nxl-badge--warning { background: #fef3c7; color: #92400e; }
.nxl-dashboard-recent { margin-top: 1rem; }
.nxl-dashboard-recent h3 { font-size: 1rem; margin-bottom: .75rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .nxl-account-wrapper { flex-direction: column; }
    .nxl-account-sidebar { width: 100%; position: static; }
    .nxl-account-nav { flex-direction: row; flex-wrap: wrap; gap: .25rem; }
    .nxl-nav-item { flex: 1; min-width: 100px; justify-content: center; font-size: .8rem; padding: .5rem; }
    .nxl-nav-item span { display: none; }
    .nxl-account-content { padding: 1.25rem; }
    .nxl-field--half { width: 100%; }
    .nxl-auth-card { padding: 1.5rem; }
    .nxl-download-card { flex-direction: column; align-items: flex-start; }
    .nxl-ticket-card { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .nxl-shipment-body { gap: 1rem; }
    .nxl-dashboard-cards { grid-template-columns: repeat(2, 1fr); }
    .nxl-social-login__buttons { flex-direction: column; }
    .nxl-invite-rewards { grid-template-columns: 1fr; }
    .nxl-token-convert-row { flex-direction: column; align-items: stretch; }
    .nxl-wallet-balance { flex-direction: column; text-align: center; }
}

/* ─── v2.1 — Toast Notifications ────────────────────────────── */
#nxl-toast-container { position: fixed; top: 20px; right: 20px; z-index: 999999; display: flex; flex-direction: column; gap: .5rem; max-width: 360px; }
.nxl-toast { background: #fff; border-radius: 12px; padding: 1rem 1.25rem; box-shadow: 0 8px 32px rgba(0,0,0,.15); display: flex; align-items: center; gap: .75rem; min-width: 280px; transform: translateX(400px); opacity: 0; transition: all .3s cubic-bezier(.4,0,.2,1); border-left: 4px solid var(--nxl-accent); }
.nxl-toast--show { transform: translateX(0); opacity: 1; }
.nxl-toast--success { border-left-color: var(--nxl-success); }
.nxl-toast--error { border-left-color: var(--nxl-error); }
.nxl-toast--warning { border-left-color: var(--nxl-warning); }
.nxl-toast--info { border-left-color: var(--nxl-info); }
.nxl-toast__icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.nxl-toast__text { flex: 1; font-size: .9rem; color: var(--nxl-text); }
.nxl-toast__close { background: none; border: none; cursor: pointer; color: var(--nxl-text-muted); padding: 4px; font-size: 18px; }
@media (max-width: 640px) {
    #nxl-toast-container { left: 10px; right: 10px; max-width: none; }
    .nxl-toast { min-width: 0; }
}

/* ─── v2.1 — Addresses ──────────────────────────────────────── */
.nxl-address-tabs { display: flex; gap: .25rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--nxl-border); flex-wrap: wrap; }
.nxl-address-tab { padding: .75rem 1.25rem; color: var(--nxl-text-muted); text-decoration: none; font-weight: 600; font-size: .9rem; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; display: flex; align-items: center; gap: .35rem; }
.nxl-address-tab:hover { color: var(--nxl-accent); }
.nxl-address-tab--active { color: var(--nxl-accent); border-bottom-color: var(--nxl-accent); }
.nxl-address-tab .nxl-dot { color: var(--nxl-success); font-size: 8px; }
.nxl-delete-address-btn { margin-left: .5rem; }

/* ─── v2.1 — Status Timeline (Order Tracking) ───────────────── */
.nxl-tracking-card { border: 1px solid var(--nxl-border); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; }
.nxl-tracking-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; gap: .5rem; }
.nxl-status-timeline { display: flex; justify-content: space-between; align-items: flex-start; margin: 1.5rem 0; position: relative; gap: .5rem; }
.nxl-status-timeline::before { content: ''; position: absolute; top: 20px; left: 10%; right: 10%; height: 2px; background: var(--nxl-border); z-index: 0; }
.nxl-step-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem; position: relative; z-index: 1; text-align: center; }
.nxl-step-bullet { width: 40px; height: 40px; border-radius: 50%; background: var(--nxl-card); border: 2px solid var(--nxl-border); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.nxl-step-done .nxl-step-bullet { background: var(--nxl-success); border-color: var(--nxl-success); color: #fff; }
.nxl-step-current .nxl-step-bullet { background: var(--nxl-accent); border-color: var(--nxl-accent); color: #fff; box-shadow: 0 0 0 4px rgba(var(--nxl-accent-rgb,124,58,237),.15); animation: nxlPulse 2s infinite; }
.nxl-step-future .nxl-step-bullet { opacity: .5; }
.nxl-step-text { font-size: .75rem; color: var(--nxl-text-muted); font-weight: 600; }
.nxl-step-done .nxl-step-text, .nxl-step-current .nxl-step-text { color: var(--nxl-text); }
@keyframes nxlPulse { 0%,100% { box-shadow: 0 0 0 4px rgba(var(--nxl-accent-rgb,124,58,237),.15); } 50% { box-shadow: 0 0 0 8px rgba(var(--nxl-accent-rgb,124,58,237),.05); } }

/* ─── v2.1 — Invites ────────────────────────────────────────── */
.nxl-invite-banner { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); color: #fff; border-radius: 12px; padding: 1.5rem; margin: 1.5rem 0; }
.nxl-invite-rewards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.nxl-invite-reward { text-align: center; }
.nxl-invite-reward__num { font-size: 2rem; font-weight: 800; }
.nxl-invite-reward__label { font-size: .8rem; opacity: .9; }
.nxl-invite-share { margin: 2rem 0; }
.nxl-invite-row { margin-bottom: 1rem; }
.nxl-invite-input-group { display: flex; gap: .5rem; }
.nxl-invite-input-group .nxl-input { font-family: monospace; }
.nxl-invite-code { font-size: 1.1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.nxl-invite-social { display: flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.nxl-share-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 8px; text-decoration: none; font-size: .85rem; font-weight: 600; color: #fff; transition: opacity .2s; }
.nxl-share-btn:hover { opacity: .85; }
.nxl-share-btn--whatsapp { background: #25D366; }
.nxl-share-btn--twitter { background: #000; }
.nxl-share-btn--email { background: #64748b; }
.nxl-invite-list { margin-top: 2rem; }
.nxl-invite-list h3 { margin-bottom: .75rem; }
.nxl-empty-state--small { padding: 1.5rem 1rem; }
.nxl-invite-field { background: linear-gradient(135deg, #faf5ff 0%, #f0ebff 100%); padding: 1rem; border-radius: 8px; margin-top: .5rem; }
.nxl-invite-field--filled { border: 1.5px solid var(--nxl-accent); }
.nxl-invite-field label small { display: block; font-weight: 400; color: var(--nxl-text-muted); font-size: .75rem; margin-top: .15rem; }

/* ─── v2.1 — Wallet / Tokens ────────────────────────────────── */
.nxl-wallet-balance { display: flex; align-items: center; gap: 1.5rem; padding: 2rem; background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%); color: #fff; border-radius: 16px; margin-bottom: 2rem; }
.nxl-wallet-balance__icon { font-size: 3rem; }
.nxl-wallet-balance__label { font-size: .85rem; opacity: .9; margin-bottom: .25rem; }
.nxl-wallet-balance__amount { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.nxl-wallet-balance__amount span { font-size: 1rem; font-weight: 500; opacity: .9; }
.nxl-wallet-convert { padding: 1.5rem; background: var(--nxl-bg); border-radius: 12px; margin-bottom: 2rem; }
.nxl-wallet-convert h3 { margin: 0 0 .5rem; }
.nxl-token-convert-row { display: flex; gap: 1rem; align-items: flex-end; margin-top: 1rem; }
.nxl-token-convert-row .nxl-field { flex: 1; margin: 0; }
.nxl-token-preview { font-size: .9rem; color: var(--nxl-success); font-weight: 600; margin-top: .4rem; }
.nxl-wallet-history h3 { margin-bottom: .75rem; }
.nxl-history-list { display: flex; flex-direction: column; gap: .4rem; }
.nxl-history-item { display: flex; justify-content: space-between; align-items: center; padding: .75rem 1rem; border: 1px solid var(--nxl-border); border-radius: 8px; transition: border .15s; }
.nxl-history-item:hover { border-color: var(--nxl-accent); }
.nxl-history-info { display: flex; flex-direction: column; gap: .15rem; font-size: .9rem; }
.nxl-history-info span { font-size: .75rem; }
.nxl-history-amount { font-weight: 700; font-size: 1.05rem; }
.nxl-history-amount--credit { color: var(--nxl-success); }
.nxl-history-amount--debit { color: var(--nxl-error); }

/* ────────────────────────────────────────────────────────────
 * v2.2 — PNG avatar kütüphanesi, cüzdan, özel formlar
 * ──────────────────────────────────────────────────────────── */

/* Avatar grid — image tabanlı, etiketsiz */
.nxl-avatar-grid { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: .55rem; }
.nxl-avatar-option { padding: 4px; border-radius: 50%; aspect-ratio: 1/1; overflow: hidden; }
.nxl-avatar-option .nxl-avatar-img { width: 100%; height: 100%; border-radius: 50%; display: block; }
.nxl-avatar-option:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.nxl-avatar-option--selected { box-shadow: 0 0 0 3px var(--nxl-accent), 0 4px 14px rgba(var(--nxl-accent-rgb,124,58,237),.25); }
.nxl-avatar-grid { max-height: 480px; overflow-y: auto; padding-right: 4px; }
.nxl-lib-count { font-size: .85rem; font-weight: 400; margin-left: .35rem; }

/* Cüzdan kartı — tek bakiye + para karşılığı */
.nxl-wallet-balance { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; background: linear-gradient(135deg, var(--nxl-accent) 0%, #5b21b6 100%); color: #fff; border-radius: var(--nxl-radius); margin-bottom: 1.5rem; }
.nxl-wallet-balance__icon { font-size: 2.5rem; line-height: 1; }
.nxl-wallet-balance__label { font-size: .85rem; opacity: .9; }
.nxl-wallet-balance__amount { font-size: 2rem; font-weight: 700; line-height: 1.1; }
.nxl-wallet-balance__amount span { font-size: 1rem; font-weight: 500; opacity: .8; margin-left: .25rem; }
.nxl-wallet-balance__money { font-size: .95rem; opacity: .9; margin-top: .25rem; }

.nxl-wallet-section { background: var(--nxl-card); border: 1px solid var(--nxl-border); border-radius: var(--nxl-radius); padding: 1.5rem; margin-bottom: 1.25rem; }
.nxl-wallet-section h3 { margin: 0 0 .5rem; font-size: 1.05rem; }
.nxl-wallet-section .nxl-text-muted { margin-bottom: 1rem; }
.nxl-wallet-row { display: flex; gap: .75rem; align-items: flex-end; }
.nxl-wallet-row .nxl-field { flex: 1; }

/* Cüzdan işlem geçmişi */
.nxl-history-list { display: flex; flex-direction: column; gap: .5rem; }
.nxl-history-item { display: flex; justify-content: space-between; align-items: center; padding: .75rem 1rem; background: var(--nxl-card); border: 1px solid var(--nxl-border); border-radius: var(--nxl-radius-sm); }
.nxl-history-info strong { display: block; font-size: .92rem; }
.nxl-history-info span { font-size: .78rem; }
.nxl-history-amount { font-weight: 700; font-size: 1.05rem; }
.nxl-history-amount--credit { color: #16a34a; }
.nxl-history-amount--debit  { color: #dc2626; }

/* Özel formlar (gönder-al) */
.nxl-custom-form-wrap { background: var(--nxl-card); border: 1px solid var(--nxl-border); border-radius: var(--nxl-radius); padding: 1.75rem; box-shadow: var(--nxl-shadow); max-width: 720px; margin: 1rem auto; }
.nxl-form-title { margin: 0 0 1.25rem; font-size: 1.35rem; }
.nxl-custom-form .nxl-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nxl-custom-form .nxl-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) {
    .nxl-custom-form .nxl-form-fields { grid-template-columns: 1fr; }
    .nxl-custom-form .nxl-field--half { grid-column: 1 / -1; }
}

/* Davet kart + token preview yardımcıları */
.nxl-invite-card { background: linear-gradient(135deg, #f0ebff 0%, #fdf4ff 100%); border: 1px solid #e9d5ff; border-radius: var(--nxl-radius); padding: 1.25rem; margin-bottom: 1rem; }
.nxl-invite-code-row { display: flex; gap: .5rem; align-items: center; }
.nxl-invite-code-row input { font-family: monospace; font-weight: 700; letter-spacing: 1px; }
.nxl-token-preview { font-size: .85rem; color: var(--nxl-text-muted); margin-top: .35rem; }
.nxl-token-preview strong { color: var(--nxl-accent); }

/* ════════════════════════════════════════════════════════════
 * v2.2 — Login/Register iki sütun + sağ panel
 * ════════════════════════════════════════════════════════════ */

/* Buton görünürlük düzeltmesi: accent değişkeni boşsa fallback mor */
.nxl-btn--primary {
    background: var(--nxl-accent, #7c3aed) !important;
    color: #fff !important;
    border: none;
}
.nxl-btn--primary .nxl-btn__text { color: #fff; }
.nxl-btn--primary:hover {
    background: var(--nxl-accent-hover, #6d28d9) !important;
    color: #fff !important;
}

/* İki sütun */
/* Tek sütun (sağ panel kapalı) — kartı ortala, makul genişlik ver */
.nxl-auth-wrapper--split { padding: 2rem 1rem; display: block; max-width: 440px; margin: 2rem auto; }
.nxl-auth-wrapper--split .nxl-auth-card { width: auto; max-width: none; }

/* İki sütun: sağ panel açıkken (.has-side) CSS Grid ile yan yana getir.
   Grid kullanıyoruz çünkü tema/WooCommerce'in child'lara verdiği
   display:block / float / width:100% değerleri grid yerleşimini bozamaz. */
@media (min-width: 921px) {
    .nxl-auth-wrapper--split.has-side {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        align-items: stretch;
        max-width: 880px;
        margin: 2rem auto;
        padding: 0;
        box-shadow: var(--nxl-shadow-lg);
        border-radius: var(--nxl-radius);
        overflow: hidden;
        background: var(--nxl-card);
    }
    .nxl-auth-wrapper--split.has-side > .nxl-auth-card,
    .nxl-auth-wrapper--split.has-side > .nxl-auth-card--register {
        width: auto;
        max-width: none;
        float: none;
        margin: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .nxl-auth-wrapper--split.has-side > .nxl-auth-side {
        width: auto;
        float: none;
    }
}

/* Sağ panel */
.nxl-auth-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, var(--nxl-secondary, #0a1628) 0%, #1e293b 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 480px;
}
.nxl-auth-side__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,.78) 0%, rgba(var(--nxl-accent-rgb,124,58,237),.55) 100%);
}
.nxl-auth-side__content {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 360px;
}
.nxl-side-title { color: #fff; font-size: 1.9rem; line-height: 1.2; margin: 0 0 1rem; font-weight: 700; }
.nxl-side-text { color: rgba(255,255,255,.88); font-size: 1.02rem; line-height: 1.6; margin: 0 0 1.5rem; }
.nxl-side-btn {
    display: inline-block;
    padding: .8rem 1.8rem;
    background: #fff;
    color: var(--nxl-secondary, #0a1628);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .15s, box-shadow .15s;
}
.nxl-side-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* Mobilde sağ paneli gizle */
@media (max-width: 920px) {
    .nxl-auth-side { display: none; }
    .nxl-auth-wrapper--split.has-side .nxl-auth-card { max-width: 480px; margin: 0 auto; }
}

/* Auth logo ölçüsü */
.nxl-auth-logo { max-width: 240px; max-height: 60px; width: auto; height: auto; margin: 0 auto 1rem; display: block; }

/* country_state alanı */
.nxl-geo-group { display: flex; flex-direction: column; gap: .6rem; }
.nxl-geo-row { width: 100%; }

/* WooCommerce gerekli bilgilendirme kutusu (sipariş/indirme sekmeleri) */
.nxl-wc-required {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #f8fafc;
    border: 1px dashed var(--nxl-border, #e2e8f0);
    border-radius: var(--nxl-radius, 14px);
    max-width: 480px;
    margin: 1rem auto;
}
.nxl-wc-required__icon { color: var(--nxl-accent, #7c3aed); margin-bottom: .75rem; opacity: .85; }
.nxl-wc-required h3 { margin: 0 0 .5rem; font-size: 1.2rem; color: var(--nxl-text, #1e293b); }
.nxl-wc-required p { color: #64748b; line-height: 1.6; margin: 0 0 1.25rem; }

/* Hediye kartı formu + inline mesajlar */
.nxl-gift-buy-form .nxl-field { margin-bottom: .85rem; }
.nxl-inline-msg { margin-top: .6rem; font-size: .9rem; font-weight: 600; }
.nxl-gift-history { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--nxl-border, #e2e8f0); }
.nxl-gift-history h4 { margin: 0 0 .75rem; font-size: 1rem; color: var(--nxl-text, #1e293b); }

/* Kazanılan kuponlar listesi */
.nxl-coupon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.nxl-coupon-card { border: 2px dashed var(--nxl-accent, #7c3aed); border-radius: var(--nxl-radius, 12px); padding: 1rem; background: rgba(var(--nxl-accent-rgb,124,58,237),.04); position: relative; }
.nxl-coupon-card--used, .nxl-coupon-card--expired { border-color: var(--nxl-border, #e2e8f0); background: #f8fafc; opacity: .7; }
.nxl-coupon-card__amount { font-size: 1.5rem; font-weight: 800; color: var(--nxl-accent, #7c3aed); }
.nxl-coupon-card--used .nxl-coupon-card__amount, .nxl-coupon-card--expired .nxl-coupon-card__amount { color: #94a3b8; }
.nxl-coupon-card__code { display: flex; align-items: center; gap: .4rem; margin: .5rem 0; }
.nxl-coupon-card__code code { background: #fff; border: 1px solid var(--nxl-border,#e2e8f0); padding: .25rem .5rem; border-radius: 6px; font-weight: 700; letter-spacing: .5px; font-size: .85rem; }
.nxl-copy-mini { background: none; border: none; cursor: pointer; font-size: .9rem; padding: 2px; }
.nxl-coupon-card__desc { font-size: .78rem; color: var(--nxl-text-muted,#64748b); margin-bottom: .5rem; }
.nxl-coupon-card__meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.nxl-badge { font-size: .72rem; padding: .15rem .5rem; border-radius: 999px; font-weight: 600; }
.nxl-badge--success { background: #dcfce7; color: #166534; }
.nxl-badge--muted { background: #e2e8f0; color: #64748b; }
.nxl-coupon-exp { font-size: .72rem; color: var(--nxl-text-muted,#64748b); }

/* Sipariş hediyesi banner + ilerleme çubuğu */
.nxl-order-gift-banner { background: linear-gradient(135deg, rgba(var(--nxl-accent-rgb,124,58,237),.08), rgba(var(--nxl-accent-rgb,124,58,237),.02)); border: 1px solid rgba(var(--nxl-accent-rgb,124,58,237),.2); border-radius: var(--nxl-radius,12px); padding: 1.25rem; margin-bottom: 1.5rem; }
.nxl-order-gift-banner h3 { margin: 0 0 .4rem; }
.nxl-gift-progress { height: 10px; background: #e2e8f0; border-radius: 999px; overflow: hidden; margin: .75rem 0 .5rem; }
.nxl-gift-progress__bar { height: 100%; background: var(--nxl-accent, #7c3aed); border-radius: 999px; transition: width .4s; }
.nxl-gift-progress__text { font-size: .85rem; color: var(--nxl-text-muted,#64748b); margin: 0; font-weight: 600; }

/* Avatar kaldır butonu + aksiyon alanı */
.nxl-avatar-actions { margin-top: .75rem; text-align: center; }
.nxl-btn--sm { padding: .45rem .85rem; font-size: .82rem; }
.nxl-btn--ghost { background: transparent; border: 1px solid var(--nxl-border, #e2e8f0); color: var(--nxl-text-muted, #64748b); }
.nxl-btn--ghost:hover:not(:disabled) { border-color: var(--nxl-accent, #7c3aed); color: var(--nxl-accent, #7c3aed); }
.nxl-btn--ghost:disabled { opacity: .5; cursor: not-allowed; }
.nxl-avatar-img--large { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--nxl-border, #e2e8f0); }

/* Dil değiştirici konumlandırma */
.nxl-auth-card { position: relative; }
.nxl-auth-lang { position: absolute; top: 1rem; right: 1rem; z-index: 10; }
.nxl-account-lang { margin-top: 1rem; display: flex; justify-content: center; }
.nxl-lang-switcher { position: relative; display: inline-block; }
.nxl-lang-switcher__toggle { display: flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--nxl-border,#e2e8f0); border-radius: 8px; padding: .4rem .6rem; cursor: pointer; font-size: .85rem; color: var(--nxl-text,#1e293b); }
.nxl-lang-switcher__toggle:hover { border-color: var(--nxl-accent,#7c3aed); }
.nxl-lang-switcher__dropdown { position: absolute; top: calc(100% + 4px); right: 0; background: #fff; border: 1px solid var(--nxl-border,#e2e8f0); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.12); list-style: none; margin: 0; padding: .35rem; min-width: 160px; display: none; max-height: 280px; overflow-y: auto; }
.nxl-lang-switcher__dropdown.nxl-open { display: block; }
.nxl-lang-option { display: flex; align-items: center; gap: .5rem; width: 100%; background: none; border: none; padding: .5rem .6rem; cursor: pointer; border-radius: 6px; font-size: .85rem; text-align: left; }
.nxl-lang-option:hover { background: rgba(var(--nxl-accent-rgb,124,58,237),.08); }
.nxl-lang--active { background: rgba(var(--nxl-accent-rgb,124,58,237),.12); font-weight: 600; }
.nxl-lang-flag { font-size: 1.1rem; }

/* PDF bilet indirme kartı + rozet */
.nxl-badge--accent { background: rgba(var(--nxl-accent-rgb,124,58,237),.12); color: var(--nxl-accent,#7c3aed); font-size: .7rem; padding: .12rem .5rem; border-radius: 999px; font-weight: 700; margin-left: .4rem; }
.nxl-download-card--ticket { border-left: 3px solid var(--nxl-accent,#7c3aed); }
.nxl-download-card--ticket .nxl-download-icon { color: var(--nxl-accent,#7c3aed); }

/* ── Sipariş Detayı (kendi panelimizde, WC view-order yerine) ── */
.nxl-tab-view-order .nxl-back-link{display:inline-block;margin-bottom:1rem;color:var(--nxl-primary,#0ea5b5);text-decoration:none;font-weight:600}
.nxl-tab-view-order .nxl-back-link:hover{text-decoration:underline}
.nxl-order-summary-line{margin:0 0 1.25rem;padding:.85rem 1rem;background:rgba(14,165,181,.07);border-radius:10px;font-size:.95rem}
.nxl-order-detail-table{width:100%;border-collapse:collapse;margin-top:.5rem}
.nxl-order-detail-table th,.nxl-order-detail-table td{padding:1rem;text-align:left;border-bottom:1px solid #eceff3;vertical-align:top}
.nxl-order-detail-table thead th{background:#f7f9fb;font-weight:700;text-transform:uppercase;font-size:.78rem;letter-spacing:.03em}
.nxl-order-detail-table tfoot th,.nxl-order-detail-table tfoot td{font-weight:700;border-bottom:none}
.nxl-order-item-name{display:block;font-weight:600;margin-bottom:.4rem}
.nxl-order-item-meta{list-style:none;margin:.5rem 0 0;padding:0;font-size:.9rem;line-height:1.7}
.nxl-order-item-meta .nxl-meta-key{font-weight:600;color:#475569}
.nxl-order-item-total{white-space:nowrap;font-weight:600}
.nxl-order-qr{margin-top:.85rem}
.nxl-order-qr img{max-width:170px;height:auto;border:6px solid #fff;border-radius:8px;box-shadow:0 2px 10px rgba(0,0,0,.08)}
.nxl-order-note{margin-top:1.5rem;padding:1rem;background:#fff8e6;border-radius:10px}
.nxl-order-note h3{margin:0 0 .4rem;font-size:1rem}
@media(max-width:600px){.nxl-order-detail-table th,.nxl-order-detail-table td{padding:.7rem}.nxl-order-qr img{max-width:140px}}
.nxl-order-qr{margin-top:.85rem;display:flex;flex-direction:column;align-items:flex-start;gap:.4rem}
.nxl-qr-label{font-size:.8rem;color:#64748b;font-weight:600}

/* ── 6 Haneli Kod Giriş Kutusu ── */
.nxl-code-input{text-align:center;font-size:28px;font-weight:700;letter-spacing:12px;font-family:'Courier New',monospace;padding:14px 10px;}
.nxl-code-input::placeholder{letter-spacing:12px;color:#cbd5e1;}
.nxl-field__hint{margin:6px 0 0;font-size:12px;color:#94a3b8;}
