/* =====================================================================
   ????????????? ??????? ?? ??????   ????? ??????~390px), ??????????? + ???????
   ===================================================================== */

   :root {
    /* Figma ??393) ???: trans/gray, trans/primary */
    --pm-ink:          rgba(13, 28, 45, 0.8);
    --pm-ink-sub:      rgba(13, 28, 45, 0.5);
    --pm-ink-faint:    rgba(13, 28, 45, 0.16);
    --pm-surface-field:rgba(13, 28, 45, 0.08);
    --pm-radius-ui:    8px;
  
    --pm-bg:           #F2F4F7;
    --pm-card:         #FFFFFF;
    --pm-card-shadow:  0 4px 18px rgba(20, 22, 36, .04);
    --pm-text:         var(--pm-ink);
    --pm-text-sub:     var(--pm-ink-sub);
    --pm-text-mute:    var(--pm-ink-sub);
    --pm-divider:      #ECEEF2;
  
    --pm-primary:      #4568FF;
    --pm-primary-soft: rgba(69, 104, 255, 0.2);
    --pm-warn:         #E5484D;
    --pm-warn-soft:    #FCE2E2;
    --pm-gray-soft:    rgba(13, 28, 45, 0.08);
  
    --pm-radius-card:  16px;
    --pm-radius-chip:  var(--pm-radius-ui);
  }
  
  /* ?? storeWrap ????????????? ?? */
  body { background: var(--pm-bg); }
  #wrap.storeWrap { background: var(--pm-bg); min-height: 100dvh; }
  
  /* ?? ????? main ??? ??? window.scrollY ????main.scrollTop ??? ??? (??? ???? ????????) */
  body.pm-page-home #wrap.storeWrap {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    box-sizing: border-box;
  }
  body.pm-page-home #wrap.storeWrap .pm-shell {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    max-height: 100%;
  }
  body.pm-page-home #wrap.storeWrap .pm-topbar {
    flex-shrink: 0;
  }
  body.pm-page-home #wrap.storeWrap main {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.pm-page-home #wrap.storeWrap .pm-bottombar {
    flex-shrink: 0;
  }
  #wrap.storeWrap,
  #wrap.storeWrap .pm-shell {
    font-family: "Pretendard", "SUIT", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  }
  /* ??????????? .inner ???????? (??? storeWrap ??) */
  .pm-shell {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    box-sizing: border-box;
    padding-bottom: 8rem;
  }
  
  /* ----------------------- Top Bar ----------------------- */
  .pm-topbar {
    position: sticky; top: 0; z-index: 50;
    height: var(--pm-topbar-height, 5.4rem);
    padding: 0;
    background: var(--pm-bg);
  }
  .pm-topbar__inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pm-topbar__brand {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 1.8rem; font-weight: 600; line-height: 1.4;
    color: var(--pm-ink);
    font-feature-settings: "case" on;
  }
  .pm-topbar__logo {
    width: 2.4rem; height: 2.4rem; border-radius: 50%;
    background: linear-gradient(135deg, #4568FF, #7B86FF);
    color: #fff; font-weight: 700; font-size: 1.2rem;
    display: inline-flex; align-items: center; justify-content: center;
    letter-spacing: -0.05em;
  }
  .pm-topbar__back {
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 3.2rem; height: 3.2rem; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: var(--pm-text); font-size: 2rem; line-height: 1;
    text-decoration: none; border: 0;
  }
  .pm-topbar__back:hover { background: rgba(0,0,0,.04); }
  
  /* ?? ??? (??? ??? / ??? ????? */
  .pm-topbar--frosted {
    background: rgba(242, 244, 247, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  /* ?????? ?????? (???? ????????) */
  .pm-topbar--wizard .pm-topbar__brand {
    display: none;
  }
  
  /* ----------------------- Home Hero ----------------------- */
  .pm-hero {
    padding: 0 0 0.8rem;
  }
  .pm-hero__title {
    font-size: 2.4rem; font-weight: 700; line-height: 1.4;
    color: var(--pm-ink);
    letter-spacing: -0.02em;
    font-feature-settings: "case" on;
  }
  
  /* ???? */
  .pm-search {
    margin: 1rem 0 0.8rem;
    display: flex; align-items: center; gap: 1rem;
    min-height: 4.2rem;
    padding: 0.8rem;
    box-sizing: border-box;
    background: var(--pm-surface-field);
    border-radius: var(--pm-radius-ui);
    box-shadow: none;
  }
  .pm-search__icon {
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-ink-sub);
    line-height: 0;
  }
  .pm-search__icon .pm-search__svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  .pm-search input {
    border: 0; outline: 0; background: transparent;
    flex: 1; font-size: 1.4rem; color: var(--pm-text);
    font-family: inherit;
  }
  .pm-search input::placeholder { color: var(--pm-ink-sub); }
  
  /* ??? ??(Figma Frame 3: 8px gap, 32px tall tags) */
  .pm-filterbar {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.8rem 0 1.6rem; flex-wrap: wrap;
  }
  .pm-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 3.2rem;
    padding: 0 0.8rem;
    box-sizing: border-box;
    background: var(--pm-surface-field);
    border: 0;
    border-radius: var(--pm-radius-ui);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--pm-ink);
    font-family: inherit;
    cursor: pointer;
    box-shadow: none;
    padding-right: 2.5rem;
    position: relative;
  }
  .pm-filter::after {
    content: "";
    flex-shrink: 0;
    width: 0.65rem;
    height: 0.65rem;
    border-right: 1.6px solid var(--pm-ink);
    border-bottom: 1.6px solid var(--pm-ink);
    transform: rotate(45deg) translateY(-50%);
    opacity: 0.9;
    position: absolute;
    top: 42%;
    right: 1.3rem;
  }
  .pm-filter select {
    appearance: none; -webkit-appearance: none;
    border: 0; background: transparent; outline: 0;
    font-size: 1.3rem; color: inherit; font-family: inherit;
    padding-right: .4rem; cursor: pointer;
  }
  .pm-filter--toggle {
    margin-left: auto;
    padding: 0 0.8rem;
    min-height: 3.2rem;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(13, 28, 45, 0.8);
    background: rgba(13, 28, 45, 0.08);
    transition: background 0.15s ease, color 0.15s ease;
  }
  .pm-filter--toggle.is-on {
    color: #4568ff;
    background: rgba(69, 104, 255, 0.2);
  }
  .pm-filter--toggle::after { content: none; }
  .pm-filter--toggle .pm-filter-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
  }
  .pm-filter--toggle .pm-filter-toggle__svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  .pm-filter--toggle .pm-filter-toggle__ring {
    fill: rgba(13, 28, 45, 0.16);
    transition: fill 0.15s ease;
  }
  .pm-filter--toggle.is-on .pm-filter-toggle__ring {
    fill: #4568ff;
  }
  .pm-filter--toggle .pm-filter-toggle__mark {
    fill: #fff;
  }
  .pm-filter--toggle .pm-filter-toggle__label {
    flex-shrink: 0;
    color: inherit !important;
  /* ?? */
    width: 80px;
    height: 21px;
  
  /* Body/Body2_14_SB */
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
  /* ?? ??? ?? ?? 21px */
    text-align: center;
    
  
  /* trans/gray/a2 */
    color: rgba(13, 28, 45, 0.8);
  
  
  /* ?? ?????? */
    flex: none;
    order: 1;
    flex-grow: 0;
  }
  .pm-filter--toggle:focus-visible {
    outline: 2px solid var(--pm-primary);
    outline-offset: 2px;
  }
  
  /* ??? ?????? (??????? */
  .pm-filter--trigger {
    flex-shrink: 0;
  }
  .pm-filter__value {
    /* max-width: 11rem; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'Pretendard';
    font-weight: 600;
    font-size: 1.4rem;
    
  /* ?? ??? ?? ?? 21px */
    text-align: center;
    
  
  /* trans/gray/a2 */
    color: rgba(13, 28, 45, 0.8);
  }
  
  body.pm-filter-sheet-open {
    overflow: hidden;
    touch-action: none;
  }
  
  .pm-filter-sheet {
    position: fixed;
    inset: 0;
    z-index: 120;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }
  .pm-filter-sheet.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }
  .pm-filter-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 22, 36, 0.45);
  }
  .pm-filter-sheet__panel {
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #fff;
    border-radius: 1.8rem;
    padding: 0 0 calc(1.2rem + env(safe-area-inset-bottom, 0px));
    max-height: 300px;
    width: calc(100dvw - 20px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -8px 32px rgba(20, 22, 36, 0.12);
    transform: translate3d(0, 105%, 0);
    transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .pm-filter-sheet.is-open .pm-filter-sheet__panel {
    transform: translate3d(0, 0, 0) translateX(-50%) translateY(-10px);
  }
  .pm-filter-sheet__handle {
    width: 3.6rem;
    height: 0.45rem;
    border-radius: 99px;
    background: var(--pm-divider);
    margin: 1rem auto 0.4rem;
    flex-shrink: 0;
  }
  .pm-filter-sheet__title {
    margin: 0;
    padding: 0.8rem var(--inner-padding-x, 2rem) 1rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--pm-text);
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .pm-filter-sheet__options {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
  }
  .pm-filter-sheet__opt {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 1.65rem var(--inner-padding-x, 2rem);
    font-size: 1.5rem;
    font-family: inherit;
    color: var(--pm-text);
    cursor: pointer;
  }
  .pm-filter-sheet__opt:hover,
  .pm-filter-sheet__opt:focus {
    background: rgba(0, 0, 0, 0.03);
    outline: none;
  }
  .pm-filter-sheet__opt.is-selected {
    font-weight: 700;
    color: var(--pm-primary);
  }
  
  /* ----------------------- ?? (Figma Frame 5: 16px radius, 12/16 ?????) ----------------------- */
  .pm-cards { display: flex; flex-direction: column; gap: 1rem; padding: 0; }
  
  .pm-card {
    position: relative; display: block;
    background: var(--pm-card); border-radius: var(--pm-radius-card);
    padding: 1.6rem 1.6rem 1.6rem;
    box-shadow: var(--pm-card-shadow); text-decoration: none; color: inherit;
  }
  .pm-card__date {
    font-size: 1.2rem; font-weight: 500; line-height: 1.5;
    color: var(--pm-ink-sub); margin-bottom: 0.4rem;
  }
  .pm-card__head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
  }
  .pm-card__title {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.6rem; font-weight: 600; color: var(--pm-ink);
    letter-spacing: -0.01em; line-height: 1.6;
    font-feature-settings: "case" on;
  }
  .pm-card__sub {
    margin-top: 0.4rem;
    font-size: 1.2rem; font-weight: 500; line-height: 1.5;
    color: var(--pm-ink-sub);
  }
  .pm-card__chips {
    display: flex; flex-wrap: wrap; gap: 0.8rem;
    margin-top: 1rem;
  }
  .pm-card__status {
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 2.6rem; padding: 0.4rem 0.8rem;
    border-radius: var(--pm-radius-chip);
    font-size: 1.2rem; font-weight: 600; line-height: 1.5;
    background: var(--pm-gray-soft); color: var(--pm-ink-sub);
    font-feature-settings: "case" on;
  }
  .pm-card__status.is-active {
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
  }
  /* ????? ????? ??? ?????????? ??????? */
  .pm-card__status.is-pending {
    background: rgba(69, 104, 255, 0.14);
    color: rgba(69, 104, 255, 0.5);
  }
  .pm-card__status.is-review-pending {
    background: rgba(229, 72, 77, 0.12);
    color: #E5484D;
  }
  .pm-card__status.is-review-done {
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
  }
  .pm-card__arrow {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-ink-sub);
    font-size: 1.5rem;
    line-height: 1;
  }
  
  /* ??*/
  .pm-chip {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 2.6rem; padding: 0.4rem 0.8rem;
    border-radius: var(--pm-radius-chip);
    font-size: 1.2rem; font-weight: 600; line-height: 1.5;
    background: var(--pm-primary-soft); color: var(--pm-primary);
    font-feature-settings: "case" on;
  }
  .pm-chip.is-warn { background: var(--pm-warn-soft); color: var(--pm-warn); }
  .pm-chip.is-default { background: var(--pm-primary-soft); color: var(--pm-primary); }
.pm-chip.is-neutral {
  background: rgba(13, 28, 45, 0.08);
  color: rgba(13, 28, 45, 0.8);
}
  
  .pm-empty {
    text-align: center; padding: 4rem 0;
    color: var(--pm-text-mute); font-size: 1.4rem;
  }
  
  /* ----------------------- ??? ????(Figma: ???? ?????????, #0D1C2D 50%/80%) ----------------------- */
  .pm-bottombar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    background: #fff;
    border-top: 1px solid var(--pm-divider);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    z-index: 60;
    isolation: isolate;
  }
  .pm-bottombar::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 1rem;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  }
  .pm-bottombar__row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
  }
  .pm-bottombar__item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: #D8DADD;
    font-size: 1.2rem;
    font-weight: 600;
    font-feature-settings: "case" on;
    transition: color 0.15s ease;
    width: 50%;
    padding: 2rem 0;
  }
  .pm-bottombar__item.is-active {
    color: #3D4957;
  }
  .pm-bottombar__item .pm-bottombar__icon,
  .pm-bottombar__item .pm-bottombar__label,
  .pm-bottombar__item .pm-bottombar__svg {
    color: #D8DADD;
  }
  .pm-bottombar__item .pm-bottombar__svg path {
    fill: #D8DADD;
  }
  .pm-bottombar__item.is-active .pm-bottombar__icon,
  .pm-bottombar__item.is-active .pm-bottombar__label,
  .pm-bottombar__item.is-active .pm-bottombar__svg {
    color: #3D4957;
  }
  .pm-bottombar__item.is-active .pm-bottombar__svg path {
    fill: #3D4957;
  }
  .pm-bottombar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.1rem;
    line-height: 0;
  }
  .pm-bottombar__svg {
    display: block;
    width: 100%;
    height: 100%;
    color: currentColor;
  }
  .pm-bottombar__svg path {
    fill: currentColor;
  }
  .pm-bottombar__label {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.17;
    color: inherit;
  }
  .pm-bottombar__indicator {
    align-self: center;
    width: 14.1rem;
    max-width: 36%;
    height: 0.5rem;
    margin-top: 0.6rem;
    background: #000;
    border-radius: 2.5px;
    flex-shrink: 0;
  }
  
  /* ----------------------- ??? ??? ----------------------- */
  .pm-detail-head { padding: 1rem 0 0; }
  .pm-detail-head__title {
    font-size: 2.2rem; font-weight: 700; color: var(--pm-text);
    letter-spacing: -0.02em; line-height: 1.3;
  }
  .pm-detail-apply-test-hint {
    margin: 0.8rem 0 0;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(69, 104, 255, 0.95);
    background: rgba(69, 104, 255, 0.12);
  }
  .pm-distance-row {
    display: flex; flex-wrap: wrap; gap: .6rem;
    padding: 1.2rem 0 0;
  }
  .pm-distance-chip {
    height: 2.8rem; padding: 0 1.2rem;
    background: #E9ECEF; color: var(--pm-text-sub);
    border-radius: var(--pm-radius-chip);
    display: inline-flex; align-items: center;
    font-size: 1.25rem; font-weight: 500;
  }
  .pm-section {
    background: var(--pm-card); border-radius: var(--pm-radius-card);
    padding: 1.8rem; margin: 1.4rem 0 0;
    box-shadow: var(--pm-card-shadow);
  }
  .pm-section__title {
    font-size: 1.5rem; font-weight: 700; color: var(--pm-text);
    margin-bottom: 1.2rem;
  }
  .pm-info-row {
    display: flex; align-items: center; gap: 1rem;
    padding: .6rem 0;
  }
  .pm-info-row span,
  .pm-info-row a,
  .pm-feature-list li span {
    font-size: 1.4rem; color: var(--pm-text);
  }
  .pm-info-icon {
    width: 3.2rem; height: 3.2rem; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .pm-info-icon--place    { background: #FFE3E3; color: #E5484D; }
  .pm-info-icon--date     { background: #DDF7DF; color: #2EA13C; }
  .pm-info-icon--time     { background: #DDEEFD; color: #2A6DD9; }
  .pm-info-icon--status   { background: rgba(69, 104, 255, 0.14); color: #4568FF; font-size: 1.1rem; font-weight: 700; }
  .pm-info-icon--mail     { background: #DDEEFD; color: #2A6DD9; }
  .pm-info-icon--phone    { background: #DDF7DF; color: #2EA13C; }
  
  .pm-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .pm-feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--pm-text);
    line-height: 1.4;
  }
  .pm-feature-list li .pm-feature-num {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: .8rem;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-weight: 500;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-indent: -0.21rem;
  }
  .pm-feature-empty {
    font-size: 1.4rem; color: var(--pm-text-sub);
  }
  .pm-cta-bar {
    position: fixed; left: 50%; transform: translateX(-50%); bottom: 1.6rem;
    box-sizing: border-box;
    width: 100%;
    max-width: var(--inner-max-width, 480px);
    padding: 0 var(--inner-padding-x, 2rem);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .pm-cta {
    display: block; width: 100%;
    background: var(--pm-primary); color: #fff;
    text-align: center; padding: 1.6rem;
    border-radius: 1.2rem;
    font-size: 1.6rem; font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(69, 104, 255, 0.35);
    box-sizing: border-box;
    border: 0;
  }
  .pm-cta--secondary {
    background: #fff;
    color: var(--pm-primary);
    border: 2px solid rgba(69, 104, 255, 0.35);
    box-shadow: 0 4px 16px rgba(20, 22, 36, 0.08);
  }
  .pm-cta--secondary:hover {
    background: #fafbff;
  }
  
  /* ?? storeWrap??header (common/header.php ??) ???????common ????? ??????? ??? */
  
  /* ???????? common .inner ??? */
  .pm-shell .container { padding: 0; max-width: none; }
  
  /* =====================================================================
     ????????
     ===================================================================== */
.pm-shell--login { padding-bottom: 0; }
.pm-login {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: calc(100dvh - env(safe-area-inset-top, 0px));
  background: #fff;
  padding: 0;
}
.pm-login > .inner {
  width: 100%;
  max-width: var(--inner-max-width);
  min-height: calc(100dvh - env(safe-area-inset-top, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 7.2rem;
  padding-bottom: 3.2rem;
  background: #fff;
}
.pm-login__hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.pm-login__logo {
  width: 8rem;
  height: 8rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pm-login__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pm-login__title {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #3B4755;
  letter-spacing: 0;
  font-feature-settings: "case" on;
}
.pm-login__quick {
  display: inline-flex;
  align-items: center;
  margin-top: 4rem;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border-radius: 0.8rem;
  background: rgba(13, 28, 45, 0.08);
  color: #3B4755;
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
  font-weight: 600;
  line-height: 1.5;
  font-feature-settings: "case" on;
}
.pm-login__error {
  width: calc(100% - 3.2rem);
  margin: 1.2rem 1.6rem 0;
  padding: 1rem 1.2rem;
  box-sizing: border-box;
  border-radius: 0.8rem;
  background: var(--pm-warn-soft);
  color: var(--pm-warn);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}
.pm-login__buttons {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 1.6rem 1.6rem 3.2rem;
  box-sizing: border-box;
}
.pm-sociallogin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  height: 5.4rem;
  text-decoration: none;
}
.pm-sociallogin span {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
.pm-sociallogin--kakao {
  background: #FEE500;
  border-radius: 0.6rem;
}
.pm-sociallogin--kakao span {
  color: rgba(0, 0, 0, 0.85);
}
.pm-sociallogin--naver {
  background: #03C75A;
  color: #fff;
  border-radius: 0.4rem;
}
.pm-sociallogin--naver span {
  color: #fff;
}
.pm-sociallogin__icon { font-size: 1.8rem; line-height: 1; }
.pm-sociallogin__icon--n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}
@media (max-height: 760px) {
  .pm-login > .inner {
    padding-top: 4.8rem;
  }
  .pm-login__quick {
  }
  .pm-login__buttons {
  }
}
  
  /* =====================================================================
     ?? ????(?????)
     ===================================================================== */
  .pm-menulist {
    list-style: none; padding: 0; margin: 0;
  }
  /* .pm-menulist li + li { border-top: 1px solid var(--pm-divider); } */
  .pm-menulist__item {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 1.6rem 0;
    background: transparent; border: 0;
    font-family: inherit; 
    text-decoration: none; cursor: pointer; text-align: left;
  }
  .pm-menulist__item span {
    font-size: 1.5rem; color: var(--pm-text); font-weight: 600;
  }
  .pm-menulist__item:hover { background: rgba(0,0,0,.02); }
  .pm-menulist__chev { color: var(--pm-text-mute); font-size: 1.8rem; line-height: 1; }
  .pm-menulist__item--btn { font-weight: 500; }
  
  /* =====================================================================
     ??
     ===================================================================== */
  .pm-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(20,22,36,.45);
    display: flex; align-items: center; justify-content: center;
    z-index: 200;
    padding: 0 2.4rem;
  }
  .pm-modal-backdrop--hidden { display: none; }
  .pm-modal {
    width: 100%; max-width: 360px;
    background: #fff; border-radius: 1.6rem;
    padding: 2rem 2rem 1.6rem;
    box-shadow: 0 12px 32px rgba(20,22,36,.18);
  }
  .pm-modal__title {
    font-size: 1.6rem; font-weight: 700; color: var(--pm-text);
    margin-bottom: .6rem;
  }
  .pm-modal__desc {
    font-size: 1.3rem; color: var(--pm-text-sub); line-height: 1.45;
    margin-bottom: 1rem;
  }
  .pm-modal__actions {
    display: flex; gap: .8rem; margin-top: 1.6rem;
  }
  .pm-modal__actions--two > * { flex: 1; }
  .pm-modal__btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 4.8rem; width: 100%;
    border: 0; border-radius: 1rem;
    font-family: inherit; font-size: 1.5rem; font-weight: 600;
    cursor: pointer; text-decoration: none;
  }
  .pm-modal__btn--gray    { background: var(--pm-gray-soft);  color: var(--pm-text); }
  .pm-modal__btn--primary { background: var(--pm-primary-soft); color: var(--pm-primary); font-weight: 700; }
  .pm-modal__btn--danger  { background: var(--pm-warn);       color: #fff; }
  
  /* alert ?? (??? ??) */
  .pm-modal--alert .pm-modal__actions { margin-top: 1.4rem; }
  
  /* =====================================================================
     ???????
     ===================================================================== */
  .pm-shell--search { padding-bottom: 4rem; }
  
  /* ????? ??? ???????? ?????????? ??? ?????? ?? ??? ???????? ?? */
  .pm-search-chrome__track {
    box-sizing: border-box;
    width: 100%;
    max-width: var(--inner-max-width, 480px);
    margin: 0 auto;
    padding-left: var(--inner-padding-x, 2rem);
    padding-right: var(--inner-padding-x, 2rem);
    min-height: var(--pm-topbar-height, 5.4rem);
    position: relative;
  }
  .pm-search-back {
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 3.6rem; height: 3.6rem; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: var(--pm-text); font-size: 2rem; line-height: 1;
    text-decoration: none; z-index: 10;
  }
  .pm-search-back:hover { background: rgba(0,0,0,.04); }
  
  .pm-searchpage { padding: 0 0 2rem; }
  .pm-searchpage__title {
    font-size: 2.2rem; font-weight: 700; color: var(--pm-text);
    letter-spacing: -0.02em; line-height: 1.4;
    margin-bottom: 2rem;
  }
  
  /* ????????????? ????? ??? ?? (??? ?????? ??? ???) */
  .pm-search--page {
    margin: 0 0 2rem 0;
    background: var(--pm-gray-soft);
    box-shadow: none;
  }
  .pm-search--page input::placeholder { color: var(--pm-text-mute); }
.pm-search--page.is-focused .pm-search__icon,
.pm-search--page.is-focused input::placeholder {
  opacity: 0.7;
}
.pm-search--page.is-typing input {
  color: #374352;
}
  
  .pm-cards--search { padding: 0; }
  
  /* ????? ?? ???? ?? ??? ?????(??????? */
  .pm-card__distance {
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 2.6rem; padding: 0.4rem 0.8rem;
    border-radius: var(--pm-radius-chip);
    font-size: 1.2rem; font-weight: 600;
    line-height: 1.5;
    background: var(--pm-gray-soft); color: var(--pm-ink-sub);
    max-width: 10rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  
  /* ??? ????: a?????search.php ?? ????? ??????? */
  a.pm-search--link { text-decoration: none; cursor: pointer; }
  a.pm-search--link:hover { background: rgba(13, 28, 45, 0.12); }
  a.pm-search--link:active { background: rgba(13, 28, 45, 0.14); }
  .pm-search__placeholder {
    flex: 1;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--pm-ink-sub);
    font-family: inherit;
    font-feature-settings: "case" on;
  }
  
  /* ---------------------------------------------------------------------
     ???? 393 ??? ?????????????????? ??? ???????? ??
     --------------------------------------------------------------------- */
  @media (max-width: 360px) {
    .pm-hero__title {
      font-size: 2.1rem;
    }
    .pm-topbar__brand {
      font-size: 1.65rem;
      gap: 0.75rem;
    }
    .pm-filter__value {
      max-width: 9.5rem;
    }
  }
  
  @media (min-width: 768px) {
    .pm-cards {
      gap: 1.25rem;
    }
  }
  
  /* =====================================================================
     ??? ??? ??????(Figma ???1 ??row item 58px / radius 16 / gap 16)
     ===================================================================== */
  .pm-shell--review-wizard {
    padding-bottom: 4rem;
  }
  .pm-review-main {
    padding-bottom: 2rem;
  }
  .pm-review-wizard__step-label {
    margin: 0 0 0.4rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(13, 28, 45, 0.5);
    font-feature-settings: "case" on;
  }
  .pm-review-wizard__title {
    margin: 0 0 2.2rem;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(13, 28, 45, 0.8);
    font-feature-settings: "case" on;
  }
  .pm-review-wizard__options {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .pm-review-option {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 5.8rem;
    padding: 1.6rem;
    box-sizing: border-box;
    border: 0;
    border-radius: 16px;
    background: #fff;
    /* box-shadow: var(--pm-card-shadow); */
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    color: rgba(13, 28, 45, 0.8);
    text-align: center;
    cursor: pointer;
  }
  .pm-review-option:hover {
    background: #fafbfc;
  }
  .pm-review-option:focus {
    outline: none;
    box-shadow: var(--pm-card-shadow), 0 0 0 2px var(--pm-primary);
  }
  .pm-review-option:active {
    opacity: 0.94;
  }
  .pm-review-option__text {
    display: block;
    width: 100%;
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    color: rgba(13, 28, 45, 0.8);
    text-align: left;
  }
  .pm-review-wizard__error {
    color: var(--pm-warn);
    font-size: 1.4rem;
    margin: 0 0 1.2rem;
    font-weight: 500;
  }
  
  /* ??? ???????? ?? ??? */
  .pm-review-thanks {
    padding: 0 0 0.4rem;
  }
  .pm-review-thanks__kicker {
    margin: 0 0 0.4rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(13, 28, 45, 0.5);
    font-feature-settings: "case" on;
  }
  .pm-review-thanks__title {
    margin: 0 0 1.2rem;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(13, 28, 45, 0.8);
    font-feature-settings: "case" on;
  }
  .pm-hero--review-manage {
    padding-top: 0;
    padding-bottom: 1.2rem;
  }
  .pm-hero--review-manage .pm-hero__title {
    margin: 0;
  }
  
  /* ????? ??????? ???? */
  .pm-home-review-guide {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    bottom: calc(7.8rem + env(safe-area-inset-bottom, 0px));
    z-index: 85;
    box-sizing: border-box;
    width: 100%;
    max-width: var(--inner-max-width, 480px);
    padding: 0 var(--inner-padding-x, 2rem);
    text-decoration: none;
    color: #fff;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
      transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
      visibility 0s linear;
  }
  .pm-home-review-guide.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(1.2rem);
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
      transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
      visibility 0s linear 0.4s;
  }
  .pm-home-review-guide__text,
  .pm-home-review-guide__chev {
    background: #374455;
  }
  .pm-home-review-guide__text {
    display: block;
    border-radius: 1.6rem;
    padding: 1.4rem 5.6rem 1.4rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .pm-home-review-guide__chev {
    position: absolute;
    right: calc(var(--inner-padding-x, 2rem) + 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    line-height: 1;
  }

  .pm-review-snackbar {
    position: fixed;
    left: 50%;
    bottom: calc(7.8rem + env(safe-area-inset-bottom, 0px));
    z-index: 230;
    width: calc(100% - 3.2rem);
    max-width: 44.8rem;
    transform: translateX(-50%) translateY(1.2rem);
    box-sizing: border-box;
    padding: 1.3rem 1.5rem;
    border-radius: 1.2rem;
    background: #374455;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.45;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    display: none !important;
  }
  .pm-review-snackbar.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear;
  }
  
  /* D+1 ??? ??? ?? (home) */
  body.pm-review-prompt-open {
    overflow: hidden;
  }
  .pm-review-prompt {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.6rem;
    box-sizing: border-box;
  }
  .pm-review-prompt.is-open {
    display: flex;
  }
  .pm-review-prompt__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 28, 45, 0.6);
  }
  .pm-review-prompt__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 36.1rem;
    background: #fff;
    border-radius: 1.6rem;
    box-sizing: border-box;
    overflow: hidden;
  }
  .pm-review-prompt__header {
    padding: 1.6rem 2rem 0.8rem;
  }
  .pm-review-prompt__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(13, 28, 45, 0.8);
    font-feature-settings: "case" on;
  }
  .pm-review-prompt__body {
    padding: 0 2rem 0;
  }
  .pm-review-prompt__line {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    color: rgba(13, 28, 45, 0.5);
    font-feature-settings: "case" on;
  }
  .pm-review-prompt__line:last-child {
    margin-bottom: 0;
  }
  .pm-review-prompt__actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.8rem;
    padding: 1.6rem;
    background: #fff;
  }
  .pm-review-prompt__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.9rem;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 1.2rem;
    font-family: inherit;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    font-feature-settings: "case" on;
  }
  .pm-review-prompt__btn--secondary {
    background: rgba(69, 104, 255, 0.2);
    color: #4568ff;
  }
  .pm-review-prompt__btn--primary {
    background: #4568ff;
    color: #fff;
  }
  .pm-review-prompt__btn--primary:hover,
  .pm-review-prompt__btn--primary:focus {
    color: #fff;
  }
  
