﻿/* layout_new.css */

/* ---------------------------------------------------------------------------------------------------- 공통 알림 모달 */
.common-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 9998;
}

.common-alert-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 60px);
    max-width: 540px;
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px 35px 25px;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.common-alert-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.common-alert-message {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 25px 0;
    white-space: pre-line;
}

.common-alert-btn-area {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.common-alert-btn {
    display: inline-block;
    font-size: 16px;
    color: #2f66f5;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    padding: 5px 10px;
}

.common-alert-btn-cancel {
    color: #999;
    font-weight: 600;
}

/* ---------------------------------------------------------------------------------------------------- 메인화면 */
/* 전체 기본 설정 */
body {
    background-color: #f2f4f6;
    font-family: 'Pretendard Variable', 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    margin: 0;
    padding: 0;
    /* 화면 중앙 정렬을 위해 Flex 사용 */
    /*display: flex;*/
    /*justify-content: center;*/
    min-height: 100vh;
}

/* 메인 컨테이너 (반응형 설정 핵심) */
.app-container {
    width: 100%; /* 가로 꽉 차게 */
    max-width: 600px;
    margin: 0 auto; /* 화면 중앙 정렬 */
    background-color: #ffffff;
    min-height: 100vh; /* 화면 높이만큼 흰 배경 확보 */
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.05); /* 입체감 */
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}

/* (혹시 이미지 때문에 틀어질 수 있으므로 추가) */
.notice-detail-container img {
    max-width: 100%;
    height: auto;
}

/* 상단 헤더 */
.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 65px;
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    border-bottom: 1px solid #f0f0f0;
}

.header-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}

/* 히어로 카드 (이미지 + 좌석현황 통합) */
.hero-card {
    margin: 20px 20px 20px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* 이미지 비율 유지 (반응형) */
.room-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background-color: #ddd;
}

/* 좌석 현황 영역 (카드 내부) */
.seat-status-area {
    padding: 20px 20px 16px 20px;
}

.seat-status-header {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.seat-refresh-icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    cursor: pointer;
    vertical-align: middle;
    opacity: 0.5;
}

.seat-status-grid {
    display: flex;
    justify-content: center;
    gap: 0;
}

.seat-type-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.seat-type-item + .seat-type-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: #e8e8e8;
}

.seat-type-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.seat-type-count {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.seat-avail {
    font-size: 22px;
    font-weight: 700;
    color: #2f66f5;
}

.seat-total {
    font-size: 13px;
    color: #bbb;
    font-weight: 400;
}

/* 매장 정보 섹션 */
.info-section {
    text-align: center;
    padding: 20px 20px 16px 20px;
}

.badge-open {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #2f66f5;
    color: #2f66f5;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.badge-open .badge-icon {
    width: 14px;
    height: 14px;
}

.badge-closed {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 20px;
    background-color: #f5f0f0;
    color: #999;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.badge-closed .badge-icon {
    width: 14px;
    height: 14px;
    filter: grayscale(1) opacity(0.5);
}

.store-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #111;
}

.store-address {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* 탭 메뉴 */
.tab-menu {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

    .tab-item.active {
        color: #000;
        font-weight: bold;
        border-bottom: 2px solid #2f66f5;
    }

/* 이용권 카드 래퍼 (탭 + 리스트 통합) */
.ticket-card-wrap {
    margin: 20px 20px 20px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* 이용권 리스트 */
.ticket-list {
    padding: 0;
}

.ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    cursor: pointer;
    transition: background 0.2s;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

    .ticket-item:last-child {
        border-bottom: none;
    }

    .ticket-item.selected {
        background-color: #f0f4ff;
    }

.ticket-info h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.ticket-desc {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.ticket-price {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 16px;
}

.discount {
    font-size: 12px;
    color: #ff4d4f;
    margin-bottom: 2px;
    display: block;
}

.original-price {
    text-decoration: line-through;
    color: #bbb;
    margin-left: 4px;
}

.final-price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    display: block;
}

/* 일반금액 스타일 (할인 없음) */
.normal-price {
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

/* 할인금액 스타일 */
.discount-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: #fff0f0;
    color: #ff4d4f;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
}

/* 확장 영역 (더보기) */
.ticket-list-more {
    display: none;
    padding: 0 20px 20px 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.ticket-list-more.show {
    display: block;
}

/* 더보기 버튼 텍스트 전환 */
.btn-more-expanded {
    background-color: #e9ecef !important;
    color: #666 !important;
}

/* 더보기 버튼 */
.btn-more-container {
    padding: 0 20px 20px 20px;
}

.btn-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    border-top: 1px solid #f0f0f0;
}

.btn-more-link-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.btn-more-link.btn-more-expanded {
    color: #999;
}

/* 사물함 이용권 섹션 */
.locker-section-title {
    text-align: center;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 700;
    color: #2f66f5;
    border-bottom: 2px solid #2f66f5;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background-color: #2f66f5;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

/* 공통 버튼 비활성화 */
.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #e9ecef;
    color: #ccc;
    cursor: default;
    pointer-events: none;
}

/* 하단 고정 버튼 영역 */
.btn-bottom-area {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    padding: 15px 20px 30px 20px;
    box-sizing: border-box;
    background: #fff;
    z-index: 100;
}
/* 하단 네비게이션과 함께 사용 시 버튼을 네비 위로 올림 */
.btn-bottom-area.above-nav {
    bottom: 85px;
    padding-bottom: 15px;
}

/* 폼 콘텐츠 영역 (하단 버튼 영역과 겹치지 않도록 여백) */
.page-form-content {
    padding: 20px 24px 100px 24px;
    background-color: #fff;
}

/* 상품 서브탭 */
.product-sub-tabs {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.product-sub-tab {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    margin-bottom: -1px;
}

.product-sub-tab.active {
    color: #2f66f5;
    font-weight: 700;
    border-bottom: 2px solid #2f66f5;
}

/* 공지사항 */
.notice-section {
    padding: 20px;
    background-color: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-header-arrow {
    width: 20px;
    height: 20px;
    opacity: 0.3;
}

.notice-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.notice-card-content {
    flex: 1;
    min-width: 0;
}

.notice-badge-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.notice-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    background-color: #FFF5E0;
    color: #D4890A;
    display: none;
    align-items: center;
    gap: 3px;
    font-weight: 600;
}

.notice-badge-icon {
    width: 12px;
    height: 12px;
}

.notice-new-dot {
    width: 4px;
    height: 4px;
}

.notice-title {
    font-size: 14px;
    margin: 5px 0;
    font-weight: 600;
}

.notice-date {
    font-size: 12px;
    color: #aaa;
}

.notice-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.3;
    margin-left: 10px;
}

/* 운영정보 더보기 */
.btn-amenity-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    margin-top: 16px;
    box-sizing: border-box;
}

.btn-amenity-more img {
    width: 16px;
    height: 16px;
    display: none;
}

/* 푸터 */
.footer {
    background-color: #f9f9f9;
    padding: 30px 20px 180px 20px;
    font-size: 11px;
    color: #999;
    line-height: 1.6;
}

.company-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

/* 하단 네비게이션 바 (반응형 고정) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%; /* 화면 중앙 기준 */
    transform: translateX(-50%); /* 정확히 중앙으로 이동 */
    width: 100%;
    max-width: 600px; /* 컨테이너와 동일한 너비 제한 */
    height: 85px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.03);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #bbb;
    cursor: pointer;
}

    .nav-item.active {
        color: #2f66f5;
    }

.nav-icon {
    display: block;
    margin-bottom: 6px;
    width: 24px;
    height: 24px;
    filter: saturate(0) brightness(1.1);
    transition: filter 0.2s;
}
.nav-item.active .nav-icon {
    filter: none;
}

/* 모바일 전용 미디어 쿼리 (화면이 600px보다 작을 때) */
@media (max-width: 600px) {
    .app-container, .bottom-nav {
        max-width: 100%; /* 모바일에서는 꽉 차게 */
    }

    .room-image {
        height: 200px; /* 모바일에서 적절한 고정 높이 */
    }
}


.tab-item.active {
    color: #000;
    font-weight: bold;
    border-bottom: 2px solid #2f66f5;
    color: #2f66f5; /* 글자색도 파란색으로 명확히 지정 */
}

/* 탭 콘텐츠 영역 (페이드 인 효과 추가) */
.tab-content-area {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* layout_new.css 내 추가 및 수정 */

/* [신규] Swiper 슬라이드 관련 스타일 */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* 이미지 비율 유지 */
    object-fit: cover;
}

/* 운영정보 카드 */
.oper-info-card {
    margin: 0 20px 20px 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* [신규] 매장 정보 탭 스타일 */
.info-header {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #000;
}

.map-container {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container #kakaoMap {
    width: 100%;
    height: 200px;
}

.info-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    margin-bottom: 12px;
    font-size: 14px;
}

.detail-label {
    width: 80px;
    color: #888;
    font-weight: 500;
    flex-shrink: 0; /* 라벨 너비 고정 */
}

.detail-value {
    color: #333;
    line-height: 1.5;
}

/* [신규] 편의시설 박스 스타일 */
.amenity-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    background: #fff;
}

.amenity-title {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2열 그리드 */
    gap: 15px;
}

.amenity-item {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

    .amenity-item i {
        margin-right: 8px;
        color: #888;
        width: 20px; /* 아이콘 영역 고정 */
        text-align: center;
    }

    .amenity-item .amenity-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        object-fit: contain;
    }

/* 1. 모든 점 (기본 상태) */
.swiper-pagination-bullet {
    width: 6px !important; /* 너비 고정 */
    height: 6px !important; /* 높이 고정 */
    background: #e0e0e0 !important; /* 연한 회색 */
    opacity: 1 !important; /* 투명도 제거 */
    border-radius: 4px !important; /* 둥글게 */
    margin: 0 4px !important; /* 점 사이 간격 */
    transition: all 0.3s ease !important; /* 부드러운 애니메이션 */
}

/* 2. 현재 선택된 점 (활성 상태) - 길게 늘어남 */
.swiper-pagination-bullet-active {
    width: 24px !important; /* 가로로 3배 길게 */
    background: #2f66f5 !important; /* 파란색 강조 */
    border-radius: 4px !important; /* 알약 모양 유지 */
}





/* layout_new.css 맨 아래 추가 */

/* 1. 모달 배경 (어두운 영역) */
.modal-overlay {
    display: none; /* 기본 숨김 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    animation: fadeIn 0.3s;
}

/* 2. 바텀 시트 (모달 본체) */
.modal-bottom-sheet {
    display: none; /* 기본 숨김 */
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px; /* 앱 컨테이너 너비와 맞춤 */
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    animation: slideUp 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* 상단 회색 핸들 바 */
.modal-handle-bar {
    width: 40px;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
    margin: 0 auto 20px auto;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

/* 3. 선택 옵션 박스 */
.modal-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.2s;
}

.option-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.option-icon {
    font-size: 20px;
    color: #ddd; /* 기본 회색 */
}

/* 선택된 상태 스타일 */
.modal-option.selected {
    border: 2px solid #2f66f5;
    background-color: #f8fbff;
}

    .modal-option.selected .option-icon {
        color: #2f66f5; /* 파란색 */
    }

/* 모달 내 버튼 */
.btn-modal-action {
    margin-top: 20px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
}

/* 애니메이션 정의 */
@keyframes slideUp {
    from {
        bottom: -100%;
    }

    to {
        bottom: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 상품 선택 바텀시트 목록 */
.pdt-sheet-list {
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.pdt-sheet-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}


/* ---------------------------------------------------------------------------------------------------- 공지사항 */

/* 서브 헤더 (뒤로가기 + 페이지 제목) */
.sub-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    /* [추가] 스크롤 내려도 상단에 붙어있도록 설정 */
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #f0f0f0; /* 헤더 구분선 추가 */
}

/* 나머지 스타일은 기존 유지 */
.btn-back {
    font-size: 18px;
    color: #000;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-right: 10px;
}

.sub-title {
    flex-grow: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-right: 18px;
}

/* 상세 내용 영역 */
.notice-detail-container {
    background-color: #fff;
    padding: 20px 20px 40px 20px; /* 하단 여백 넉넉히 */
    min-height: 300px; /* 내용이 적어도 흰 배경 유지 */
}

.detail-title {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.detail-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
    display: block;
}

.divider {
    height: 1px;
    background-color: #eee;
    border: none;
    margin: 0 0 20px 0;
}

.detail-content {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    white-space: pre-line; /* 줄바꿈 문자(\n)를 실제 줄바꿈으로 인식 */
}

.notice-attach {
    margin: 12px 0 16px 0;
    padding: 10px 14px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.notice-attach a {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    word-break: break-all;
}

.notice-attach a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------------------------------------------------- 인덱스화면 */
/* layout_new.css 맨 아래 추가 (인덱스 페이지용) */

/* 배경 이미지가 꽉 차는 레이아웃 */
.login-container {
    position: relative;
    width: 100%;
    height: 100vh; /* 화면 높이 전체 차지 */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/Assets/Images/bg/Img_Login_Bg2.png'); /* 배경 이미지 경로 */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* 상단 로고와 하단 버튼 분리 */
    padding: 60px 20px 80px 20px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
}

/* 상단 브랜드 로고 */
.login-logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

/* 중간 메인 문구 */
.login-content {
    margin-top: auto;
    margin-bottom: 40px;
}

    .login-content h1 {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .login-content p {
        font-size: 16px;
        line-height: 1.5;
        opacity: 0.9;
    }

/* 하단 버튼 영역 */
.login-button-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 투명한 느낌의 로그인/회원가입 버튼 */
.btn-login-outline {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.2); /* 반투명 배경 */
    border: 1px solid rgba(255, 255, 255, 0.5); /* 반투명 테두리 */
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(5px); /* 배경 흐림 효과 (고급스러움) */
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-login-outline:hover {
        background: rgba(255, 255, 255, 0.3);
    }




/* ---------------------------------------------------------------------------------------------------- 로그인화면 */
/* 공통 컬러 변수 */
:root {
    --primary-color: #2f66f5;
    --text-black: #111;
    --text-gray: #666;
    --border-color: #e0e0e0;
}

/* 입력창 스타일 */
.input-default {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    margin-top: 8px;
}

/* 공통 버튼 (Full Width) */
.btn-primary.btn-full {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
}

/* 로그인 옵션 영역 */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.custom-check label {
    margin-left: 5px;
    margin-right: 10px;
}

.find-group a {
    text-decoration: none;
    color: var(--text-gray);
}

.find-group .divider {
    margin: 0 5px;
    color: #eee;
}

/* 서브헤더 정렬 */
.sub-header {
    display: flex;
    align-items: center;
    padding: 20px;
}

.btn-back {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.sub-title {
    font-size: 22px;
    font-weight: bold;
    margin-left: 10px;
}

/* 폼 영역 전체 여백 */
.login-form-container {
    padding: 0 24px 40px 24px;
    background-color: #fff;
    min-height: calc(100vh - 60px); /* 화면을 꽉 채우게 */
}

/* 분리된 큰 타이틀 */
.page-title {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: -0.5px;
}

/* 필수 표시 */
.text-required {
    color: #ff3b30;
    font-weight: 600;
}

/* 입력 유효성 메시지 */
.input-hint-msg {
    display: block;
    font-size: 13px;
    color: #ff3b30;
    margin-top: 6px;
    min-height: 18px;
}

/* 라벨 및 인풋 그룹 */
.input-group {
    margin-bottom: 24px;
    text-align: left;
}

    .input-group label {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #555;
        margin-bottom: 10px;
    }

/* 공통 입력창 (회색 테두리, 둥근 모서리) */
.input-default {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    background-color: #fff;
    transition: border-color 0.2s;
}

    .input-default::placeholder {
        color: #aaa;
    }

    .input-default:focus {
        outline: none;
        border-color: #2f66f5; /* 포커스 시 파란색 테두리 */
    }

/* select 요소 스타일 */
select.input-default {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* 파란색 꽉 찬 버튼 */
.btn-primary.btn-full {
    width: 100%;
    padding: 16px;
    background-color: #2f66f5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
}

/* 하단 체크박스 및 링크 영역 */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    font-size: 14px;
}

.check-group {
    display: flex;
    gap: 15px;
}

/* ASP.NET 체크박스 스타일링 */
.custom-check-wrapper {
    display: flex;
    align-items: center;
}

    .custom-check-wrapper input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 6px;
        cursor: pointer;
        accent-color: #2f66f5; /* 파란색 체크박스 (모던 브라우저 지원) */
    }

    .custom-check-wrapper label {
        color: #333;
        cursor: pointer;
    }

/* 아이디/비밀번호 찾기 링크 */
.find-group a {
    color: #666;
    text-decoration: none;
}

.find-group .divider {
    margin: 0 8px;
    color: #ddd;
}

/* 모바일: 로그인 옵션 2행 분리 */
@media (max-width: 430px) {
    .login-options {
        flex-wrap: wrap;
        gap: 10px;
    }
    .check-group,
    .find-group {
        width: 100%;
    }
    .find-group {
        justify-content: flex-end;
        display: flex;
    }
}

/* ---------------------------------------------------------------------------------------------------- 공지사항 리스트 (Notice_List001) */

.notice-list-wrapper {
    padding: 10px 20px 20px 20px;
    background-color: #f2f4f6;
    min-height: 300px;
}

.notice-list-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 18px 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.notice-list-card:active {
    background: #f8f9fb;
}

.notice-list-card-body {
    flex: 1;
    min-width: 0;
}

.notice-list-badge-wrap {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    position: relative;
    padding-left: 4px;
}

.notice-list-new-dot {
    width: 7px;
    height: 7px;
    background-color: #ff4d4f;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: -3px;
    left: -4px;
}

.notice-list-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    background-color: #fff4e5;
    color: #ff9800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.notice-list-badge i {
    font-size: 10px;
}

.notice-list-title {
    font-size: 15px;
    margin: 0 0 6px 0;
    font-weight: 600;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-list-date {
    font-size: 12px;
    color: #aaa;
}

.notice-list-arrow {
    color: #ccc;
    font-size: 14px;
    margin-left: 10px;
    flex-shrink: 0;
}

.notice-list-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    color: #ccc;
}

.notice-list-empty i,
.notice-list-empty img {
    width: 48px;
    height: 48px;
    font-size: 48px;
    margin-bottom: 16px;
}

.notice-list-empty p {
    font-size: 15px;
    color: #bbb;
    margin: 0;
}

.notice-list-loading {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}

.notice-list-loading i {
    margin-right: 5px;
}

/* ---------------------------------------------------------------------------------------------------- 마이페이지 */

/* 마이페이지 타이틀 */
.mypage-page-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #000;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

/* 프로필 섹션 */
.mypage-profile-section {
    padding: 0 20px;
    margin-bottom: 20px;
}

.mypage-profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.mypage-greeting {
    font-size: 15px;
    color: #666;
    margin: 0 0 4px 0;
}

.mypage-username {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin: 0 0 16px 0;
}

.mypage-point-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mypage-point-label {
    font-size: 14px;
    color: #888;
}

.mypage-point-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 3.5px solid #2f66f5;
    color: #2f66f5;
    font-size: 16px;
    font-weight: 900;
}

.mypage-point-value {
    font-size: 20px;
    font-weight: 800;
    color: #000;
}

/* 퀵 메뉴 섹션 */
.mypage-quick-menu-section {
    padding: 0 20px;
    margin-bottom: 30px;
}

.mypage-quick-menu {
    display: flex;
    justify-content: space-around;
    background: #fff;
    border-radius: 16px;
    padding: 24px 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.mypage-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mypage-quick-icon {
    font-size: 24px;
    color: #333;
}

.mypage-quick-icon img {
    width: 28px;
    height: 28px;
}

.mypage-quick-item span {
    font-size: 12px;
    color: #555;
    white-space: nowrap;
}

/* 결제 섹션 */
.mypage-payment-section {
    padding: 0 20px;
    margin-bottom: 30px;
}

.mypage-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.mypage-payment-menu {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.mypage-payment-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.mypage-payment-item:active {
    background: #f5f7fa;
}

.mypage-payment-icon {
    font-size: 18px;
    color: #555;
}

.mypage-payment-icon img {
    width: 22px;
    height: 22px;
}

.mypage-payment-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* ---------------------------------------------------------------------------------------------------- 계정 선택 (JoinChoice) */

.account-info-box {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

.account-info-box p {
    margin: 0 0 4px 0;
    padding-left: 10px;
    text-indent: -10px;
}

.account-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 18px 16px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.account-card.selected {
    border-color: #2f66f5;
    background-color: #f8fbff;
}

.account-card-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ddd;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.account-card.selected .account-card-radio {
    border-color: #2f66f5;
    background-color: #2f66f5;
}

.account-card.selected .account-card-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.account-card-info {
    flex: 1;
    min-width: 0;
}

.account-card-store {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-card-detail {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #888;
}

.account-card-detail span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.account-list-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: #ccc;
}

.account-list-empty i {
    font-size: 40px;
    margin-bottom: 12px;
}

.account-list-empty p {
    font-size: 14px;
    color: #bbb;
    margin: 0;
}

/* ---------------------------------------------------------------------------------------------------- 구매 내역 (OrderHistory) */

.oh-period-filter {
    display: flex;
    margin-bottom: 14px;
}

.oh-period-btn {
    flex: 1;
    padding: 10px 0;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 0;
    background: #fff;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-weight: 400;
    text-align: center;
}

.oh-period-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.oh-period-btn:last-child {
    border-right: 1px solid #ddd;
    border-radius: 0 8px 8px 0;
}

.oh-period-btn.active {
    background: #2f66f5;
    color: #fff;
    border-color: #2f66f5;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.oh-period-btn.active + .oh-period-btn {
    border-left-color: #2f66f5;
}

.oh-search-area {
    margin-bottom: 20px;
}

.oh-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.oh-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px;
    background: #fff;
}

.oh-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.oh-badge {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.oh-badge-done {
    color: #2f66f5;
    border: 1px solid #2f66f5;
    background: #f0f4ff;
}

.oh-badge-cancel {
    color: #ff4d4f;
    border: 1px solid #ff4d4f;
    background: #fff0f0;
}

.oh-date {
    font-size: 13px;
    color: #888;
}

.oh-card-body {
    display: flex;
    align-items: center;
    gap: 14px;
}

.oh-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oh-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oh-thumb i {
    font-size: 24px;
    color: #bbb;
}

.oh-card-info {
    flex: 1;
    min-width: 0;
}

.oh-store-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.oh-product-name {
    font-size: 13px;
    color: #888;
}

.oh-price {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
    flex-shrink: 0;
}

.oh-card-cancel {
    text-align: right;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.oh-cancel-link {
    font-size: 13px;
    color: #ff4d4f;
    cursor: pointer;
    text-decoration: underline;
}

.oh-cancel-btn {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff !important;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(238, 90, 36, 0.25);
    letter-spacing: 0.5px;
}

.oh-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    color: #ccc;
}

.oh-empty i,
.oh-empty img {
    width: 48px;
    height: 48px;
    font-size: 48px;
    margin-bottom: 16px;
}

.oh-empty p {
    font-size: 15px;
    color: #bbb;
    margin: 0;
}

/* ---------------------------------------------------------------------------------------------------- 포인트 내역 (PointHistory) */

.ph-balance-box {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
}

.ph-balance-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.ph-balance-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ph-balance-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 3.5px solid #2f66f5;
    color: #2f66f5;
    font-size: 16px;
    font-weight: 900;
}

.ph-balance-point {
    font-size: 26px;
    font-weight: 800;
    color: #111;
}

.ph-list {
    display: flex;
    flex-direction: column;
}

.ph-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ph-item:last-child {
    border-bottom: none;
}

.ph-item-info {
    flex: 1;
    min-width: 0;
}

.ph-item-type {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.ph-item-date {
    font-size: 13px;
    color: #999;
}

.ph-item-amount {
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    text-align: right;
}

.ph-item-amount.plus {
    color: #2f66f5;
}

.ph-item-amount.minus {
    color: #ff4d4f;
}

.oh-badge-earn {
    color: #2f66f5;
    border: 1px solid #2f66f5;
    background: #f0f4ff;
}

.oh-badge-use {
    color: #ff4d4f;
    border: 1px solid #ff4d4f;
    background: #fff0f0;
}

.oh-badge-etc {
    color: #888;
    border: 1px solid #ddd;
    background: #f8f8f8;
}

/* ---------------------------------------------------------------------------------------------------- 즐겨찾는 매장 (MemberChgActSto_new) */
.fav-store-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
}

.fav-store-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

.fav-store-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}

.fav-store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fav-store-info {
    padding: 16px 18px;
}

.fav-store-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.fav-store-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.4;
}

.fav-store-detail i {
    color: #999;
    margin-top: 2px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.fav-store-select-wrap {
    margin-bottom: 20px;
}

.fav-store-select-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.fav-store-select-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

.fav-store-select-box > span {
    font-size: 15px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.fav-store-select-box > span.selected {
    color: #333;
    font-weight: 500;
}

.fav-store-select-icon {
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
    margin-left: 8px;
}

/* ---- 바텀시트 (Bottom Sheet) ---- */
.bs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

.bs-overlay.show {
    opacity: 1;
}

.bs-sheet {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 16px 20px 30px;
    box-sizing: border-box;
    z-index: 101;
    transition: transform 0.3s ease-out;
}

.bs-sheet.show {
    transform: translateX(-50%) translateY(0);
}

.bs-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.bs-items {
    max-height: 50vh;
    overflow-y: auto;
}

.bs-item {
    text-align: center;
    padding: 16px;
    font-size: 16px;
    color: #999;
    cursor: pointer;
}

.bs-item.active {
    color: #2f66f5;
    font-weight: 600;
    text-decoration: underline;
}

.bs-close {
    text-align: center;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    border-top: 1px solid #eee;
    margin-top: 8px;
}

/* ---------------------------------------------------------------------------------------------------- 회원정보 수정 / 비밀번호 변경 (MemberEdit_new, MemberPwdEdit_new) */
.me-field-group {
    margin-bottom: 16px;
}

.me-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.me-input {
    width: 100%;
    padding: 16px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    color: #222;
    box-sizing: border-box;
}

.me-input::placeholder {
    color: #bbb;
}

.me-input:focus {
    outline: none;
    border-color: #2f66f5;
}

.me-input-disabled {
    background: #f5f5f5;
    color: #999;
}

.me-field-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 16px;
}

.me-btn-pwd {
    flex-shrink: 0;
    padding: 0 20px;
    border: 1.5px solid #2f66f5;
    border-radius: 12px;
    background: #fff;
    color: #2f66f5;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.me-btn-pwd:active {
    background: #f0f4ff;
}

.me-field-birth {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 16px;
}

.me-select-wrap {
    position: relative;
}

.me-select {
    width: 100%;
    padding: 16px 36px 16px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    color: #222;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    box-sizing: border-box;
}

.me-select:focus {
    outline: none;
    border-color: #2f66f5;
}

.me-select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 13px;
}

.me-bottom-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 24px 0;
    padding: 0 2px;
}

.me-link-left,
.me-link-right {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.me-link-left i,
.me-link-right i {
    font-size: 14px;
}

/* ---------------------------------------------------------------------------------------------------- 회원탈퇴 (mc-*) */
.mc-field-group {
    margin-bottom: 16px;
}

.mc-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.mc-required {
    color: #ff3b30;
    margin-left: 2px;
}

/* Step 3 - 탈퇴 안내 */
.mc-notice-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 14px;
    color: #333;
}

.mc-notice-title {
    font-weight: 700;
    margin-bottom: 12px;
}

/* Step 3 - 하단 고정 영역 */
.mc-bottom-area {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 0 20px 30px;
    box-sizing: border-box;
    z-index: 10;
}

.mc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid #eee;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.mc-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mc-checkbox-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid #ccc;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.15s;
}

.mc-checkbox:checked + .mc-checkbox-custom {
    background: #2f66f5;
    border-color: #2f66f5;
}

.mc-checkbox:checked + .mc-checkbox-custom::after {
    content: '';
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.mc-btn-row {
    display: flex;
    gap: 12px;
}

.mc-btn-cancel {
    flex: 1;
    padding: 16px 0;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.mc-btn-submit {
    flex: 1;
    padding: 16px 0;
    border-radius: 12px;
    border: none;
    background: #2f66f5;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

/* Step 4 - 완료 */
.mc-complete-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    text-align: center;
    padding: 0 24px;
}

.mc-emoji-img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.mc-complete-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.mc-complete-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

/* ---------------------------------------------------------------------------------------------------- 내 이용권 (tk-*) */
.tk-card {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
}

.tk-card-using {
    border-color: #2f66f5;
}

.tk-card-empty {
    border-color: #ccc;
}

.tk-empty-sad-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.tk-empty-sad-text {
    font-size: 15px;
    color: #bbb;
}

.tk-card-top {
    padding: 24px 20px 20px;
    text-align: center;
}

.tk-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.tk-status-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #2f66f5;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.tk-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

/* 잔여시간 표시 (시간권) */
.tk-remain-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.tk-remain-label {
    font-size: 14px;
    color: #888;
}

.tk-remain-value {
    font-size: 22px;
    font-weight: 700;
    color: #2f66f5;
}

/* 간략 정보 (한 줄) */
.tk-brief-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
}

.tk-brief-sep {
    color: #ccc;
    margin: 0 4px;
}

/* 사물함 카드 정보 */
.tk-locker-info {
    margin-bottom: 12px;
}

.tk-locker-info .tk-brief-line {
    margin-bottom: 4px;
}

.tk-locker-info .tk-brief-line:last-child {
    margin-bottom: 0;
}

.tk-brief-val {
    font-weight: 600;
    color: #333;
}

/* 6개 아이콘 버튼 그리드 */
.tk-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 0;
    padding: 0 40px;
}

.tk-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    padding: 2px 0;
}

/* 그리드 밖 단독 버튼: 너비를 콘텐츠에 맞춤 */
.tk-card-top > .tk-action-btn {
    width: fit-content;
    margin: 0 auto;
    padding: 8px 16px;
}

.tk-action-icon {
    width: 38px;
    height: 38px;
}

.tk-action-label {
    font-size: 11px;
    color: #333 !important;
    font-weight: 500;
    text-align: center;
}

/* 강제퇴실 숨김 버튼 */
.tk-force-leave-wrap {
    margin-top: 12px;
    text-align: left;
}

.tk-force-leave-btn {
    font-size: 11px;
    color: #ccc;
    cursor: pointer;
    letter-spacing: -0.3px;
}

/* 카드 하단 아코디언 (상세) */
.tk-card-bottom {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: none;
}

.tk-card-bottom.active {
    display: block;
}

.tk-detail-row {
    display: flex;
    margin-bottom: 4px;
}

.tk-detail-label {
    width: 72px;
    font-size: 13px;
    color: #666;
    font-weight: 600;
    flex-shrink: 0;
}

.tk-detail-value {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.tk-detail-gap {
    height: 10px;
}


/* 이용권 추가 구매 버튼 */
.tk-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    box-sizing: border-box;
    background: #2f66f5;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 32px;
}

/* 나의 이용권 섹션 */
.tk-mytk-section {
    margin-bottom: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    padding: 0 14px 14px;
}

.tk-mytk-title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    text-align: center;
    padding: 14px 0;
    margin: 0 -14px 14px;
    border-bottom: 2px solid #2f66f5;
}

.tk-mytk-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}

/* 나의 이용권 카드 */
.tk-ticket-card {
    display: flex;
    align-items: stretch;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.tk-ticket-card:last-child {
    margin-bottom: 0;
}

.tk-ticket-card-left {
    width: 6px;
    background: #2f66f5;
    flex-shrink: 0;
}

.tk-ticket-card-body {
    flex: 1;
    padding: 18px 16px;
    min-width: 0;
}

.tk-ticket-gbn {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #2f66f5;
    margin-bottom: 2px;
}

.tk-ticket-name {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.tk-rev-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #ff6b35;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-right: 6px;
    vertical-align: middle;
    line-height: 1.4;
}

.tk-ticket-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tk-ticket-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tk-ticket-row-label {
    font-size: 12px;
    color: #aaa;
    flex-shrink: 0;
}

.tk-ticket-row-value {
    font-size: 12px;
    color: #666;
}

.tk-ticket-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    flex-shrink: 0;
    gap: 6px;
    cursor: pointer;
    background: #2f66f5;
    border-radius: 0 12px 12px 0;
}

.tk-ticket-use-circle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tk-ticket-use-circle img {
    width: 24px;
    height: 24px;
}

.tk-ticket-use-label {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

/* 구매 내역 조회 버튼 */
.tk-order-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f5f5f5;
    border-radius: 12px;
    cursor: pointer;
    gap: 8px;
}

.tk-order-icon {
    width: 32px;
    height: 32px;
}

.tk-order-label {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

/* 이용권 없는 경우 */
.tk-empty-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    text-align: center;
}

.tk-empty-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.tk-empty-title {
    font-size: 17px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.tk-empty-desc {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}


/* ---------------------------------------------------------------------------------------------------- 결제 페이지 (ProductPayment_new) */

.pay-page-content {
    padding-bottom: 0;
    background-color: #f5f5f5;
}

.pay-section {
    background: #fff;
    margin-bottom: 8px;
    padding: 24px 20px;
}

.pay-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.pay-required-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #2f66f5;
    background: #eef3ff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* 상품 카드 */
.pay-product-card {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.pay-product-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f0f0;
}

.pay-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.pay-product-name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.pay-product-addr {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

.pay-product-phone {
    font-size: 13px;
    color: #888;
}

.pay-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 12px 0;
}

/* 가격 행 */
.pay-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.pay-price-label {
    font-size: 14px;
    color: #888;
}

.pay-price-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.pay-price-value.discount {
    color: #e74c3c;
}

.pay-final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid #eee;
}

.pay-final-label {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.pay-final-value {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

/* 예약 상세 */
.pay-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
}

.pay-detail-label {
    font-size: 14px;
    color: #888;
}

.pay-detail-value {
    font-size: 14px;
    color: #333;
}

.pay-detail-divider {
    border-top: 1px solid #f0f0f0;
    margin: 8px 0;
}

/* 포인트 */
.pay-point-avail {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pay-point-icon {
    width: 16px;
    height: 16px;
    font-size: 11px;
    border-width: 2.5px;
    margin-right: 4px;
}

.pay-point-input-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pay-point-input-box {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 12px;
    height: 46px;
    background: #fff;
}

.pay-point-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
    -moz-appearance: textfield;
}

.pay-point-input::-webkit-outer-spin-button,
.pay-point-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pay-point-clear {
    background: none;
    border: none;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
}

.pay-point-all-btn {
    flex-shrink: 0;
    padding: 0 18px;
    height: 46px;
    background: #2f66f5;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.pay-point-note {
    font-size: 12px;
    color: #e74c3c;
    padding: 6px 0 0 2px;
}

/* 결제수단 */
.pay-method-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pay-method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
}

.pay-method-item:last-child {
    border-bottom: none;
}

.pay-method-item input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #2f66f5;
    margin: 0;
    flex-shrink: 0;
}

/* 총 결제 금액 */
.pay-total-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
}

.pay-total-detail {
    padding: 0;
}

.pay-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 14px;
    color: #555;
}

.pay-total-row .pay-minus {
    color: #e74c3c;
}

.pay-total-divider {
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.pay-total-final {
    text-align: right;
    font-size: 22px;
    font-weight: 700;
    color: #2f66f5;
    padding-top: 8px;
}

/* 약관 동의 */
.pay-agree-section {
    background: #fff;
    margin-bottom: 8px;
    padding: 20px;
}

.pay-agree-header {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.pay-agree-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #2f66f5;
    margin: 0;
    flex-shrink: 0;
}

.pay-agree-header-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.pay-agree-toggle {
    font-size: 16px;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.pay-agree-detail {
    margin-top: 12px;
    padding-left: 30px;
}

.pay-agree-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: #666;
}

.pay-agree-item i {
    color: #2f66f5;
    margin-right: 6px;
}

.pay-agree-item a {
    color: #999;
    font-size: 13px;
    text-decoration: none;
}

/* 결제 버튼 */
.pay-btn-text {
    font-size: 16px;
    font-weight: 700;
}

/* 날짜 입력 */
.pay-date-input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.pay-date-input[readonly] {
    background: #f5f5f5;
    color: #999;
}

/* 계좌이체 경고 */
.pay-warning-box {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #8d6e00;
    margin-top: 10px;
    display: none;
}

.pay-warning-box i {
    margin-right: 4px;
}


/* ---------------------------------------------------------------------------------------------------- 공간 안내 (ProductSeat004) */

/* 층 선택 영역 */
.floor-select-area {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
}

.floor-select-label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.floor-select-wrap {
    flex: 1;
    position: relative;
}

.floor-select {
    width: 100%;
    height: 44px;
    padding: 0 36px 0 16px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* 공간 안내 섹션 */
.space-guide-section {
    padding: 20px;
}

.space-guide-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
}

.space-guide-img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #eee;
}

/* 결제하기 버튼 영역 (스크롤에 포함) */
.space-guide-btn-area {
    padding: 20px 20px 30px 20px;
}


/* ---------------------------------------------------------------------------------------------------- 푸터 정보 (토글) */

/* 토글 헤더 */
.footer-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 12px;
}

.footer-toggle-icon {
    font-size: 14px;
    color: #999;
    transition: transform 0.2s;
}

/* 상세 영역 */
.footer-detail {
    line-height: 1.8;
}

/* 인라인 링크 (사업자정보확인) */
.footer-link-inline {
    color: #333;
    text-decoration: underline;
    margin-left: 4px;
}

/* 면책 조항 */
.footer-disclaimer {
    margin: 0 0 10px 0;
    line-height: 1.6;
}

/* 정책 링크 영역 */
.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin-bottom: 15px;
}

.footer-policy-link {
    color: #333;
    text-decoration: underline;
    font-size: 11px;
}

/* 소셜 링크 영역 */
.footer-social-links {
    text-align: center;
    margin-top: 10px;
}

/* ---------------------------------------------------------------------------------------------------- 좌석선택 (SeatSelect) */
.app_card_box {display:inline-block; width: 100%; padding: 5px 15px 15px 15px; box-sizing:border-box; margin-bottom: 15px;}
.app_card_box_inner {position: relative; background-color:#fff; padding:20px; box-sizing:border-box; border-radius:0 5px 5px 5px; box-shadow:3px 3px 5px rgba(154 154 154 / 33%);}
.app_card_box_inner h2 {font-size:20px; font-weight: 700;}
.app_card_box_inner h2 label {font-size:20px;}
.app_payment_info {}

.table_sel {
    box-sizing: border-box;
    overflow:auto;
}
.table_sel .tabel_sel_area {
    border:5px solid #777;
    background-repeat:no-repeat;
    background-size:445px 630px!important;
    width: 445px;
    height: 630px;
    position: relative;
    margin:0 auto;
    box-sizing: content-box;
}
.table_sel div ul {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    padding:0;
}
.table_sel div ul li {
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    margin-bottom: 3px;
}

.tabel_sel_area span {position:absolute; background-color:#579bef; color:#fff; text-align:center; font-size:12px; border-radius:6px;}

.table_sel div ul li span {
    height: 27px;
    background: gray;
    width: 14.66%;
    box-sizing: border-box;
    line-height: 27px;
    display: inline-block;
    margin-left: 5px;
    font-size: 10px;
    text-align: center;
}

.table_info {
    width: 100%;
    clear: both;
    line-height: 30px;
}

.table_info_area {
    text-align: center;
    position:relative;
    display:inline-block;
    left:50%;
    transform:translateX(-50%);
}
.table_info_area i {
    width: 10px;
    height: 10px;
    background: #555;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -2px;
}

.table_info_area span:nth-child(1) i { background: #808080; }
.table_info_area span:nth-child(2) i { background: #579bef; }
.table_info_area span:nth-child(3) i { background: #3bc91c; }
.table_info_area span:nth-child(4) i { background: #eb8686; }

.table_info_area span {
    position: relative;
    padding: 0px 10px;
    font-size: 12px;
}

.tb_pick {background:#3bc91c!important}
.tb_sel_no {background: #808080!important; text-align:center; color:#fff;}
.tb_blank {background: #555555!important;}
.tb_disable {background-color:#eb8686!important}

/* ---------------------------------------------------------------------------------------------------- 무한스크롤 상태 표시 */
.scroll-status-more {
    text-align: center;
    padding: 20px 0;
    color: #999;
    font-size: 13px;
}

.scroll-status-end {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0 10px;
    color: #ccc;
    font-size: 13px;
}
.scroll-status-end::before,
.scroll-status-end::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e9ecef;
}


/* ---------------------------------------------------------------------------------------------------- 약관 팝업 모달 */
.terms-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    flex-direction: column;
    background: #fff;
}
.terms-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}
.terms-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}
.terms-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.terms-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
    line-height: 1.7;
    color: #444;
}
.terms-modal-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin: 24px 0 8px 0;
}
.terms-modal-body h4:first-child {
    margin-top: 0;
}
.terms-modal-body p {
    margin: 0 0 8px 0;
}
.terms-modal-body .terms-note {
    color: #888;
    font-size: 12px;
}
.terms-modal-body .terms-indent {
    padding-left: 12px;
}

/* 룸 예약 취소 버튼 */
.tk-rev-cancel-wrap { margin-top: 8px; }
.tk-rev-cancel-btn {
    border: 1px solid #e74c3c;
    color: #e74c3c;
    background: #fff;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    cursor: pointer;
}
