.luma-provider-type-picker {
    position: relative;
    width: 100%;
}

.luma-provider-type-picker__label {
    display: block;
    margin: 0 0 10px;
    color: #241f35;
    font-size: 14px;
    font-weight: 800;
}

.luma-provider-type-picker__toggle {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    color: #241f35;
    background: #fff;
    border: 1px solid #ded8ea;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-align: start;
    box-shadow: 0 8px 22px rgba(47, 37, 80, 0.06);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.luma-provider-type-picker__toggle:hover,
.luma-provider-type-picker.is-open .luma-provider-type-picker__toggle {
    border-color: #7950f2;
    box-shadow: 0 0 0 3px rgba(121, 80, 242, 0.12);
}

.luma-provider-type-picker__toggle:focus-visible,
.luma-provider-type-picker__option:focus-visible {
    outline: 3px solid rgba(121, 80, 242, 0.2);
    outline-offset: 2px;
}

.luma-provider-type-picker__value {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.luma-provider-type-picker__badge {
    flex: 0 0 auto;
    padding: 5px 10px;
    color: #c65d17;
    background: #fff1e7;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.luma-provider-type-picker__arrow {
    color: #746b86;
    transition: transform .2s ease;
}

.luma-provider-type-picker.is-open .luma-provider-type-picker__arrow {
    transform: rotate(180deg);
}

.luma-provider-type-picker__menu {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 8px);
    inset-inline: 0;
    max-height: 360px;
    overflow-y: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid #e2ddec;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(47, 37, 80, 0.17);
}

.luma-provider-type-picker__group + .luma-provider-type-picker__group {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eee9f6;
}

.luma-provider-type-picker__group-label {
    padding: 7px 10px;
    color: #81778f;
    font-size: 12px;
    font-weight: 800;
}

.luma-provider-type-picker__option {
    width: 100%;
    display: block;
    padding: 10px 12px;
    color: #241f35;
    background: transparent;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-align: start;
}

.luma-provider-type-picker__option:hover,
.luma-provider-type-picker__option.is-selected {
    color: #6546dc;
    background: #f0ebff;
}

.luma-provider-type-picker__empty {
    padding: 12px;
    color: #81778f;
    text-align: center;
}

.luma-provider-type-picker__menu[hidden],
.luma-provider-type-picker [hidden] {
    display: none !important;
}
