:root {
    --bg: #050914;
    --bg-soft: #0d1525;
    --bg-strong: #02060d;
    --panel: rgba(11, 20, 36, 0.88);
    --panel-border: rgba(102, 173, 255, 0.16);
    --text: #eff6ff;
    --muted: #93a7c7;
    --primary: #0ea5e9;
    --primary-deep: #0369a1;
    --secondary-accent: #38bdf8;
    --metal: #dbeafe;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --shadow: 0 22px 50px rgba(4, 11, 26, 0.45);
    --shadow-soft: 0 18px 40px rgba(3, 10, 22, 0.3);
    --button-surface: #f7f1e6;
    --button-surface-strong: #efe5d4;
    --button-olive: #6b7757;
    --button-olive-deep: #596349;
    --button-gold: #b89c68;
    --button-gold-soft: rgba(184, 156, 104, 0.24);
    --button-ink: #5d654d;
    --button-danger: #9d705f;
    --button-danger-soft: #f2e3db;
    --button-shadow: 0 12px 28px rgba(122, 108, 78, 0.12);
    --button-shadow-hover: 0 16px 30px rgba(122, 108, 78, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Alexandria', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.22), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.1), transparent 20%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.16), transparent 24%),
        linear-gradient(140deg, #02050d, #06101b 45%, #040912 100%);
    color: var(--text);
    min-height: 100vh;
    direction: rtl;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -80px;
    background: rgba(14, 165, 233, 0.16);
}

body::after {
    width: 220px;
    height: 220px;
    bottom: 5%;
    left: -70px;
    background: rgba(37, 99, 235, 0.12);
}

a {
    text-decoration: none;
}

.app-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    position: relative;
}

.shell-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.shell-orb-one {
    width: 220px;
    height: 220px;
    top: 18%;
    left: 16%;
    background: rgba(14, 165, 233, 0.12);
}

.shell-orb-two {
    width: 180px;
    height: 180px;
    bottom: 8%;
    right: 18%;
    background: rgba(59, 130, 246, 0.12);
}

.sidebar {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding: 2rem 1.25rem;
    border-right: 1px solid var(--panel-border);
    background: rgba(4, 10, 19, 0.85);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sidebar::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.brand-mark {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.brand-icon,
.auth-badge {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--primary), #60a5fa);
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.35);
}

.brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.brand-subtitle,
.eyebrow {
    color: var(--muted);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.sidebar-overview {
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(59, 130, 246, 0.04));
    border: 1px solid rgba(148, 197, 255, 0.08);
}

.sidebar-kicker,
.panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #b8d8ff;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.sidebar-text,
.section-copy,
.topbar-copy {
    color: var(--muted);
    line-height: 1.8;
}

.nav-dark {
    color: var(--text);
    border: 1px solid transparent;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-dark:hover,
.nav-dark:focus {
    color: white;
    border-color: var(--panel-border);
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.nav-dark-active {
    color: white;
    border-color: rgba(56, 189, 248, 0.25);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(37, 99, 235, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 24px rgba(14, 165, 233, 0.12);
}

.nav-dark i {
    margin-left: 0.65rem;
}

.nav-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    margin-right: 0.55rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
    font-size: 0.78rem;
}

.content-wrap {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.table,
.form-control,
.form-select,
.btn,
.section-title,
.page-title,
.metric-label,
.metric-value,
.stack-row,
.timeline-item,
.status-pill,
.demo-credentials {
    text-align: right;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.topbar-card {
    padding: 1.25rem 1.35rem;
    border-radius: 30px;
    border: 1px solid rgba(148, 197, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 30%),
        rgba(11, 20, 36, 0.84);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.topbar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.topbar-user-card {
    display: grid;
    gap: 0.15rem;
    min-width: 150px;
    padding: 0.85rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 197, 253, 0.08);
}

.topbar-user-role {
    color: #bfdbfe;
    font-size: 0.78rem;
}

.page-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 2vw, 2.6rem);
}

.chip-live {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 0.8rem 1rem;
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.chip-live span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8);
    animation: pulse 1.8s infinite;
}

.card-dark,
.panel,
.metric-card,
.service-card,
.order-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.panel,
.metric-card {
    padding: 1.5rem;
}

.panel:hover,
.metric-card:hover,
.service-card:hover,
.order-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(4, 11, 26, 0.5);
    border-color: rgba(102, 173, 255, 0.24);
}

.metric-card {
    position: relative;
    overflow: hidden;
}

.metric-card::after {
    content: '';
    position: absolute;
    inset: auto -30px -30px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 70%);
}

.metric-label {
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.metric-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #e0f2fe;
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.24), rgba(37, 99, 235, 0.12));
    border: 1px solid rgba(125, 211, 252, 0.12);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
}

.metric-note {
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.grid-panels {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(147, 197, 253, 0.12);
    color: #dbeafe;
    font-size: 0.85rem;
}

.hero-title {
    font-size: clamp(1.8rem, 2.7vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
}

.hero-copy {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.9;
}

.hero-action-row,
.hero-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-dashboard,
.order-hero {
    position: relative;
    overflow: hidden;
}

.hero-dashboard {
    background:
        linear-gradient(90deg, rgba(4, 8, 14, 0.94), rgba(4, 8, 14, 0.72) 48%, rgba(4, 8, 14, 0.86)),
        url('../images/dashboard-bg.jpeg') center center / cover no-repeat;
    border: 1px solid rgba(184, 156, 104, 0.18);
}

.hero-dashboard::before,
.order-hero::before,
.order-card-luxury::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 28%, rgba(56, 189, 248, 0.04) 80%, transparent);
    pointer-events: none;
}

.hero-dashboard-grid,
.order-hero-grid,
.orders-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
    gap: 1.25rem;
    align-items: center;
}

.insight-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.insight-tile,
.hero-stat-chip,
.order-preview-card,
.order-detail-box,
.signal-row,
.empty-state-box,
.lux-section-shell,
.upload-shell {
    background: rgba(3, 10, 22, 0.76);
    border: 1px solid rgba(147, 197, 253, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.insight-tile,
.hero-stat-chip {
    padding: 1rem;
    border-radius: 22px;
}

.insight-tile span,
.hero-stat-chip span,
.order-preview-head span,
.signal-row span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.insight-tile strong,
.hero-stat-chip strong,
.order-preview-head strong,
.signal-row strong {
    display: block;
    color: var(--text);
}

.insight-tile strong,
.hero-stat-chip strong {
    margin-top: 0.3rem;
    font-size: 1.2rem;
}

.insight-tile small,
.order-preview-head small,
.signal-row small {
    color: var(--muted);
}

.insight-tile-wide {
    grid-column: 1 / -1;
}

.mini-progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.mini-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.65), rgba(59, 130, 246, 0.95));
}

.chart-panel,
.command-panel,
.order-side-panel,
.sticky-order-sidebar {
    position: relative;
    overflow: hidden;
}

.chart-legend {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.88rem;
}

.chart-legend i:first-child {
    color: #38bdf8;
}

.chart-legend span:last-child i {
    color: #f59e0b;
}

.lux-chart {
    min-height: 290px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 0.9rem;
}

.lux-bar {
    display: grid;
    gap: 0.7rem;
    justify-items: center;
}

.lux-bar-track {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: end;
    padding: 0.5rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(3, 10, 22, 0.85));
    border: 1px solid rgba(147, 197, 253, 0.08);
}

.lux-bar-track span {
    width: 100%;
    display: block;
    border-radius: 18px;
    min-height: 18px;
}

.lux-bar-primary .lux-bar-track span {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.95), rgba(14, 165, 233, 0.32));
}

.lux-bar-muted .lux-bar-track span {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.95), rgba(59, 130, 246, 0.28));
}

.lux-bar-warning .lux-bar-track span {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.95), rgba(245, 158, 11, 0.28));
}

.status-orb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #67e8f9 10%, #0ea5e9 70%);
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.08);
}

.signal-list {
    display: grid;
    gap: 0.9rem;
}

.compact-signal-list .signal-row {
    padding: 0.9rem 1rem;
}

.signal-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 20px;
}

.signal-row strong {
    font-size: 1.1rem;
}

.empty-state-box {
    text-align: center;
    padding: 2rem;
    border-radius: 28px;
}

.empty-state-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 24px;
    font-size: 2rem;
    background: rgba(14, 165, 233, 0.12);
    color: #93c5fd;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.form-dark,
.form-dark:focus,
.form-select.form-dark {
    background: rgba(3, 10, 22, 0.9);
    color: var(--text);
    border-color: rgba(147, 197, 253, 0.14);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    box-shadow: none;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.form-dark:focus,
.form-select.form-dark:focus {
    border-color: rgba(56, 189, 248, 0.38);
    background: rgba(5, 14, 28, 0.96);
    transform: translateY(-1px);
}

.form-dark::placeholder {
    color: #597191;
}

.btn-glow {
    background: linear-gradient(135deg, var(--button-olive), var(--button-olive-deep));
    border: 1px solid rgba(184, 156, 104, 0.32);
    box-shadow: var(--button-shadow);
    color: #faf5ec;
}

.btn {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 0.82rem 1.35rem;
    border-width: 1px;
    font-family: 'Alexandria', sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    box-shadow: var(--button-shadow);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.18), transparent 52%);
    pointer-events: none;
}

.btn-primary,
.btn-glow,
.btn-primary:hover,
.btn-glow:hover,
.btn-primary:focus,
.btn-glow:focus {
    background-color: transparent;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: var(--button-shadow-hover);
}

.btn:focus-visible {
    outline: 0;
    box-shadow: var(--button-shadow-hover), 0 0 0 0.22rem rgba(184, 156, 104, 0.2);
}

.btn-primary,
.btn-glow,
.btn-primary:active {
    color: #faf5ec;
    border-color: rgba(184, 156, 104, 0.38);
}

.btn-primary:hover,
.btn-glow:hover,
.btn-primary:focus,
.btn-glow:focus {
    color: #fffaf1;
    border-color: rgba(184, 156, 104, 0.48);
    background-image: linear-gradient(135deg, #74825f, #616d50);
}

.btn-outline-light,
.btn-outline-primary,
.btn-outline-info {
    background: linear-gradient(180deg, var(--button-surface), var(--button-surface-strong));
    border-color: rgba(107, 119, 87, 0.22);
    color: var(--button-ink);
}

.btn-outline-light:hover,
.btn-outline-primary:hover,
.btn-outline-info:hover,
.btn-outline-light:focus,
.btn-outline-primary:focus,
.btn-outline-info:focus {
    background: linear-gradient(180deg, #fbf7ef, #f2eadc);
    border-color: rgba(184, 156, 104, 0.42);
    color: var(--button-olive-deep);
}

.btn-outline-danger {
    background: linear-gradient(180deg, #f7efe7, var(--button-danger-soft));
    border-color: rgba(157, 112, 95, 0.22);
    color: var(--button-danger);
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
    background: linear-gradient(180deg, #fbf4ed, #f4e5dd);
    border-color: rgba(184, 156, 104, 0.36);
    color: #8b624f;
}

.btn-outline-light,
.btn-outline-primary,
.btn-outline-info,
.btn-outline-danger {
    border-radius: 18px;
}

.btn-sm {
    padding: 0.58rem 1rem;
    border-radius: 16px;
}

.btn-lg {
    padding: 0.95rem 1.65rem;
    border-radius: 20px;
}

.btn i {
    position: relative;
    z-index: 1;
}

.btn span,
.btn strong,
.btn small,
.btn {
    position: relative;
    z-index: 1;
}

.payment-settings-page {
    display: grid;
    gap: 1.5rem;
}

.payment-settings-hero,
.payment-surface-card {
    background: linear-gradient(180deg, #fbfaf7, #f3efe7);
    border: 1px solid rgba(186, 171, 140, 0.22);
    box-shadow: 0 24px 50px rgba(155, 141, 115, 0.12);
    color: #5a5d50;
}

.payment-settings-hero {
    border-radius: 36px;
    padding: 2rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.payment-settings-hero::after,
.payment-surface-card::before {
    content: '';
    position: absolute;
    pointer-events: none;
}

.payment-settings-hero::after {
    inset: auto -30px -55px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 154, 102, 0.22), transparent 68%);
}

.payment-settings-kicker,
.payment-inline-kicker {
    color: #9a845e;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.payment-settings-title,
.payment-section-title,
.payment-subpanel-title {
    color: #4f5646;
    font-weight: 800;
}

.payment-settings-title {
    font-size: clamp(2rem, 2.3vw, 3.2rem);
}

.payment-settings-copy,
.payment-section-copy {
    color: #7a7d71;
    line-height: 1.9;
    max-width: 760px;
}

.payment-brand-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-end;
}

.payment-brand-chip,
.payment-card-badge,
.payment-inline-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(186, 171, 140, 0.22);
    color: #5e6450;
    box-shadow: 0 10px 22px rgba(158, 144, 114, 0.08);
}

.payment-brand-chip i,
.payment-guideline-row i,
.secure-input-shell i {
    color: #b08f57;
}

.payment-surface-card {
    position: relative;
    border-radius: 34px;
    padding: 2rem;
    overflow: hidden;
}

.payment-surface-card::before {
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 30%, rgba(184, 156, 104, 0.06));
}

.payment-section-head,
.payment-subpanel-head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.payment-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.82rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
}

.payment-status-pill span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.payment-status-pill.is-active {
    background: rgba(30, 122, 95, 0.12);
    color: #1c6e55;
    border: 1px solid rgba(30, 122, 95, 0.18);
}

.payment-status-pill.is-active span {
    background: #1c8d6b;
}

.payment-status-pill.is-idle {
    background: rgba(181, 146, 86, 0.12);
    color: #9d7744;
    border: 1px solid rgba(181, 146, 86, 0.2);
}

.payment-status-pill.is-idle span {
    background: #b18f59;
}

.lux-toggle-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(186, 171, 140, 0.2);
    cursor: pointer;
}

.lux-toggle-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lux-toggle-switch {
    width: 68px;
    height: 38px;
    flex: 0 0 68px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ded7c9, #cec5b3);
    position: relative;
    box-shadow: inset 0 4px 10px rgba(109, 100, 78, 0.14);
    transition: background 0.2s ease;
}

.lux-toggle-switch::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fffefd, #f2ebe1);
    box-shadow: 0 8px 14px rgba(105, 94, 69, 0.18);
    transition: transform 0.22s ease;
}

.lux-toggle-row input:checked + .lux-toggle-switch {
    background: linear-gradient(135deg, #177a60, #23916f);
}

.lux-toggle-row input:checked + .lux-toggle-switch::after {
    transform: translateX(-30px);
}

.lux-toggle-copy {
    display: grid;
    gap: 0.2rem;
}

.lux-toggle-copy strong {
    color: #4f5646;
    font-size: 1rem;
}

.lux-toggle-copy small {
    color: #7d8075;
    line-height: 1.7;
}

.payment-form-label {
    color: #6a6c61;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.secure-input-shell {
    position: relative;
}

.secure-input-shell i {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 2;
}

.payment-light-input,
.payment-light-input:focus {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(182, 168, 138, 0.22);
    color: #52574a;
    border-radius: 22px;
    min-height: 58px;
    padding: 0.95rem 1rem 0.95rem 2.8rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 10px 22px rgba(158, 144, 114, 0.06);
}

.payment-light-input:focus {
    border-color: rgba(181, 146, 86, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 0 0 0.2rem rgba(181, 146, 86, 0.12);
}

.payment-light-input::placeholder {
    color: #9c998f;
}

.payment-light-textarea {
    min-height: 124px;
    resize: vertical;
}

.payment-config-hint {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(184, 156, 104, 0.08);
    color: #7a735f;
    border: 1px solid rgba(184, 156, 104, 0.14);
}

.payment-subpanel {
    position: relative;
    z-index: 1;
    padding: 1.4rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(186, 171, 140, 0.18);
}

.btn-payment-save,
.btn-payment-test {
    border: 0;
    min-width: 190px;
    justify-content: center;
    gap: 0.55rem;
}

.btn-payment-save {
    background: linear-gradient(135deg, #167a5e, #229170);
    color: #fbfaf4;
    box-shadow: 0 16px 28px rgba(31, 122, 96, 0.2);
}

.btn-payment-save:hover,
.btn-payment-save:focus {
    background: linear-gradient(135deg, #1a8567, #27997a);
    color: #fffdf8;
}

.btn-payment-test {
    background: linear-gradient(135deg, #c3a367, #b48f53);
    color: #fffaf0;
    box-shadow: 0 16px 28px rgba(180, 143, 83, 0.18);
}

.btn-payment-test:hover,
.btn-payment-test:focus {
    background: linear-gradient(135deg, #c9ab72, #bb995f);
    color: #fffdf7;
}

.payment-inline-meta {
    display: grid;
    gap: 0.1rem;
    border-radius: 22px;
}

.payment-inline-meta span,
.payment-overview-item span {
    color: #8e8a7f;
    font-size: 0.82rem;
}

.payment-inline-meta strong,
.payment-overview-item strong {
    color: #545a4d;
}

.payment-overview-stack,
.payment-guidelines {
    display: grid;
    gap: 0.9rem;
    position: relative;
    z-index: 1;
}

.payment-overview-item,
.payment-guideline-row {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(186, 171, 140, 0.18);
}

.payment-guideline-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #74786b;
    line-height: 1.75;
}

@media (max-width: 992px) {
    .payment-settings-hero,
    .payment-section-head,
    .payment-subpanel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-brand-showcase {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .payment-settings-hero,
    .payment-surface-card {
        padding: 1.4rem;
        border-radius: 26px;
    }

    .lux-toggle-row {
        align-items: flex-start;
    }

    .btn-payment-save,
    .btn-payment-test {
        width: 100%;
    }
}

.glow-alert {
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.auth-shell {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    overflow: hidden;
}

.auth-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 7, 12, 0.56), rgba(4, 7, 12, 0.84)),
        linear-gradient(120deg, rgba(184, 156, 104, 0.18), transparent 42%),
        url('../images/login-bg.jpeg') center center / cover no-repeat,
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.18), transparent 22%),
        radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.22), transparent 20%),
        radial-gradient(circle at 50% 80%, rgba(56, 189, 248, 0.15), transparent 24%);
    animation: drift 12s ease-in-out infinite alternate;
    transform: scale(1.03);
}

.auth-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 7, 12, 0.72), rgba(4, 7, 12, 0.1) 35%, rgba(4, 7, 12, 0.62));
}

.auth-card {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 2rem;
    overflow: hidden;
    border: 1px solid rgba(184, 156, 104, 0.2);
    background: linear-gradient(180deg, rgba(5, 10, 18, 0.86), rgba(5, 10, 18, 0.93));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.auth-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 35%);
    pointer-events: none;
}

.auth-ribbon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(147, 197, 253, 0.08);
    color: #dbeafe;
}

.auth-ribbon span {
    color: var(--muted);
    font-size: 0.85rem;
}

.auth-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.auth-highlight-box {
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(3, 10, 22, 0.82);
    border: 1px solid rgba(147, 197, 253, 0.08);
}

.auth-highlight-box span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
}

.auth-highlight-box strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1rem;
}

.demo-credentials {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(3, 10, 22, 0.85);
    color: var(--muted);
}

.service-card {
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -10px;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.14), transparent 70%);
    pointer-events: none;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.price-chip {
    white-space: nowrap;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.14);
    color: #93c5fd;
}

.service-select-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.luxury-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-pick {
    position: relative;
    display: block;
    cursor: pointer;
}

.service-pick input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.service-pick .service-price-input {
    position: relative;
    opacity: 1;
    z-index: 2;
    padding: 0.65rem 0.8rem;
    border-radius: 14px;
}

.service-pick span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(147, 197, 253, 0.16);
    background: rgba(3, 10, 22, 0.8);
    min-height: 126px;
    justify-content: center;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-pick input:checked + span {
    border-color: rgba(14, 165, 233, 0.6);
    background: rgba(14, 165, 233, 0.15);
    transform: translateY(-2px);
}

.service-chip-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.55rem;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.12);
    color: #7dd3fc;
    font-style: normal;
}

.total-box {
    min-width: 180px;
    padding: 0.9rem 1.2rem;
    border-radius: 20px;
    background: rgba(14, 165, 233, 0.12);
    color: white;
}

.total-box span {
    display: block;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.total-box strong {
    font-size: 1.4rem;
}

.timeline-list,
.stack-list {
    display: grid;
    gap: 0.9rem;
}

.timeline-item,
.stack-row {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(3, 10, 22, 0.85);
    border: 1px solid rgba(147, 197, 253, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.sub-panel {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(3, 10, 22, 0.78);
    border: 1px solid rgba(147, 197, 253, 0.12);
}

.lux-section-shell {
    border-radius: 24px;
    padding: 1.1rem;
}

.lux-section-head {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.lux-section-icon,
.order-avatar {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.2), rgba(37, 99, 235, 0.1));
    color: #dbeafe;
    border: 1px solid rgba(125, 211, 252, 0.12);
}

.upload-shell {
    display: grid;
    gap: 0.75rem;
    padding: 0.95rem;
    border-radius: 20px;
}

.upload-shell > i {
    color: #7dd3fc;
}

.order-preview-card {
    border-radius: 26px;
    padding: 1.1rem;
}

.order-preview-head {
    margin-bottom: 1rem;
}

.order-card-luxury {
    position: relative;
    overflow: hidden;
}

.order-card-top,
.order-actions-row,
.order-client-block,
.orders-hero-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-client-block {
    justify-content: flex-start;
}

.order-total-pill,
.order-method-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.16);
    color: #dbeafe;
}

.order-total-pill span,
.order-detail-label {
    color: var(--muted);
    font-size: 0.82rem;
}

.order-total-pill strong,
.order-detail-value {
    font-size: 1.08rem;
    font-weight: 700;
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
}

.order-detail-box {
    border-radius: 22px;
    padding: 1rem;
}

.order-detail-label i,
.order-method-chip i {
    margin-left: 0.35rem;
}

.order-actions-row {
    margin-top: 1rem;
}

.hero-search-input {
    min-width: min(100%, 320px);
}

.compact-metric-card {
    height: 100%;
}

.timeline-item-rich {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.timeline-item-rich strong {
    min-width: 28px;
    color: #7dd3fc;
}

.small-title {
    font-size: 1rem;
}

.badge-card {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.14);
    color: #bfdbfe;
    border: 1px solid rgba(14, 165, 233, 0.25);
    font-size: 0.85rem;
}

.tracking-map-shell {
    padding: 1rem;
    border-radius: 24px;
    background: rgba(3, 10, 22, 0.76);
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.tracking-map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.users-location-map {
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.badge-card-warning {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fde68a;
}

.stripe-element {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(3, 10, 22, 0.9);
    border: 1px solid rgba(147, 197, 253, 0.14);
    min-height: 52px;
}

.result-shell {
    min-height: calc(100vh - 120px);
    display: grid;
    place-items: center;
}

.result-card {
    width: min(100%, 760px);
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid var(--panel-border);
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.18), transparent 28%),
        rgba(11, 20, 36, 0.92);
    box-shadow: var(--shadow);
    text-align: center;
}

.result-success {
    border-color: rgba(34, 197, 94, 0.22);
}

.result-failed {
    border-color: rgba(239, 68, 68, 0.22);
}

.result-cancelled {
    border-color: rgba(245, 158, 11, 0.22);
}

.result-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 24px;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.06);
}

.result-success .result-icon {
    color: #86efac;
    background: rgba(34, 197, 94, 0.12);
}

.result-failed .result-icon {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.12);
}

.result-cancelled .result-icon {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.12);
}

.result-text {
    max-width: 560px;
    margin-inline: auto;
}

.result-summary {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
    text-align: right;
}

.result-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(3, 10, 22, 0.85);
    border: 1px solid rgba(147, 197, 253, 0.08);
}

.stack-row {
    display: flex;
    justify-content: space-between;
}

.status-pill {
    display: inline-flex;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: capitalize;
    font-weight: 700;
}

.status-paid,
.status-completed,
.status-confirmed {
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
}

.status-pending,
.status-awaiting_payment {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
}

.status-failed,
.status-payment_failed {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.image-frame {
    padding: 1rem;
    border-radius: 24px;
    background: rgba(3, 10, 22, 0.8);
}

.table-dark {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.015);
    --bs-table-hover-bg: rgba(14, 165, 233, 0.06);
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.table-dark thead th {
    color: #bfd9ff;
    border: 0;
    font-weight: 700;
    padding-bottom: 0.85rem;
}

.table-dark tbody tr {
    background: rgba(3, 10, 22, 0.72);
}

.table-dark tbody td {
    border-top: 0;
    border-bottom: 0;
    padding: 1rem 0.9rem;
}

.table-dark tbody tr td:first-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.table-dark tbody tr td:last-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.account-split-grid,
.request-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.account-card-list,
.settlement-list,
.request-detail-list {
    display: grid;
    gap: 0.9rem;
}

.account-card,
.settlement-row,
.request-detail-list > div {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(3, 10, 22, 0.78);
    border: 1px solid rgba(147, 197, 253, 0.1);
}

.account-card-head,
.settlement-row,
.request-card-head,
.thermal-total {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.account-card-head small,
.settlement-row small,
.request-detail-list span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.account-card-head span,
.settlement-row span {
    color: #dbeafe;
    font-weight: 800;
}

.account-meta-grid,
.request-detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-meta-grid {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.9rem;
}

.account-meta-grid > div {
    padding: 0.8rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.account-meta-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.account-settle-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
}

.request-card-confirmed {
    border-color: rgba(34, 197, 94, 0.22);
}

.request-service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(14, 165, 233, 0.12);
    color: #93c5fd;
}

.request-detail-wide,
.request-empty {
    grid-column: 1 / -1;
}

.receipt-body {
    background: #f4f4f4;
    color: #000;
    min-height: 100vh;
    display: grid;
    place-items: start center;
    padding: 18px;
}

.receipt-body::before,
.receipt-body::after {
    display: none;
}

.thermal-page {
    width: min(100%, 420px);
}

.receipt-actions {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.receipt-action-link,
.receipt-print-button {
    border: 1px solid #111;
    background: #fff;
    color: #111;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-family: 'Alexandria', sans-serif;
    font-weight: 700;
}

.thermal-receipt {
    width: 80mm;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
    color: #000;
    border: 1px solid #ddd;
    font-size: 12px;
    line-height: 1.55;
}

.thermal-header,
.thermal-footer {
    text-align: center;
}

.thermal-header h1 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 800;
}

.thermal-header p,
.thermal-footer p,
.thermal-notes {
    margin: 2px 0;
}

.thermal-line {
    border-top: 1px dashed #000;
    margin: 8px 0;
}

.thermal-meta {
    display: grid;
    gap: 3px;
}

.thermal-meta div,
.thermal-total {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.thermal-table {
    width: 100%;
    border-collapse: collapse;
}

.thermal-table th,
.thermal-table td {
    padding: 4px 0;
    border-bottom: 1px dotted #999;
    text-align: right;
}

.thermal-table th:last-child,
.thermal-table td:last-child {
    text-align: left;
    white-space: nowrap;
}

.thermal-total {
    font-size: 14px;
    font-weight: 800;
}

@media print {
    @page {
        size: 80mm auto;
        margin: 0;
    }

    .receipt-body {
        display: block;
        padding: 0;
        background: #fff;
    }

    .receipt-actions {
        display: none;
    }

    .thermal-page,
    .thermal-receipt {
        width: 80mm;
        margin: 0;
        border: 0;
    }
}

.reveal-up {
    animation: revealUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes drift {
    from { transform: translate3d(-10px, -8px, 0) scale(1); }
    to { transform: translate3d(10px, 12px, 0) scale(1.05); }
}

@media (max-width: 991px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        min-height: 0;
    }

    .grid-panels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topbar-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .hero-dashboard-grid,
    .order-hero-grid,
    .orders-hero-grid,
    .order-details-grid,
    .account-split-grid,
    .request-grid {
        grid-template-columns: 1fr;
    }

    .lux-chart {
        min-height: 240px;
    }

    .sticky-order-sidebar {
        position: static;
    }

    .hero-dashboard {
        background-position: 68% center;
    }

    .auth-backdrop {
        background-position: 58% center;
    }
}

@media (max-width: 640px) {
    .content-wrap,
    .sidebar,
    .auth-card {
        padding: 1.2rem;
    }

    .grid-panels,
    .service-select-grid {
        grid-template-columns: 1fr;
    }

    .insight-card-grid,
    .luxury-service-grid,
    .lux-chart {
        grid-template-columns: 1fr;
    }

    .lux-chart {
        min-height: 0;
    }

    .lux-bar-track {
        height: 120px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-highlights {
        grid-template-columns: 1fr;
    }

    .topbar-card {
        padding: 1rem;
    }

    .result-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-action-row,
    .hero-stat-row,
    .order-card-top,
    .order-actions-row,
    .orders-hero-side {
        flex-direction: column;
        align-items: stretch;
    }

    .tracking-map-header {
        flex-direction: column;
        align-items: stretch;
    }

    .account-settle-form,
    .account-meta-grid,
    .request-detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    body {
        font-size: 14px;
    }

    body::before,
    body::after,
    .shell-orb {
        display: none;
    }

    .content-wrap,
    .sidebar,
    .auth-shell,
    .auth-card {
        padding: 0.9rem;
    }

    .sidebar::before {
        inset: 0.55rem;
        border-radius: 22px;
    }

    .brand-mark {
        gap: 0.7rem;
    }

    .brand-icon,
    .auth-badge {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1.1rem;
    }

    .brand-title,
    .page-title,
    .hero-title,
    .section-title {
        font-size: 1.15rem;
        line-height: 1.45;
    }

    .brand-subtitle,
    .eyebrow,
    .sidebar-kicker,
    .panel-kicker {
        letter-spacing: 0.08em;
        font-size: 0.68rem;
    }

    .nav-dark,
    .topbar-card,
    .panel,
    .metric-card,
    .service-card,
    .order-card-luxury,
    .order-detail-box,
    .insight-tile,
    .auth-highlight-box,
    .payment-subpanel {
        border-radius: 16px;
    }

    .nav-dark {
        padding: 0.8rem 0.85rem;
    }

    .topbar-user-card,
    .chip-live,
    .total-box,
    .hero-search-input,
    .btn-payment-save,
    .btn-payment-test {
        min-width: 0;
        width: 100%;
    }

    .topbar-user-card,
    .chip-live,
    .total-box {
        border-radius: 16px;
    }

    .topbar-actions,
    .hero-action-row,
    .hero-stat-row,
    .orders-hero-side,
    .order-actions-row,
    .result-row {
        gap: 0.6rem;
    }

    .auth-ribbon,
    .sidebar-overview,
    .topbar-card,
    .auth-card,
    .panel,
    .metric-card,
    .service-card,
    .order-card-luxury,
    .payment-subpanel {
        padding: 0.9rem;
    }

    .auth-highlights,
    .insight-card-grid,
    .grid-panels,
    .order-details-grid,
    .payment-summary-grid,
    .payment-actions-grid,
    .result-summary-grid {
        grid-template-columns: 1fr;
    }

    .lux-bar-track {
        height: 92px;
    }

    .metric-value,
    .order-detail-value,
    .total-box strong {
        font-size: 1rem;
    }

    .table,
    .form-control,
    .form-select,
    .btn,
    .status-pill,
    .demo-credentials {
        font-size: 0.9rem;
    }

    .table-responsive {
        border-radius: 14px;
    }

    .users-location-map {
        min-height: 280px;
    }
}
