
        .glass-panel {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .category-pill.active {
            background-color: #0E3B83 !important;
            color: white !important;
            border-color: #0E3B83 !important;
            box-shadow: 0 4px 12px rgba(14, 59, 131, 0.2);
        }

        .cart-bar {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
        }

        .cart-bar.hidden-bar {
            transform: translateY(120px);
            opacity: 0;
            pointer-events: none;
        }

        .cart-sheet {
            transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        }

        .cart-sheet.closed {
            transform: translateY(100%);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-thumb {
            background: #E2E8F0;
            border-radius: 10px;
        }

        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.05);
        }
    