/* 모달 스크롤바 깜빡임 방지 */

/* body 스크롤바 안정화 */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* 모달 backdrop 개선 */
.modal-backdrop {
    transition: opacity 0.15s linear !important;
}

.modal-backdrop.fade {
    opacity: 0 !important;
}

.modal-backdrop.show {
    opacity: 0.5 !important;
}

/* 모달 fade 애니메이션 개선 */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out !important;
    transform: translate(0, -50px) !important;
}

.modal.show .modal-dialog {
    transform: none !important;
}

/* 상품 상세 모달 전용 스타일 */
#productDetailModal {
    z-index: 1055 !important;
}

#productDetailModal .modal-backdrop {
    z-index: 1050 !important;
}

/* 스크롤바 너비 계산 방지 */
.modal-open {
    padding-right: 0 !important;
}

/* 모달 닫기 시 스크롤바 복원 */
body:not(.modal-open) {
    overflow: auto !important;
    padding-right: 0 !important;
}

