  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #000000;
            font-family: 'Arial', sans-serif;
            color: #c08830;
       
            min-height: 100vh;
        }

    
    .filter-container{
    position: fixed;
    top:70px;
    width: 100%;
    padding: 8px;
    left: 0;
    background:#ffe798;
    z-index: 9999;

}

        .filter-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .filter-header h2 {
            font-size: 2rem;
            background: linear-gradient(45deg, #c08830, #f4d03f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(192, 136, 48, 0.3);
        }

        .filter-controls {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            align-items: start;
        }

        @media (max-width: 768px) {
            .filter-controls {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        .search-box {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            background: #000000;
            border: 2px solid #c08830;
            border-radius: 10px;
            color: #c08830;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: #f4d03f;
            box-shadow: 0 0 15px rgba(192, 136, 48, 0.4);
        }

        .search-input::placeholder {
            color: #c08830;
            opacity: 0.7;
        }

        .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #c08830;
    width:16px;
    height:16px;
    display: flex;
    justify-content: center;

        }

        .dropdown {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .dropdown-btn {
            width: 100%;
            padding: 15px 20px;
            background: #000000;
            border: 2px solid #c08830;
            border-radius: 10px;
            color: #c08830;
            font-size: 16px;
            cursor: pointer;
            outline: none;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dropdown-btn:hover {
            border-color: #f4d03f;
            box-shadow: 0 0 15px rgba(192, 136, 48, 0.3);
        }

        .dropdown-btn.active {
            border-color: #f4d03f;
            background: #000;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .dropdown-btn.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-content {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            right: 0;
            background: #111111;
            border-radius: 10px;
            max-height: 0;
            overflow: hidden;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .dropdown-content.show {
            max-height: 300px;
            overflow-y: auto;
        }

        .dropdown-item {
            padding: 12px 20px;
            color: #c08830;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(192, 136, 48, 0.2);
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: rgba(192, 136, 48, 0.2);
            color: #f4d03f;
        }

        .filter-section {
            margin-bottom: 20px;
        }

        .filter-label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #c08830;
        }

        /* Responsive adjustments */
        @media (max-width: 480px) {
            .filter-container {
                padding: 20px;
            }
            
            .filter-header h2 {
                font-size: 1.5rem;
            }
            
            .search-input, .dropdown-btn {
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .search-input {
                padding-left: 40px;
            }
            
            .search-icon {
                left: 15px;
                font-size: 16px;
            }
        }

        .sub-dropdown {
            background: #0a0a0a;
            border: 1px solid rgba(192, 136, 48, 0.3);
            border-radius: 8px;
            margin: 5px 0;
        }

        .sub-dropdown-btn {
            width: 100%;
            padding: 12px 15px;
            background: transparent;
            border: none;
            color: #c08830;
            font-size: 15px;
            cursor: pointer;
            outline: none;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }

        .sub-dropdown-btn:hover {
            background: rgba(192, 136, 48, 0.1);
            color: #f4d03f;
        }

        .sub-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #050505;
            border-top: 1px solid rgba(192, 136, 48, 0.2);
        }

        .sub-dropdown-content.show {
            max-height: 200px;
            overflow-y: auto;
        }

        .sub-dropdown-item {
            padding: 10px 20px;
            color: #c08830;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(192, 136, 48, 0.1);
            font-size: 14px;
        }

        .sub-dropdown-item:last-child {
            border-bottom: none;
        }

        .sub-dropdown-item:hover {
            background: rgba(192, 136, 48, 0.15);
            color: #f4d03f;
            padding-left: 25px;
        }
        .dropdown-content::-webkit-scrollbar {
            width: 6px;
        }

        .dropdown-content::-webkit-scrollbar-track {
            background: #111111;
        }

        .dropdown-content::-webkit-scrollbar-thumb {
            background: #c08830;
            border-radius: 3px;
        }

        .dropdown-content::-webkit-scrollbar-thumb:hover {
            background: #f4d03f;
        }