/*
    *** Inter
*/
@font-face {
    font-family: "InterR";
    src: url(/app/layout/web/fonts/Inter-Regular.woff2) format("woff2");
}

@font-face {
    font-family: "InterM";
    src: url(/app/layout/web/fonts/Inter-Medium.woff2) format("woff2");
}

@font-face {
    font-family: "InterSB";
    src: url(/app/layout/web/fonts/Inter-SemiBold.woff2) format("woff2");
}




/*
    *** NotoSans
*/
@font-face {
    font-family: "NotoSansR";
    src: url(/app/layout/web/fonts/NotoSansKR-Regular.woff) format("woff");
}

@font-face {
    font-family: "NotoSansM";
    src: url(/app/layout/web/fonts/NotoSansKR-Medium.woff) format("woff");
}

@font-face {
    font-family: "NotoSansB";
    src: url(/app/layout/web/fonts/NotoSansKR-Bold.woff) format("woff");
}






/* ============================================================
   밴스의원 게이트페이지 - style.css
   Breakpoint: 1024px (PC: >=1024px / Mobile: <1024px)
   ============================================================ */

/* ── 변수 ── */
:root {
    --purple: #473566;
    --purple-mid: #5e3e98;
    --purple-light: #8b5be3;
    --lavender: #d2cbdf;
    --dark: #262626;
    --dark-footer: #000000;
    --white: #ffffff;
    --gray-light: #f8f8f8;
    --gray-text: #979595;
    --text-main: #262626;
    --panel-w: 43.23%;
    /* 화이트 패널 비율 (832/1920) */
    --dark-w: 56.77%;
    /* 다크 패널 비율  */
}

/* ── 리셋 ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: InterM, NotoSansM;
    background: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
li {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}

/* ── 유틸 ── */
.mobile-only {
    display: none;
}

.pc-only {
    display: block;
}

/* ============================================================
   오버레이
   ============================================================ */
#overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 200;
}

#overlay.active {
    display: block;
}

/* ============================================================
   Global Booking 패널 (좌측 슬라이드)
   ============================================================ */
#booking-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: var(--lavender);
    z-index: 300;
    transform: translateX(-110%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#booking-panel.open {
    transform: translateX(0);
}

.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px 20px;
}

.booking-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: .02em;
}

.btn-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-close img {
    width: 100%;
}

.booking-langs {
    padding: 0 36px 40px;
    flex: 1;
}

.booking-langs li {
    border-bottom: 1px solid rgba(71, 53, 102, .2);
}

.booking-langs li:first-child {
    border-top: 1px solid rgba(71, 53, 102, .2);
}

.booking-langs li a {
    display: block;
    padding: 18px 4px;
    font-size: 17px;
    color: #131313;
    font-family: 'Arial', sans-serif;
    transition: color .2s;
}

.booking-langs li a:hover {
    color: var(--purple);
}

/* ============================================================
   언어 패널 (PC: 드롭다운 / Mobile: 전체)
   ============================================================ */
#lang-panel {
    display: none;
    position: absolute;
    z-index: 250;
    background: var(--white);
    border-radius: 6px;
    border: solid 1px #D2CBDF;
    overflow: hidden;
    padding: 15px 0;
}

#lang-panel.open {
    display: block;
}

.lang-panel-close {
    padding: 16px 20px 8px;
    text-align: right;
}

.lang-list li {}

.lang-list li a {
    display: block;
    padding: 13px 20px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #111;
    transition: background .15s;
}

.lang-list li a:hover {
    background: #f5f2fa;
    color: var(--purple);
}

/* ============================================================
   헤더
   ============================================================ */
#main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 100;
}

.header-left {
    width: var(--dark-w);
    padding-left: 42px;
    display: flex;
    align-items: center;
}

#btn-booking {
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .02em;
    transition: opacity .2s;
}

#btn-booking:hover {
    opacity: .75;
}

.header-logo {
    position: absolute;
    left: var(--dark-w);
    top: 50%;
    transform: translateY(-50%);
    padding-left: 80px;
}

.header-logo img {
    height: 46px;
    width: auto;
}

.header-right {
    margin-left: auto;
    padding-right: 48px;
    display: flex;
    align-items: center;
    position: relative;
}

#btn-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    color: var(--dark);
    font-weight: 400;
}

.lang-text {
    letter-spacing: .02em;
}

.lang-arrow {
    font-size: 12px;
    color: #3a3a3a;
}

/*#btn-lang:hover .lang-text { color: var(--purple); }*/

/* ============================================================
   메인 레이아웃 (두 컬럼: 다크 + 화이트)
   ============================================================ */
#wrap {
    position: relative;
    min-height: 100vh;
    max-width: 1920px;
    margin: 0 auto;
}

#layout {
    display: flex;
    min-height: calc(100vh - 76px);
    /* 푸터 바 높이 제외 */
}

/* ── 다크 패널 (전체 너비 / 좌측 비주얼 + 우측 지점패널 포함) ── */
#dark-panel {
    width: 100%;
    background: var(--dark);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* 미디어 영역 */
#media-wrap {
    position: relative;
    width: var(--dark-w);
    flex: 1;
    overflow: hidden;
    min-height: 500px;
}

#videoPlayer {
    width: 100%;
    height: 885px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* 모바일 퀵버튼 (PC에서 숨김) */
#quick-btns {
    display: none;
}

/* ── 화이트 패널 (PC: 우측 절대위치 / 모바일: 비주얼 바로 아래) ── */
#white-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: var(--panel-w);
    background: var(--white);
    padding: 100px 180px 100px 90px;
    padding-bottom: 45px;
    display: flex;
    flex-direction: column;
    background-color: #e3e3e3;
}

/* ── 배너 ── */
#banners {
    display: flex;
    width: var(--dark-w);
    height: 254px;
}

.banner {
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.banner > a {display: block; width: 100%; height: 100%;}

.banner picture,
.banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* 모바일 푸터 로고 / 사업자 정보 – PC에서 숨김 */
#footer-logo-m {
    display: none;
}

#biz-info-m {
    display: none;
}

/* ── PC 지점 검색바 ── */
#branch-search-pc {
    display: flex;
    align-items: stretch;
    gap: 13px;
    height: 65px;
    flex-shrink: 0;
    margin-bottom: 8px;
    position: relative;
}

.search-pc-bar {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #492784 62%, #7357A4 100%);
    padding: 0 35px 0 25px;
    gap: 35px;
}

.search-pc-bar .left {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    height: 100%;
}

.search-pc-label {
    color: var(--white);
    font-size: 14px;
    font-family: InterM, NotoSansM;
    white-space: nowrap;
    line-height: 1.3;
}

.search-pc-input-wrap {
    width: 100%;
    /*flex: 1;*/
    position: relative;
}

.search-pc-input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 30px;
    padding: 0 44px 0 16px;
    font-size: 15px;
    color: #555;
    outline: none;
    /*font-family: InterSB, NotoSansB;*/
}

.search-pc-input::placeholder {
    color: #bbb;
    font-size: 15px;
}

.search-pc-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #473566;
    cursor: pointer;
    border-radius: 50%;
    transition: background .15s;
}

.search-pc-btn:hover {
    background: rgba(71, 53, 102, .1);
}

.search-pc-gps {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.search-pc-gps img {
    width: 22px;
}

.search-pc-gps span {
    font-size: 11px;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

.franchise-btn-pc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(160deg, #473666 0%, #7055A1 60%, #8E6CCC 100%);
    color: #ffffff !important;
    font-size: 10px;
    font-family: NotoSansR;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
    letter-spacing: .02em;
    transition: opacity .2s;
    position: absolute;
    right: -85px;
}

.franchise-btn-pc:hover {
    opacity: .85;
}

.franchise-btn-pc img {
    width: 24px;
}

/* ── PC 지점 목록 ── */
#branch-list-pc {
    flex: 1;
    padding: 0;
}

/* ── 공통: branch-wrap 내부 ── */
.branch-wrap {
    padding: 0;
}

/* 협력병원 섹션 */
.partner-section {}
.partner-section .partner-name {font-size:16px;}
.partner-section .region-header {width:180px; text-align:center; align-items: center; justify-content: center;}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8e4ee;
    gap: 32px;
    margin-bottom: 10px;
}

.partner-type {
    font-size: 13px;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
}

.partner-type span {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--purple);
    color: var(--purple);
    border-radius: 2px;
    font-size: 12px;
    padding: 1px 6px;
    margin-left: 4px;
}

.partner-name {
    flex: 1;
    font-size: 19px;
    color: var(--text-main);
    font-family: InterM, NotoSansM;
    border-bottom: solid 1px #B9B1B1;
    padding-bottom: 3px;
    /*cursor: pointer;*/
    /*width: 100%;*/
    /*max-width: 381px;*/
}

.branchSmallText {
    font-size: 15px;
}

/* 지역 블록 */

.branchList {
    display: flex;
    flex-wrap: wrap;
    margin-top:5px;
    margin-bottom: 7px;
}

.branchList .gridCell {
    width: calc(100% / 5);
    box-sizing: border-box;
}
.branchList .gridCell.col4 {
    width: calc(100% / 4);
}
.branchList .gridCell.col3 {
    width: calc(100% / 3);
}

.branchList .gridCell.head {
    display: flex;
    align-items: flex-end;
}

.branchList .gridCell:not(.head) {
    display: flex;
    box-sizing: border-box;
    padding: 4px 5px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    border-bottom: solid 1px #B9B1B1;
}

.branchList .gridCell>span {
    cursor: pointer;
}

.branchList .gridCell.large {
    width: calc(100% / 2.5);
    padding-left:15px;
}

.branchList .gridCell.head.long {
    width: auto;
    margin-right: 15px;
}

.branchList .gridCell.head.jpn {
    width: auto;
}

.upcoming {
    display:block;
    color: #707070;
}

.small-branch-name {
    font-size:11px !important;
}

.branchList .gridCell small {
    font-size: 12px;
}

.branchList .branch-name {
    padding-left:10px;
    word-break: keep-all;
    text-align: left;
    font-size: 16px;
    line-height: 1;
    padding-top: 5px;
}

.branchList .gridCell.disabled {
    opacity: 0.4;
}

.region-block {
    border-bottom: 1px solid #ece8f3;
}

.region-header {
    display: inline-flex;
    box-sizing:border-box;
    width:100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff;
    border: solid 1px #D2CBDF;
    border-radius: 5px;
    white-space: nowrap;
}

.rname {
    font-size: 18px;
    font-family: NotoSansB;
    color: #473666;
    line-height: 1;
}

.rcount {
    font-size: 14px;
    font-family: NotoSansM;
    color: #878686;
    line-height: 1;
}

.branch-grid {
    padding: 4px 20px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
}

.branch-grid span {
    font-size: 14px;
    color: var(--text-main);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 3px;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

.branch-grid span:hover {
    background: #f0ecf9;
    color: var(--purple);
}

.branch-grid span small {
    font-size: 11px;
    color: #888;
    display: block;
}

/* 협력병원 노트 */
.partner-note {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-main);
    border-bottom: 1px solid #ece8f3;
}

.partner-note-label {
    font-size: 12px;
    color: #888;
    margin-right: 8px;
}

/* ============================================================
   PC 푸터
   ============================================================ */
#footer-pc {
    width: 100%;
    background: var(--white);
}

.footer-mid {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    justify-content: space-between;
    gap: 20px;
    padding: 28px 60px;
    border-top: 1px solid #e8e8e8;
    position: relative;
}

.footer-mid .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px
}

.footer-logo {
    height: 40px;
    width: auto;
}

.copyright-pc {
    font-size: 13px;
    color: var(--gray-text);
    font-family: 'Roboto', sans-serif;
    text-align: center;
    flex: 1;
}

.sns-link {
    display: flex;
    align-items: center;
}

.footer-bar {
    background: var(--dark-footer);
    padding: 20px 60px;
    text-align: center;
}

.footer-bar span {
    font-size: 14px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

.search-pc-input-wrap {
    position: relative;
}

/* Temporarily disabled - suggest dropdown is hidden
.search-pc-input-wrap.open .search-pc-input {
    border-radius: 24px 24px 0 0;
    border-bottom: 1px solid #f0f0f0;
}
*/

.search-pc-suggest {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: none;
    border-radius: 0 0 24px 24px;
    padding-top: 10px;
    padding-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* Soft bottom shadow */
}

.search-pc-suggest.open {
    display: block;
}

.search-pc-suggest ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-pc-suggest li {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.search-pc-suggest li:hover {
    background: #f5f5f5;
}

.search-pc-suggest li:last-child {
    border-bottom: none;
}

/* Search History Styles based on map.php */
.search-pc-history-lbl {
    margin-top: 20px;
    margin-bottom: 12px;
    padding-left: 14px;
    font-weight: bold;
    font-size: 15px;
    color: #111;
}

.search-pc-history {
    display: flex;
    flex-wrap: wrap;
    /* allow wrapping if too many items */
    gap: 8px;
    padding: 0 14px 14px 14px;
}

.search-pc-gps img {
    vertical-align: middle;
}

.intro-history-item {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: bold;
    height: 36px;
    padding-left: 12px;
    border-radius: 18px;
    border: 1px solid #111;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #111;
    background: #fff;
}

.intro-history-item span {
    white-space: nowrap;
}

.intro-history-item-remove {
    cursor: pointer;
    padding: 0 10px;
    width: 28px;
    font-size: 13px;
    background: transparent;
    border: none;
    height: 100%;
    background-image: url(/app/layout/web/pages/store/images/close.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px auto;
    opacity: 0.7;
}

.intro-history-item-remove:hover {
    opacity: 1;
}

/* ============================================================
   언어 드롭다운 위치 (PC)
   ============================================================ */
#lang-panel {
    top: 60px;
    /* 헤더 아래 */
    right: 0;
    min-width: 110px;
}





@media (max-width:1700px) {
    #white-panel {
        padding: 80px 50px 80px 50px;
    }

    .franchise-btn-pc {
        position: static;
    }
}





/* ============================================================
   반응형: 모바일 (<= 1023px)
   ============================================================ */
@media (max-width: 1023px) {
    .mobile-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    /* ── 헤더 ── */
    #main-header {
        position: fixed;
        height: 64px;
        background: transparent;
        z-index: 150;
        /*text-align: left;*/
    }

    .booking-title {
        color: #fff;
    }

    .header-left {
        width: auto;
        padding-left: 18px;
    }

    #btn-booking {
        font-size: 13px;
        text-align: left
    }

    .header-logo {
        position: static;
        transform: none;
        padding: 0;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-logo img {
        height: 32px;
    }

    .header-right {
        padding-right: 18px;
    }

    #btn-lang {
        color: var(--white);
        font-size: 13px;
    }

    .lang-arrow {
        color: var(--white);
    }

    .lang-arrow img {
        filter: invert(1) brightness(2);
    }

    #btn-lang img {
        filter: invert(1) brightness(2);
    }

    .search-pc-bar .left {
        gap: 20px;
    }
    .search-pc-input {
        height: 30px;
    }
    .search-pc-input::placeholder {
        font-size: 13px;
    }
    /* ── 레이아웃 ── */
    #layout {
        flex-direction: column;
        /*padding-top: 64px; !* 고정 헤더 높이 *!*/
        min-height: auto;
    }

    /* ── 다크 패널 전체 너비 ── */
    #dark-panel {
        width: 100%;
    }

    /* ── 미디어 영역 ── */
    #media-wrap {
        width: 100%;
        min-height: 56vw;
        max-height: 80vw;
    }

    #videoPlayer {
        height: 56vw;
    }

    /* ── 화이트 패널: 절대위치 해제, 비주얼 바로 아래 일반 흐름 ── */
    #white-panel {
        position: static;
        width: 100%;
        height: auto;
        padding: 0;
        overflow-y: visible;
    }

    /* ── 모바일 퀵버튼 ── */
    #quick-btns {
        display: flex;
        position: absolute;
        bottom: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
    }

    .quick-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 62px;
        height: 62px;
        gap: 4px;
        cursor: pointer;
        text-align: center;
        right: 0px;
        top: -72px;
        font-size: 10px;
    }

    .btn-franchise {
        background: linear-gradient(160deg, var(--purple) 0%, var(--purple-mid) 60%, var(--purple-light) 100%);
        color: var(--white);
        font-size: 12px;
        font-weight: 600;
        padding: 8px;
    }

    .franchise-btn-pc {
        position: absolute;
    }

    /* ── 배너 ── */
    #banners {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .banner {
        height: 180px;
    }

    .banner > a {height: auto;}

    /* ── PC 검색바 모바일 조정 ── */
    #branch-search-pc {
        height: auto;
        min-height: 40px;
    }

    .search-pc-bar {
        padding: 0px;
        gap: 0px
    }

    .search-pc-label {
        font-size: 12px;
        margin-left: 20px
    }

    .search-pc-bar .left {
        background: linear-gradient(135deg, #492784 62%, #7357A4 100%);
        padding-right: 12px;
    }

    .search-pc-gps {
        width: 30%;
        height: 100%;
        justify-content: center;
        background: linear-gradient(135deg, #492784 62%, #7357A4 100%);
    }

    /* ── PC 지점 목록 모바일 조정 ── */
    #branch-list-pc {
        padding: 0px 15px;
    }

    .region-header {
        width:100%;
        box-sizing:border-box;
        padding: 4px 7px;
        gap: 4px;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
        justify-content: center;
        align-items: center;
    }

    .rname {
        font-size: 10px;
        text-align:center;
    }

    .rcount {
        font-size: 8px;
    }
    
    .branchList .branch-name {
        padding-left:3px;
        font-size: 12px;
        text-align:left;
    }
    .branchList .gridCell {
        font-size:12px;
    }
    .branchList .gridCell.col4 {
        width: calc(100% / 4);
    }
    .branchList .gridCell.col3 {
        width: calc(100% / 3);
    }
    .branchList .gridCell:not(.head).col3 {
        /*align-items: flex-start !important;*/
    }
    .branchList .gridCell.head {
        display: flex;
        font-size:12px;
        justify-content: center;
        align-items: flex-end;
    }
    
    .branchList .gridCell.long {
        width: auto;
    }

    .branchList .gridCell:not(.head) {
        min-height: 21px;
    }

    .branchList .gridCell>span {
        font-size: 12px;
    }

    .branchList .gridCell:not(.head) {
        padding:2px 5px 0 5px;
        min-height: 15px;
    }

    .branchList .gridCell small {
        font-size: 8px;
    }
    
    .branchList .gridCell.large {
        padding-left:8px;
    }

    /*#branch-list-pc .region-header { margin: 10px 16px 6px; }*/
    #branch-list-pc .branch-grid {
        padding: 4px 16px 14px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px 4px;
    }

    #branch-list-pc .branch-grid span {
        font-size: 13px;
        padding: 6px 4px;
        text-align: center;
    }

    #branch-list-pc .partner-section {
        padding: 0px;
    }

    #branch-list-pc .partner-item {
        flex-wrap: wrap;
        gap: 4px;
        padding: 2px 0;
        margin-bottom:0;
    }

    #branch-list-pc .partner-name {
        font-size: 12px;
    }

    #branch-list-pc .partner-note {
        padding: 10px 16px;
        font-size: 13px;
    }

    .branchSmallText {
        font-size: 12px;
    }

    /* ── 모바일 푸터 로고 ── */
    #footer-logo-m {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px 20px 16px;
        background: var(--gray-light);
        gap: 12px;
    }

    #footer-logo-m img {
        height: 44px;
        width: auto;
    }

    .copyright-m {
        font-size: 12px;
        color: var(--gray-text);
        font-family: 'Roboto', sans-serif;
        text-align: center;
    }

    /* ── 모바일 사업자 정보 ── */
    #biz-info-m {
        display: block;
        background: var(--dark);
    }

    .biz-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 20px;
        cursor: default;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .biz-toggle span {
        color: var(--white);
        font-size: 15px;
    }

    .biz-body {
        display: block;
        padding: 20px;
    }

    .biz-body p {
        color: var(--white);
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
        font-family: 'Roboto', sans-serif;
    }

    .biz-body p:last-child {
        margin-bottom: 0;
    }

    /* ── PC 푸터 숨김 ── */
    #footer-pc {
        display: none;
    }

    /* ── 언어 패널: 모바일 드롭다운 ── */
    #lang-panel {
        position: fixed;
        width: auto;
        min-width: 120px;
        height: auto;
        max-height: 60vh;
        overflow-y: auto;
        z-index: 300;
        background: var(--white);
    }

    .lang-panel-close {
        display: none;
    }

    .lang-list li {
        border-bottom: 1px solid #eee;
    }

    .lang-list li a {
        font-size: 15px;
        padding: 13px 20px;
    }

    /* ── 부킹 패널: 모바일 전체 너비 ── */
    #booking-panel {
        width: 100%;
        max-width: 420px;
    }

    .booking-langs li a {
        font-size: 16px;
        padding: 16px 4px;
    }

}

/* ============================================================
   PC 스크롤바 스타일
   ============================================================ */
#white-panel::-webkit-scrollbar {
    width: 6px;
}

#white-panel::-webkit-scrollbar-track {
    background: #f0ecf9;
}

#white-panel::-webkit-scrollbar-thumb {
    background: var(--lavender);
    border-radius: 3px;
}

#white-panel::-webkit-scrollbar-thumb:hover {
    background: var(--purple);
}

/* =============================================================
   GPS POPUP OVERLAY (copied from store-main.css)
   ============================================================= */
.ssoft-gps-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overscroll-behavior: contain;
}

.ssoft-gps-overlay.ssoft-open {
    opacity: 1;
    visibility: visible;
}

/* PC: Right aligned popup matching white-panel */
.ssoft-gps-popup {
    position: absolute;
    right: 0;
    top: 65px;
    bottom: 0;
    background: #fff;
    width: var(--panel-w);
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.ssoft-gps-overlay.ssoft-open .ssoft-gps-popup {
    transform: translateX(0);
    opacity: 1;
}

/* Drag handle - hidden on PC */
.ssoft-gps-popup-handle {
    display: none;
}

/* Close button */
.ssoft-gps-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
}

.ssoft-gps-close:hover {
    color: #6B4C8C;
    transform: scale(1.15);
}

/* GPS body (iframe container) */
.ssoft-gps-body {
    flex: 1;
    overflow: hidden;
    padding-top: 30px;
}

.ssoft-gps-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================================
   GPS POPUP - MOBILE (Bottom Sheet)
   ============================================================= */
@media (max-width: 1023px) {
    .ssoft-gps-overlay {
        align-items: flex-end;
        background: rgba(0, 0, 0, 0.4);
    }

    .ssoft-gps-popup {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        height: 85vh;
        height: 95dvh;
        max-height: calc(100% - 64px);
        transform: translateY(100%);
        opacity: 1;
        transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    }

    .ssoft-gps-overlay.ssoft-open .ssoft-gps-popup {
        transform: translateY(0);
    }

    /* Drag handle - mobile only */
    .ssoft-gps-popup-handle {
        display: block;
        width: 48px;
        height: 55px;
        background: #bbb;
        border-radius: 3px;
        margin: 0 auto;
        flex-shrink: 0;
        padding: 0;
        /* Large touch target via parent padding */
    }

    .ssoft-gps-popup>.ssoft-gps-popup-handle {
        /* Extra touch target area */
        padding: 14px 0 10px;
        width: 100%;
        background: transparent;
        display: flex;
        justify-content: center;
    }

    .ssoft-gps-popup>.ssoft-gps-popup-handle::before {
        content: '';
        display: block;
        width: 48px;
        height: 5px;
        background: #bbb;
        border-radius: 3px;
    }

    .ssoft-gps-close {
        top: 10px;
        right: 14px;
        font-size: 28px;
        color: #666;
    }

    .ssoft-gps-body {
        padding-top: 0;
    }
}

@media (max-width: 375px) {
    .search-pc-gps {
        width: 33%;
    }
}