/* ==========================================================================
   [2026-08-25] 자사몰 예약하기 페이지 (기존 예약 모달 → 전용 페이지)
   - 디자인 시안(seoulcruise-reservation.html) 기준 / 1024px 미만 = 모바일 레이아웃
   - 왼쪽: 예약 단계, 오른쪽: 상품 상세 페이지 출력 영역 (package.pagedetail)
   ========================================================================== */
:root {
    --bk-primary: #0B4DA2;
    --bk-primary-dark: #08397A;
    --bk-navy: #0B3268;
    --bk-text: #16233A;
    --bk-muted: #6B7684;
    --bk-muted2: #8A94A6;
    --bk-muted3: #9AA5B5;
    --bk-border: #E9EEF5;
    --bk-border2: #DDE4EE;
    --bk-line: #E4EAF3;
    --bk-bg: #F5F8FC;
    --bk-soft: #EFF5FD;
    --bk-disabled-bg: #EDF1F7;
    --bk-disabled-text: #B4BECD;
    --bk-accent: #E2571C;
    --bk-danger: #D32F2F;
}

html,
body#booking {
    margin: 0;
    padding: 0;
    background: #fff;
}
body#booking {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
    color: var(--bk-text);
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}
#booking * {
    box-sizing: border-box;
}
#booking [hidden] {
    display: none !important;
}
#booking a {
    color: var(--bk-primary);
    text-decoration: none;
}
#booking a:hover {
    color: var(--bk-primary-dark);
}
/* [2026-08-26] color:inherit 제거 - #booking button(1,0,1)이 .bk-pay 등 클래스 색(0,1,0)보다 우선되어
   활성화된 결제하기 버튼 글자가 흰색(#fff)이 아닌 본문색으로 표시되던 문제 수정 */
#booking button {
    font-family: inherit;
    cursor: pointer;
}
#booking input {
    font-family: inherit;
}
#booking ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
#booking ::-webkit-scrollbar-thumb {
    background: #D5DDE8;
    border-radius: 8px;
}
/* reset.css 의 :focus{outline:0} 복원 (키보드 사용자용) */
#booking button:focus-visible,
#booking input:focus-visible,
#booking .bk-cal-day:focus-visible,
#booking .bk-trip:focus-visible {
    outline: 2px solid var(--bk-primary);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   레이아웃
   -------------------------------------------------------------------------- */
.bk-root {
    min-height: 100vh;
    background: #fff;
}
.bk-app {
    display: flex;
    align-items: flex-start;
}
.bk-left {
    flex: 0 0 46%; /* 오른쪽 상세 HTML 이 넓어도 왼쪽 패널이 줄어들지 않도록 */
    width: 46%;
    min-width: 520px;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid var(--bk-border);
}
.bk-left-scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 36px 44px 24px;
}
.bk-left-footer {
    flex: none;
    border-top: 1px solid var(--bk-border);
    padding: 20px 44px 24px;
    background: #fff;
}
.bk-right {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 100vh;
    background: var(--bk-bg);
    display: flex;
    flex-direction: column;
}
.bk-right-scroll {
    flex: 1 1 auto;
    min-height: 0;
}
.bk-mobile-bar,
.bk-mobile-actions {
    display: none;
}

/* --------------------------------------------------------------------------
   왼쪽 상단 (로고 / 타이틀)
   -------------------------------------------------------------------------- */
.bk-logo {
    display: block;
    margin-bottom: 22px;
    width: -moz-fit-content;
    width: fit-content;
}
.bk-logo img {
    height: 40px;
    width: auto;
    display: block;
}
.bk-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #8FA6C4;
    margin-bottom: 10px;
}
.bk-title {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.03em;
    color: var(--bk-navy);
    line-height: 1.2;
}
.bk-subtitle {
    margin: 0 0 28px;
    font-size: 15px;
    color: var(--bk-muted);
}

/* --------------------------------------------------------------------------
   단계 카드 (아코디언)
   -------------------------------------------------------------------------- */
.bk-step {
    border: 1px solid var(--bk-border);
    border-radius: 16px;
    margin-bottom: 14px;
    background: #FDFEFF;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.bk-step.is-open {
    border-color: #B9CFEA;
    background: #fff;
    box-shadow: 0 6px 20px rgba(11, 77, 162, 0.06);
}
.bk-step.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}
.bk-step-head {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: none;
    border: 0;
    padding: 20px 22px;
    text-align: left;
}
.bk-step-label {
    display: block;
    min-width: 0;
}
.bk-step-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--bk-text);
}
.bk-step-summary {
    display: none;
    font-size: 14px;
    color: var(--bk-primary);
    font-weight: 700;
    margin-top: 6px;
    line-height: 1.45;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere; /* 공백 없는 긴 상품명도 넘치지 않게 */
}
.bk-step-summary.is-visible {
    display: block;
}
.bk-chev {
    flex: none;
    display: block;
    margin-left: 12px;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    position: relative;
    color: var(--bk-muted3);
    transition: transform .18s;
}
.bk-chev::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 2px;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}
.bk-step.is-open .bk-chev {
    transform: rotate(180deg);
}
.bk-step-body {
    display: none;
    padding: 0 22px 20px;
}

/* 1. 상품 선택 */
.bk-product {
    display: block;
    width: 100%;
    text-align: left;
    border: 1px solid #EDF1F7;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 8px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--bk-text);
    transition: border-color .15s, background .15s;
}
.bk-product:last-child {
    margin-bottom: 0;
}
.bk-product:hover {
    border-color: #B9CFEA;
}
.bk-product.is-selected {
    border-color: var(--bk-primary);
    background: var(--bk-soft);
    color: var(--bk-primary);
    font-weight: 700;
}
.bk-product-name {
    display: block;
    line-height: 1.4;
}
.bk-product-meta {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--bk-muted2);
    margin-top: 5px;
    line-height: 1.4;
}
.bk-list-empty {
    padding: 20px 0 8px;
    text-align: center;
    color: var(--bk-muted3);
    font-size: 14px;
}

/* 2. 달력 */
.bk-calendar {
    border: 1px solid var(--bk-border);
    border-radius: 14px;
    padding: 16px 16px 12px;
    background: #FCFDFF;
}
.bk-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--bk-navy);
}
.bk-cal-nav {
    border: 0;
    background: none;
    font-size: 22px;
    line-height: 1;
    color: var(--bk-muted2);
    padding: 2px 10px;
}
.bk-cal-nav:disabled {
    opacity: 0.3;
    cursor: default;
}
.bk-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
    font-size: 13px;
}
.bk-cal-dow {
    color: var(--bk-muted3);
    font-weight: 700;
    padding: 6px 0;
}
.bk-cal-day {
    padding: 9px 0;
    border-radius: 10px;
    font-weight: 500;
    color: var(--bk-text);
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: background .12s;
}
.bk-cal-day:hover {
    background: var(--bk-soft);
}
.bk-cal-day.is-other,
.bk-cal-day.is-disabled {
    color: #C8D0DC;
    cursor: default;
}
.bk-cal-day.is-other:hover,
.bk-cal-day.is-disabled:hover {
    background: transparent;
}
.bk-cal-day.is-selected,
.bk-cal-day.is-selected:hover {
    background: var(--bk-primary);
    color: #fff;
    font-weight: 700;
}
.bk-cal-note {
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--bk-muted3);
    text-align: center;
    line-height: 1.5;
}

/* 2. 항차 목록 */
.bk-trip {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--bk-border);
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 10px;
    cursor: pointer;
    transition: border-color .12s, background .12s;
}
.bk-trip:hover {
    border-color: #B9CFEA;
}
.bk-trip.is-selected {
    border-color: var(--bk-primary);
    background: var(--bk-soft);
}
.bk-trip.is-soldout {
    opacity: 0.55;
    cursor: not-allowed;
}
.bk-trip-dot {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex: none;
    border: 2px solid #C9D2DF;
    background: #fff;
}
.bk-trip.is-selected .bk-trip-dot {
    border-color: var(--bk-primary);
    background: radial-gradient(circle, var(--bk-primary) 0 5px, #fff 5px);
}
.bk-trip-text {
    display: block;
    min-width: 0;
}
.bk-trip-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}
.bk-trip-sub {
    display: block;
    font-size: 13px;
    color: var(--bk-muted);
    margin-top: 2px;
}
.bk-trip-seats {
    display: block;
    margin-left: auto;
    font-size: 13px;
    color: var(--bk-primary);
    font-weight: 700;
    white-space: nowrap;
}
.bk-trip.is-soldout .bk-trip-seats {
    color: var(--bk-accent);
}
.bk-trip-msg {
    padding: 16px 0 4px;
    text-align: center;
    font-size: 14px;
    color: var(--bk-muted3);
    line-height: 1.5;
}

/* 3. 권종 / 옵션 수량 */
.bk-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 2px;
    border-bottom: 1px solid #F0F3F8;
}
.bk-qty-info {
    min-width: 0;
}
.bk-qty-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}
.bk-qty-row.is-soldout .bk-qty-name {
    color: var(--bk-muted3);
}
.bk-soldout-tag {
    color: var(--bk-accent);
    font-size: 13px;
    margin-left: 4px;
}
.bk-qty-price {
    font-size: 13px;
    color: var(--bk-muted);
    margin-top: 3px;
}
.bk-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: none;
}
.bk-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--bk-border2);
    background: #fff;
    font-size: 16px;
    color: #5A6577;
    line-height: 1;
    padding: 0;
    transition: border-color .12s, background .12s;
}
.bk-qty-btn:hover {
    border-color: var(--bk-primary);
    color: var(--bk-primary);
}
.bk-qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.bk-qty-num {
    display: block;
    min-width: 16px;
    text-align: center;
    font-weight: 700;
}
.bk-group-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--bk-muted2);
    margin: 22px 0 2px;
    letter-spacing: 0.02em;
}
.bk-qty-msg {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--bk-danger);
    line-height: 1.5;
}
.bk-sum {
    margin-top: 22px;
    padding: 18px 2px 2px;
    border-top: 1px solid var(--bk-line);
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.bk-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    color: var(--bk-muted);
}
.bk-sum-row > span:last-child {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--bk-text);
}
.bk-sum-total {
    border-top: 1px solid var(--bk-line);
    margin-top: 5px;
    padding-top: 15px;
}
.bk-sum-total > span:first-child {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--bk-navy);
    letter-spacing: 0.01em;
}
.bk-sum-total > span:last-child {
    font-size: 22px;
    font-weight: 800;
    color: var(--bk-primary);
    letter-spacing: -0.03em;
}

/* --------------------------------------------------------------------------
   왼쪽 하단 (총 결제금액 / 결제하기)
   -------------------------------------------------------------------------- */
.bk-footer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.bk-footer-total > span:first-child {
    font-size: 15px;
    font-weight: 700;
}
.bk-footer-total > span:last-child {
    font-size: 24px;
    font-weight: 800;
    color: var(--bk-primary);
    letter-spacing: -0.03em;
}
.bk-pay {
    width: 100%;
    padding: 17px;
    border: 0;
    border-radius: 14px;
    font-size: 16.5px;
    font-weight: 700;
    background: var(--bk-primary);
    color: #fff;
    transition: background .15s;
}
.bk-pay:hover {
    background: var(--bk-primary-dark);
}
.bk-pay:disabled,
.bk-pay:disabled:hover {
    background: var(--bk-disabled-bg);
    color: var(--bk-disabled-text);
    cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   예약자 정보 입력 (결제 단계)
   -------------------------------------------------------------------------- */
.bk-checkout-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.bk-back {
    border: 0;
    background: none;
    font-size: 22px;
    color: var(--bk-text);
    padding: 4px;
    line-height: 1;
}
.bk-checkout-head strong {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.bk-summary-card {
    border: 1px solid var(--bk-border);
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 22px;
    background: #FBFCFE;
}
.bk-summary-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--bk-navy);
    letter-spacing: -0.02em;
    line-height: 1.35;
}
.bk-summary-row {
    display: flex;
    font-size: 14.5px;
    margin-bottom: 9px;
}
.bk-summary-row > span:first-child {
    display: block;
    width: 90px;
    color: var(--bk-muted);
    flex: none;
}
.bk-summary-row > span:last-child {
    display: block;
    font-weight: 600;
    line-height: 1.5;
    min-width: 0;
}
.bk-summary-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--bk-line);
    margin-top: 14px;
    padding-top: 14px;
    font-weight: 800;
    font-size: 16px;
}
.bk-summary-total > span:last-child {
    color: var(--bk-primary);
}
.bk-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--bk-muted2);
    margin: 0 0 8px;
}
.bk-terms {
    border: 1px solid var(--bk-border);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: var(--bk-muted);
    line-height: 1.65;
    max-height: 180px;
    overflow-y: auto;
}
.bk-terms h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--bk-text);
    margin: 0 0 8px;
}
.bk-terms h5 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--bk-text);
    margin: 14px 0 4px;
}
.bk-terms p {
    margin: 0 0 6px;
}
.bk-terms ul,
.bk-terms ol {
    margin: 0 0 6px;
    padding-left: 18px;
}
.bk-terms ul {
    list-style: disc;
}
.bk-terms ol {
    list-style: decimal;
}
.bk-terms .term-sub-title {
    font-weight: 600;
    color: var(--bk-text);
    margin-top: 8px;
}
.bk-terms .term-appendix {
    margin-top: 14px;
}
.bk-terms strong,
.bk-terms b {
    font-weight: 700;
    color: var(--bk-text);
}
.bk-agree {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    font-size: 14.5px;
    cursor: pointer;
    line-height: 1.4;
}
.bk-agree input {
    width: 18px;
    height: 18px;
    accent-color: var(--bk-primary);
    margin: 0;
    flex: none;
    cursor: pointer;
}
.bk-input {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--bk-border2);
    border-radius: 12px;
    font-size: 14.5px;
    margin-bottom: 12px;
    outline: none;
    background: #fff;
    color: var(--bk-text);
    -webkit-appearance: none;
    appearance: none;
}
.bk-input::placeholder {
    color: var(--bk-muted3);
}
.bk-input:focus {
    border-color: var(--bk-primary);
}
.bk-input[readonly] {
    background: #F7F9FC;
    color: var(--bk-muted);
}
.bk-phone-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.bk-phone-row .bk-input {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
}
.bk-btn-outline {
    flex: none;
    border: 1px solid var(--bk-primary);
    color: var(--bk-primary);
    background: #fff;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    transition: background .12s, color .12s;
}
.bk-btn-outline:hover {
    background: var(--bk-soft);
}
.bk-btn-outline:disabled,
.bk-btn-outline:disabled:hover {
    border-color: var(--bk-border2);
    color: var(--bk-disabled-text);
    background: #fff;
    cursor: not-allowed;
}
.bk-code-row {
    position: relative;
    display: flex;
    align-items: center;
}
.bk-code-row .bk-input {
    margin-bottom: 0;
    padding-right: 84px;
}
.bk-timer {
    display: block;
    position: absolute;
    right: 16px;
    font-size: 13.5px;
    color: var(--bk-accent);
    font-weight: 700;
}
.bk-verify-btns {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.bk-btn-ghost {
    flex: 1 1 0;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--bk-border2);
    background: #fff;
    font-size: 14.5px;
    font-weight: 700;
    color: #5A6577;
}
.bk-btn-ghost:hover {
    border-color: var(--bk-muted2);
}
.bk-btn-solid {
    flex: 1 1 0;
    padding: 14px;
    border-radius: 12px;
    border: 0;
    font-size: 14.5px;
    font-weight: 700;
    background: var(--bk-primary);
    color: #fff;
}
.bk-btn-solid:hover {
    background: var(--bk-primary-dark);
}
.bk-btn-solid:disabled,
.bk-btn-solid:disabled:hover {
    background: var(--bk-disabled-bg);
    color: var(--bk-disabled-text);
    cursor: not-allowed;
}
.bk-auth-msg {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--bk-danger);
    line-height: 1.5;
}
.bk-verified {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #EAF1FB;
    color: var(--bk-primary);
    font-weight: 700;
    font-size: 14.5px;
    text-align: center;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   오른쪽: 상품 상세 페이지 출력 영역
   -------------------------------------------------------------------------- */
.bk-empty {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: var(--bk-muted3);
    text-align: center;
    padding: 80px 40px;
}
.bk-empty-icon {
    font-size: 38px;
    margin-bottom: 6px;
    color: #C3CFDE;
}
.bk-empty h4 {
    margin: 0;
    font-size: 18px;
    color: #5A6577;
    font-weight: 700;
}
.bk-empty p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
}
.bk-hero {
    position: relative;
    height: 340px;
    background: linear-gradient(135deg, #08305F 0%, #0B4DA2 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px 46px;
    color: #fff;
    overflow: hidden;
}
.bk-hero-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.bk-hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(8, 48, 95, 0.10) 0%, rgba(8, 48, 95, 0.78) 100%);
}
.bk-hero.no-thumb .bk-hero-bg {
    background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 12px, rgba(255, 255, 255, 0) 12px 24px);
}
.bk-hero.no-thumb .bk-hero-bg::after {
    display: none;
}
.bk-hero-inner {
    position: relative;
}
.bk-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.bk-hero-title {
    font-size: 34px;
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.25;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere; /* 공백 없는 긴 상품명도 넘치지 않게 */
}
.bk-hero-sub {
    font-size: 15px;
    opacity: 0.85;
}
.bk-detail-body {
    padding: 36px 46px 90px;
}
/* 관리자 에디터(TinyMCE)에서 입력한 상세 HTML - reset.css 로 제거된 기본 서식 일부 복원 */
.bk-detail-content {
    background: #fff;
    border-radius: 18px;
    padding: 28px 30px;
    border: 1px solid var(--bk-border);
    line-height: 1.7;
    color: #333;
    font-size: 15px;
    word-break: break-word;
    overflow-x: auto;
}
.bk-detail-content img {
    max-width: 100%;
    height: auto;
}
.bk-detail-content p {
    margin: 0 0 1em;
}
.bk-detail-content p:last-child {
    margin-bottom: 0;
}
.bk-detail-content h1,
.bk-detail-content h2,
.bk-detail-content h3,
.bk-detail-content h4,
.bk-detail-content h5,
.bk-detail-content h6 {
    font-weight: 700;
    margin: 0 0 0.6em;
    line-height: 1.35;
}
.bk-detail-content h1 { font-size: 1.6em; }
.bk-detail-content h2 { font-size: 1.4em; }
.bk-detail-content h3 { font-size: 1.2em; }
.bk-detail-content ul {
    list-style: disc;
    padding-left: 1.5em;
    margin: 0 0 1em;
}
.bk-detail-content ol {
    list-style: decimal;
    padding-left: 1.5em;
    margin: 0 0 1em;
}
.bk-detail-content strong,
.bk-detail-content b {
    font-weight: 700;
}
.bk-detail-content em,
.bk-detail-content i {
    font-style: italic;
}
.bk-detail-content table {
    border-collapse: collapse;
    max-width: 100%;
}
.bk-detail-content table td,
.bk-detail-content table th {
    padding: 6px 8px;
}
.bk-detail-content iframe,
.bk-detail-content video {
    max-width: 100%;
}
.bk-detail-content hr {
    border: 0;
    border-top: 1px solid var(--bk-line);
    margin: 1.2em 0;
}
.bk-detail-fallback .bk-detail-date {
    color: var(--bk-muted);
}
.bk-detail-fallback .bk-detail-prices {
    list-style: none;
    padding: 0;
    margin: 0 0 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bk-detail-fallback .bk-detail-prices li {
    background: var(--bk-bg);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bk-navy);
}
.bk-detail-note {
    color: var(--bk-muted3);
    font-size: 14px;
}

/* [2026-08-28] 예약 조회 페이지(/booking/check)는 전용 스타일 booking_check.css 를 사용한다. (퍼블리싱 적용) */

/* --------------------------------------------------------------------------
   모바일 (1024px 미만): 왼쪽 패널 전체 화면 + 상품 상세 오버레이
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
    .bk-root {
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }
    .bk-app {
        display: block;
        height: 100%;
    }
    .bk-left {
        width: 100%;
        min-width: 0;
        height: 100%;
        position: static;
        border-right: 0;
    }
    .bk-left-scroll {
        padding: 24px 20px 16px;
    }
    .bk-left-footer {
        padding: 16px 20px 20px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
    .bk-title {
        font-size: 26px;
    }
    .bk-subtitle {
        margin-bottom: 22px;
    }
    .bk-step-head {
        padding: 18px 18px;
    }
    .bk-step-body {
        padding: 0 18px 18px;
    }
    .bk-input,
    .bk-phone-row .bk-input {
        font-size: 16px; /* iOS 자동 확대 방지 */
    }

    .bk-right {
        display: none;
        min-height: 0;
    }
    .bk-right.is-open {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        background: var(--bk-bg);
        flex-direction: column;
    }
    .bk-right.is-open .bk-mobile-bar {
        display: flex;
        flex: none;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-bottom: 1px solid var(--bk-line);
        background: #fff;
    }
    .bk-mobile-bar button {
        border: 0;
        background: none;
        font-size: 22px;
        padding: 4px;
        line-height: 1;
        color: var(--bk-text);
    }
    .bk-mobile-bar strong {
        font-size: 15.5px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }
    .bk-right.is-open .bk-right-scroll {
        flex: 1 1 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .bk-right.is-open .bk-mobile-actions {
        display: flex;
        flex: none;
        gap: 10px;
        padding: 12px 16px 18px;
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--bk-line);
        background: #fff;
    }
    .bk-mobile-actions button {
        flex: 1 1 0;
        padding: 15px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
    }
    .bk-mobile-actions .bk-btn-outline2 {
        border: 1px solid var(--bk-primary);
        background: #fff;
        color: var(--bk-primary);
    }
    .bk-mobile-actions .bk-btn-primary {
        border: 0;
        background: var(--bk-primary);
        color: #fff;
    }

    .bk-empty {
        min-height: 60vh;
        padding: 60px 24px;
    }
    .bk-hero {
        height: 230px;
        padding: 24px 20px;
    }
    .bk-hero-title {
        font-size: 25px;
    }
    .bk-detail-body {
        padding: 20px 20px 56px;
    }
    .bk-detail-content {
        padding: 22px 20px;
    }
}

@media (max-width: 380px) {
    .bk-left-scroll {
        padding: 20px 16px 12px;
    }
    .bk-left-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
    .bk-step-head {
        padding: 16px 14px;
    }
    .bk-step-body {
        padding: 0 14px 16px;
    }
    .bk-btn-outline {
        padding: 0 14px;
    }
}
