:root{
    --bottom-nav-h: 72px;
    --safe-bottom: env(safe-area-inset-bottom);
    --app-h: calc(var(--app-vh, 1vh) * 100);
    --nav-total-h: calc(var(--bottom-nav-h) + var(--safe-bottom));
}

/* pull-to-refresh 방지 (Chrome/Android) */
body {
    overscroll-behavior-y: none;
}

.main-content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.map {
    width: 100%;
    height: var(--app-h);
}

.map-ui {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 430px;
    max-width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
}

.map-ui *{
    pointer-events: auto;
}

.map-header {
    background-color: #ffffff;
    color: #ffffff;
}

.map-ui__top {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 8px 16px;
    margin-bottom: 8px;
}

.map-search {
    display: flex;
    gap: 8px;
    flex: 1;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    align-items: center;
    padding: 12px 16px;
    box-shadow: 0 0 4px 0 #0000001a;
}

.map-search__input {
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
    color: #a6a6a6;
}

.map-search__btn {
    width: 24px;
    height: 24px;
    background: transparent;
    cursor: pointer;
}


.map-search__btn--search {
    mask: url("../img/24x24-magnifier.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-magnifier.svg") center/contain no-repeat;
    background-color: #000000;
}

.map-temp__btn {
    width: 24px;
    height: 31px;
    background: transparent;
    cursor: pointer;
/*// TODO(yongss): 추후 복구(해당 줄 복사하여 전체 롤백)*/
}
.map-temp__btn--temp {
    background: url("../img/24x31-logo.svg") center / contain no-repeat;
/*// TODO(yongss): 추후 복구(해당 줄 복사하여 전체 롤백)*/
}
.map-temp__input {
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 18px;
    color: #000000;
    /*// TODO(yongss): 추후 복구(해당 줄 복사하여 전체 롤백)*/

}

.map-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 0;
    background: #ffffff;
    box-shadow: 0 0 4px 0 #0000001a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map-icon--bell {
    width: 24px;
    height: 24px;
    mask: url("../img/24x24-bell.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-bell.svg") center/contain no-repeat;
    background-color: #000000;
}

.map-ui__chips {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    padding: 4px 16px;
}

.map-chip {
    height: 32px;
    padding: 8px 16px;
    border-radius: 12px;
    border: 0;
    background: #ffffff;
    box-shadow: 0 4px 10px 0 #00000026;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    font-size: 14px;
    color: #8c8c8c;
}

.map-chip.is-on {
    background: #262626;
    font-weight: 700;
    color: #ffffff;
}

.map-icon--gps {
    width: 20px;
    height: 20px;
    mask: url("../img/20x20-location.svg") center/contain no-repeat;
    -webkit-mask: url("../img/20x20-location.svg") center/contain no-repeat;
    background-color: #262626;
}

.map-chip__my-location {
    font-weight: 500;
    font-size: 16px;
    color: #0d0d0d;
}

.map-chip.is-on .map-chip__my-location {
    color: #ffffff;
    font-weight: 700;
}

.map-chip.is-on .map-icon--gps {
    background-color: #ffffff;
}

.map-ui__right-bottom {
    position: absolute;
    right: 16px;
    bottom: calc(72px + 16px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.map-zoom {
    display: flex;
    flex-direction: column;
    width: 40px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #a6a6a6;
    overflow: hidden;
}

.map-zoom__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    cursor: pointer;
    background: #ffffff;
}

.map-zoom__btn:not(:last-child) {
    border-bottom: 1px solid #a6a6a6;
}

.map-icon--zoom-in {
    width: 20px;
    height: 20px;
    mask: url("../img/20x20-plus.svg") center/contain no-repeat;
    -webkit-mask: url("../img/20x20-plus.svg") center/contain no-repeat;
    background-color: #262626;
}

.map-icon--zoom-out {
    width: 20px;
    height: 20px;
    mask: url("../img/20x20-minus.svg") center/contain no-repeat;
    -webkit-mask: url("../img/20x20-minus.svg") center/contain no-repeat;
    background-color: #262626;
}

.map-send {
    height: 48px;
    padding: 1px 16px;
    border-radius: 12px;
    background: #262626;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.map-icon--send {
    width: 24px;
    height: 24px;
    mask: url("../img/24x24-airplane.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-airplane.svg") center/contain no-repeat;
    background-color: #ffffff;
}

.map-send__text {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
}

.usan-cluster {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usan-cluster__img {
    width: 56px;
    height: 56px;
    display: block;
}

.usan-cluster,
.usan-cluster * {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.usan-cluster__count {
    position: absolute;
    top: -4px;
    left: 30px;
    height: 20px;
    min-width: 20px;
    padding: 0 6px;
    border-radius: 100px;
    border: 1px solid #ff5a1f;
    background-color: #ffffff;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
    color: #ff5a1f;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.bottom-sheet {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 50%;
    bottom: var(--nav-total-h);
    height: calc(var(--app-h) - var(--nav-total-h));
    max-height: calc(var(--app-h) - var(--nav-total-h));
    transform: translate(-50%, 100%);
    width: 100%;
    max-width: 430px;
    transition: transform 0.25s ease-out;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 16px 0 #00000014;
    z-index: 99;
    padding: 2px 16px 12px 16px;
    box-sizing: border-box;
    will-change: transform;
}

.bottom-sheet.is-half {
    transform: translate(-50%, 40%);
}

.bottom-sheet.is-full {
    transform: translate(-50%, 0);
}

.bottom-sheet.is-dragging {
    transition: none !important;
}

.bottom-sheet__handle-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 30px;
    padding: 12px 0 0 0;
    touch-action: none;
}

.bottom-sheet__handle {
    width: 48px;
    height: 4px;
    border-radius: 26843500px;
    background: #e5e7eb;
}

.bottom-sheet__contents-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    gap: 8px;
    overflow: hidden;
}

.bottom-sheet__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-sheet-btn__distance {
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 16px;
    color: #262626;
}

.bottom-sheet-toggle__wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bottom-sheet-txt {
    font-weight: 800;
    font-size: 24px;
    color: #bfbfbf;
}

.bottom-sheet-txt.is-selected {
    color: #0d0d0d;
}

.bottom-sheet__line {
    width: 100%;
    height: 0;
    border: 1px solid #f2f2f2;
}

#broker-sheet-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding-right: 2px;
    padding-left: 2px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#broker-sheet-content::-webkit-scrollbar {
    display: none;
}

.bottom-sheet.is-half #broker-sheet-content {
    max-height: calc(0.6 * (var(--app-h) - var(--nav-total-h)) - 90px);
}

.bottom-sheet__caption {
    font-weight: 500;
    font-size: 16px;
    color: #404040;
    padding-bottom: 8px;
}

.bottom-sheet__bold {
    font-weight: 700;
    font-size: 16px;
    color: #262626;
}

.bottom-sheet__cluster-list {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.cluster-broker {
    border-bottom: 1px solid #f2f2f2;
}

.cluster-broker-:not(:last-child) {
    border-bottom: none;
}

.cluster-broker-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding-top: 26px;
    padding-bottom: 26px;
}

.cluster-broker.is-open .cluster-broker-item {
    padding-top: 26px;
    padding-bottom: 0;
}

.cluster-broker-item__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cluster-broker-item__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cluster-broker-item__title {
    font-weight: 600;
    font-size: 24px;
    color: #262626;
}

.cluster-broker-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cluster-broker-item__addr-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cluster-broker-item__addr {
    font-weight: 400;
    font-size: 16px;
    color: #595959;
}

.cluster-broker-item__expand-btn {
    width: 24px;
    height: 24px;
    mask: url("../img/24x24-expand.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-expand.svg") center/contain no-repeat;
    background-color: #8c8c8c;
}

.cluster-broker-item__thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #262626;
}

.cluster-broker-item__buttons {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);

    transition:
            max-height 240ms ease,
            opacity 180ms ease,
            transform 180ms ease;

    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.cluster-broker.is-open .cluster-broker-item__buttons {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.cluster-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    background: transparent;
    text-decoration: none;
}

.cluster-btn--send {
    flex: 1;
    background: #262626;
}

.cluster-btn--send .cluster-btn__text {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.cluster-btn--call {
    flex: 1;
    background: #ffffff;
    border: 1px solid #262626;
}

.cluster-btn--call .cluster-btn__text {
    color: #262626;
    font-weight: 400;
    font-size: 16px;
}

.cluster-btn--more {
    display: flex;
    width: 60px;
    min-width: 60px;
    background: transparent;
}

.cluster-btn__icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.cluster-btn__icon--send {
    background-color: #ffffff;
    mask: url("../img/24x24-send.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-send.svg") center/contain no-repeat;
}

.cluster-btn__icon--call {
    background-color: #262626;
    mask: url("../img/16x16-tel.svg") center/contain no-repeat;
    -webkit-mask: url("../img/16x16-tel.svg") center/contain no-repeat;
}

.cluster-btn__icon--more {
    width: 60px;
    height: 60px;
    mask: url("../img/24x24-more-horiz.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-more-horiz.svg") center/contain no-repeat;
    background-color: #262626;
}

/* ===============================
   매물 보내기 바텀시트
   =============================== */

/* 컨테이너: fixed, pointer-events none (자식이 absolute) */
.send-sheet {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 0;
    pointer-events: none;
    z-index: 99;
}

/* 항상 보이는 하단 영역 (보내기 버튼만) */
/* CTA 높이 = padding(12+16) + btn(54) = 82px */
.send-sheet__cta {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid #f2f2f2;
    padding: 12px 16px calc(16px + env(safe-area-inset-bottom));
    pointer-events: auto;
    box-sizing: border-box;
    box-shadow: 0 -2px 8px rgba(0,0,0,.06);
}

/* 접히는 본체: CTA 바로 위에서 슬라이드 */
/* 닫힘 offset = handle(32px) + listing-area(padding 12*2 + input 52) = 108px */
.send-sheet__collapse {
    position: absolute;
    left: 0; right: 0;
    bottom: calc(82px + env(safe-area-inset-bottom));
    background: #fff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 24px rgba(0,0,0,.12);
    max-height: calc(var(--app-h) - 200px);
    overflow: visible;
    display: flex;
    flex-direction: column;
    transform: translateY(calc(100% - 108px));
    transition: transform .25s ease;
    will-change: transform;
    pointer-events: auto;
}

.send-sheet.is-open .send-sheet__collapse { transform: translateY(0); }
.send-sheet.is-dragging .send-sheet__collapse { transition: none !important; }

@media (max-width: 600px) {
    .send-sheet { max-width: 100%; }
    .send-sheet__collapse { border-radius: 18px 18px 0 0; }
}

/* 핸들 */
.send-sheet__handle-area {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    flex-shrink: 0;
}
.send-sheet__handle {
    width: 56px;
    height: 5px;
    border-radius: 999px;
    background: #d9d9d9;
}

/* 매물 선택 영역 (핸들 바로 아래, 항상 노출) */
.send-sheet__listing-area {
    padding: 12px 16px;
    flex-shrink: 0;
    background: #fff;
}

/* listing-area 안 드롭다운: 52px 높이 */
.send-sheet__listing-area .common-input {
    height: 52px;
    padding: 0 40px 0 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
    background: #fff;
}

/* body */
.send-sheet__body {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0 0 12px;
    gap: 12px;
    overflow: hidden;
}

/* 매물 선택 row 내부 */
.send-sheet__listing-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}
.send-sheet__listing-label {
    font-weight: 700;
    font-size: 14px;
    color: #262626;
    white-space: nowrap;
}
.send-sheet__listing-sep {
    color: #bfbfbf;
    white-space: nowrap;
}
.send-sheet__listing-title {
    font-size: 14px;
    color: #595959;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 전체선택 + 필터 */
.send-sheet__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 0 16px;
}
.send-sheet__check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
.send-sheet__check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.send-sheet__check-ui {
    width: 18px; height: 18px;
    border-radius: 4px;
    border: 1.5px solid #0d0d0d;
    display: inline-block;
    position: relative;
}
.send-sheet__check input:checked + .send-sheet__check-ui {
    background: url('../img/24x24-check-square.svg') center / contain no-repeat;
    border: none;
}
.send-sheet__check-text {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}
.send-sheet__filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #e7eafe;
    background: #fff;
    cursor: pointer;
}
.send-sheet__filter-icon {
    width: 24px;
    height: 24px;
    background-color: #0f172a;
    mask: url("../img/24x24-filter.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-filter.svg") center/contain no-repeat;
}
.send-sheet__filter-text {
    font-weight: 600;
    font-size: 13px;
    color: #262626;
}

/* 힌트 */
.send-sheet__hint {
    font-weight: 500;
    font-size: 16px;
    color: #404040;
    flex-shrink: 0;
    padding: 0 16px;
}

/* 중개사 목록 */
.send-sheet__list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 280px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: column;
}
.send-sheet__list::-webkit-scrollbar { display: none; }

/* broker row */
.send-broker {
    border-radius: 0;
    background: transparent;
    padding: 14px 16px;
    border-bottom: 1px solid #f2f2f2;
}
.send-broker:has(.send-broker__checkbox:checked) {
    background: #f2f2f2;
}
.send-broker__row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}
.send-broker__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.send-broker__check-ui {
    width: 18px; height: 18px;
    border-radius: 4px;
    border: 1.5px solid #0d0d0d;
    background: #fff;
    position: relative;
    flex: 0 0 auto;
    margin-top: 2px;
}
.send-broker__checkbox:checked + .send-broker__check-ui {
    background: url('../img/24x24-check-square.svg') center / contain no-repeat;
    border: none;
}
.send-broker__info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.send-broker__name {
    font-weight: 800;
    font-size: 18px;
    color: #262626;
}
.send-broker__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.send-tag {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border-radius: 4px;
}
.send-broker__addr {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.2;
}
.send-broker__thumb {
    width: 56px; height: 56px;
    border-radius: 10px;
    background: #d9d9d9;
    flex: 0 0 auto;
}

/* 보내기 버튼 */
.send-sheet__send-btn {
    width: 100%;
    height: 54px;
    border-radius: 14px;
    border: 0;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}
.send-sheet__send-btn:disabled {
    background: #bfbfbf;
    cursor: not-allowed;
}
.send-sheet__send-icon {
    width: 20px; height: 20px;
    background-color: #fff;
    mask: url("../img/24x24-send.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-send.svg") center/contain no-repeat;
}

.send-sheet__send-text {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

/* 빈 상태 */
.send-sheet__empty-msg {
    padding: 32px 0;
    text-align: center;
    font-size: 14px;
    color: #8b8b8b;
    line-height: 1.7;
}

/* map-ui 내 매물 보내기 열기 버튼 */
.map-ui__send-fab {
    position: absolute;
    left: 16px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    pointer-events: auto;
}
.map-send-fab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    border-radius: 18px;
    border: 0;
    background: rgba(38,38,38,.85);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.map-send-fab__icon {
    width: 16px; height: 16px;
    background-color: #fff;
    mask: url("../img/24x24-send.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-send.svg") center/contain no-repeat;
}

/* 토스트 */
.send-toast {
    position: fixed;
    bottom: calc(100px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 1000;
    background: #262626;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 24px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
}
.send-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.send-toast--error { background: #d93025; }

/* ===============================
   중개사 자세히 보기 시트
   =============================== */

.broker-detail-sheet {
    position: fixed;
    left: 50%;
    bottom: var(--nav-total-h);
    width: 100%;
    max-width: 430px;
    height: calc(var(--app-h) - var(--nav-total-h));
    transform: translate(-50%, 100%);
    transition: transform 0.3s ease;
    background: #ffffff;
    z-index: 99; /* nav(100)보다 낮고 DOM순서상 broker-sheet(99) 위에 쌓임 */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    will-change: transform;
}

.broker-detail-sheet.is-open {
    transform: translate(-50%, 0);
}

/* 헤더 */
.broker-detail-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 16px;
    border-bottom: 1px solid #f2f2f2;
    flex-shrink: 0;
}

.broker-detail-sheet__title {
    font-weight: 600;
    font-size: 16px;
    color: #0d0d0d;
}

.broker-detail-sheet__close {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
    mask: url("../img/24x24-X.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-X.svg") center/contain no-repeat;
    background-color: #262626;
}

.broker-detail-sheet__heart {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
    mask: url("../img/24x24-heart.svg") center/contain no-repeat;
    -webkit-mask: url("../img/24x24-heart.svg") center/contain no-repeat;
    background-color: #262626;
}

/* 바디 (스크롤 영역) */
.broker-detail-sheet__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.broker-detail-sheet__body::-webkit-scrollbar {
    display: none;
}

/* 푸터 (전화 + 매물 보내기) */
.broker-detail-sheet__footer {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid #f2f2f2;
    background: #ffffff;
}
