/* CC-02b Wave 2 - extracted from FRONTEND/07_vendors/vendor-catering-pricing.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 scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        .animate-scale-in { animation: scaleIn 0.4s ease-out both; }
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .logo-gradient { background: linear-gradient(135deg, #ff6b9d, #ffd700); }
        .gradient-bg { background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%); }
        .card-hover { transition: all 0.3s ease; }
        .card-hover:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1),
                        0 0.25rem 0.375rem -0.125rem rgba(0, 0, 0, 0.05);
        }
        .dark .card-hover:hover {
            box-shadow: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.4),
                        0 0.25rem 0.375rem -0.125rem rgba(0, 0, 0, 0.2);
        }
        .skeleton {
            background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
            background-size: 60rem 100%;
            animation: shimmer 1.5s infinite linear;
            border-radius: 0.5rem;
        }
        .dark .skeleton {
            background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
            background-size: 60rem 100%;
        }
        .notification-dot { animation: pulse 2s infinite; }
        .toggle-switch {
            position: relative;
            width: 2.75rem;
            height: 1.5rem;
            background: #d1d5db;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .dark .toggle-switch { background: #4b5563; }
        .toggle-switch.active { background: #8B5CF6; }
        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 0.125rem;
            left: 0.125rem;
            width: 1.25rem;
            height: 1.25rem;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        .toggle-switch.active::after { transform: translateX(1.25rem); }
        .tier-highlight {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
            border-color: #8B5CF6 !important;
        }
        .dark .tier-highlight {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
        }
        .calc-result-row {
            transition: all 0.3s ease;
        }
        .calc-total {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
            border-radius: 0.75rem;
            padding: 1rem 1.25rem;
        }
        .dark .calc-total {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
        }
