/* ============================================
           Hoxta Theme - Complete Standalone CSS
           Loaded AFTER {$headoutput} to override Bootstrap
           ============================================ */
        
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        :root {
            --bg: #0a1220;
            --bg-card: rgba(16, 26, 44, 0.5);
            --bg-muted: rgba(30, 45, 71, 0.5);
            --text: #e8eef5;
            --text-muted: #7a8ba3;
            --primary: #19c3ff;
            --border: rgba(30, 45, 71, 0.8);
            --success: #22c55e;
            --warning: #eab308;
            --danger: #ef4444;
        }
        
        html, body {
            font-family: 'Inter', -apple-system, sans-serif !important;
            background: var(--bg) !important;
            color: var(--text) !important;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        
        a { color: var(--primary); text-decoration: none !important; }
        a:not([class*="btn"]):not(.btn-new-ticket):not(.dept-card):not(.department-card):not(.back-btn):not(.notification-item):not(.sidebar-logo):not(.logout-btn) { 
            color: var(--primary); 
        }
        
        /* Butoane - text alb garantat */
        .btn-primary, .btn.btn-primary,
        a.btn-primary, a.btn.btn-primary { 
            color: #ffffff !important; 
        }
        .btn-new-ticket, a.btn-new-ticket { 
            color: #ffffff !important; 
        }
        .btn-success, a.btn-success { 
            color: #ffffff !important; 
        }
        a:not([class*='btn']):not(.btn-new-ticket):not(.dept-card):not(.sidebar-logo):not(.logout-btn):hover { color: #00d4ff !important; }
        
        /* Hide ALL default WHMCS elements */
        .header-lined, .breadcrumb, .navbar, .main-menu, 
        nav.navbar, .navbar-default, .navbar-header,
        .container > .row > .col-md-9, .body-content > .container > .row,
        #Primary_Navbar, #Secondary_Navbar { 
            display: none !important; 
        }
        
        /* ============================================
           Layout
           ============================================ */
        .hoxta-app {
            display: flex;
            min-height: 100vh;
        }
        
        /* Sidebar */
        .hoxta-sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 256px;
            height: 100vh;
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            z-index: 100;
        }
        
        /* Fără border-bottom aici — altfel se dublează cu .hoxta-topbar (două linii sub zona logo) */
        .sidebar-header {
            padding: 0.65rem 1rem;
            min-height: 68px;
            box-sizing: border-box;
            border-bottom: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .sidebar-logo {
            display: inline-flex;
            align-items: baseline;
            gap: 0;
            font-size: 2.05rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f3f8ff !important;
            line-height: 1;
        }

        .sidebar-logo .logo-x {
            position: relative;
            color: var(--primary) !important;
            text-shadow: 0 0 12px rgba(25,195,255,0.45);
        }

        .sidebar-logo .logo-x::after {
            content: "";
            position: absolute;
            left: -2px;
            right: -2px;
            bottom: -4px;
            height: 3px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(25,195,255,0.2), rgba(25,195,255,1), rgba(25,195,255,0.2));
            box-shadow: 0 0 10px rgba(25,195,255,0.8);
            transform-origin: center;
            opacity: 0;
            transform: scaleX(0.6);
            transition: all 0.25s ease;
        }

        .sidebar-logo:hover .logo-x {
            animation: hxoLogoXGlow 1.1s ease-in-out 1;
        }

        .sidebar-logo:hover .logo-x::after {
            opacity: 1;
            animation: hxoLogoXBar 1.1s ease-in-out 1;
        }

        @keyframes hxoLogoXGlow {
            0%, 100% { color: #19c3ff; text-shadow: 0 0 8px rgba(25,195,255,0.35); }
            50% { color: #78e6ff; text-shadow: 0 0 18px rgba(25,195,255,0.7); }
        }

        @keyframes hxoLogoXBar {
            0%, 100% { opacity: 0.8; transform: scaleX(0.8); }
            50% { opacity: 1; transform: scaleX(1.08); }
        }
        
        .sidebar-close {
            display: none;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.25rem;
            cursor: pointer;
        }
        
        /* Sidebar Navigation */
        .sidebar-nav {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
        }
        
        .sidebar-nav ul {
            list-style: none;
        }
        
        .sidebar-nav li {
            margin-bottom: 4px;
        }
        
        .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 8px;
            color: var(--text-muted);
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s;
            border: 1px solid transparent;
        }
        
        .sidebar-nav a:hover {
            color: var(--text);
            background: var(--bg-muted);
        }
        
        .sidebar-nav li.active a {
            color: var(--primary);
            background: rgba(25, 195, 255, 0.1);
            border-color: rgba(25, 195, 255, 0.2);
        }
        
        .sidebar-nav a i {
            width: 18px;
            text-align: center;
        }
        
        /* Sidebar User */
        .sidebar-user {
            padding: 1rem;
            border-top: 1px solid var(--border);
        }
        
        .user-box {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: var(--bg-muted);
            border-radius: 8px;
            margin-bottom: 10px;
        }
        
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(25, 195, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        
        .user-info {
            flex: 1;
            min-width: 0;
        }
        
        .user-name {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .user-email {
            font-size: 0.75rem;
            color: var(--text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .logout-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding: 10px 12px;
            background: none;
            border: none;
            border-radius: 8px;
            color: var(--text-muted);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .logout-btn:hover {
            color: var(--danger);
            background: rgba(239, 68, 68, 0.1);
        }
        
        /* Main Content */
        .hoxta-main {
            flex: 1;
            margin-left: 256px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Top Bar — peste tile-uri OS / dropdown order form; sub modale WHMCS (~9999–1050) */
        .hoxta-topbar {
            position: sticky;
            top: 0;
            min-height: 68px;
            background: linear-gradient(180deg, rgba(14, 22, 38, 0.98) 0%, rgba(10, 18, 34, 0.96) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            /* O singură linie sub bara întreagă — fără border-top pe zonă (evită „dublu” cu textul) */
            border-top: none;
            border-bottom: 1px solid var(--border);
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            gap: 1rem;
            padding: 0.65rem 1.5rem;
            z-index: 8000;
            transform: translateZ(0);
            backface-visibility: hidden;
        }
        
        .topbar-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
            min-width: 0;
            flex-wrap: nowrap;
        }

        /* Fără „fâșie” cu două linii: wrapper-ul nu mai formează chenar (breadcrumb e direct în flex) */
        .topbar-page-meta {
            display: contents;
        }

        .topbar-breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.4rem 0.55rem;
            font-size: 0.8125rem;
            line-height: 1.35;
            min-width: 0;
            flex: 1;
            border: none !important;
            box-shadow: none !important;
            background: transparent !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .topbar-breadcrumb a {
            color: var(--text-muted) !important;
            font-weight: 500;
            text-decoration: none !important;
            transition: color 0.2s;
        }

        .topbar-breadcrumb a:hover {
            color: var(--primary) !important;
        }

        .topbar-bc-sep {
            color: rgba(122, 139, 163, 0.55);
            font-size: 0.6rem;
            line-height: 1;
            user-select: none;
        }

        .topbar-bc-current {
            color: var(--text);
            font-weight: 700;
            font-size: 0.9375rem;
            letter-spacing: -0.02em;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: min(52vw, 28rem);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 8px;
        }
        
        .topbar-right {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            flex-shrink: 0;
            padding: 0.3rem 0.45rem 0.3rem 0.75rem;
            margin-left: 0.25rem;
            border-left: 1px solid rgba(30, 45, 71, 0.8);
            background: linear-gradient(180deg, rgba(10, 18, 34, 0.65) 0%, rgba(7, 14, 28, 0.75) 100%);
            border-radius: 12px;
        }
        
        .topbar-btn {
            position: relative;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(10, 18, 34, 0.75);
            border: 1px solid rgba(30, 45, 71, 0.95);
            border-radius: 10px;
            color: #a8bdd4;
            cursor: pointer;
            transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .topbar-btn i {
            font-size: 1rem;
        }
        
        .topbar-btn:hover {
            color: var(--primary);
            background: rgba(25, 195, 255, 0.08);
            border-color: rgba(25, 195, 255, 0.35);
            box-shadow: 0 0 0 1px rgba(25, 195, 255, 0.12);
        }

        .topbar-btn:focus-visible {
            outline: 2px solid rgba(25, 195, 255, 0.55);
            outline-offset: 2px;
        }
        
        .notification-dot {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 11px;
            height: 11px;
            background: #22d3ee;
            border: 2px solid rgba(8, 14, 26, 0.95);
            border-radius: 50%;
            display: inline-block;
            z-index: 3;
            box-shadow: 0 4px 10px rgba(14, 165, 233, 0.35);
            animation: none;
        }
        
        .notification-count-badge,
        .cart-dot {
            top: -6px;
            right: -7px;
            min-width: 18px;
            width: auto;
            height: 18px;
            padding: 0 5px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #22d3ee 0%, #0ea5e9 100%);
            color: #fff;
            border: 1px solid rgba(8, 14, 26, 0.95);
            font-size: 10px;
            font-weight: 800;
            line-height: 1;
            z-index: 3;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* Notifications Dropdown */
        .notifications-wrapper {
            position: relative;
        }
        
        .notifications-dropdown {
            position: absolute;
            top: calc(100% + 22px);
            right: 0;
            width: min(340px, 92vw);
            max-height: 400px;
            background: rgba(8, 14, 26, 0.98);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(30, 45, 71, 0.9);
            border-radius: 12px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 8500;
        }
        
        .notifications-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .notifications-header {
            padding: 1rem 1.25rem;
            border-bottom: 1px solid var(--border);
            background: linear-gradient(180deg, rgba(25, 195, 255, 0.06) 0%, rgba(25, 195, 255, 0.02) 100%);
        }
        
        .notifications-header h4 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
        }
        
        .notifications-body {
            max-height: 300px;
            overflow-y: auto;
        }
        
        .notifications-body::-webkit-scrollbar {
            width: 6px;
        }
        
        .notifications-body::-webkit-scrollbar-track {
            background: transparent;
        }
        
        .notifications-body::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 3px;
        }
        
        .notification-item {
            display: flex;
            align-items: flex-start;
            gap: 0.875rem;
            padding: 1rem 1.25rem;
            border-bottom: 1px solid rgba(30, 45, 71, 0.3);
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
        }
        
        .notification-item:last-child {
            border-bottom: none;
        }
        
        .notification-item:hover {
            background: rgba(25, 195, 255, 0.05);
        }
        
        .notification-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            flex-shrink: 0;
            font-size: 1.125rem;
        }
        
        .notification-icon.danger {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
        }
        
        .notification-icon.success {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
        }
        
        .notification-icon.info {
            background: rgba(25, 195, 255, 0.15);
            color: var(--primary);
        }
        
        .notification-icon.primary {
            background: rgba(139, 92, 246, 0.15);
            color: #a78bfa;
        }
        
        .notification-content {
            flex: 1;
            min-width: 0;
        }
        
        .notification-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.25rem;
        }
        
        .notification-desc {
            font-size: 0.8125rem;
            color: var(--text-muted);
            line-height: 1.4;
        }
        
        .notification-empty {
            padding: 2.25rem 1.25rem;
            text-align: center;
        }
        
        .notification-empty i {
            font-size: 2.5rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            opacity: 0.3;
        }
        
        .notification-empty p {
            margin: 0;
            font-size: 0.875rem;
            color: var(--text-muted);
        }
        
        .notifications-footer {
            padding: 0.875rem 1.25rem;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        
        .notifications-footer a {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .notifications-footer a:hover {
            color: #00d4ff;
        }
        
        /* Cart dropdown - same look as notifications */
        .cart-wrapper {
            position: relative;
        }
        .cart-dropdown {
            position: absolute;
            top: calc(100% + 22px);
            right: 0;
            width: min(340px, 92vw);
            max-height: 400px;
            background: rgba(8, 14, 26, 0.98);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(30, 45, 71, 0.9);
            border-radius: 12px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 8500;
        }
        .cart-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .cart-dropdown-body {
            padding: 1rem 1.25rem;
        }
        .cart-dropdown-footer {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: stretch;
        }
        .cart-dropdown-footer .cart-dropdown-link {
            display: block;
            text-align: center;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }
        .cart-dropdown-footer .cart-dropdown-link:first-child {
            color: var(--primary);
            border: 1px solid rgba(25, 195, 255, 0.3);
            background: rgba(25, 195, 255, 0.04);
        }
        .cart-dropdown-footer .cart-dropdown-link:first-child:hover {
            background: rgba(25, 195, 255, 0.1);
        }
        .cart-dropdown-footer .cart-dropdown-checkout {
            background: linear-gradient(180deg, #1ab0ed 0%, #0e9fd9 100%);
            color: #fff !important;
            border: none;
            box-shadow: 0 6px 16px rgba(14, 165, 233, 0.32);
        }
        .cart-dropdown-footer .cart-dropdown-checkout:hover {
            background: linear-gradient(180deg, #22b8f5 0%, #14a8e5 100%);
            color: #fff !important;
        }
        .cart-dot {
            font-size: 10px;
            font-weight: 800;
            animation: none;
        }
        
        .topbar-user {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .topbar-user:hover {
            background: var(--bg-muted);
        }
        
        .topbar-user-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(25, 195, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.75rem;
        }
        
        .topbar-user-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text);
        }
        
        /* Content Area */
        .hoxta-content {
            flex: 1;
            padding: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            border-top: none;
            box-shadow: none;
        }

        /* Wrapper WHMCS (#main-body): lățime plină pentru plată factură / portal */
        #main-body.hxo-main-body {
            width: 100%;
            flex: 1 1 auto;
            min-height: 0;
        }

        /* Fără al doilea contur de la wrapper-e WHMCS imediat sub topbar */
        .hoxta-main > .hoxta-content #main-body:first-child,
        .hoxta-main > .hoxta-content > .container:first-child,
        .hoxta-main > .hoxta-content > .container-fluid:first-child {
            border-top: none !important;
            box-shadow: none !important;
        }
        
        /* Footer */
        .hoxta-footer {
            padding: 1rem 1.5rem;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.875rem;
        }
        
        /* Glass Card */
        .glass-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 12px;
        }
        
        /* Page Title */
        .page-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1.5rem;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .stat-card {
            padding: 1rem;
        }
        
        .stat-content {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .stat-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: var(--bg-muted);
            font-size: 1.125rem;
        }
        
        .stat-icon.green { color: var(--success); }
        .stat-icon.yellow { color: var(--warning); }
        .stat-icon.red { color: var(--danger); }
        .stat-icon.blue { color: var(--primary); }
        
        .stat-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.2;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
        }
        
        /* Dashboard Grid */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.25rem;
            border-bottom: 1px solid var(--border);
        }
        
        .card-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
        }
        
        .card-body {
            padding: 1.25rem;
        }
        
        /* List Items */
        .item-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .list-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.875rem;
            background: var(--bg-muted);
            border-radius: 8px;
        }
        
        .item-info h4 {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 2px;
        }
        
        .item-info p {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        
        /* Status Badges - Global Styling */
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            font-size: 0.8125rem;
            font-weight: 600;
            border-radius: 9999px;
            white-space: nowrap;
        }
        
        .badge i {
            font-size: 0.75rem;
        }
        
        .badge-success { 
            background: rgba(34, 197, 94, 0.2) !important; 
            color: #22c55e !important; 
        }
        
        .badge-paid { 
            background: rgba(34, 197, 94, 0.2) !important; 
            color: #22c55e !important; 
        }
        
        .badge-warning { 
            background: rgba(234, 179, 8, 0.2) !important; 
            color: #facc15 !important; 
        }
        
        .badge-unpaid { 
            background: rgba(239, 68, 68, 0.2) !important; 
            color: #ef4444 !important; 
        }
        
        .badge-overdue { 
            background: rgba(239, 68, 68, 0.25) !important; 
            color: #ff6b6b !important; 
        }
        
        .badge-danger { 
            background: rgba(239, 68, 68, 0.2) !important; 
            color: #f87171 !important; 
        }
        
        .badge-info { 
            background: rgba(25, 195, 255, 0.2) !important; 
            color: var(--primary) !important; 
        }
        
        .badge-muted,
        .badge-cancelled { 
            background: rgba(122, 139, 163, 0.2) !important; 
            color: #9ca3af !important; 
        }
        
        /* Quick Actions */
        .quick-actions {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        
        .action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1.5rem 1rem;
            background: var(--bg-muted);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-muted);
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .action-btn:hover {
            background: rgba(25, 195, 255, 0.1);
            border-color: rgba(25, 195, 255, 0.3);
            color: var(--primary);
        }
        
        .action-btn i {
            font-size: 1.5rem;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 2rem;
            color: var(--text-muted);
        }
        
        /* Mobile Overlay */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 18, 32, 0.8);
            z-index: 99;
        }
        
        .sidebar-overlay.active {
            display: block;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .dashboard-grid { grid-template-columns: 1fr; }
            .quick-actions { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 768px) {
            .hoxta-sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }
            .hoxta-sidebar.open { transform: translateX(0); }
            .sidebar-close { display: block; }
            .hoxta-main { margin-left: 0; }
            .mobile-menu-btn { display: flex; }
            .topbar-user-name { display: none; }
            .hoxta-topbar {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }
            .topbar-bc-current {
                max-width: min(62vw, 16rem);
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid { grid-template-columns: 1fr; }
            .quick-actions { grid-template-columns: 1fr 1fr; }
            .hoxta-content { padding: 1rem; }
            .hoxta-topbar {
                min-height: 60px;
                padding: 0.5rem 0.65rem;
            }
            .topbar-right {
                padding-left: 0.5rem;
                margin-left: 0;
                gap: 0.45rem;
            }
            .topbar-btn {
                width: 42px;
                height: 42px;
            }
        }
        
        /* Badge Colors - Data Attribute Selector (Override Bootstrap) */
        span[data-badge]{
            display:inline-flex!important;
            align-items:center!important;
            gap:6px!important;
            padding:5px 14px!important;
            font-size:0.8rem!important;
            font-weight:700!important;
            border-radius:9999px!important;
            white-space:nowrap!important;
        }
        span[data-badge="paid"]{
            background:rgba(34,197,94,0.2)!important;
            color:#22c55e!important;
            border:1px solid rgba(34,197,94,0.3)!important;
        }
        span[data-badge="unpaid"]{
            background:rgba(239,68,68,0.2)!important;
            color:#ef4444!important;
            border:1px solid rgba(239,68,68,0.3)!important;
        }
        span[data-badge="overdue"]{
            background:rgba(239,68,68,0.28)!important;
            color:#ff6b6b!important;
            border:1px solid rgba(239,68,68,0.4)!important;
        }
        span[data-badge="cancelled"]{
            background:rgba(122,139,163,0.2)!important;
            color:#9ca3af!important;
            border:1px solid rgba(122,139,163,0.25)!important;
        }
        
        /* ============================================
           Fix link button text color - Bootstrap override
           ============================================ */
        a.btn-primary,a.btn.btn-primary,
        a.btn-primary:link,a.btn-primary:visited,
        a.btn-primary:hover,a.btn-primary:active,
        button.btn-primary,button.btn.btn-primary {
            color: #ffffff !important;
            text-decoration: none !important;
        }
        a.btn-default,a.btn.btn-default,
        a.btn-default:link,a.btn-default:visited {
            text-decoration: none !important;
        }
        a.btn-new-ticket,a.btn-new-ticket:link,
        a.btn-new-ticket:visited,a.btn-new-ticket:hover,
        a.btn-new-ticket:active {
            color: #ffffff !important;
            text-decoration: none !important;
        }
        
        /* ============================================
           Global Form Controls & Buttons (Override Bootstrap)
           ============================================ */
        .form-control,
        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="tel"],
        input[type="number"],
        input[type="url"],
        input[type="search"],
        select.form-control,
        textarea.form-control {
            width: 100%;
            padding: 10px 14px;
            background: rgba(30, 45, 71, 0.5) !important;
            border: 1px solid var(--border) !important;
            border-radius: 8px !important;
            color: var(--text) !important;
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            transition: border-color 0.2s, box-shadow 0.2s;
            -webkit-appearance: none;
        }
        
        .form-control:focus,
        input:focus,
        select:focus,
        textarea:focus {
            outline: none !important;
            border-color: var(--primary) !important;
            box-shadow: 0 0 0 3px rgba(25, 195, 255, 0.1) !important;
        }
        
        .form-control::placeholder,
        input::placeholder,
        textarea::placeholder {
            color: var(--text-muted) !important;
        }
        
        select.form-control option {
            background: #0f1d30;
            color: var(--text);
        }
        
        /* Global Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none !important;
            line-height: 1.4;
        }
        
        .btn-primary,
        .btn.btn-primary {
            background: linear-gradient(135deg, #19c3ff 0%, #0ea5e9 100%) !important;
            color: #ffffff !important;
            border: none !important;
            box-shadow: 0 4px 20px rgba(25, 195, 255, 0.35);
            font-weight: 600 !important;
            letter-spacing: 0.01em;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::after,
        .btn.btn-primary::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.2s;
        }
        
        .btn-primary:hover,
        .btn.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(25, 195, 255, 0.5) !important;
            color: #ffffff !important;
            background: linear-gradient(135deg, #2dd4ff 0%, #19c3ff 100%) !important;
        }
        
        .btn-primary:hover::after,
        .btn.btn-primary:hover::after {
            opacity: 1;
        }
        
        .btn-primary:active,
        .btn.btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(25, 195, 255, 0.3) !important;
        }
        
        .btn-success,
        .btn.btn-success {
            background: var(--success) !important;
            color: #ffffff !important;
            border: none !important;
        }
        
        .btn-danger,
        .btn.btn-danger {
            background: rgba(239, 68, 68, 0.15) !important;
            color: #ef4444 !important;
            border: 1px solid rgba(239, 68, 68, 0.3) !important;
        }
        
        .btn-danger:hover {
            background: rgba(239, 68, 68, 0.25) !important;
        }
        
        .btn-outline,
        .btn-default,
        .btn.btn-default {
            background: transparent !important;
            color: var(--text) !important;
            border: 1px solid var(--border) !important;
        }
        
        .btn-outline:hover,
        .btn-default:hover,
        .btn.btn-default:hover {
            background: rgba(25, 195, 255, 0.1) !important;
            border-color: rgba(25, 195, 255, 0.3) !important;
            color: var(--primary) !important;
        }
        
        .btn-sm {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
        
        .btn-lg {
            padding: 14px 28px;
            font-size: 1rem;
        }
        
        /* Table Styles (Override Bootstrap) */
        .table, table.table {
            width: 100%;
            border-collapse: collapse;
            background: transparent !important;
            color: var(--text) !important;
        }
        
        .table > thead > tr > th,
        .table > thead > tr > td {
            background: rgba(30, 45, 71, 0.3) !important;
            color: var(--text-muted) !important;
            border-bottom: 1px solid var(--border) !important;
            padding: 1rem 1.25rem !important;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .table > tbody > tr > td {
            border-bottom: 1px solid rgba(30, 45, 71, 0.5) !important;
            padding: 1rem 1.25rem !important;
            color: var(--text) !important;
            background: transparent !important;
        }
        
        .table > tbody > tr:hover > td {
            background: rgba(25, 195, 255, 0.03) !important;
        }
        
        .table-striped > tbody > tr:nth-of-type(odd) > td {
            background: rgba(30, 45, 71, 0.15) !important;
        }
        
        /* Panel / Card Override */
        .panel, .panel-default {
            background: var(--bg-card) !important;
            border: 1px solid var(--border) !important;
            border-radius: 12px !important;
            box-shadow: none !important;
        }
        
        .panel-heading {
            background: rgba(30, 45, 71, 0.3) !important;
            border-bottom: 1px solid var(--border) !important;
            border-radius: 12px 12px 0 0 !important;
            padding: 1rem 1.25rem !important;
            color: var(--text) !important;
        }
        
        .panel-body {
            padding: 1.25rem !important;
        }
        
        .panel-footer {
            background: transparent !important;
            border-top: 1px solid var(--border) !important;
            padding: 1rem 1.25rem !important;
        }
        
        /* Alert Override */
        .alert {
            border-radius: 10px !important;
            border: 1px solid;
            font-size: 0.875rem;
        }
        
        .alert-success {
            background: rgba(34, 197, 94, 0.1) !important;
            border-color: rgba(34, 197, 94, 0.25) !important;
            color: #4ade80 !important;
        }
        
        .alert-danger, .alert-error {
            background: rgba(239, 68, 68, 0.1) !important;
            border-color: rgba(239, 68, 68, 0.25) !important;
            color: #f87171 !important;
        }
        
        .alert-warning {
            background: rgba(234, 179, 8, 0.1) !important;
            border-color: rgba(234, 179, 8, 0.25) !important;
            color: #facc15 !important;
        }
        
        .alert-info {
            background: rgba(25, 195, 255, 0.1) !important;
            border-color: rgba(25, 195, 255, 0.25) !important;
            color: var(--primary) !important;
        }
        
        /* Well Override */
        .well {
            background: var(--bg-muted) !important;
            border: 1px solid var(--border) !important;
            border-radius: 10px !important;
            box-shadow: none !important;
            color: var(--text) !important;
        }
        
        /* Label/Badge Override */
        .label {
            display: inline-flex;
            align-items: center;
            padding: 5px 12px;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 9999px;
        }
        
        .label-success {
            background: rgba(34, 197, 94, 0.2) !important;
            color: #22c55e !important;
        }
        
        .label-danger {
            background: rgba(239, 68, 68, 0.2) !important;
            color: #ef4444 !important;
        }
        
        .label-warning {
            background: rgba(234, 179, 8, 0.2) !important;
            color: #facc15 !important;
        }
        
        .label-info {
            background: rgba(25, 195, 255, 0.2) !important;
            color: var(--primary) !important;
        }
        
        .label-default {
            background: rgba(122, 139, 163, 0.2) !important;
            color: #9ca3af !important;
        }
        
        /* Pagination Override */
        .pagination > li > a,
        .pagination > li > span {
            background: rgba(30, 45, 71, 0.5) !important;
            border: 1px solid var(--border) !important;
            color: var(--text-muted) !important;
            border-radius: 6px !important;
            margin: 0 2px;
            padding: 8px 14px;
        }
        
        .pagination > li > a:hover {
            background: rgba(25, 195, 255, 0.1) !important;
            border-color: rgba(25, 195, 255, 0.3) !important;
            color: var(--primary) !important;
        }
        
        .pagination > .active > a,
        .pagination > .active > span {
            background: var(--primary) !important;
            border-color: var(--primary) !important;
            color: #ffffff !important;
        }
        
        /* Breadcrumb Override */
        .breadcrumb {
            display: none !important;
        }
        
        /* Modal Override */
        .modal-content {
            background: var(--bg-card) !important;
            border: 1px solid var(--border) !important;
            border-radius: 12px !important;
            color: var(--text) !important;
        }
        
        .modal-header {
            border-bottom: 1px solid var(--border) !important;
            padding: 1.25rem !important;
        }
        
        .modal-header .close {
            color: var(--text-muted) !important;
            opacity: 0.8;
        }
        
        .modal-body {
            padding: 1.25rem !important;
        }
        
        .modal-footer {
            border-top: 1px solid var(--border) !important;
            padding: 1rem 1.25rem !important;
        }
        
        .modal-title {
            color: var(--text) !important;
            font-weight: 600;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; height: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: rgba(25, 195, 255, 0.3); }
        
        /* Status Badge Classes */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 9999px;
        }
        
        .status-active { background: rgba(34, 197, 94, 0.2) !important; color: #22c55e !important; }
        .status-pending { background: rgba(234, 179, 8, 0.2) !important; color: #facc15 !important; }
        .status-suspended { background: rgba(239, 68, 68, 0.2) !important; color: #ef4444 !important; }
        .status-terminated, .status-cancelled { background: rgba(122, 139, 163, 0.2) !important; color: #9ca3af !important; }
        
        /* Utility Classes */
        .text-muted { color: var(--text-muted) !important; }
        .text-primary { color: var(--primary) !important; }
        .text-success { color: var(--success) !important; }
        .text-danger { color: var(--danger) !important; }
        .text-warning { color: var(--warning) !important; }
        
        .font-mono { font-family: 'JetBrains Mono', monospace; }
        
        /* Fade in animation */
        .fade-in {
            animation: fadeIn 0.3s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============================================
           CART / ORDER FORM - Maximum Specificity Override
           ============================================ */
/* â”€â”€ KILL WHMCS defaults completely â”€â”€ */
        body #order-standard_cart .header-lined,
        body #order-standard_cart .cart-body > p:first-of-type { display: none !important; }

        body #order-standard_cart,
        body #order-standard_cart .row { background: transparent !important; }

        /* â”€â”€ GLOB GALBEN - eliminat complet â”€â”€ */
        body #order-standard_cart .domain-checker-bg,
        body .domain-checker-bg {
            background: transparent !important;
            background-image: none !important;
            background-color: transparent !important;
        }
        body #order-standard_cart .domain-checker-bg img,
        body #order-standard_cart .domain-checker-bg::before,
        body #order-standard_cart .domain-checker-bg::after { display: none !important; }

        /* â”€â”€ DOMAIN CHECKER CONTAINER â”€â”€ */
        body #order-standard_cart .domain-checker-container {
            background: rgba(12,20,38,0.85) !important;
            border: 1px solid rgba(25,195,255,0.12) !important;
            border-radius: 16px !important;
            padding: 2rem 1.75rem !important;
            position: relative !important;
            overflow: hidden !important;
        }

        /* â”€â”€ SEARCH BAR â”€â”€ */
        body #order-standard_cart .input-group.input-group-lg,
        body #order-standard_cart .input-group-box {
            display: flex !important;
            border-radius: 12px !important;
            overflow: hidden !important;
            border: 1.5px solid rgba(25,195,255,0.22) !important;
            box-shadow: 0 0 0 4px rgba(25,195,255,0.05) !important;
        }
        body #order-standard_cart #inputDomain,
        body #order-standard_cart .input-group-lg .form-control {
            background: rgba(5,10,22,0.98) !important;
            border: none !important;
            color: #e8eef5 !important;
            font-size: 1rem !important;
            padding: 0 20px !important;
            height: 54px !important;
            box-shadow: none !important;
            outline: none !important;
        }
        body #order-standard_cart #inputDomain::placeholder { color: rgba(90,112,144,0.3) !important; }
        body #order-standard_cart .input-group-btn { display: flex !important; }
        body #order-standard_cart #btnCheckAvailability,
        body #order-standard_cart .input-group-btn .btn {
            background: linear-gradient(135deg, #19c3ff, #0ea5e9) !important;
            color: #fff !important; border: none !important;
            border-radius: 0 10px 10px 0 !important;
            font-weight: 800 !important; font-size: 0.75rem !important;
            letter-spacing: 0.1em !important; text-transform: uppercase !important;
            padding: 0 28px !important; height: 54px !important;
            cursor: pointer !important; white-space: nowrap !important;
        }
        body #order-standard_cart #btnCheckAvailability:hover { background: linear-gradient(135deg, #2dd4ff, #19c3ff) !important; }

        /* â”€â”€ TLD TABLE - KILL WHMCS COMPLETELY â”€â”€ */
        /* Reset TOTAL pe .bg-white si tot ce e inauntru */
        body #order-standard_cart .bg-white,
        body #order-standard_cart div.bg-white {
            background: rgba(10,18,34,0.85) !important;
            background-color: rgba(10,18,34,0.85) !important;
            border: 1px solid rgba(20,35,58,0.95) !important;
            border-radius: 12px !important;
            overflow: hidden !important;
        }
        /* Kill borders albastre din Bootstrap rows */
        body #order-standard_cart .bg-white *,
        body #order-standard_cart .tld-pricing-header *,
        body #order-standard_cart .tld-row * {
            border-color: transparent !important;
            box-shadow: none !important;
            outline: none !important;
        }
        /* Restaureaza border-bottom pe randuri dupa reset */
        body #order-standard_cart .tld-row {
            border-bottom: 1px solid rgba(20,35,58,0.7) !important;
            background: transparent !important;
        }
        body #order-standard_cart .tld-row:last-child,
        body #order-standard_cart .tld-row:last-of-type { border-bottom: none !important; }
        body #order-standard_cart .tld-row:hover { background: rgba(25,195,255,0.03) !important; }

        body #order-standard_cart .tld-pricing-header {
            background: rgba(25,195,255,0.04) !important;
            border-bottom: 1px solid rgba(20,35,58,0.95) !important;
        }
        body #order-standard_cart .tld-pricing-header .tld-column,
        body #order-standard_cart .tld-pricing-header [class*="col"] {
            color: #2e4461 !important;
            font-size: 0.67rem !important; font-weight: 800 !important;
            text-transform: uppercase !important; letter-spacing: 0.12em !important;
            padding: 10px 18px !important; background: transparent !important;
        }
        body #order-standard_cart .tld-row > [class*="col"],
        body #order-standard_cart .tld-row .row > [class*="col"],
        body #order-standard_cart .tld-row .two-row-center {
            background: transparent !important;
            padding: 12px 18px !important;
        }
        body #order-standard_cart .tld-row strong { color: #19c3ff !important; font-size: 1rem !important; font-weight: 700 !important; }
        body #order-standard_cart .tld-row small { color: #3d5878 !important; font-size: 0.875rem !important; }
        body #order-standard_cart .tld-row .text-center { text-align: center !important; }
        body #order-standard_cart .tld-row .two-row-center { display: flex !important; align-items: center !important; min-height: 46px !important; }
        body #order-standard_cart .no-tlds [class*="col"] { color: #2e4461 !important; background: transparent !important; text-align: center !important; padding: 1.5rem !important; }

        /* â”€â”€ TLD FILTERS â”€â”€ */
        body #order-standard_cart .tld-filters { display: flex !important; gap: 5px !important; flex-wrap: wrap !important; margin-bottom: 0.875rem !important; }
        body #order-standard_cart .tld-filters a,
        body #order-standard_cart .tld-filters .badge {
            background: rgba(14,24,44,0.8) !important;
            border: 1px solid rgba(20,35,58,0.95) !important;
            color: #3d5878 !important; border-radius: 20px !important;
            padding: 5px 14px !important; font-size: 0.77rem !important; font-weight: 600 !important;
            display: inline-flex !important; text-decoration: none !important; transition: all 0.17s !important;
        }
        body #order-standard_cart .tld-filters a:hover {
            background: rgba(25,195,255,0.1) !important;
            border-color: rgba(25,195,255,0.3) !important; color: #19c3ff !important;
        }

        /* â”€â”€ DOMAIN PRICING HEADER â”€â”€ */
        body #order-standard_cart .domain-pricing > h4 {
            color: #e8eef5 !important; font-size: 0.9375rem !important; font-weight: 700 !important;
        }

        /* â”€â”€ PROMO BOXES - KILL WHITE â”€â”€ */
        body #order-standard_cart .domain-promo-box {
            background: rgba(10,18,34,0.85) !important;
            background-color: rgba(10,18,34,0.85) !important;
            border: 1px solid rgba(20,35,58,0.95) !important;
            border-radius: 16px !important;
            padding: 1.75rem !important;
            position: relative !important;
            overflow: hidden !important;
            transition: border-color 0.2s, transform 0.2s !important;
        }
        body #order-standard_cart .domain-promo-box:hover {
            border-color: rgba(25,195,255,0.2) !important; transform: translateY(-2px) !important;
        }
        body #order-standard_cart .domain-promo-box h3 { color: #e8eef5 !important; font-weight: 700 !important; }
        body #order-standard_cart .domain-promo-box .text-warning { color: #19c3ff !important; font-weight: 600 !important; }
        body #order-standard_cart .domain-promo-box .text-primary { color: #19c3ff !important; }
        body #order-standard_cart .domain-promo-box > p { color: #3d5878 !important; font-size: 0.875rem !important; }
        body #order-standard_cart .domain-promo-box p.small { color: rgba(61,88,120,0.55) !important; font-size: 0.75rem !important; }
        body #order-standard_cart .domain-promo-box .fa-4x {
            position: absolute !important; right: 1.5rem !important; top: 50% !important;
            transform: translateY(-50%) !important; opacity: 0.04 !important; color: #19c3ff !important;
        }
        body #order-standard_cart .domain-promo-box .btn-warning,
        body #order-standard_cart .domain-promo-box a.btn-warning,
        body #order-standard_cart .domain-promo-box .btn-primary,
        body #order-standard_cart .domain-promo-box a.btn-primary {
            background: linear-gradient(135deg, #19c3ff, #0ea5e9) !important;
            color: #fff !important; border: none !important; border-radius: 9px !important;
            font-weight: 700 !important; padding: 9px 20px !important;
            box-shadow: 0 4px 14px rgba(25,195,255,0.22) !important;
            display: inline-flex !important; align-items: center !important;
            text-decoration: none !important; transition: all 0.18s !important;
        }
        body #order-standard_cart .domain-promo-box .btn-warning:hover,
        body #order-standard_cart .domain-promo-box a.btn-warning:hover,
        body #order-standard_cart .domain-promo-box .btn-primary:hover,
        body #order-standard_cart .domain-promo-box a.btn-primary:hover {
            color: #fff !important; transform: translateY(-1px) !important;
        }

        /* â”€â”€ SIDEBAR â”€â”€ */
        body #order-standard_cart .cart-sidebar .panel,
        body #order-standard_cart .cart-sidebar .card {
            background: rgba(10,18,34,0.8) !important;
            border: 1px solid rgba(20,35,58,0.95) !important;
            border-radius: 12px !important; box-shadow: none !important; overflow: hidden !important;
        }
        body #order-standard_cart .cart-sidebar .panel-heading {
            background: rgba(25,195,255,0.04) !important;
            border-bottom: 1px solid rgba(20,35,58,0.95) !important;
            padding: 10px 15px !important; display: flex !important;
            align-items: center !important; justify-content: space-between !important;
        }
        body #order-standard_cart .cart-sidebar .panel-title {
            color: #2e4461 !important; font-size: 0.67rem !important;
            font-weight: 800 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important;
        }
        body #order-standard_cart .cart-sidebar .panel-title i { color: #19c3ff !important; }
        body #order-standard_cart .cart-sidebar .list-group { background: transparent !important; border: none !important; }
        body #order-standard_cart .cart-sidebar .list-group-item,
        body #order-standard_cart .cart-sidebar a.list-group-item {
            background: transparent !important;
            border: none !important; border-bottom: 1px solid rgba(20,35,58,0.5) !important;
            color: #3d5878 !important; padding: 9px 15px !important;
            font-size: 0.875rem !important; font-weight: 500 !important;
            display: flex !important; align-items: center !important; gap: 8px !important;
            transition: all 0.16s !important; text-decoration: none !important;
        }
        body #order-standard_cart .cart-sidebar .list-group-item:last-child { border-bottom: none !important; }
        body #order-standard_cart .cart-sidebar .list-group-item:hover {
            background: rgba(25,195,255,0.06) !important; color: #7a9cbf !important;
        }
        body #order-standard_cart .cart-sidebar .list-group-item.active {
            background: rgba(25,195,255,0.09) !important;
            border-left: 2px solid #19c3ff !important; color: #19c3ff !important;
        }
        body #order-standard_cart .cart-sidebar .list-group-item i {
            color: #19c3ff !important; width: 15px !important; opacity: 0.75 !important;
        }

        /* â”€â”€ GLOBAL TYPOGRAPHY â”€â”€ */
        body #order-standard_cart h1, body #order-standard_cart h2,
        body #order-standard_cart h3, body #order-standard_cart h4 { color: #e8eef5 !important; }
        body #order-standard_cart p { color: #3d5878 !important; }
        body #order-standard_cart .text-muted { color: #2e4461 !important; }
        body #order-standard_cart a:not(.btn):not(.list-group-item):not(#hxoContinueBtn):not(.hxo-btn-continue) { color: #19c3ff !important; }
        body #order-standard_cart hr { border-color: rgba(20,35,58,0.7) !important; }

        /* â”€â”€ SEARCH RESULTS â”€â”€ */
        body #order-standard_cart .domain-checker-available { color: #22c55e !important; font-weight: 600 !important; }
        body #order-standard_cart .domain-checker-unavailable { color: #ef4444 !important; }
        body #order-standard_cart .domain-price .price { color: #19c3ff !important; font-size: 1.25rem !important; font-weight: 800 !important; }
        body #order-standard_cart .fa-spinner { color: #19c3ff !important; }

        /* â”€â”€ ALL OTHER PANELS (checkout, products etc) â”€â”€ */
        body #order-standard_cart .panel, body #order-standard_cart .panel-default {
            background: rgba(10,18,34,0.8) !important;
            border: 1px solid rgba(20,35,58,0.95) !important;
            border-radius: 12px !important; box-shadow: none !important;
        }
        body #order-standard_cart .panel-heading {
            background: rgba(25,195,255,0.04) !important;
            border-bottom: 1px solid rgba(20,35,58,0.8) !important; padding: 12px 16px !important;
        }
        body #order-standard_cart .panel-body { padding: 1.25rem !important; background: transparent !important; }
        body #order-standard_cart .panel-title { color: #e8eef5 !important; font-weight: 600 !important; }

        body #order-standard_cart .btn-primary, body #order-standard_cart button.btn-primary,
        body #order-standard_cart a.btn-primary {
            background: linear-gradient(135deg, #19c3ff, #0ea5e9) !important;
            color: #fff !important; border: none !important; border-radius: 9px !important;
            font-weight: 700 !important; box-shadow: 0 4px 14px rgba(25,195,255,0.22) !important;
        }
        body #order-standard_cart a.btn-primary { color: #fff !important; }
        body #order-standard_cart .btn-success { background: linear-gradient(135deg, #22c55e, #16a34a) !important; color: #fff !important; border: none !important; border-radius: 9px !important; font-weight: 700 !important; }
        body #order-standard_cart .btn-default { background: rgba(12,20,38,0.8) !important; color: #5a7090 !important; border: 1px solid rgba(20,35,58,0.95) !important; border-radius: 9px !important; }
        body #order-standard_cart .btn-default:hover { color: #19c3ff !important; border-color: rgba(25,195,255,0.3) !important; }

        body #order-standard_cart .table thead th {
            background: rgba(25,195,255,0.04) !important; color: #2e4461 !important;
            font-size: 0.7rem !important; font-weight: 700 !important; text-transform: uppercase !important;
            letter-spacing: 0.1em !important; border-bottom: 1px solid rgba(20,35,58,0.8) !important;
        }
        body #order-standard_cart .table tbody td {
            color: #e8eef5 !important; border-top: 1px solid rgba(20,35,58,0.4) !important;
            vertical-align: middle !important; background: transparent !important;
        }

        body #order-standard_cart .alert-success { background: rgba(34,197,94,0.07) !important; border-color: rgba(34,197,94,0.25) !important; color: #4ade80 !important; border-radius: 9px !important; }
        body #order-standard_cart .alert-danger { background: rgba(239,68,68,0.07) !important; border-color: rgba(239,68,68,0.25) !important; color: #fca5a5 !important; border-radius: 9px !important; }
        body #order-standard_cart .alert-info { background: rgba(25,195,255,0.07) !important; border-color: rgba(25,195,255,0.2) !important; color: #67e8f9 !important; border-radius: 9px !important; }

        body #order-standard_cart input[type="text"], body #order-standard_cart input[type="email"],
        body #order-standard_cart input[type="password"], body #order-standard_cart textarea,
        body #order-standard_cart .form-control:not(select) {
            background: rgba(5,10,22,0.97) !important; border: 1px solid rgba(20,35,58,0.95) !important;
            border-radius: 8px !important; color: #e8eef5 !important;
        }
        /* select: stil „SELECT VERSIONS” în hoxta-order.css — nu suprascrie aici */
        body #order-standard_cart select.form-control {
            color: #19c3ff !important;
        }
        body #order-standard_cart input:focus, body #order-standard_cart select:focus {
            border-color: rgba(25,195,255,0.38) !important; box-shadow: 0 0 0 3px rgba(25,195,255,0.07) !important;
        }
        body #order-standard_cart label { color: #e8eef5 !important; font-size: 0.875rem !important; font-weight: 500 !important; }
        body #order-standard_cart input[type="checkbox"], body #order-standard_cart input[type="radio"] { accent-color: #19c3ff !important; }
/* â”€â”€ End Cart Override â”€â”€ */
