    
        :root {
            --primary: #4caf50;
            --primary-dark: #388e3c;
            --bg-dark: #111c14;
            --bg-card: #1a291f;
            --white: #ffffff;
            --muted: #a0afb7;
            --ink: #ffffff;
            --border: #2e3d30;
            --red: #f44336;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--ink);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* Login Container */
        #login-overlay {
            position: fixed;
            inset: 0;
            background: var(--bg-dark);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 40px;
            border-radius: 12px;
            width: 90%;
            max-width: 400px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .login-box img {
            height: 50px;
            margin-bottom: 25px;
        }

        .login-box h2 {
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        label {
            font-size: 14px;
            font-weight: 700;
            color: var(--muted);
            display: block;
            margin-bottom: 6px;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            color: #fff;
            border-radius: 6px;
            outline: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
        }

        .btn {
            display: inline-block;
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 800;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn:hover {
            background: var(--primary-dark);
        }

        .btn-sec {
            background: transparent;
            border: 1px solid var(--border);
            color: #white;
            color: #fff;
        }

        .btn-sec:hover {
            background: rgba(255,255,255,0.05);
        }

        .btn-red {
            background: var(--red);
        }

        .btn-red:hover {
            background: #d32f2f;
        }

        
        /* App Layout */
        .app-layout {
            display: flex;
            height: 100vh;
            overflow: hidden;
            width: 100%;
        }

        .admin-sidebar {
            width: 260px;
            background: var(--bg-card);
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .admin-sidebar.collapsed {
            width: 80px;
        }

        .sidebar-header {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 1px solid var(--border);
        }

        .sidebar-header img {
            height: 35px;
            border-radius: 4px;
            padding: 2px;
            background: #fff;
            transition: all 0.3s;
        }

        .admin-sidebar.collapsed .sidebar-header img {
            height: 25px;
        }

        .toggle-sidebar-btn {
            background: none;
            border: none;
            color: var(--muted);
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s;
        }
        
        .sidebar-header .toggle-sidebar-btn {
            position: absolute;
            right: 20px;
        }

        .toggle-sidebar-btn:hover {
            color: var(--white);
        }

        .sidebar-menu {
            flex: 1;
            padding: 20px 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            overflow-y: auto;
        }

        .sidebar-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 15px;
            color: var(--muted);
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .sidebar-item i {
            font-size: 22px;
            min-width: 22px;
            text-align: center;
        }

        .sidebar-item span {
            transition: opacity 0.3s;
        }

        .admin-sidebar.collapsed .sidebar-item span {
            opacity: 0;
            pointer-events: none;
            width: 0;
            overflow: hidden;
        }

        .sidebar-item:hover {
            background: rgba(255, 255, 255, 0.03);
            color: var(--white);
        }

        .sidebar-item.active {
            background: rgba(76, 175, 80, 0.1);
            color: var(--primary);
            border-left: 3px solid var(--primary);
        }

        .sidebar-footer {
            padding: 20px;
            border-top: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .main-content {
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            background-color: var(--bg-dark);
        }
        
        .admin-header { display: none !important; }
        
        /* Fix container widths inside main */
        .main-content .container {
            max-width: 1400px;
            width: 95%;
            margin: 0 auto;
        }

        /* Admin Layout */
        .admin-header {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 90%;
        }

        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-nav {
            display: flex;
            gap: 20px;
            align-items: center;
        }



        .header-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .user-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            padding: 6px 12px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .user-badge:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary);
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            background: var(--bg-dark);
            border: 1px solid var(--primary);
        }

        .user-email {
            font-size: 13px;
            font-weight: bold;
        }

        .admin-main {
            padding: 40px 0;
            flex: 1;
        }

        .grid-split {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
        }

        @media (max-width: 992px) {
            .grid-split {
                grid-template-columns: 1fr;
            }
        }

        .panel-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            height: fit-content;
        }

        .panel-box h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 10px;
        }

        /* Product/User List */
        .product-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-height: 700px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .product-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s;
        }

        .product-item:hover {
            border-color: var(--primary);
            background: rgba(255,255,255,0.05);
        }

        .prod-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .prod-img {
            width: 60px;
            height: 45px;
            border-radius: 4px;
            overflow: hidden;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
        }

        .prod-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .prod-text h4 {
            font-size: 15px;
            font-weight: 700;
        }

        .prod-text p {
            font-size: 12px;
            color: var(--muted);
        }

        .prod-actions {
            display: flex;
            gap: 10px;
        }

        .prod-actions button {
            padding: 8px 12px;
            font-size: 12px;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            border: none;
        }

        /* Form Upload */
        .upload-zone {
            border: 2px dashed var(--border);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.01);
            transition: all 0.3s;
            margin-bottom: 20px;
        }

        .upload-zone:hover {
            border-color: var(--primary);
            background: rgba(255,255,255,0.03);
        }

        .upload-zone p {
            color: var(--muted);
            font-size: 14px;
        }

        .preview-photos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
            gap: 10px;
            margin-bottom: 20px;
        }

        .preview-photo-item {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .preview-photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .preview-photo-item .remove-photo-btn {
            position: absolute;
            top: 2px;
            right: 2px;
            background: var(--red);
            color: #fff;
            border: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Profile Modal */
        .profile-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .profile-modal-content {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 30px;
            border-radius: 12px;
            width: 90%;
            max-width: 450px;
        }

        /* Pricing Tab */
        .pricing-table-container {
            overflow-x: auto;
            max-height: 600px;
        }
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .pricing-table th, .pricing-table td {
            border: 1px solid var(--border);
            padding: 10px;
            text-align: left;
        }
        .pricing-table th {
            background: rgba(255,255,255,0.05);
            position: sticky;
            top: 0;
            z-index: 10;
        }
        .pricing-input {
            width: 80px;
            padding: 6px;
        }
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--border);
            transition: .4s;
            border-radius: 24px;
        }
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        input:checked + .slider {
            background-color: var(--primary);
        }
        input:checked + .slider:before {
            transform: translateX(26px);
        }
    

        /* Mobile specific */
        @media (max-width: 768px) {
            .app-layout { flex-direction: column; }
            .admin-sidebar { 
                position: fixed; 
                height: 100vh; 
                width: 260px !important;
                transform: translateX(-100%);
                z-index: 1000;
            }
            .admin-sidebar.collapsed {
                width: 260px !important;
            }
            .admin-sidebar.collapsed .sidebar-item span {
                opacity: 1 !important;
                pointer-events: auto !important;
                width: auto !important;
            }
            .admin-sidebar.mobile-open {
                transform: translateX(0);
            }
            .mobile-header {
                display: flex !important;
                background: var(--bg-card);
                padding: 10px 20px;
                align-items: center;
                justify-content: space-between;
                border-bottom: 1px solid var(--border);
                z-index: 999;
            }
        }

        /* Wizard Stepper CSS */
        .wizard-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }
        .wizard-header::before {
            content: '';
            position: absolute;
            top: 24px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--border);
            z-index: 0;
        }
        .wizard-step-indicator {
            position: relative;
            z-index: 1;
            text-align: center;
            width: 33%;
        }
        .wizard-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--border);
            color: var(--muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin: 0 auto 10px;
            transition: all 0.3s;
        }
        .wizard-step-indicator.active .wizard-circle {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(46, 204, 113, 0.1);
        }
        .wizard-step-indicator.completed .wizard-circle {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .wizard-step-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--muted);
        }
        .wizard-step-indicator.active .wizard-step-label,
        .wizard-step-indicator.completed .wizard-step-label {
            color: var(--white);
        }
        
        .wizard-step-content {
            display: none;
            animation: fadeIn 0.3s ease;
        }
        .wizard-step-content.active {
            display: block;
        }
        .wizard-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
