/* 페이스튜디오 모바일 — 마이페이지(메인 · 사업자정보 · 내정보 · 비밀번호 변경) */
.pm-my { padding: 16px; display: flex; flex-direction: column; gap: 14px; }

/* 프로필 */
.pm-my-profile {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--pm-card);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(31, 41, 51, .05);
}
.pm-my-profile__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pm-soft);
    color: var(--pm-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex: none;
}
.pm-my-profile__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pm-my-profile__body strong { font-size: 17px; font-weight: 700; }
.pm-my-profile__body span { font-size: 13px; color: var(--pm-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 현재 사업장 */
.pm-my-ws {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--pm-card);
    border-radius: 14px;
    padding: 13px 16px;
    box-shadow: 0 2px 10px rgba(31, 41, 51, .05);
}
.pm-my-ws__label { font-size: 13px; color: var(--pm-sub); }
.pm-my-ws__name { font-size: 14px; font-weight: 600; max-width: 60%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 사업장 2개 이상 — 탭해서 전환 시트 호출 */
.pm-my-ws--switch {
    width: 100%;
    border: 0;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: transform .12s, background .15s;
}
.pm-my-ws--switch:active {
    transform: scale(.99);
    background: #f7f8fa;
}
.pm-my-ws__bd {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    flex: 1;
}
.pm-my-ws__bd .pm-my-ws__name {
    max-width: 100%;
}
.pm-my-ws__chev {
    font-size: 20px;
    color: var(--pm-muted);
    flex: none;
    margin-left: 10px;
}

/* 메뉴 리스트 */
.pm-my-menu {
    background: var(--pm-card);
    border-radius: 16px;
    padding: 4px 6px;
    box-shadow: 0 2px 10px rgba(31, 41, 51, .05);
}
.pm-my-item { display: flex; align-items: center; gap: 12px; padding: 14px 10px; border-bottom: 1px solid var(--pm-line2); }
.pm-my-item:last-child { border-bottom: none; }
.pm-my-item__ic {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--pm-soft);
    color: var(--pm-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: none;
}
.pm-my-item__tx { flex: 1; font-size: 15px; font-weight: 500; }
.pm-my-item__arrow { color: var(--pm-muted); font-size: 20px; }

/* 고객센터 (마이 내 직접 표시 — 별도 페이지 없음) */
.pm-my-cs-box {
    background: var(--pm-card);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(31, 41, 51, .05);
}
.pm-my-cs-head { text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--pm-line2); }
.pm-my-cs-head__label { font-size: 13px; color: var(--pm-sub); }
.pm-my-cs-head__num { display: block; font-size: 27px; font-weight: 700; color: var(--pm-green); letter-spacing: -.5px; margin: 5px 0 7px; }
.pm-my-cs-head__ext { display: inline-block; font-size: 12px; font-weight: 600; color: var(--pm-green); background: var(--pm-soft); padding: 3px 11px; border-radius: 11px; margin-bottom: 11px; }
.pm-my-cs-head__time { font-size: 12px; color: var(--pm-muted); line-height: 1.55; }
.pm-my-cs-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 16px; }
.pm-my-cs-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 13px 0;
    border: 1px solid var(--pm-line);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--pm-text);
}
.pm-my-cs-btn i { font-size: 22px; color: var(--pm-green); }
.pm-my-cs-btn--call { background: var(--pm-green); border-color: var(--pm-green); color: #fff; }
.pm-my-cs-btn--call i { color: #fff; }

/* 로그아웃 / 탈퇴 */
.pm-my-foot { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 10px 0 4px; }
.pm-my-logout { font-size: 14px; color: var(--pm-sub); text-decoration: underline; text-underline-offset: 3px; }
.pm-my-leave { font-size: 12px; color: var(--pm-muted); }

/* 폼 (사업자정보 · 내정보 · 비밀번호) */
.pm-my-guide { font-size: 13px; color: var(--pm-sub); padding: 2px 2px 0; }
.pm-my-form {
    background: var(--pm-card);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(31, 41, 51, .05);
}
.pm-my-field { display: flex; flex-direction: column; gap: 7px; }
.pm-my-field label { font-size: 13px; font-weight: 600; color: var(--pm-sub); }
.pm-my-field input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--pm-line);
    border-radius: 11px;
    padding: 0 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--pm-text);
    background: var(--pm-card);
}
.pm-my-field input:disabled { background: var(--pm-bg); color: var(--pm-sub); -webkit-text-fill-color: var(--pm-sub); opacity: 1; }
.pm-my-field input:focus { outline: none; border-color: var(--pm-green); }
.pm-my-row2 { display: flex; gap: 8px; }
.pm-my-row2 input { flex: 1; }

/* 비밀번호 변경 고지 */
.pm-my-notice { display: flex; gap: 9px; background: var(--pm-soft); border-radius: 12px; padding: 13px 15px; }
.pm-my-notice i { color: var(--pm-green); font-size: 19px; flex: none; margin-top: 1px; }
.pm-my-notice p { font-size: 13px; color: var(--pm-green-d); line-height: 1.45; }
.pm-my-notice b { font-weight: 700; }

/* 기본 액션 버튼 */
.pm-btn-primary {
    width: 100%;
    height: 52px;
    border-radius: 13px;
    background: var(--pm-green);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(15, 157, 110, .3);
    transition: transform .1s;
}
.pm-btn-primary:active { transform: scale(.99); }

/* 사업자 변경 */
.pm-business-switch {
    background: var(--pm-card);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(31, 41, 51, .05);
}
.pm-business-switch__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.pm-business-switch__head strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--pm-text);
}
.pm-business-switch__head span {
    font-size: 13px;
    color: var(--pm-muted);
}
.pm-business-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pm-business-card {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 78px;
    border: 1px solid var(--pm-line);
    border-radius: 14px;
    padding: 12px;
    background: #fff;
}
.pm-business-card.is-current {
    border-color: rgba(15, 157, 110, .32);
    background: var(--pm-soft);
}
.pm-business-card__icon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: var(--pm-soft);
    color: var(--pm-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    flex: none;
}
.pm-business-card.is-current .pm-business-card__icon {
    background: #fff;
}
.pm-business-card__body {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.pm-business-card__body strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--pm-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pm-business-card__body span,
.pm-business-card__body em {
    font-size: 12px;
    line-height: 1.3;
    color: var(--pm-sub);
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pm-business-card__body em {
    color: var(--pm-muted);
}
.pm-business-card__btn {
    width: 62px;
    height: 36px;
    border-radius: 11px;
    background: var(--pm-green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex: none;
}
.pm-business-card__btn:disabled {
    background: #fff;
    color: var(--pm-green);
    border: 1px solid rgba(15, 157, 110, .2);
}
.pm-business-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 120px;
    border: 1px dashed var(--pm-line);
    border-radius: 14px;
    color: var(--pm-muted);
}
.pm-business-empty i {
    font-size: 24px;
}
.pm-business-empty p {
    font-size: 13px;
}
