/* 바텀시트 수정 */
.mobile-bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #fff;
    max-height: 45vh;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-bottom-sheet.active {
    bottom: 0;
}

/* 닫기 버튼 수정 */
.mobile-bottom-sheet-header {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1002;
    /* 더 높은 z-index */
}

/* X 버튼 수정 */
.mobile-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* 바텀시트 컨텐츠 영역 */
.mobile-bottom-sheet-content {
    flex: 1;
    overflow: hidden;
}

.mobile-bottom-sheet-image {
    width: 100%;
    text-align: center;
}

.mobile-bottom-sheet-image img {
    max-width: 100%;
    height: auto;
}

/* 푸터 영역 수정 */
.mobile-bottom-sheet-footer {
    flex-shrink: 0;
    height: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 15px;
}

.mobile-dont-show-today {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.mobile-dont-show-today input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.mobile-bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    /* 배경 어둡게 */
    z-index: 999;
    /* 바텀시트보다 낮게 */
    display: none;
}

.mobile-bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-dont-show-today-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
    /* 상하 여백 추가 */
    gap: 16px;
}

.mobile-dont-show-today-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.mobile-dont-show-today-checkbox label {
    font-size: 12;
    line-height: 18px;
    /* 체크박스 높이와 동일하게 설정 */
    display: flex;
    align-items: center;
    margin: 0;
    /* 기본 마진 제거 */
}


/* 캐러셀 컨테이너 수정 */
.mobile-carousel-container {
    position: relative;
    width: 100%;
    height: calc(100% - 60px);
    /* footer 높이만큼 뺌 */
    overflow: hidden;
}

/* 캐러셀 래퍼 수정 */
.mobile-carousel-wrapper {
    height: 100%;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

/* 슬라이드 수정 */
.mobile-carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 이미지 크기 조정 */
.mobile-carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 페이지네이션 위치 조정 */
.mobile-carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 10;
}

.mobile-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-pagination-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}