        /* CSS Variables & Design System */
        :root {
            --primary-dark: #0f0c08;
            --primary-gold: #c9a227;
            --gold-glow: rgba(201, 162, 39, 0.25);
            --glass-bg: rgba(255, 255, 255, 0.06);
            --glass-border: rgba(255, 255, 255, 0.12);
            --success-green: #22c55e;
            --text-main: #fafaf9;
            --text-muted: #a8a29e;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Inter', sans-serif;
            --spring: cubic-bezier(0.32, 0.72, 0, 1);
            --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Reset & Base Setup */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--primary-dark);
            color: var(--text-main);
            font-family: var(--font-sans);
            -webkit-tap-highlight-color: transparent;
            overflow-x: hidden;
            display: flex;
            justify-content: center;
            background-image: radial-gradient(circle at top right, rgba(201, 162, 39, 0.05), transparent 40%),
                              radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.02), transparent 40%);
            background-attachment: fixed;
        }

        /* Mobile App Container Simulation for Desktop */
        #app {
            width: 100%;
            max-width: 480px;
            min-height: 100vh;
            position: relative;
            box-shadow: 0 0 40px rgba(0,0,0,0.5);
            background-color: var(--primary-dark);
            padding-bottom: 120px;
        }

        /* Typography */
        h1, h2, h3, .serif { font-family: var(--font-serif); }
        
        /* Utility Classes */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid var(--glass-border);
        }
        .haptic { transition: transform 0.2s var(--spring); }
        .haptic:active { transform: scale(0.95); }

        /* Brand Bar */
        .brand-bar {
            text-align: center;
            padding: 0.9rem 1rem 0.6rem;
            letter-spacing: 0.03em;
        }
        .brand-bar .brand-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-main);
            transition: opacity 0.3s;
        }
        .brand-bar .brand-accent {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-gold);
            font-style: italic;
            transition: opacity 0.3s;
        }

        /* Top Bar */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            border-top: none;
            margin-bottom: 1rem;
        }
        .table-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.875rem;
            font-weight: 500;
        }
        .table-info i { color: var(--primary-gold); }
        
        .cart-trigger {
            width: 44px; height: 44px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            position: relative;
            cursor: pointer;
        }
        .header-actions { display: flex; align-items: center; gap: 0.5rem; }
        .waiter-btn {
            width: 44px; height: 44px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; border: none;
            color: var(--text-main); font-family: inherit;
            transition: background 0.2s, color 0.2s, transform 0.15s;
        }
        .waiter-btn i { font-size: 1.25rem; }
        .waiter-btn:hover { color: var(--primary-gold); }
        .waiter-btn:active { transform: scale(0.94); }
        .waiter-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .waiter-btn.ringing i { animation: ringShake 0.5s ease; color: var(--primary-gold); }
        @keyframes ringShake {
            0%,100% { transform: rotate(0); }
            20% { transform: rotate(-15deg); }
            40% { transform: rotate(12deg); }
            60% { transform: rotate(-8deg); }
            80% { transform: rotate(5deg); }
        }

        .mini-toast {
            position: fixed; top: 80px; left: 50%;
            transform: translate(-50%, -40px);
            background: rgba(15, 12, 8, 0.95);
            border: 1px solid var(--primary-gold);
            color: var(--text-main);
            padding: 0.75rem 1.25rem;
            border-radius: 999px;
            font-size: 0.9rem; font-weight: 500;
            display: flex; align-items: center; gap: 0.5rem;
            opacity: 0; pointer-events: none;
            z-index: 150;
            transition: transform 0.35s var(--spring-bounce), opacity 0.25s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        .mini-toast.active { opacity: 1; transform: translate(-50%, 0); }
        .mini-toast i { color: var(--primary-gold); font-size: 1.1rem; }
        .cart-badge {
            position: absolute;
            top: -2px; right: -2px;
            background: var(--primary-gold);
            color: var(--primary-dark);
            font-size: 0.7rem; font-weight: 700;
            width: 18px; height: 18px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transform: scale(0);
            transition: all 0.3s var(--spring-bounce);
        }
        .cart-badge.active { opacity: 1; transform: scale(1); }

        /* Hero Carousel (Swiper) */
        .swiper-section { padding: 1rem 0 2rem; overflow: hidden; }
        .swiper { width: 100%; padding-top: 10px; padding-bottom: 30px; }
        .swiper-slide {
            width: 280px; height: 380px;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: all 0.4s ease;
        }
        .swiper-slide-active {
            box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 0 1px var(--primary-gold);
            filter: brightness(1.1);
        }
        .swiper-slide img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .swiper-slide-active img { transform: scale(1.05); }
        .slide-content {
            position: absolute;
            bottom: 15px; left: 15px; right: 15px;
            padding: 1rem;
            border-radius: 16px;
            display: flex; flex-direction: column; gap: 4px;
        }
        .slide-content h3 { font-size: 1.25rem; font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .slide-content span { font-size: 0.85rem; color: var(--primary-gold); font-weight: 500; }

        /* Category Pills */
        .categories {
            display: flex; gap: 0.75rem;
            padding: 0 1rem 1.5rem;
            overflow-x: auto;
            scrollbar-width: none;
            scroll-snap-type: x mandatory;
        }
        .categories::-webkit-scrollbar { display: none; }
        .pill {
            padding: 0.6rem 1.25rem;
            border-radius: 30px;
            font-size: 0.9rem; font-weight: 500;
            white-space: nowrap;
            scroll-snap-align: start;
            cursor: pointer;
            transition: all 0.3s var(--spring);
        }
        .pill.active {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: scale(1.05);
            border-color: var(--primary-gold);
            box-shadow: 0 4px 15px var(--gold-glow);
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 0 1rem;
        }
        .product-card {
            display: flex; flex-direction: column;
            border-radius: 20px;
            padding: 0.75rem;
            position: relative;
        }
        .product-img-wrap {
            width: 100%; aspect-ratio: 1/1;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            margin-bottom: 0.75rem;
        }
        .product-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-img-wrap img { transform: scale(1.08); }
        
        .add-btn {
            position: absolute;
            bottom: 8px; right: 8px;
            width: 36px; height: 36px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            border: none; cursor: pointer;
            color: var(--primary-gold);
            font-size: 1.2rem;
            z-index: 2;
            transition: all 0.3s var(--spring-bounce);
        }
        .add-btn.added {
            background: var(--primary-gold);
            color: var(--primary-dark);
        }

        .product-info { display: flex; flex-direction: column; gap: 4px; flex-grow: 1; }
        .product-info h4 { font-size: 0.95rem; font-weight: 600; margin: 0; line-height: 1.2; }
        .product-info p { font-size: 0.75rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .product-price { margin-top: auto; padding-top: 6px; font-size: 1.1rem; font-weight: 600; color: var(--primary-gold); }

        /* Cart Bottom Sheet */
        .cart-overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 99;
            opacity: 0; pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .cart-overlay.active { opacity: 1; pointer-events: auto; }
        
        .cart-sheet {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            max-width: 480px; margin: 0 auto;
            height: 85vh;
            background: rgba(15, 12, 8, 0.85);
            backdrop-filter: blur(30px) saturate(200%);
            -webkit-backdrop-filter: blur(30px) saturate(200%);
            border-top: 1px solid var(--glass-border);
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
            z-index: 100;
            transform: translateY(100%);
            transition: transform 0.5s var(--spring);
            display: flex; flex-direction: column;
        }
        .cart-sheet.active { transform: translateY(0); }
        
        .drag-handle {
            width: 40px; height: 4px;
            background: var(--glass-border);
            border-radius: 4px;
            margin: 12px auto 20px;
        }
        .cart-header { padding: 0 1.5rem 1rem; border-bottom: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; }
        .cart-header h2 { font-size: 1.5rem; }
        .close-cart { background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }
        
        .cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
        .cart-item { display: flex; gap: 1rem; align-items: center; animation: slideIn 0.4s var(--spring) forwards; opacity: 0; transform: translateY(20px); }
        @keyframes slideIn { to { opacity: 1; transform: translateY(0); } }
        .cart-item img { width: 60px; height: 60px; border-radius: 12px; object-fit: cover; }
        .cart-item-info { flex: 1; }
        .cart-item-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
        .cart-item-info .price { color: var(--primary-gold); font-weight: 600; font-size: 0.9rem; }
        .cart-item-info .cart-variant { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 4px; line-height: 1.35; }

        /* Variant Sheet */
        .variant-sheet {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            max-width: 480px; margin: 0 auto;
            max-height: 85vh;
            background: rgba(15, 12, 8, 0.92);
            backdrop-filter: blur(30px) saturate(200%);
            -webkit-backdrop-filter: blur(30px) saturate(200%);
            border-top: 1px solid var(--glass-border);
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
            z-index: 110;
            transform: translateY(100%);
            transition: transform 0.4s var(--spring);
            display: flex; flex-direction: column;
        }
        .variant-sheet.active { transform: translateY(0); }
        .variant-header {
            padding: 0 1.5rem 1rem;
            border-bottom: 1px solid var(--glass-border);
        }
        .variant-header h3 { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 4px; }
        .variant-header .variant-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.4; }
        .variant-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
        .variant-group { margin-bottom: 1.5rem; }
        .variant-group-title {
            font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
            color: var(--text-muted); margin-bottom: 0.65rem;
        }
        .variant-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .variant-chip {
            padding: 0.55rem 0.95rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--glass-border);
            border-radius: 999px;
            color: var(--text-main);
            font-size: 0.88rem; font-weight: 500;
            cursor: pointer;
            transition: 0.18s;
            font-family: inherit;
            display: inline-flex; align-items: center; gap: 0.35rem;
        }
        .variant-chip .delta { color: var(--primary-gold); font-size: 0.78rem; font-weight: 600; }
        .variant-chip.active {
            background: rgba(201, 162, 39, 0.18);
            border-color: var(--primary-gold);
            color: var(--primary-gold);
        }
        .variant-chip.active .delta { color: var(--primary-gold); }
        .variant-footer {
            border-top: 1px solid var(--glass-border);
            padding: 1rem 1.5rem 1.5rem;
            display: flex; gap: 0.75rem; align-items: center;
        }
        .variant-footer .variant-total {
            flex: 1;
            display: flex; flex-direction: column; gap: 2px;
        }
        .variant-footer .variant-total-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
        .variant-footer .variant-total-value { font-family: var(--font-serif); font-size: 1.5rem; color: var(--primary-gold); font-weight: 700; }
        .variant-footer .variant-add-btn {
            flex: 1.5;
            background: var(--primary-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0.95rem 1.25rem;
            border-radius: 14px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            font-family: inherit;
            display: flex; align-items: center; justify-content: center; gap: 0.5rem;
            transition: transform 0.12s, filter 0.2s;
        }
        .variant-footer .variant-add-btn:active { transform: scale(0.97); }
        .variant-footer .variant-add-btn:disabled { opacity: 0.55; cursor: not-allowed; }
        
        .stepper { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); padding: 6px; border-radius: 999px; border: 1px solid var(--glass-border); }
        .stepper button { width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(255,255,255,0.08); color: var(--text-main); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.15s; }
        .stepper button:hover { background: rgba(255,255,255,0.15); }
        .stepper button:active { background: rgba(255,255,255,0.2); transform: scale(0.9); }
        .stepper span { width: 24px; text-align: center; font-weight: 600; font-size: 0.95rem; }

        .cart-form { padding: 0 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
        .input-group { display: flex; flex-direction: column; gap: 0.5rem; }
        .input-group label { font-size: 0.8rem; color: var(--text-muted); margin-left: 0.5rem; }
        input, textarea {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 1rem;
            color: var(--text-main);
            font-family: var(--font-sans);
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
        }
        input:focus, textarea:focus { outline: none; border-color: var(--primary-gold); background: rgba(255,255,255,0.06); }
        input.error { border-color: #ef4444; animation: shake 0.4s; }
        @keyframes shake { 0%, 100% {transform: translateX(0);} 25% {transform: translateX(-5px);} 75% {transform: translateX(5px);} }

        .cart-footer { padding: 1.5rem; border-top: 1px solid var(--glass-border); background: var(--primary-dark); }
        .total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 1.25rem; font-weight: 600; }
        .total-row span:last-child { color: var(--primary-gold); font-family: var(--font-serif); font-size: 1.5rem; }
        
        .checkout-btn {
            width: 100%; padding: 1rem;
            border-radius: 16px; border: none;
            background: var(--primary-gold); color: var(--primary-dark);
            font-size: 1.1rem; font-weight: 600;
            display: flex; justify-content: center; align-items: center; gap: 0.5rem;
            cursor: pointer; position: relative; overflow: hidden;
            transition: all 0.3s ease;
        }
        .checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .checkout-btn.loading { color: transparent; border-radius: 30px; width: 56px; margin: 0 auto; background: var(--glass-border); }
        .checkout-btn.loading::after {
            content: ''; position: absolute;
            width: 24px; height: 24px;
            border: 3px solid var(--primary-dark); border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* Success Overlay */
        .success-overlay {
            position: fixed; inset: 0; z-index: 200;
            background: var(--primary-dark);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none;
            transition: opacity 0.5s ease;
        }
        .success-overlay.active { opacity: 1; pointer-events: auto; }
        
        .success-card {
            text-align: center; z-index: 10;
            padding: 2.5rem; border-radius: 30px;
            position: relative;
        }
        .success-card::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(circle, var(--gold-glow), transparent 70%);
            animation: pulseBg 3s infinite alternate; z-index: -1;
        }
        @keyframes pulseBg { from { opacity: 0.5; transform: scale(0.9); } to { opacity: 1; transform: scale(1.1); } }
        
        .check-wrapper { width: 100px; height: 100px; margin: 0 auto 1.5rem; position: relative; }
        .check-circle { fill: none; stroke: var(--success-green); stroke-width: 4; stroke-dasharray: 166; stroke-dashoffset: 166; }
        .check-path { fill: none; stroke: var(--success-green); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; }
        .success-overlay.active .check-circle { animation: drawCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards 0.2s; }
        .success-overlay.active .check-path { animation: drawPath 0.4s cubic-bezier(0.65, 0, 0.45, 1) forwards 0.8s; }
        @keyframes drawCircle { to { stroke-dashoffset: 0; } }
        @keyframes drawPath { to { stroke-dashoffset: 0; } }

        .success-overlay h2 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--text-main); opacity: 0; transform: translateY(20px); }
        .success-overlay p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 2rem; opacity: 0; transform: translateY(20px); }
        .order-number { background: var(--glass-bg); padding: 1rem 2rem; border-radius: 20px; border: 1px solid var(--primary-gold); color: var(--primary-gold); font-size: 1.5rem; font-weight: 700; font-family: var(--font-serif); letter-spacing: 2px; opacity: 0; transform: scale(0.9); }
        
        .success-overlay.active h2 { animation: slideIn 0.5s var(--spring) forwards 1.2s; }
        .success-overlay.active p { animation: slideIn 0.5s var(--spring) forwards 1.3s; }
        .success-overlay.active .order-number { animation: slideInScale 0.5s var(--spring-bounce) forwards 1.5s; }
        @keyframes slideInScale { to { opacity: 1; transform: scale(1) translateY(0); } }

        .prep-badge {
            margin-top: 1.25rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.15rem;
            border-radius: 999px;
            background: rgba(52, 211, 153, 0.12);
            border: 1px solid rgba(52, 211, 153, 0.45);
            color: #6ee7b7;
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0;
            transform: translateY(12px);
        }
        .prep-badge i { font-size: 1.1rem; }
        .success-overlay.active .prep-badge { animation: slideIn 0.5s var(--spring) forwards 1.7s; }

        canvas#confetti { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

        /* Order Ready Toast */
        .order-toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translate(-50%, -120%);
            z-index: 1000;
            background: linear-gradient(135deg, #16a34a, #15803d);
            color: #fff;
            padding: 14px 44px 14px 18px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 280px;
            max-width: 90vw;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(34, 197, 94, 0.35);
            border: 1px solid rgba(255,255,255,0.2);
            opacity: 0;
            transition: transform 0.5s var(--spring-bounce), opacity 0.3s ease;
        }
        .order-toast.active {
            transform: translate(-50%, 0);
            opacity: 1;
            animation: toastPulse 1.6s ease-in-out infinite;
        }
        @keyframes toastPulse {
            0%, 100% { box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(34, 197, 94, 0.35); }
            50%      { box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(34, 197, 94, 0.9); }
        }
        .order-toast i.toast-icon { font-size: 1.75rem; flex-shrink: 0; animation: bellShake 1.2s ease-in-out infinite; transform-origin: top center; }
        @keyframes bellShake {
            0%, 50%, 100% { transform: rotate(0); }
            10%, 30%      { transform: rotate(-15deg); }
            20%, 40%      { transform: rotate(15deg); }
        }
        .order-toast .toast-content { display: flex; flex-direction: column; gap: 2px; flex: 1; }
        .order-toast .toast-title { font-weight: 700; font-size: 0.95rem; }
        .order-toast .toast-sub { font-size: 0.8rem; opacity: 0.9; }
        .order-toast .toast-close {
            position: absolute;
            top: 8px; right: 8px;
            width: 28px; height: 28px;
            border-radius: 50%;
            background: rgba(0,0,0,0.2);
            border: none;
            color: #fff;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem;
            transition: background 0.2s;
        }
        .order-toast .toast-close:hover { background: rgba(0,0,0,0.4); }

        /* Empty State */
        .empty-cart { text-align: center; padding: 3rem 1rem; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
        .empty-cart i { font-size: 3rem; color: rgba(255,255,255,0.1); }

        /* Table Picker (first visit) */
        .table-picker {
            position: fixed; inset: 0; z-index: 200;
            background: var(--primary-dark);
            background-image: radial-gradient(circle at top, rgba(201, 162, 39, 0.12), transparent 50%),
                              radial-gradient(circle at bottom, rgba(255, 255, 255, 0.03), transparent 50%);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            padding: 2rem 1.25rem; overflow-y: auto;
        }
        .table-picker.hidden { display: none; }
        .table-picker .brand { font-family: var(--font-serif); font-size: 2rem; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
        .table-picker .brand span[data-brand-accent] { color: var(--primary-gold); font-style: italic; }
        .table-picker .slug {
            display: flex; align-items: center; gap: 0.6rem;
            color: var(--primary-gold); font-size: 0.72rem;
            text-transform: uppercase; letter-spacing: 0.35em;
            margin-bottom: 0.9rem; padding-left: 0.35em;
        }
        .table-picker .slug::before,
        .table-picker .slug::after {
            content: ''; width: 28px; height: 1px; background: var(--primary-gold); opacity: 0.5;
        }
        .table-picker .tagline {
            font-family: var(--font-serif); font-style: italic; font-size: 1rem;
            color: var(--text-main); opacity: 0.85; margin-bottom: 1.75rem; text-align: center;
        }
        .table-picker .hint { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; text-align: center; max-width: 320px; line-height: 1.5; }
        .table-picker .grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
            width: 100%; max-width: 360px; margin-bottom: 1.25rem;
        }
        .table-picker .tile {
            aspect-ratio: 1/1; border: 1px solid var(--glass-border); background: var(--glass-bg);
            border-radius: 14px; color: var(--text-main); font-weight: 600; font-size: 1.1rem;
            display: flex; align-items: center; justify-content: center; cursor: pointer;
            transition: transform 0.2s var(--spring-bounce), border-color 0.2s, background 0.2s;
            font-family: inherit;
        }
        .table-picker .tile:hover, .table-picker .tile:active {
            border-color: var(--primary-gold); background: rgba(201, 162, 39, 0.1); transform: translateY(-2px);
        }
        .table-picker .tile.selected {
            border-color: var(--primary-gold); background: var(--primary-gold); color: var(--primary-dark);
        }
        .table-picker .custom-row {
            display: flex; gap: 0.5rem; width: 100%; max-width: 360px; margin-bottom: 1.5rem;
        }
        .table-picker input[type="number"] {
            flex: 1; background: var(--glass-bg); border: 1px solid var(--glass-border);
            color: var(--text-main); padding: 0.8rem 1rem; border-radius: 12px;
            font-size: 1rem; font-family: inherit; outline: none;
        }
        .table-picker input[type="number"]:focus { border-color: var(--primary-gold); }
        .table-picker input::-webkit-outer-spin-button,
        .table-picker input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
        .table-picker .enter-btn {
            width: 100%; max-width: 360px;
            background: var(--primary-gold); color: var(--primary-dark);
            border: none; padding: 1rem; border-radius: 14px;
            font-weight: 700; font-size: 1rem; cursor: pointer; font-family: inherit;
            transition: transform 0.2s var(--spring-bounce), opacity 0.2s;
        }
        .table-picker .enter-btn:disabled { opacity: 0.4; cursor: not-allowed; }
        .table-picker .enter-btn:not(:disabled):active { transform: scale(0.98); }
        .table-picker .demo-note {
            margin-top: 1.5rem; font-size: 0.75rem; color: var(--text-muted);
            text-align: center; max-width: 320px; line-height: 1.5;
        }
        .table-picker .demo-note i { color: var(--primary-gold); margin-right: 4px; }