        .shootbright-workspace {
            --bg-deep: #0b0f19;
            --bg-panel: rgba(17, 24, 39, 0.85);
            --bg-card: rgba(255, 255, 255, 0.02);
            --brand-primary: #32b38a;
            --brand-light: #3b82f6;
            --brand-glow: rgba(50, 179, 138, 0.2);
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border-color: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(50, 179, 138, 0.4);
            --success: #3b82f6;
            --alert: #fbbf24;
        }

        .shootbright-workspace * { box-sizing: border-box; margin: 0; padding: 0; }
        
        .shootbright-workspace {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-main);
            display: flex;
            background-image: radial-gradient(circle at 50% -20%, rgba(50, 179, 138, 0.1), transparent 50%);
            align-items: flex-start;
        }

        .shootbright-workspace ::-webkit-scrollbar { width: 6px; }
        .shootbright-workspace ::-webkit-scrollbar-track { background: transparent; }
        .shootbright-workspace ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }
        .shootbright-workspace ::-webkit-scrollbar-thumb:hover { background: var(--brand-primary); }

        .shootbright-workspace .tabular-nums { font-variant-numeric: tabular-nums; }

        /* Sidebar Layout */
        .shootbright-workspace .sidebar {
            width: 280px;
            background: var(--bg-panel);
            backdrop-filter: blur(20px);
            border-right: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            padding: 30px 20px;
            z-index: 10;
        }

        .shootbright-workspace .brand {
            margin-bottom: 40px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .shootbright-workspace .brand-logo {
            max-width: 90%;
            height: auto;
            filter: drop-shadow(0 0 15px var(--brand-glow)) brightness(1.2);
            transition: all 0.3s;
        }

        .shootbright-workspace .category-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .shootbright-workspace .nav-link {
            padding: 12px 15px;
            margin-bottom: 6px;
            border-radius: 8px;
            cursor: pointer;
            color: var(--text-muted);
            transition: all 0.2s;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .shootbright-workspace .nav-link:hover,
.shootbright-workspace .nav-link.active {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.05);
            border-left: 3px solid var(--brand-primary);
        }

        .shootbright-workspace .nav-count {
            background: rgba(0,0,0,0.3);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.75rem;
            color: var(--brand-primary);
        }

        /* Main Workspace */
        .shootbright-workspace .workspace {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 35px 45px;
            overflow-y: auto;
        }

        .shootbright-workspace .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 30px;
        }

        .shootbright-workspace .view-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
        }

        .shootbright-workspace .search-box {
            position: relative;
            width: 450px;
        }

        .shootbright-workspace .search-box i {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.2rem;
        }

        .shootbright-workspace .search-box input {
            width: 100%;
            padding: 14px 20px 14px 50px;
            background: rgba(0,0,0,0.2);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s;
        }

        .shootbright-workspace .search-box input:focus {
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 3px var(--brand-glow);
            background: rgba(0,0,0,0.4);
        }

        /* Product Grid */
        .shootbright-workspace .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .shootbright-workspace .card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s;
        }

        .shootbright-workspace .card:hover {
            transform: translateY(-4px);
            border-color: var(--border-hover);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            background: rgba(255, 255, 255, 0.04);
        }

        .shootbright-workspace .c-cat { font-size: 0.75rem; color: var(--brand-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; font-weight: 700;}
        .shootbright-workspace .c-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.4; }
        
        /* Updated Description Class: Removed line clamp, allows full text visibility */
        .shootbright-workspace .c-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 25px; flex: 1; display: block; }
        
        .shootbright-workspace .c-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
        }

        .shootbright-workspace .price { font-size: 1.25rem; color: #fff; font-weight: 800; }
        
        .shootbright-workspace .btn-add {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--border-color);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .shootbright-workspace .btn-add:hover {
            border-color: var(--brand-primary);
            color: var(--brand-primary);
        }
        
        .shootbright-workspace .btn-add.added {
            background: var(--brand-primary);
            color: #000;
            border-color: var(--brand-primary);
        }

        /* Pagination */
        .shootbright-workspace .pagination { display: flex; justify-content: center; gap: 20px; align-items: center; margin-top: auto; padding-top: 20px;}
        .shootbright-workspace .page-btn { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid var(--border-color); padding: 10px 20px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: 0.2s;}
        .shootbright-workspace .page-btn:hover:not(:disabled) { border-color: var(--brand-primary); background: rgba(255,255,255,0.1);}
        .shootbright-workspace .page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

        /* Right Cart Panel */
        .shootbright-workspace .cart-panel {
            width: 400px;
            background: var(--bg-panel);
            backdrop-filter: blur(20px);
            border-left: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            z-index: 10;
        }

        .shootbright-workspace .cart-header {
            padding: 30px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .shootbright-workspace .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 25px;
        }

        .shootbright-workspace .cart-item {
            background: rgba(0,0,0,0.2);
            border: 1px solid var(--border-color);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .shootbright-workspace .item-name { font-size: 0.85rem; color: #fff; flex: 1; margin-right: 12px; line-height: 1.4; font-weight: 600;}
        .shootbright-workspace .item-price { color: var(--text-main); font-weight: 700; font-size: 0.95rem;}
        .shootbright-workspace .item-remove { color: #ef4444; cursor: pointer; margin-left: 12px; font-size: 1.2rem; opacity: 0.6; transition: 0.2s;}
        .shootbright-workspace .item-remove:hover { opacity: 1; }

        /* MARKETING MYSTERY SPINNER */
        .shootbright-workspace .discount-engine {
            background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(50, 179, 138, 0.05) 100%);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 30px 25px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .shootbright-workspace .engine-title { font-size: 1rem; color: #fff; font-weight: 700; margin-bottom: 8px; display: flex; justify-content: center; align-items: center; gap: 8px;}
        .shootbright-workspace .engine-title i { color: var(--brand-primary); font-size: 1.2rem; }
        .shootbright-workspace .tier-indicator { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px;}
        .shootbright-workspace .tier-highlight { color: var(--brand-light); font-weight: 700; }
        .shootbright-workspace .tier-upgrade-alert { color: var(--alert); font-weight: 700; font-size: 0.85rem; margin-bottom: 15px; animation: shootbright-pulse 2s infinite; display: none;}
        
        @keyframes shootbright-pulse {
            0% { opacity: 0.7; }
            50% { opacity: 1; text-shadow: 0 0 10px rgba(251, 191, 36, 0.5); }
            100% { opacity: 0.7; }
        }
        
        .shootbright-workspace .spin-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--brand-primary), #208b68);
            color: #fff;
            border: none;
            padding: 16px;
            font-size: 1rem;
            font-weight: 800;
            cursor: pointer;
            border-radius: 12px;
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(50, 179, 138, 0.3);
        }
        
        .shootbright-workspace .spin-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(50, 179, 138, 0.5);
            background: linear-gradient(135deg, var(--brand-light), var(--brand-primary));
        }
        
        .shootbright-workspace .spin-btn:disabled {
            background: rgba(255,255,255,0.05);
            color: var(--text-muted);
            box-shadow: none;
            cursor: not-allowed;
        }

        .shootbright-workspace .spinning-container {
            display: none;
            padding: 15px 0;
            background: rgba(0,0,0,0.3);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin-bottom: 10px;
        }

        .shootbright-workspace .spin-numbers { 
            font-size: 2.5rem; 
            font-weight: 800; 
            color: var(--text-main); 
            letter-spacing: 2px;
            filter: blur(1px);
        }

        .shootbright-workspace .discount-result-box {
            display: none;
            background: rgba(50, 179, 138, 0.1);
            border: 1px solid var(--brand-primary);
            padding: 20px;
            border-radius: 12px;
            margin-top: 10px;
            animation: shootbright-popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes shootbright-popIn {
            0% { transform: scale(0.9); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .shootbright-workspace .result-text { font-size: 2.2rem; color: var(--brand-light); font-weight: 800; line-height: 1.1;}
        .shootbright-workspace .result-label { font-size: 0.85rem; color: #fff; font-weight: 600; margin-top: 5px;}

        /* Totals */
        .shootbright-workspace .checkout-zone { padding: 30px; }
        .shootbright-workspace .tot-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.95rem; color: var(--text-muted); font-weight: 500;}
        .shootbright-workspace .tot-discount { color: var(--brand-light); display: none; font-weight: 600; }
        .shootbright-workspace .tot-final { font-size: 1.8rem; color: #fff; font-weight: 800; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-color); }
        
        .shootbright-workspace .checkout-btn {
            width: 100%;
            background: #fff;
            color: #000;
            border: none;
            padding: 18px;
            font-size: 1.05rem;
            font-weight: 800;
            cursor: pointer;
            border-radius: 12px;
            margin-top: 25px;
            transition: 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        .shootbright-workspace .checkout-btn:hover { background: var(--brand-primary); color: #fff;}

    
        /* Explicitly define Blue classes */
        .shootbright-workspace .text-blue-400 { color: #60a5fa !important; }
        .shootbright-workspace .text-blue-500 { color: #3b82f6 !important; }
        .shootbright-workspace .text-blue-600 { color: #2563eb !important; }
        .shootbright-workspace .bg-blue-400 { background-color: #60a5fa !important; }
        .shootbright-workspace .bg-blue-500 { background-color: #3b82f6 !important; }
        .shootbright-workspace .bg-blue-600 { background-color: #2563eb !important; }
        .shootbright-workspace .border-blue-400 { border-color: #60a5fa !important; }
        .shootbright-workspace .border-blue-500 { border-color: #3b82f6 !important; }
        
        /* Force Sidebar category numbers to blue */
        .shootbright-workspace aside span,
.shootbright-workspace nav span,
.shootbright-workspace .sidebar span,
.shootbright-workspace li span {
            color: #60a5fa !important;
        }

        /* Discount Box Outline glow */
        .shootbright-workspace [class*="border-blue"] {
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.4) !important;
        }

        /* Deep Space Theme Background */
        .shootbright-workspace,
.shootbright-workspace main,
.shootbright-workspace #root,
.shootbright-workspace #app,
.shootbright-workspace [class*="bg-slate-9"] {
            background-color: #020617 !important;
            background-image: radial-gradient(circle at top, #1e3a8a 0%, #020617 70%) !important;
            color: #f8fafc !important;
        }
        
        /* Glassmorphism Product Cards */
        .shootbright-workspace .bg-slate-800,
.shootbright-workspace [class*="bg-slate-8"],
.shootbright-workspace [class*="bg-gray-8"] {
            background-color: rgba(15, 23, 42, 0.7) !important;
            backdrop-filter: blur(10px) !important;
            border: 1px solid rgba(59, 130, 246, 0.2) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
        }
        
        /* Neon Buttons */
        .shootbright-workspace button,
.shootbright-workspace .badge {
            background-color: #2563eb !important;
            border-color: #60a5fa !important;
            box-shadow: 0 0 15px rgba(37, 99, 235, 0.4) !important;
            color: #ffffff !important;
        }
        .shootbright-workspace button:hover {
            background-color: #3b82f6 !important;
            box-shadow: 0 0 25px rgba(96, 165, 250, 0.7) !important;
        }
    

/* ======================= Embedding + Responsive ======================= */

/* The source design sets `z-index: 10` on the side panels. In its own
   full-screen page that is inert, but here they are FLEX ITEMS — and z-index
   DOES apply to flex items even at `position: static`. That makes them paint in
   the positioned layer, on top of a theme's fixed/sticky header (swallowing its
   clicks). Keep them in normal flow; they never overlap anything anyway. */
.shootbright-workspace .sidebar,
.shootbright-workspace .cart-panel,
.shootbright-workspace .workspace { z-index: auto; }

/* Never push the host page sideways. */
.shootbright-workspace { max-width: 100%; }
.shootbright-workspace .sidebar,
.shootbright-workspace .cart-panel,
.shootbright-workspace .workspace { min-width: 0; }

/* Mobile category picker — hidden on desktop, which keeps the real sidebar. */
.shootbright-workspace .cat-select-wrap { display: none; }

/* Flat-bundle spinner results are written as three lines
   ("STARTER TIER
(FLAT ROUND DISCOUNT)
-$2.09"); honour the newlines. */
.shootbright-workspace .result-text { white-space: pre-line; }

/* Laptops: narrow the side panels so the product grid keeps 2+ columns. */
@media (max-width: 1366px) {
    .shootbright-workspace .sidebar { width: 244px; padding: 26px 16px; }
    .shootbright-workspace .cart-panel { width: 344px; }
    .shootbright-workspace .workspace { padding: 30px 30px; }
    .shootbright-workspace .cart-header,
    .shootbright-workspace .checkout-zone { padding: 24px; }
}

/* Tablet and below: NO sidebar. The catalog picker moves up next to the search
   at the top, and the cart + spinner + checkout sit at the bottom. */
@media (max-width: 960px) {
    .shootbright-workspace { flex-direction: column; align-items: stretch; background-image: none; }

    /* The sidebar's logo duplicates the site header's, and its category list is
       replaced by the picker in the top bar — drop the whole panel. */
    .shootbright-workspace .sidebar { display: none; }

    /* Semi-transparent panels over a long scrolling page make mobile browsers
       leave stale/ghosted pixels behind. Opaque backgrounds, no blur. */
    .shootbright-workspace .cart-panel {
        background-color: var(--bg-deep, #0b0f19);
        backdrop-filter: none;
        width: auto; align-self: stretch;
        border-left: none; border-top: 1px solid var(--border-color, rgba(255,255,255,.1));
    }

    .shootbright-workspace .workspace { flex: none; width: auto; overflow: visible; padding: 22px 16px; }

    .shootbright-workspace .top-bar { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 22px; }
    .shootbright-workspace .search-box { width: 100%; }

    .shootbright-workspace .cat-select-wrap { display: block; position: relative; width: 100%; }
    .shootbright-workspace .cat-select-wrap::after {
        content: ''; position: absolute; right: 18px; top: 50%; pointer-events: none;
        width: 8px; height: 8px; margin-top: -6px;
        border-right: 2px solid var(--text-muted, #94a3b8);
        border-bottom: 2px solid var(--text-muted, #94a3b8);
        transform: rotate(45deg);
    }
    .shootbright-workspace .cat-select {
        -webkit-appearance: none; appearance: none;
        width: 100%; padding: 14px 40px 14px 18px;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid var(--border-color, rgba(255,255,255,.1));
        border-radius: 12px;
        color: var(--text-main, #fff);
        font-family: inherit; font-size: 0.95rem; font-weight: 600;
        outline: none; cursor: pointer;
    }
    .shootbright-workspace .cat-select:focus {
        border-color: var(--brand-primary, #10b981);
        box-shadow: 0 0 0 3px var(--brand-glow, rgba(16,185,129,.2));
    }
    /* The native dropdown list renders in the OS theme, not the page's. */
    .shootbright-workspace .cat-select option { color: #111; background: #fff; }
}

/* Phones. */
@media (max-width: 600px) {
    .shootbright-workspace .workspace { padding: 20px 15px; }
    .shootbright-workspace .top-bar { flex-direction: column; align-items: stretch; gap: 14px; margin-bottom: 22px; }
    .shootbright-workspace .search-box { width: 100%; }
    .shootbright-workspace .view-title { font-size: 1.4rem; }
    .shootbright-workspace .grid { grid-template-columns: 1fr; gap: 14px; }
    .shootbright-workspace .card { padding: 18px; }
    .shootbright-workspace .pagination { gap: 12px; padding-top: 14px; }
    .shootbright-workspace .page-btn { padding: 9px 14px; }
    .shootbright-workspace .cart-header { padding: 20px; }
    .shootbright-workspace .cart-items { padding: 16px; }
    .shootbright-workspace .discount-engine { padding: 24px 16px; }
    .shootbright-workspace .checkout-zone { padding: 22px 16px; }
    .shootbright-workspace .spin-numbers { font-size: 2rem; }
    .shootbright-workspace .result-text { font-size: 1.7rem; }
    .shootbright-workspace .tot-final { font-size: 1.5rem; }
    .shootbright-workspace .checkout-btn { padding: 16px; font-size: 1rem; }
    .shootbright-workspace .modal-overlay { padding: 10px; }
    .shootbright-workspace .modal-header { padding: 14px 16px; }
    .shootbright-workspace .modal-body { padding: 16px; }
}
