.rent-select {
    position: relative;
    max-width: 28rem;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial
}
.rent-label {
    display: block;
    margin-bottom: .25rem;
    color: #6b7280;
    line-height: 1.25
}
.rent-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    width: 100%;
    padding: .625rem .75rem;
    border-radius: 12px;
    border: 2px solid #93c5fd;
    background: #dbeafe;
    color: #111827;
    font-weight: 600
}
.rent-btn .chev {
    transition: transform .2s ease;
    color: #60a5fa;
}
.rent-btn svg.chev {
    height: 25px!important;
}

.rent-select.open .chev {
    transform: rotate(180deg)
}
.rent-menu {
    position: absolute;
    left: 0;
    top: calc(100% - .5rem);
    z-index: 2020;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #93c5fd;
    padding: .75rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
    min-width: 16rem
}
@media (max-width: 1024px) {
    .rent-menu {
        top: auto;
        bottom: calc(100% - .5rem)
    }
}
.rent-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .5rem
}
.rent-option:last-child {
    margin-bottom: 0
}
.rent-radio {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    position: relative
}
.rent-radio input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer
}
.rent-radio .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex: 0 0 20px;
    border: 1px solid #d1d5db;
    background: #f3f4f6;
    position: relative
}
.rent-radio input:focus-visible + .dot {
    outline: 2px solid #2563eb;
    outline-offset: 2px
}
.rent-radio input:checked + .dot {
    background: #93c5fd;
    border-color: #3b82f6
}
.rent-radio input:checked + .dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background: #60a5fa;
    border-radius: 50%
}
.rent-badge {
    background: #60a5fa;
    color: #fff;
    font-size: .8rem;
    line-height: 1;
    padding: .25rem .5rem;
    border-radius: 8px;
    white-space: nowrap
}