.mobile-list-filter-shell {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mobile-list-filter-shell:not(.is-mobile-mode) > select {
    width: 100%;
}

.mobile-list-filter-trigger {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    gap: 0.75rem;
    padding: 0.62rem 0.8rem;
    border: 1px solid rgba(105, 229, 255, 0.62);
    border-radius: 12px;
    background: linear-gradient(180deg, #202831 0%, #161d24 100%);
    color: #fff3d8;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    cursor: pointer;
    touch-action: manipulation;
}

.mobile-list-filter-trigger:focus-visible,
.mobile-list-filter-trigger[aria-expanded="true"] {
    outline: none;
    border-color: #00d9ff;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.mobile-list-filter-trigger:disabled {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 243, 216, 0.42);
    background: #191f25;
    box-shadow: none;
    cursor: not-allowed;
}

.mobile-list-filter-trigger-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-list-filter-trigger-arrow {
    flex: 0 0 auto;
    width: 0;
    height: 0;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 7px solid #71e8ff;
    transition: transform 0.16s ease;
}

.mobile-list-filter-trigger[aria-expanded="true"] .mobile-list-filter-trigger-arrow {
    transform: rotate(180deg);
}

.mobile-list-filter-shell.is-mobile-mode > select {
    display: none !important;
}

.mobile-list-filter-shell.is-mobile-mode .mobile-list-filter-trigger {
    display: flex;
}

.mobile-list-filter-menu {
    position: fixed;
    z-index: 10020;
    display: grid;
    gap: 4px;
    min-width: 180px;
    padding: 7px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(105, 229, 255, 0.5);
    border-radius: 14px;
    background: #111920;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.58);
    scrollbar-color: #54616c #111920;
    -webkit-overflow-scrolling: touch;
}

.mobile-list-filter-menu[hidden] {
    display: none !important;
}

.mobile-list-filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    gap: 0.7rem;
    padding: 0.62rem 0.72rem;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #20272f;
    color: #fff0d4;
    font: inherit;
    font-weight: 650;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    touch-action: manipulation;
}

.mobile-list-filter-option:hover,
.mobile-list-filter-option:focus-visible {
    outline: none;
    border-color: rgba(105, 229, 255, 0.72);
    background: #28343e;
}

.mobile-list-filter-option[aria-selected="true"] {
    border-color: #00d9ff;
    background: #07343e;
    color: #9cf1ff;
    box-shadow: inset 4px 0 0 #ffc107;
}

.mobile-list-filter-option:disabled {
    color: rgba(255, 240, 212, 0.38);
    background: #171d23;
    cursor: not-allowed;
}

.mobile-list-filter-option-label {
    min-width: 0;
    overflow-wrap: anywhere;
}

.mobile-list-filter-option-mark {
    flex: 0 0 auto;
    color: #ffc107;
    font-size: 1rem;
    font-weight: 900;
    opacity: 0;
}

.mobile-list-filter-option[aria-selected="true"] .mobile-list-filter-option-mark {
    opacity: 1;
}

@media (max-width: 480px) {
    .mobile-list-filter-menu {
        border-radius: 12px;
    }

    .mobile-list-filter-option {
        min-height: 46px;
    }
}
