/* KickRocksMF custom select. Cloned pattern from mm-admin-select, dark theme, 52px control height, brand red accent. */

.kr-select {
    position: relative;
    display: block;
    width: 100%;
    font-family: inherit;
}

.kr-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    height: 64px;
    padding: 0 20px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    border-radius: 2px;
    transition: border-color 0.15s ease;
}

.kr-select__trigger:hover,
.kr-select.is-open .kr-select__trigger {
    border-color: #555;
}

.kr-select__label { flex: 1; }
.kr-select.is-placeholder .kr-select__label { color: #555; }

.kr-select__chevron {
    flex-shrink: 0;
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #CD3711;
    transition: transform 160ms ease;
}
.kr-select.is-open .kr-select__chevron { transform: rotate(180deg); }

.kr-select__menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    z-index: 200;
    /* 7 rows visible: opt padding 14 + line ~19 + 14 = 47px, x7 = 329, + menu padding 4+4 = 337 */
    max-height: 337px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: none;
    border-radius: 2px;
}
.kr-select__menu::-webkit-scrollbar { display: none; width: 0; height: 0; }
.kr-select.is-open .kr-select__menu { display: block; }

.kr-select__opt {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.1s ease;
}
.kr-select__opt:hover,
.kr-select__opt.is-focused {
    background: #1a0a06;
}
.kr-select__opt.is-selected {
    color: #fff;
    font-weight: 700;
}
