/* CC-02b Wave 2 - extracted from FRONTEND/07_vendors/vendor-store-setup.html */
html.rbac-pending body { visibility: hidden; }
        html.rbac-pending::before {
            content: "Verifying access...";
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', system-ui, sans-serif;
            font-size: 1rem;
            color: #475569;
            background: #f8fafc;
            visibility: visible;
            z-index: 2147483647;
        }
    



        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(2rem);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(-2rem);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-slide-left {
            animation: slideLeft 0.4s ease-out;
        }

        .animate-slide-right {
            animation: slideRight 0.4s ease-out;
        }

        .animate-scale-in {
            animation: scaleIn 0.3s ease-out;
        }

        .logo-gradient {
            background: linear-gradient(135deg, #ff6b9d, #ffd700);
        }

        .gradient-bg {
            background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
        }

        /* Step progress connector line */
        .step-connector {
            height: 0.125rem;
            background: #e5e7eb;
            transition: background 0.4s ease;
        }

        .dark .step-connector {
            background: #374151;
        }

        .step-connector.completed {
            background: #8B5CF6;
        }

        /* Step circle states */
        .step-circle {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: all 0.4s ease;
            border: 0.125rem solid #e5e7eb;
            background: white;
            color: #9ca3af;
            flex-shrink: 0;
        }

        .dark .step-circle {
            background: #1f2937;
            border-color: #374151;
            color: #6b7280;
        }

        .step-circle.active {
            border-color: #8B5CF6;
            background: #8B5CF6;
            color: white;
            animation: pulseGlow 2s infinite;
        }

        .step-circle.completed {
            border-color: #8B5CF6;
            background: #8B5CF6;
            color: white;
        }

        /* Category card styling */
        /* Toggle switch */
        .toggle-switch {
            width: 3rem;
            height: 1.625rem;
            border-radius: 1rem;
            background: #d1d5db;
            position: relative;
            cursor: pointer;
            transition: background 0.3s ease;
            flex-shrink: 0;
        }

        .dark .toggle-switch {
            background: #4b5563;
        }

        .toggle-switch.active {
            background: #8B5CF6;
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 50%;
            background: white;
            top: 0.1875rem;
            left: 0.1875rem;
            transition: transform 0.3s ease;
        }

        .toggle-switch.active::after {
            transform: translateX(1.375rem);
        }

        /* Logo preview area */
        .logo-preview-area {
            border: 0.125rem dashed #d1d5db;
            transition: all 0.3s ease;
        }

        .dark .logo-preview-area {
            border-color: #4b5563;
        }

        .logo-preview-area:hover {
            border-color: #8B5CF6;
            background: rgba(139, 92, 246, 0.05);
        }

        .logo-preview-area.has-image {
            border-style: solid;
            border-color: #8B5CF6;
        }

        /* Color swatch */
        .color-swatch {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 0.5rem;
            border: 0.125rem solid #e5e7eb;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .dark .color-swatch {
            border-color: #374151;
        }

        .color-swatch:hover {
            transform: scale(1.1);
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
        }

        /* Summary section */
        .summary-row {
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            transition: background 0.2s ease;
        }

        .summary-row:hover {
            background: rgba(139, 92, 246, 0.05);
        }

        .dark .summary-row:hover {
            background: rgba(139, 92, 246, 0.1);
        }

        /* Wizard card */
        .wizard-card {
            transition: all 0.3s ease;
        }

        .wizard-card:hover {
            box-shadow: 0 1.25rem 1.5625rem -0.3125rem rgba(0, 0, 0, 0.1);
        }

        /* Step panel transitions */
        .step-panel {
            display: none;
        }

        .step-panel.active {
            display: block;
        }

        /* Custom scrollbar */
        /* Validation error styling */
        .input-error {
            border-color: #ef4444 !important;
        }

        .error-message {
            color: #ef4444;
            font-size: 0.75rem;
            margin-top: 0.25rem;
            display: none;
        }

        .error-message.visible {
            display: block;
        }

        /* Launch button glow */
        .launch-btn {
            background: linear-gradient(135deg, #8B5CF6, #ff6b9d);
            transition: all 0.3s ease;
        }

        .launch-btn:hover {
            transform: translateY(-0.125rem);
            box-shadow: 0 0.5rem 1.5rem rgba(139, 92, 246, 0.4);
        }

        .launch-btn:active {
            transform: translateY(0);
        }

        /* Spinner */
        .spinner {
            border: 0.1875rem solid rgba(255, 255, 255, 0.3);
            border-top: 0.1875rem solid white;
            border-radius: 50%;
            width: 1.25rem;
            height: 1.25rem;
            animation: spin 0.8s linear infinite;
        }
