/* ==========================================================================
   CSS CUSTOM VARIABLES & GLOBAL RESET (PREMIUM LUXURY DARK EDIT)
   ========================================================================== */
:root {
    --bg-obsidian: #09090b;
    --bg-obsidian-solid: #0d0d10;
    --bg-panel: rgba(18, 18, 22, 0.85);
    --bg-panel-solid: #121215;
    --bg-card: #16161a;
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-glass-active: rgba(229, 169, 59, 0.25);
    
    /* Warm orange-gold accents from reference images */
    --neon-orange: #ff9e24; 
    --neon-orange-rgb: 255, 158, 36;
    --neon-green: #e5a93b; 
    --neon-green-rgb: 229, 169, 59;
    --neon-blue: #ffd166;
    --neon-blue-rgb: 255, 209, 102;
    --neon-red: #ff3b30;
    --neon-purple: #f39c12;
    
    --text-primary: #f8fafc;
    --text-secondary: #8e919a;
    --text-dark: #0c0c0e;
    
    /* Elegant serif header from reference images + clean sans for POS math */
    --font-header: 'Playfair Display', serif;
    --font-tech: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-neon-orange: 0 0 20px rgba(255, 158, 36, 0.25);
    --shadow-neon-green: 0 0 15px rgba(229, 169, 59, 0.2);
    --shadow-neon-blue: 0 0 15px rgba(255, 209, 102, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-orange);
}

body {
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    height: 100vh;
}

/* Luxury Soft Ambient Glow behind simulated viewports */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 75% 20%, rgba(255, 158, 36, 0.06), transparent 50%),
        radial-gradient(circle at 25% 80%, rgba(229, 169, 59, 0.04), transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Global utility colors */
.text-green { color: var(--neon-green) !important; }
.text-orange { color: var(--neon-orange) !important; }
.text-blue { color: var(--neon-blue) !important; }
.text-red { color: var(--neon-red) !important; }
.bg-blue { background-color: var(--neon-blue) !important; }
.bg-green { background-color: var(--neon-green) !important; }
.bg-orange { background-color: var(--neon-orange) !important; }
.hidden { display: none !important; }
.margin-top { margin-top: 20px !important; }
.margin-bottom { margin-bottom: 16px !important; }
.font-bold { font-weight: 700 !important; }

/* ==========================================================================
   SIMULATOR LAYOUT (CONTROL HUB + VIEWPORT)
   ========================================================================== */
.simulator-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    height: 100vh;
    width: 100vw;
}

/* Sidebar Simulator Hub Control Panel */
.control-hub {
    background-color: var(--bg-obsidian-solid);
    border-right: 1px solid var(--border-glass);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

.hub-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
}

.brand-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--neon-orange);
    filter: blur(25px);
    opacity: 0.3;
    z-index: -1;
}

.hub-header h2 {
    font-family: var(--font-header);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-style: italic;
}
.hub-header h2 span {
    color: var(--neon-orange);
    font-family: var(--font-tech);
    font-style: normal;
    font-size: 16px;
    font-weight: 900;
}

.neon-icon-green {
    color: var(--neon-orange);
    filter: drop-shadow(0 0 5px var(--neon-orange));
}

.simulator-modes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: auto;
}

.simulator-modes h3 {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 700;
}

/* Simulator Mode Button Buttons */
.mode-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.mode-btn i {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.mode-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.mode-btn .btn-text .title {
    font-size: 14px;
    font-weight: 600;
}

.mode-btn .btn-text .subtitle {
    font-size: 10px;
    color: var(--text-secondary);
}

.mode-btn:hover {
    border-color: rgba(255, 158, 36, 0.3);
    background: rgba(255, 158, 36, 0.04);
}

.mode-btn:hover i {
    color: var(--neon-orange);
}

.mode-btn.active {
    background: rgba(255, 158, 36, 0.08);
    border-color: var(--neon-orange);
    box-shadow: inset 0 0 12px rgba(255, 158, 36, 0.1), var(--shadow-neon-orange);
}

.mode-btn.active i {
    color: var(--neon-orange);
    filter: drop-shadow(0 0 4px var(--neon-orange));
}

/* Telemetry Stats Panel */
.simulator-telemetry {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-top: 20px;
}

.telemetry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--neon-orange);
    box-shadow: 0 0 8px var(--neon-orange);
    animation: pulse 1.5s infinite;
}

.telemetry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.telemetry-item {
    display: flex;
    flex-direction: column;
}

.telemetry-item .label {
    font-size: 9px;
    color: var(--text-secondary);
}

.telemetry-item .value {
    font-size: 13px;
    font-family: var(--font-tech);
    font-weight: 700;
}

/* Quick Console buttons */
.console-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.console-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 8px 6px;
    font-size: 11px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.console-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.hub-footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
}

.hub-footer p span {
    font-weight: 600;
    color: var(--text-primary);
}

.role-badge {
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cashier-badge { background: rgba(255, 158, 36, 0.15); color: var(--neon-orange); border: 1px solid var(--neon-orange); }
.admin-badge { background: rgba(229, 169, 59, 0.15); color: var(--neon-green); border: 1px solid var(--neon-green); }
.server-badge { background: rgba(255, 209, 102, 0.15); color: var(--neon-blue); border: 1px solid var(--neon-blue); }
.kitchen-badge { background: rgba(243, 156, 18, 0.15); color: var(--neon-purple); border: 1px solid var(--neon-purple); }

/* Main Device Viewport Section */
.device-viewport-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

/* ==========================================================================
   DEVICE HARDWARE FRAMES (TABLET & MOBILE)
   ========================================================================== */
.device-frame-tablet {
    width: 100%;
    max-width: 1080px;
    height: 720px;
    background-color: #0d0d0f;
    border: 20px solid #000;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 30px 80px -15px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 20px rgba(0, 0, 0, 0.9);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
}

.device-frame-tablet .device-camera {
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #222;
    border-radius: 50%;
    z-index: 5;
}

.device-screen {
    width: 100%;
    height: 100%;
    background-color: var(--bg-obsidian);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

/* Mobile shape styling (Inspired by high-end dark food mobile mockups) */
.device-frame-mobile {
    width: 375px;
    height: 720px;
    background-color: #0d0d0f;
    border: 14px solid #000;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 30px 80px -15px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition-smooth);
}

.device-frame-mobile .device-camera {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background-color: #000;
    border-radius: 4px;
    z-index: 5;
}

.device-frame-mobile .device-screen {
    border-radius: 20px;
}

/* ==========================================================================
   APP SCREENS (GLOBAL CONTAINERS)
   ========================================================================== */
.app-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

/* ==========================================================================
   ROLE / LOGIN SYSTEM SCREEN (PREMIUM BLACK CONSOLE)
   ========================================================================== */
.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: radial-gradient(circle at 50% 30%, rgba(255, 158, 36, 0.06), transparent 50%);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.avatar-glow-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-orange);
    box-shadow: var(--shadow-neon-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.avatar-glow-ring i {
    width: 36px;
    height: 36px;
    color: var(--neon-orange);
    filter: drop-shadow(0 0 8px var(--neon-orange));
}

.login-header h1 {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-style: italic;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.login-header p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 4px;
}

.role-selection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    width: 100%;
}

.role-login-card {
    background: #0d0d0f;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.role-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.role-icon-box i {
    width: 22px;
    height: 22px;
}

.role-login-card h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.role-login-card p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.role-auth-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition-fast);
}

.role-login-card:hover {
    transform: translateY(-6px);
    background: #121215;
    border-color: rgba(255, 255, 255, 0.1);
}

.role-login-card:hover .role-icon-box {
    color: var(--neon-orange);
    border-color: var(--neon-orange);
    background: rgba(255, 158, 36, 0.08);
}

/* Card Selection Highlights */
.role-login-card[data-role="Admin"].selected, .role-login-card[data-role="Admin"]:hover {
    border-color: var(--neon-orange);
    box-shadow: 0 15px 35px rgba(255, 158, 36, 0.12);
}
.role-login-card[data-role="Admin"] .role-auth-btn {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
    color: var(--text-dark);
}

.role-login-card[data-role="Cashier"].selected, .role-login-card[data-role="Cashier"]:hover {
    border-color: var(--neon-green);
    box-shadow: 0 15px 35px rgba(229, 169, 59, 0.12);
}
.role-login-card[data-role="Cashier"] .role-auth-btn {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--text-dark);
}

.role-login-card[data-role="Server"].selected, .role-login-card[data-role="Server"]:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 15px 35px rgba(255, 209, 102, 0.12);
}
.role-login-card[data-role="Server"] .role-auth-btn {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: var(--text-dark);
}

.role-login-card[data-role="Kitchen Staff"].selected, .role-login-card[data-role="Kitchen Staff"]:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.12);
}
.role-login-card[data-role="Kitchen Staff"] .role-auth-btn {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    color: var(--text-dark);
}


/* ==========================================================================
   TABLET POS LAYOUT SYSTEM
   ========================================================================== */
.tablet-layout {
    display: grid;
    grid-template-columns: 200px 1fr 340px;
    height: 100%;
}

/* POS Sidebar navigation */
.pos-sidebar {
    background: var(--bg-obsidian-solid);
    border-right: 1px solid var(--border-glass);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
}

.pos-user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px;
}

.cashier-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-orange);
    box-shadow: 0 0 8px rgba(255, 158, 36, 0.2);
}

.pos-user-profile h4 {
    font-size: 12px;
    font-weight: 700;
}

.pos-user-profile span {
    font-size: 10px;
    color: var(--text-secondary);
}

.pos-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: auto;
}

.pos-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition-fast);
}

.pos-nav-item i {
    width: 18px;
    height: 18px;
}

.pos-nav-item:hover, .pos-nav-item.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.pos-nav-item.active {
    border-left: 3px solid var(--neon-orange);
    color: var(--neon-orange);
    background: rgba(255, 158, 36, 0.05);
}

.sidebar-stock-status {
    background: rgba(0,0,0,0.4);
    border-radius: var(--radius-sm);
    padding: 10px;
    border: 1px solid var(--border-glass);
}

.sidebar-stock-status .header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.sidebar-stock-status .header i {
    width: 14px;
    height: 14px;
}

.alert-list-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-alert-item {
    font-size: 10px;
    color: var(--neon-red);
    background: rgba(255, 51, 102, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    animation: flash 2s infinite;
}

/* POS Main Container (Middle Column) */
.pos-main-container {
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.pos-sub-view {
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.25s ease;
}

.pos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.search-bar-container {
    position: relative;
    flex: 1;
}

.search-bar-container i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
}

.search-bar-container input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 12px 14px 12px 42px;
    color: var(--text-primary);
    outline: none;
    font-size: 13px;
    transition: var(--transition-fast);
}

.search-bar-container input:focus {
    border-color: rgba(255, 158, 36, 0.4);
    background-color: rgba(0, 0, 0, 0.6);
}

.table-selector-trigger {
    background-color: var(--bg-panel-solid);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    transition: var(--transition-fast);
}

.table-selector-trigger:hover {
    border-color: var(--neon-orange);
}

.table-selector-trigger i {
    width: 16px;
    height: 16px;
    color: var(--neon-orange);
}

.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.cat-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 8px 16px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.cat-tab:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.1);
}

.cat-tab.active {
    background: var(--neon-orange);
    color: var(--text-dark);
    border-color: var(--neon-orange);
    font-weight: 700;
    box-shadow: var(--shadow-neon-orange);
}

/* ==========================================================================
   VISUALIZATION EFFECTS: FLOATING CARD LAYOUTS
   ========================================================================== */
.juice-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    overflow-y: auto;
    flex: 1;
}

.juice-card {
    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Premium ambient backdrop light disk (dish lighting from references) */
.juice-card-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    transition: var(--transition-smooth);
}

.juice-card .badge-avail {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.juice-card .badge-avail.available {
    background: rgba(229, 169, 59, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(229, 169, 59, 0.2);
}

.juice-card .badge-avail.out-of-stock {
    background: rgba(255, 51, 102, 0.1);
    color: var(--neon-red);
    border: 1px solid rgba(255, 51, 102, 0.2);
}

/* Food float round circle */
.juice-card .item-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #09090b;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 16px;
    color: var(--neon-orange);
    z-index: 1;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.8), 0 4px 10px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

/* Light ring simulation around the dish */
.juice-card .item-icon-circle::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 158, 36, 0.1);
    transition: var(--transition-smooth);
    animation: spinning 25s linear infinite;
}

.juice-card .item-icon-circle i {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.juice-card h4 {
    font-family: var(--font-header);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    z-index: 1;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

.juice-card .desc {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    z-index: 1;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.juice-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 10px;
}

.juice-card .price-row .price {
    font-family: var(--font-tech);
    font-size: 13px;
    font-weight: 700;
    color: var(--neon-orange);
}

.juice-card .price-row i {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

/* Interactive hover lifting and glowing */
.juice-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 158, 36, 0.25);
    background: #141418;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.7),
        0 0 15px rgba(255, 158, 36, 0.1);
}

.juice-card:hover .juice-card-glow {
    opacity: 0.15;
}

.juice-card:hover .item-icon-circle {
    color: var(--text-dark);
    background: var(--neon-orange);
    box-shadow: 0 0 15px var(--neon-orange);
    transform: scale(1.1) rotate(5deg);
}

.juice-card:hover .item-icon-circle::after {
    border-color: rgba(0,0,0,0.3);
}

.juice-card:hover .price-row i {
    color: var(--neon-orange);
    transform: scale(1.1);
}

.juice-card.out-of-stock {
    opacity: 0.4;
    pointer-events: none;
}

/* ==========================================================================
   TABLE SEATING LAYOUT
   ========================================================================== */
.section-title {
    margin-bottom: 24px;
}
.section-title h2 {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 700;
}
.section-title p {
    color: var(--text-secondary);
    font-size: 12px;
}

.tables-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}

.table-cell {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.table-cell .number {
    font-family: var(--font-tech);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.table-cell .status {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.table-cell .meta {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.table-cell:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Table statuses states */
.table-cell.vacant {
    border-left: 4px solid var(--text-secondary);
}
.table-cell.occupied {
    border-left: 4px solid var(--neon-orange);
    background: rgba(255, 158, 36, 0.02);
}
.table-cell.occupied .status {
    color: var(--neon-orange);
}
.table-cell.pending-payment {
    border-left: 4px solid var(--neon-blue);
    background: rgba(255, 209, 102, 0.02);
    animation: pulseGlowOrange 2s infinite;
}
.table-cell.pending-payment .status {
    color: var(--neon-blue);
}

.table-cell.active-seating {
    border: 1.5px solid var(--neon-orange) !important;
    box-shadow: var(--shadow-neon-orange);
}

/* POS Database Table formatting */
.recent-orders-table-wrapper {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pos-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pos-table th {
    background: rgba(0, 0, 0, 0.4);
    padding: 14px 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-glass);
}

.pos-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-glass);
    font-size: 13px;
    vertical-align: middle;
}

.pos-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pos-table .status-pill {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pill.pending { background: rgba(255, 158, 36, 0.15); color: var(--neon-orange); border: 1px solid var(--neon-orange); }
.status-pill.preparing { background: rgba(229, 169, 59, 0.15); color: var(--neon-green); border: 1px solid var(--neon-green); }
.status-pill.ready { background: rgba(255, 209, 102, 0.15); color: var(--neon-blue); border: 1px solid var(--neon-blue); }
.status-pill.delivered { background: rgba(255, 255, 255, 0.15); color: var(--text-primary); border: 1px solid var(--text-primary); }

.pos-table .action-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.pos-table .action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255,255,255,0.15);
}

/* ==========================================================================
   CART & NUMERICAL KEYPAD AREA (RIGHT SIDEBAR)
   ========================================================================== */
.pos-cart-panel {
    background-color: var(--bg-panel-solid);
    border-left: 1px solid var(--border-glass);
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-glass);
}

.cart-header h3 {
    font-size: 14px;
    font-weight: 700;
}

.clear-cart-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.clear-cart-btn:hover {
    color: var(--neon-red);
}

/* Cart Items Container */
.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 150px;
    color: var(--text-secondary);
    text-align: center;
}

.empty-cart-message i {
    width: 32px;
    height: 32px;
}

.cart-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.cart-item.selected-item {
    border-color: var(--neon-orange);
    background: rgba(255, 158, 36, 0.04);
}

.cart-item .info {
    flex: 1;
    cursor: pointer;
}

.cart-item .info h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #fff;
}

.cart-item .info .opts {
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.cart-item .info .opts span {
    background: rgba(255, 255, 255, 0.04);
    padding: 1px 6px;
    border-radius: 3px;
    border: 1px solid var(--border-glass);
}

.cart-item .actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item .qty-label {
    font-family: var(--font-tech);
    font-size: 13px;
    font-weight: 700;
    width: 24px;
    text-align: center;
}

.cart-item .item-price {
    font-family: var(--font-tech);
    font-size: 13px;
    font-weight: 700;
    color: var(--neon-orange);
    margin-left: 8px;
    min-width: 50px;
    text-align: right;
}

.cart-item .item-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item .item-btn i {
    width: 12px;
    height: 12px;
}

.cart-item .item-btn:hover {
    background: var(--neon-orange);
    color: var(--text-dark);
}

/* Modifiers Drawer Popup overlaying the cart */
.cart-modifiers-drawer {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f0f12;
    border-top: 1px solid var(--border-glass-active);
    z-index: 8;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: slideUp 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 8px;
}

.close-drawer-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.selected-item-display {
    padding: 10px 0;
    font-family: var(--font-header);
    font-style: italic;
    font-weight: 700;
    color: var(--neon-orange);
    font-size: 15px;
}

.modifiers-groups {
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 4px;
}

.modifier-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modifier-group label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modifier-selector-buttons {
    display: flex;
    gap: 6px;
}

.mod-select-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.mod-select-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.1);
}

.mod-select-btn.active {
    background: rgba(255, 158, 36, 0.15);
    border-color: var(--neon-orange);
    color: var(--neon-orange);
}

.modifier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.topping-checkbox-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.topping-checkbox-card i {
    width: 12px;
    height: 12px;
}

.topping-checkbox-card:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.1);
}

.topping-checkbox-card.active {
    background: rgba(229, 169, 59, 0.15);
    border-color: var(--neon-green);
    color: var(--neon-green);
    font-weight: 700;
}

.btn-save-modifiers {
    background: var(--neon-orange);
    border: none;
    color: var(--text-dark);
    font-weight: 700;
    padding: 12px;
    width: 100%;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-top: 10px;
    box-shadow: var(--shadow-neon-orange);
}

/* Customer Registration Row */
.cart-customer-section {
    border-top: 1px solid var(--border-glass);
    padding: 8px 0;
}

.customer-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
}

.customer-row i {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
}

.customer-row input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    outline: none;
    font-size: 12px;
    flex: 1;
}

.search-customer-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}
.search-customer-btn:hover { color: var(--neon-orange); }

.customer-status-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(229, 169, 59, 0.08);
    border: 1px solid rgba(229, 169, 59, 0.18);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    margin-top: 6px;
    font-size: 11px;
    animation: fadeIn 0.2s ease;
}

.customer-status-banner .customer-name {
    color: var(--neon-green);
    font-weight: 600;
}

/* Cart Calculations Layout */
.cart-totals {
    border-top: 1px solid var(--border-glass);
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
    align-items: center;
}

.total-row span:last-child {
    font-family: var(--font-tech);
    color: var(--text-primary);
}

.discount-input-box {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 11px;
    margin-left: auto;
    margin-right: 8px;
}

.discount-input-box input {
    background: transparent;
    border: none;
    width: 28px;
    color: var(--neon-orange);
    text-align: center;
    outline: none;
}

.total-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 800;
    border-top: 1px dashed var(--border-glass);
    padding-top: 8px;
    margin-top: 2px;
}

.total-final span:last-child {
    font-family: var(--font-tech);
    color: var(--neon-orange);
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 158, 36, 0.2);
}

/* Numpad Keypad */
.cart-numpad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.numpad-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    font-weight: 700;
    font-family: var(--font-tech);
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition-fast);
}

.numpad-btn:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}

.numpad-btn.control-val {
    background: rgba(255,255,255,0.01);
    font-size: 10px;
    color: var(--text-secondary);
}

.numpad-btn.span-two {
    grid-column: span 2;
    background: var(--neon-orange);
    color: var(--text-dark);
    font-size: 11px;
    font-family: var(--font-body);
}
.numpad-btn.span-two:hover {
    background: #ff8800;
}

/* Register Action payment buttons */
.cart-actions-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.pos-pay-btn {
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.pos-pay-btn i {
    width: 14px;
    height: 14px;
}

.btn-orange { background-color: var(--neon-orange); box-shadow: var(--shadow-neon-orange); }
.btn-orange:hover { background-color: #ffb03b; }

.btn-green { background-color: var(--neon-green); box-shadow: var(--shadow-neon-green); }
.btn-green:hover { background-color: #ffb03b; }

.btn-blue { background-color: var(--neon-blue); box-shadow: var(--shadow-neon-blue); }
.btn-blue:hover { background-color: #ffd166; }

.btn-purple {
    background-color: var(--neon-orange);
    color: var(--text-dark);
    box-shadow: var(--shadow-neon-orange);
}
.btn-purple:hover { background-color: #ffb03b; }

.pos-pay-btn.span-all {
    grid-column: span 3;
    margin-top: 6px;
    padding: 12px;
}

/* ==========================================================================
   KITCHEN DISPLAY SYSTEM (KDS)
   ========================================================================== */
.kds-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kds-header {
    background: var(--bg-panel-solid);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kds-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kds-header .logo h1 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
}

.kds-meta {
    display: flex;
    gap: 20px;
}

.kds-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kds-stat-item .label {
    font-size: 11px;
    color: var(--text-secondary);
}

.kds-stat-item .value {
    font-family: var(--font-tech);
    font-size: 18px;
    font-weight: 700;
}

/* Tickets Grid columns */
.kds-columns-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px;
    flex: 1;
    overflow: hidden;
}

.kds-column {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kds-column .column-header {
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kds-column .column-header h3 {
    font-family: var(--font-tech);
    font-size: 11px;
    letter-spacing: 0.5px;
}

.kds-column .count-badge {
    background: var(--neon-orange);
    color: var(--text-dark);
    font-family: var(--font-tech);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
}

.kds-cards-stack {
    padding: 12px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* KDS Kitchen Ticket Card - Solid Obsidian Slabs */
.kds-ticket-card {
    background: #09090b;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

/* Soft KDS backlights */
.kds-ticket-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 0 0px transparent;
    z-index: -1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.kds-ticket-card:hover {
    border-color: rgba(255, 158, 36, 0.2);
}

.kds-ticket-card.age-old {
    border-color: var(--neon-red) !important;
    animation: ticketGlowRed 3s infinite;
}

.kds-ticket-card .ticket-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border-glass);
    padding-bottom: 6px;
}

.kds-ticket-card .ticket-id {
    font-weight: 700;
    font-family: var(--font-tech);
}

.kds-ticket-card .ticket-timer {
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 11px;
}

.kds-ticket-card .ticket-table {
    font-size: 12px;
    color: var(--neon-orange);
    font-weight: 700;
}

.kds-ticket-card .ticket-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kds-ticket-item {
    font-size: 13px;
    line-height: 1.4;
}

.kds-ticket-item .qty {
    font-weight: 800;
    color: var(--neon-orange);
    margin-right: 6px;
}

.kds-ticket-item .mods {
    display: block;
    font-size: 10px;
    color: var(--neon-green);
    padding-left: 18px;
}

.kds-ticket-card .ticket-actions {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.kds-ticket-btn {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 8px 0;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.kds-ticket-btn:hover {
    background: var(--neon-orange);
    color: var(--text-dark);
    border-color: var(--neon-orange);
}

.kds-ticket-btn.btn-ready:hover {
    background: var(--neon-green);
    color: var(--text-dark);
    border-color: var(--neon-green);
}

/* ==========================================================================
   BACKOFFICE PORTAL & REPORTS SYSTEM
   ========================================================================== */
.backoffice-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 100%;
}

.backoffice-sidebar {
    background: var(--bg-obsidian-solid);
    border-right: 1px solid var(--border-glass);
    padding: 20px 14px;
}

.portal-branding {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 4px 8px;
}
.portal-branding h3 {
    font-family: var(--font-header);
    font-size: 16px;
    font-style: italic;
}

.bo-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bo-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition-fast);
}

.bo-nav-item:hover, .bo-nav-item.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.02);
}

.bo-nav-item.active {
    color: var(--neon-orange);
    background: rgba(255, 158, 36, 0.05);
    border-left: 3px solid var(--neon-orange);
}

.backoffice-content-panel {
    padding: 20px;
    overflow-y: auto;
}

.bo-sub-view {
    animation: fadeIn 0.3s ease;
}

.bo-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.bo-title-bar h2 {
    font-family: var(--font-header);
    font-size: 24px;
}
.bo-title-bar p {
    color: var(--text-secondary);
    font-size: 12px;
}

.time-refresh-badge {
    background: rgba(255, 158, 36, 0.1);
    color: var(--neon-orange);
    border: 1px solid rgba(255, 158, 36, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.add-menu-item-btn {
    background: var(--neon-orange);
    color: var(--text-dark);
    font-weight: 700;
    padding: 10px 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-neon-orange);
    transition: var(--transition-smooth);
}
.add-menu-item-btn:hover {
    background: #ff8800;
    transform: translateY(-2px);
}

/* Dashboard Analytics Grid */
.analytics-kpis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.kpi-card {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px;
}

.kpi-card .header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.kpi-card .header i {
    width: 16px;
    height: 16px;
}

.kpi-card .value {
    font-family: var(--font-tech);
    font-size: 22px;
    font-weight: 700;
}

.kpi-card .subtext {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

/* Custom Chart Split Panels */
.analytics-charts-split {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 16px;
}

.chart-panel-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(10px);
}

.chart-panel-card h3 {
    font-family: var(--font-header);
    font-size: 16px;
    margin-bottom: 16px;
}

.svg-chart-container {
    width: 100%;
    margin-top: 10px;
}

.neon-line-chart {
    overflow: visible;
}

.top-selling-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.top-selling-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.top-selling-item .meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.top-selling-item .meta .qty {
    font-weight: 700;
    color: var(--neon-orange);
}

.top-selling-item .bar-wrapper {
    background: rgba(255,255,255,0.03);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.top-selling-item .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-green));
    border-radius: 3px;
    box-shadow: 0 0 8px var(--neon-orange);
}

/* Menu manager view styles */
.menu-editor-table-wrapper {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* Inventory section view styles */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.inventory-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inventory-card .meta {
    display: flex;
    justify-content: space-between;
}

.inventory-card h4 {
    font-weight: 700;
}

.inventory-card .amount {
    font-family: var(--font-tech);
    font-size: 16px;
    font-weight: 700;
}

.inventory-card .stock-bar-container {
    background: rgba(0,0,0,0.3);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.inventory-card .stock-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.inventory-card .stock-bar-fill.normal {
    background-color: var(--neon-orange);
    box-shadow: var(--shadow-neon-orange);
}

.inventory-card .stock-bar-fill.low {
    background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
    animation: flash 1.5s infinite;
}

.inventory-card .low-alert-badge {
    background: rgba(255, 51, 102, 0.08);
    color: var(--neon-red);
    border: 1px solid var(--neon-red);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

/* Loyalty Audit reports splits */
.reports-split-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.reports-column-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.reports-column-card h3 {
    font-family: var(--font-header);
    font-size: 16px;
    margin-bottom: 16px;
}

.customer-loyalty-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.customer-loyalty-row {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-loyalty-row .info {
    display: flex;
    flex-direction: column;
}

.customer-loyalty-row .info .phone {
    font-size: 11px;
    color: var(--text-secondary);
}

.customer-loyalty-row .pts {
    font-family: var(--font-tech);
    font-weight: 700;
    color: var(--neon-orange);
    background: rgba(255, 158, 36, 0.08);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.peak-hours-graph {
    margin-top: 10px;
}

.vertical-bars-container {
    display: flex;
    height: 120px;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 8px;
}

.peak-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}

.peak-bar-item .bar-fill {
    width: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 3px 3px 0 0;
    transition: var(--transition-smooth);
}

.peak-bar-item .bar-fill.highlight {
    background: var(--neon-orange);
    box-shadow: var(--shadow-neon-orange);
}

.peak-bar-item .label {
    font-size: 9px;
    color: var(--text-secondary);
    margin-top: 6px;
}

.staff-performance-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.staff-perf-row {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.staff-perf-row .staff-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.staff-perf-row .name {
    font-weight: 600;
}

.staff-perf-row .badge {
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 3px;
}

.staff-perf-row .value {
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 12px;
}


/* ==========================================================================
   MOBILE CUSTOMER QR SELF-ORDER VIEW (375x720 Viewport Mockup)
   ========================================================================== */
.mobile-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-obsidian);
}

.mobile-header {
    background-color: var(--bg-obsidian-solid);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 16px;
}

.mobile-logo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo-bar .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo-bar h3 {
    font-family: var(--font-header);
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
}

.mobile-logo-bar p {
    font-size: 10px;
    font-weight: 600;
}

.user-avatar-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.mobile-promo-banner {
    background: linear-gradient(135deg, rgba(255, 158, 36, 0.1), rgba(229, 169, 59, 0.02));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    margin: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-promo-banner .discount-pill {
    background: var(--neon-orange);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.mobile-promo-banner h2 {
    font-family: var(--font-header);
    font-size: 18px;
    margin-top: 6px;
    margin-bottom: 2px;
}

.mobile-promo-banner p {
    font-size: 10px;
    color: var(--text-secondary);
}

.banner-juice-icon i {
    width: 32px;
    height: 32px;
    color: var(--neon-orange);
    filter: drop-shadow(0 0 6px var(--neon-orange));
}

.mobile-categories {
    display: flex;
    gap: 8px;
    margin: 0 12px 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.mob-cat-btn {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 6px 14px;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.mob-cat-btn.active {
    background: var(--neon-orange);
    color: var(--text-dark);
    border-color: var(--neon-orange);
    font-weight: 700;
}

.mobile-menu-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 12px 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mobile Juice Card row layout with soft glowing visual disks */
.mobile-drink-row {
    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.mobile-drink-row .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #09090b;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-orange);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.8);
    position: relative;
}

.mobile-drink-row .icon-box::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,158,36,0.1);
}

.mobile-drink-row .details {
    flex: 1;
}

.mobile-drink-row .details h4 {
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.mobile-drink-row .details p {
    font-size: 10px;
    color: var(--text-secondary);
}

.mobile-drink-row .price-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.mobile-drink-row .price {
    font-family: var(--font-tech);
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-orange);
}

.mobile-add-btn {
    background: var(--neon-orange);
    color: var(--text-dark);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-neon-orange);
}

.mobile-drink-row:hover {
    transform: scale(1.02);
    border-color: rgba(255, 158, 36, 0.2);
    background: #141418;
}

/* Sticky tray indicating active order */
.mobile-cart-sticky-tray {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 16, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-glass-active);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 15;
    animation: slideUp 0.3s ease;
}

.mobile-cart-sticky-tray .tray-info {
    display: flex;
    flex-direction: column;
}

.mobile-cart-sticky-tray .tray-counter {
    font-size: 11px;
    color: var(--text-secondary);
}

.mobile-cart-sticky-tray .tray-total {
    font-family: var(--font-tech);
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-orange);
}

.tray-checkout-btn {
    background: var(--neon-orange);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    box-shadow: var(--shadow-neon-orange);
}

/* Bottom sliding sheets for Mobile Checkout */
.mobile-checkout-sheet {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d0d10;
    border-top: 2px solid var(--neon-orange);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sheet-handle {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    margin: 8px auto 0;
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-glass);
}

.sheet-header h3 {
    font-family: var(--font-header);
    font-size: 16px;
}

.sheet-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
}

.sheet-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-summary-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 10px;
}
.order-summary-box h4 {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.mobile-order-items-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mob-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.mob-summary-item .name span {
    color: var(--text-secondary);
    font-size: 10px;
    margin-left: 4px;
}

.mobile-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-input-group label {
    font-size: 11px;
    color: var(--text-secondary);
}
.mobile-input-group input {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 10px;
    color: var(--text-primary);
    outline: none;
    font-size: 12px;
}

.mobile-payment-selection label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: block;
}

.payment-grid-mob {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pay-mob-option {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.pay-mob-option.active {
    background: rgba(255, 158, 36, 0.08);
    border-color: var(--neon-orange);
    color: var(--neon-orange);
}

.totals-summary-mob {
    border-top: 1px dashed var(--border-glass);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.totals-summary-mob .row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.mob-submit-order-btn {
    background: var(--neon-orange);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-neon-orange);
    margin-top: 10px;
}


/* ==========================================================================
   MODAL DIALOG OVERLAYS & GLASS LAYOUTS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(4, 5, 8, 0.9);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease;
}

.modal-card {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-glass-active);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.modal-header h2 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 700;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}
.modal-close-btn:hover { color: var(--neon-red); }

/* UPI Quick QR modal content */
.upi-body {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.qr-container {
    position: relative;
    background: #fff;
    padding: 14px;
    border-radius: var(--radius-md);
}

.qr-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0f1218;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-orange);
    border: 2.5px solid #fff;
}

.upi-invoice-details .amount-glow {
    font-family: var(--font-tech);
    font-size: 28px;
    font-weight: 800;
    color: var(--neon-orange);
    text-shadow: 0 0 12px rgba(255, 158, 36, 0.3);
}

.verify-payment-btn {
    background: var(--neon-orange);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-neon-orange);
}

/* ==========================================================================
   THERMAL RECEIPT PAPER DESIGN
   ========================================================================== */
.receipt-card-layout {
    max-width: 360px;
    background: #121215;
}

.receipt-viewport-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding: 4px;
    background: #000;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.thermal-receipt {
    background-color: #f6f6f2;
    color: #1a1a1a;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    padding: 20px 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.thermal-receipt .receipt-header {
    text-align: center;
}
.thermal-receipt h2 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
}

.thermal-receipt p {
    margin-bottom: 2px;
    font-size: 11px;
}

.thermal-receipt .separator {
    letter-spacing: -1.5px;
    margin: 6px 0;
}

.thermal-receipt h3 {
    font-size: 13px;
    font-weight: 700;
    margin: 8px 0;
}

.thermal-receipt .receipt-items-list {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.receipt-item-row-print {
    display: flex;
    justify-content: space-between;
}

.receipt-item-row-print .mods-print {
    display: block;
    font-size: 9px;
    color: #555;
    padding-left: 14px;
}

.receipt-calculation {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.receipt-calculation .row {
    display: flex;
    justify-content: space-between;
}

.receipt-calculation .font-large {
    font-size: 14px;
    font-weight: 900;
}

.receipt-footer {
    text-align: center;
    margin-top: 14px;
}

.receipt-qr-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.receipt-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.print-dialog-btn {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass-active);
    color: var(--text-primary);
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.print-dialog-btn:hover {
    background: rgba(255,255,255,0.08);
}

.btn-close-receipt {
    background-color: var(--neon-orange);
    color: var(--text-dark);
    border-color: var(--neon-orange);
    box-shadow: var(--shadow-neon-orange);
}
.btn-close-receipt:hover {
    background-color: #ff8800;
}

/* ==========================================================================
   BACKOFFICE DRINK WRITING FORM
   ========================================================================== */
.editor-body form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    color: var(--text-secondary);
}

.form-group input[type="text"], .form-group select, .form-group input[type="number"] {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 10px;
    color: var(--text-primary);
    outline: none;
    font-size: 13px;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--neon-orange);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stock-formula-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.formula-item {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    font-size: 11px;
}
.formula-item span {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.formula-item input {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    border-radius: 3px;
    width: 48px;
    color: var(--neon-orange);
    text-align: center;
    margin-right: 2px;
    padding: 2px;
}

.checkbox-row {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
}

.form-submit-btn {
    background: var(--neon-orange);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    box-shadow: var(--shadow-neon-orange);
}

/* ==========================================================================
   NOTIFICATION SYSTEM TOASTS
   ========================================================================== */
.notification-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(18, 18, 22, 0.95);
    border: 1.5px solid var(--neon-red);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.25);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    z-index: 1000;
    animation: slideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.toast-icon {
    color: var(--neon-red);
    filter: drop-shadow(0 0 4px var(--neon-red));
}

.toast-body {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-weight: 700;
    font-size: 13px;
}

.toast-desc {
    font-size: 11px;
    color: var(--text-secondary);
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    margin-left: auto;
}

/* ==========================================================================
   CSS KEYFRAMES ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px var(--neon-orange); }
    50% { transform: scale(1.1); opacity: 0.7; box-shadow: 0 0 16px var(--neon-orange); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px var(--neon-orange); }
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@keyframes spinning {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.spinning {
    animation: spinning 25s linear infinite;
}

@keyframes ticketGlowRed {
    0% { box-shadow: 0 0 4px rgba(255, 51, 102, 0.2); }
    50% { box-shadow: 0 0 14px rgba(255, 51, 102, 0.45); }
    100% { box-shadow: 0 0 4px rgba(255, 51, 102, 0.2); }
}

@keyframes pulseGlowOrange {
    0% { box-shadow: inset 0 0 10px rgba(255, 158, 36, 0.1); }
    50% { box-shadow: inset 0 0 15px rgba(255, 158, 36, 0.2), 0 0 8px rgba(255, 158, 36, 0.1); }
    100% { box-shadow: inset 0 0 10px rgba(255, 158, 36, 0.1); }
}
