.luxury-select-original {
    display: none !important;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
    font-family: 'Kallisto', sans-serif;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 0.85rem;
    font-weight: 300;
    color: #fff;
    height: 44px;
    line-height: 44px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.custom-select-trigger::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.custom-select.open .custom-select-trigger::after {
    transform: rotate(-135deg) translateY(0);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #333;
    border-top: 0;
    background: #000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    margin-top: 5px;
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 15px;
    font-size: 0.85rem;
    font-weight: 300;
    color: #b0b0b0;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: capitalize;
}

.custom-option:hover {
    color: #fff;
    background-color: #1a1a1a;
}

.custom-option.selected {
    color: #fff;
    background-color: #111;
    font-weight: 500;
}