        :root {
            --card-light: rgba(255, 255, 255, 0.9);
            --card-dark: rgba(7, 12, 22, 0.8);
            --stroke-light: rgba(15, 23, 42, 0.08);
            --stroke-dark: rgba(255, 255, 255, 0.07);
            --glow: 0 30px 90px rgba(15, 23, 42, 0.12);
            --glow-dark: 0 30px 90px rgba(0, 0, 0, 0.35);
        }

        body,
        input,
        button,
        select {
            font-family: 'Manrope', 'Space Grotesk', sans-serif;
        }

        body.care-shell {
            background: radial-gradient(circle at 18% 20%, rgba(14, 165, 233, 0.18), transparent 32%), radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.18), transparent 28%), radial-gradient(circle at 45% 90%, rgba(34, 197, 94, 0.12), transparent 26%), #f8fafc;
        }

        .dark body.care-shell {
            background: radial-gradient(circle at 18% 20%, rgba(14, 165, 233, 0.2), transparent 35%), radial-gradient(circle at 82% 12%, rgba(168, 85, 247, 0.22), transparent 32%), radial-gradient(circle at 50% 88%, rgba(16, 185, 129, 0.18), transparent 30%), #050914;
        }

        .font-display {
            font-family: 'Space Grotesk', 'Manrope', sans-serif;
        }

        .glass-card {
            background: var(--card-light);
            border: 1px solid var(--stroke-light);
            border-radius: 18px;
            box-shadow: var(--glow);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .dark .glass-card {
            background: var(--card-dark);
            border-color: var(--stroke-dark);
            box-shadow: var(--glow-dark);
        }

        .snapshot-card {
            border-radius: 16px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.08));
            box-shadow: 0 22px 60px rgba(14, 165, 233, 0.18);
        }

        .dark .snapshot-card {
            border-color: rgba(255, 255, 255, 0.08);
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(88, 28, 135, 0.12));
            box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
        }

        .section-shell {
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 14px;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7));
            padding: 1rem;
        }

        .dark .section-shell {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.07);
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #475569;
        }

        .dark .section-header {
            color: #cbd5e1;
        }

        .library-card {
            border-radius: 14px;
            border: 1px dashed rgba(15, 23, 42, 0.15);
            padding: 1rem;
            background: rgba(255, 255, 255, 0.6);
        }

        .dark .library-card {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid rgba(15, 23, 42, 0.06);
            background: linear-gradient(120deg, rgba(148, 163, 184, 0.08), rgba(255, 255, 255, 0.65));
            font-weight: 600;
            color: #0f172a;
        }

        .dark .pill {
            border-color: rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.06);
            color: #e2e8f0;
        }

        .control-input {
            width: 100%;
            padding: 0.85rem 0.9rem;
            border-radius: 12px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
            color: #0f172a;
            font-size: 0.95rem;
            transition: all 0.15s ease;
        }

        .control-input:focus {
            outline: none;
            border-color: #0ea5e9;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
        }

        .dark .control-input {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.08);
            color: #e2e8f0;
        }

        .primary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0.85rem 1rem;
            border-radius: 12px;
            border: 1px solid transparent;
            background: linear-gradient(120deg, #0ea5e9, #6366f1);
            color: #fff;
            font-weight: 700;
            box-shadow: 0 18px 40px rgba(99, 102, 241, 0.35);
            transition: transform 0.12s ease, box-shadow 0.12s ease;
        }

        .primary-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 20px 48px rgba(99, 102, 241, 0.42);
        }

        .dark .primary-btn {
            box-shadow: 0 22px 48px rgba(14, 165, 233, 0.32);
        }

        .badge-dot {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0.35rem 0.75rem;
            border-radius: 9999px;
            background: rgba(14, 165, 233, 0.12);
            color: #0ea5e9;
            font-size: 12px;
            font-weight: 700;
        }

        .badge-dot::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 9999px;
            background: currentColor;
            box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.15);
        }

        .dark .badge-dot {
            background: rgba(99, 102, 241, 0.14);
            color: #93c5fd;
        }

        .input-stack {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .stack-label {
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #475569;
            font-weight: 700;
        }

        .dark .stack-label {
            color: #cbd5e1;
        }

        .eyebrow {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 11px;
            color: #475569;
            font-weight: 700;
        }

        .dark .eyebrow {
            color: #94a3b8;
        }

        .care-ambient {
            position: absolute;
            filter: blur(90px);
            opacity: 0.38;
            border-radius: 9999px;
            pointer-events: none;
        }

        .care-ambient-a {
            width: 38vw;
            height: 38vw;
            background: #7dd3fc;
            top: -12%;
            left: -10%;
        }

        .care-ambient-b {
            width: 30vw;
            height: 30vw;
            background: #c084fc;
            top: 5%;
            right: -8%;
        }

        .care-ambient-c {
            width: 26vw;
            height: 26vw;
            background: #22c55e;
            bottom: -12%;
            left: 25%;
        }

        .dark .care-ambient {
            opacity: 0.3;
        }

        .care-spinner {
            height: 52px;
            width: 52px;
            border-radius: 9999px;
            border: 3px solid rgba(99, 102, 241, 0.12);
            border-top-color: #0ea5e9;
            animation: spin 1s linear infinite;
            box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        #wpadminbar {
            display: none !important;
        }

        html {
            margin-top: 0 !important;
        }

        body {
            margin: 0 !important;
            padding: 0 !important;
        }

        .care-tab.active {
            position: relative;
        }

        header:not(#care-app header),
        footer:not(#care-app footer),
        #masthead,
        #colophon,
        .site-header,
        .site-footer,
        .wp-site-blocks > header,
        .wp-site-blocks > footer,
        .entry-header,
        .entry-footer,
        .wp-block-post-title {
            display: none !important;
        }

        .entry-content,
        .site-content,
        #content,
        .wp-site-blocks,
        .is-layout-constrained {
            margin: 0 !important;
            padding: 0 !important;
            max-width: none !important;
            width: 100% !important;
        }

        .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
            max-width: none !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        h1.entry-title,
        .page-title {
            display: none !important;
        }
/**
 * Chot Order Dashboard - Custom Styles
 * Minimal custom CSS for additional styling beyond Tailwind
 */

/* Smooth transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus ring customization */
*:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.9);
    outline-offset: 2px;
    border-radius: 4px;
}

.dark *:focus-visible {
    outline-color: rgba(255, 255, 255, 0.9);
}

/* Custom scrollbar for dark mode */
.dark ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.dark ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.dark ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Light mode scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Smooth modal transitions */
#order-modal {
    animation: fadeIn 0.2s ease-in-out;
}

#order-modal.hidden {
    animation: fadeOut 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Loading state animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Hover effects for table rows */
table tbody tr {
    transition: background-color 0.15s ease-in-out;
}

/* Input focus states */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.dark input:focus,
.dark textarea:focus,
.dark select:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Button hover effects */
button {
    transition: all 0.15s ease-in-out;
}

/* Tab button active state */
.tab-button.active {
    position: relative;
}

/* Product search results scrollbar */
#product-results {
    scrollbar-width: thin;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #app-container {
        padding: 1rem;
    }
    
    table {
        font-size: 0.875rem;
    }
    
    .modal-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }
}

/* Print styles */
@media print {
    #theme-toggle,
    .tab-button,
    button {
        display: none;
    }
}

/* Badge animations */
.badge {
    animation: slideIn 0.2s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Empty state styling */
.empty-state {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.empty-state:hover {
    opacity: 0.8;
}

/* Product card hover effect */
.add-product-btn {
    position: relative;
    overflow: hidden;
}

.add-product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.add-product-btn:hover::before {
    left: 100%;
}

/* Status badge pulse animation for pending orders */
.status-pending {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
