
        .filter-orb {
            position: fixed;
            top: 8rem;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #28d294;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 0 8px rgba(40, 210, 148, 0.5);
            z-index: 3;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .filter-orb:hover {
            transform: scale(1.1);
            box-shadow: 0 0 12px rgba(40, 210, 148, 0.7);
        }

        .filter-orb i {
            color: #2A3A4A;
            font-size: 16px;
        }

        .filter-menu {
            display: none;
            position: fixed;
            top: 10rem;
            right: 20px;
            width: 220px;
            background: linear-gradient(180deg, #2A3A4A 0%, #3C536E 100%);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(40, 210, 148, 0.3);
            z-index: 1000;
            animation: slideIn 0.3s ease;
        }

        .filter-menu.active {
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .filter-section {
            margin-bottom: 12px;
        }

        .filter-section h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 14px;
            color: #E0E0E0;
            margin-bottom: 8px;
        }

        .filter-section select,
        .filter-section button {
            width: 100%;
            padding: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #28d294;
            color: #E0E0E0;
            font-family: 'Manrope', sans-serif;
            font-size: 12px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .filter-section select:hover,
        .filter-section button:hover {
            background: #28d294;
            color: #2A3A4A;
        }

        .color-swatches {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .color-swatch {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            cursor: pointer;
            border: 1px solid transparent;
            transition: transform 0.3s ease, border 0.3s ease;
        }

        .color-swatch.selected {
            border: 1px solid #28d294;
            transform: scale(1.2);
        }

        .price-slider {
            width: 100%;
            margin: 10px 0;
            accent-color: #28d294;
        }

        .price-range {
            font-family: 'Manrope', sans-serif;
            font-size: 12px;
            color: #E0E0E0;
            text-align: center;
        }










