﻿/*
 * 디자인 토큰 — 시안 핸드오프(README.md「Design Tokens」)의 값을 그대로 실체화한 것.
 *
 * 시안은 Wanted Design System 의 var(--wds-*) 를 쓰는데 그 번들이 핸드오프에
 * 들어있지 않다. 그래서 같은 이름으로 여기에 값을 박아 프로토타입 코드를
 * 수정 없이 그대로 쓸 수 있게 했다. 이름을 바꾸지 말 것.
 *
 * ※ 표시가 붙은 4개는 핸드오프 값 표에 없어 «추정»한 값이다.
 *   실화면 대조 후 확정할 것. (line-neutral / surface-inverse / inactive / ease)
 */
:root {
  /* Primary — 가격·혜택·CTA «에만» 쓴다. 선택 상태에는 쓰지 않는다. */
  --wds-primary: #ff5c28;
  --wds-primary-strong: #f04d1a;
  --wds-primary-heavy: #d63f10;
  --wds-primary-tint: #fff4f0;

  /* Text */
  --wds-text: rgb(23, 23, 23);
  --wds-text-neutral: rgba(46, 47, 51, 0.88);
  --wds-text-alt: rgba(55, 56, 60, 0.61);
  --wds-text-assistive: rgba(55, 56, 60, 0.28);
  --wds-inactive: rgba(55, 56, 60, 0.61); /* ※ 추정 — 모바일 GNB 비활성 라벨 */

  /* Fill · Line */
  --wds-fill: rgba(112, 115, 124, 0.05);
  --wds-fill-strong: rgba(112, 115, 124, 0.16);
  --wds-line: rgba(112, 115, 124, 0.16);
  --wds-line-alt: rgba(112, 115, 124, 0.08);
  --wds-line-neutral: rgba(112, 115, 124, 0.16); /* ※ 추정 — line 과 동일 처리 */

  /* Surface */
  --wds-surface: #fff;
  --wds-surface-alt: rgb(247, 247, 248);
  --wds-surface-inverse: rgb(23, 23, 25); /* ※ 추정 */

  /* Status */
  --wds-cautionary: rgb(255, 146, 0); /* 별점 */
  --wds-destructive: rgb(255, 66, 66);

  /* Elevation — 드롭섀도는 팝오버에만. 카드에는 hairline 만. */
  --wds-elev-inset-line: inset 0 0 0 1px rgba(112, 115, 124, 0.08);
  --wds-elev-popover: 0 0 60px rgba(23, 23, 23, 0.1);

  --wds-ease: cubic-bezier(0.16, 1, 0.3, 1); /* ※ 추정 */

  /* Typography */
  --font-core: 'Pretendard JP', 'Pretendard Variable', Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, 'Malgun Gothic', sans-serif;

  /* Layout — 헤더가 본문보다 넓다 (1440 vs 1200) */
  --layout-header-max: 1440px;
  --layout-body-max: 1200px;
}

/* ===== my.css (원본 그대로) ===== */
/* endedit 마이페이지 — 인라인 스타일에서 옮겨온 것. 값은 옮기기 전과 1:1 이다.
 *
 * ★ `mobile ? A : B` 는 768px 미디어쿼리로 옮겼다.
 *   이 앱은 모바일/PC 가 «다른 트리» 라 mobile prop 을 그대로 넘기기도 하는데,
 *   그 값도 결국 useMobile(matchMedia 768) 이라 분기점이 같다.
 *
 * ⚠️ `ee-my-in` · `ee-my-ta` · `ee-my-btn` · `ee-my-chk` · `ee-my-mbtn` 는
 *   «진입 셸(react-my-endedit.asp)이 노리는 이름» 이다. 셸이 모바일에서
 *   global.css 의 40px 강제를 !important 로 되돌린다. 지우지 말 것.
 *   내 값은 별도 클래스에 담아 나란히 붙였다.
 */

/* ── 패널 공통 ── */
.ee-my-ph { display: flex; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--wds-text); }
.ee-my-ph-back { flex: none; width: 32px; height: 32px; margin-left: -6px; display: grid; place-items: center; color: var(--wds-text); }
.ee-my-ph-t { flex: 1; margin: 0; font-size: 19px; line-height: 28px; letter-spacing: -0.002em; font-weight: 700; }
.ee-my-cnt { font-size: 14px; color: var(--wds-text-alt); }
.ee-my-empty { display: grid; place-items: center; gap: 8px; padding: 48px 0; color: var(--wds-text-alt); }
.ee-my-empty-t { font-size: 15px; }
.ee-my-tabs { display: flex; border-bottom: 1px solid var(--wds-line-neutral); margin-top: 8px; }
.ee-my-tab {
  flex: 0 0 auto; min-width: 140px; min-height: 44px; border: 0; background: transparent; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-family: var(--font-core); font-size: 15px; font-weight: 500; color: var(--wds-text-alt);
}
.ee-my-tab.is-narrow { min-width: 120px; }
.ee-my-tab.is-on { font-weight: 700; color: var(--wds-text); border-bottom-color: var(--wds-text); }
.ee-my-list { padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.ee-my-list-tight { padding-top: 8px; }
.ee-my-pg { display: flex; justify-content: center; align-items: center; gap: 4px; padding-top: 24px; }
.ee-my-pg-a { width: 40px; height: 40px; border-radius: 4px; border: 0; background: transparent; cursor: pointer; color: var(--wds-text-alt); display: grid; place-items: center; }
.ee-my-pg-n {
  width: 40px; height: 40px; border-radius: 4px; border: 0; cursor: pointer;
  font-family: var(--font-core); font-size: 16px; font-weight: 500; background: transparent; color: var(--wds-text-neutral);
}
.ee-my-pg-n.is-on { font-weight: 700; background: var(--wds-text); color: #fff; }
.ee-my-tag {
  flex: none; display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border-radius: 4px;
  font-size: 13px; font-weight: 700; background: var(--wds-primary-tint); color: var(--wds-primary);
}
.ee-my-tag.is-done { background: var(--wds-fill); color: var(--wds-text-neutral); }

/* ── 주문/배송내역 ── */
.ee-my-od { display: flex; flex-direction: column; gap: 12px; padding: 18px; border-radius: 4px; background: var(--wds-surface-alt); }
.ee-my-od-hd { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ee-my-od-date { font-size: 14px; font-weight: 700; letter-spacing: 0.0194em; }
.ee-my-od-no { font-size: 13px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-od-more { margin-left: auto; display: inline-flex; align-items: center; gap: 2px; font-size: 14px; color: var(--wds-text-alt); text-decoration: none; white-space: nowrap; }
.ee-my-od-it { display: flex; gap: 12px; text-decoration: none; }
.ee-my-od-th { flex: none; position: relative; width: 84px; aspect-ratio: 3 / 4; border-radius: 2px; overflow: hidden; background: var(--wds-fill); display: block; }
.ee-my-od-th img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ee-my-od-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; justify-content: center; }
.ee-my-od-name {
  font-size: 16px; line-height: 22px; color: var(--wds-text-neutral);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.ee-my-od-sub { font-size: 13px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-od-price { font-size: 17px; font-weight: 700; letter-spacing: 0.0096em; color: var(--wds-text); }

/* ── 쿠폰함 ── */
.ee-my-cp { display: flex; align-items: center; gap: 12px; padding: 18px; border-radius: 4px; background: var(--wds-surface-alt); opacity: 1; }
.ee-my-cp.is-used { opacity: 0.55; }
.ee-my-cp-l { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ee-my-cp-t { font-size: 17px; font-weight: 700; letter-spacing: 0.0057em; }
.ee-my-cp-cond { font-size: 14px; letter-spacing: 0.0194em; color: var(--wds-text-neutral); }
.ee-my-cp-date { font-size: 13px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-cp-v { flex: none; font-size: 24px; font-weight: 800; letter-spacing: -0.012em; color: var(--wds-primary); }
.ee-my-cp-v.is-used { color: var(--wds-text-assistive); }

/* ── 적립금 ── */
.ee-my-pt-wrap { padding-top: 20px; display: flex; flex-direction: column; gap: 16px; }
/* 모바일도 같은 카드다(2026-08-24) — 좌우 여백만 16px 로 줄여 쓴다 */
.ee-my-pt-sum { display: flex; align-items: center; gap: 12px; padding: 20px; border-radius: 4px; background: var(--wds-surface-alt); }
.ee-my-pt-sum-l { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.ee-my-pt-sum-k { font-size: 15px; line-height: 24px; font-weight: 700; letter-spacing: 0.0145em; }
.ee-my-pt-sum-s { display: flex; flex-wrap: wrap; align-items: center; gap: 2px 10px; font-size: 13px; line-height: 20px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-pt-sum-p { text-wrap: pretty; }
.ee-my-pt-sum-a { text-decoration: underline; text-underline-offset: 2px; color: var(--wds-text-alt); transition: color .16s var(--wds-ease); }
.ee-my-pt-sum-a:hover { color: var(--wds-primary); }
.ee-my-pt-sum-v { flex: none; font-size: 28px; line-height: 38px; font-weight: 800; letter-spacing: -0.0236em; }
.ee-my-pt-list { display: flex; flex-direction: column; }
.ee-my-pt-i { display: flex; align-items: center; gap: 12px; padding: 14px 0; box-shadow: inset 0 -1px 0 var(--wds-line-alt); }
.ee-my-pt-i:last-child { box-shadow: none; }
.ee-my-pt-l { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ee-my-pt-d { font-size: 15px; letter-spacing: 0.0145em; color: var(--wds-text-neutral); }
.ee-my-pt-date { font-size: 13px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-pt-amt { flex: none; font-size: 16px; font-weight: 700; letter-spacing: 0.0096em; color: var(--wds-text-neutral); }
.ee-my-pt-amt.is-plus { color: var(--wds-primary); }

/* ── 접이식 행 (문의·리뷰) ── */
.ee-my-fold { box-shadow: inset 0 -1px 0 var(--wds-line-alt); }
.ee-my-fold-b {
  display: flex; align-items: center; gap: 10px; width: 100%; min-height: 60px; padding: 10px 0;
  border: 0; background: transparent; cursor: pointer; font-family: var(--font-core); text-align: left;
}
.ee-my-fold-l { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ee-my-fold-h {
  font-size: 15px; line-height: 22px; color: var(--wds-text);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.ee-my-fold-chev { flex: none; color: var(--wds-text-assistive); display: grid; }
.ee-my-fold-body { padding: 0 0 16px; }
.ee-my-fold-sub { font-size: 13px; color: var(--wds-text-alt); }
.ee-my-fold-in { display: flex; flex-direction: column; gap: 10px; }
.ee-my-fold-txt { font-size: 14px; line-height: 22px; color: var(--wds-text-neutral); white-space: pre-line; }
.ee-my-stars-w { display: flex; align-items: center; gap: 6px; }
.ee-my-stars { display: flex; color: var(--wds-cautionary); }
.ee-my-ans { padding: 14px; border-radius: 4px; background: var(--wds-surface-alt); font-size: 14px; color: var(--wds-text-alt); }
.ee-my-ans-in { padding: 14px; border-radius: 4px; background: var(--wds-surface-alt); display: flex; flex-direction: column; gap: 6px; }
.ee-my-ans-k { font-size: 13px; font-weight: 700; color: var(--wds-primary); }
.ee-my-ans-t { font-size: 14px; line-height: 22px; color: var(--wds-text-neutral); white-space: pre-line; }
.ee-my-gl { display: flex; align-items: center; gap: 8px; text-decoration: none; padding-bottom: 8px; }
.ee-my-gl-th { flex: none; position: relative; width: 36px; height: 44px; border-radius: 2px; overflow: hidden; background: var(--wds-fill); display: block; }
.ee-my-gl-th img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ee-my-gl-name {
  flex: 1; min-width: 0; font-size: 13px; color: var(--wds-text-alt);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.ee-my-write {
  flex: none; height: 32px; padding: 0 14px; border-radius: 4px; display: grid; place-items: center;
  font-size: 14px; font-weight: 700; background: var(--wds-primary); color: #fff; text-decoration: none;
}

/* ── 내가 쓴 게시물 ── */
.ee-my-bd-a { display: flex; align-items: center; gap: 12px; min-height: 60px; padding: 10px 0; box-shadow: inset 0 -1px 0 var(--wds-line-alt); text-decoration: none; }
.ee-my-bd-tag { flex: none; display: inline-flex; align-items: center; height: 22px; padding: 0 7px; border-radius: 4px; background: var(--wds-fill); font-size: 13px; font-weight: 700; color: var(--wds-text-neutral); }
.ee-my-bd-subj { flex: 1; min-width: 0; font-size: 15px; color: var(--wds-text); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.ee-my-bd-views { flex: none; font-size: 13px; color: var(--wds-text-alt); }
.ee-my-bd-date { flex: none; font-size: 13px; color: var(--wds-text-assistive); }

/* ── 상품 그리드 (최근 본 상품 · 관심상품) ── */
/* 2026-08-24 황수빈 요청 : .ee-my-gwrap 의 padding-top 삭제.
   머리줄과의 간격은 .ee-my-main 의 gap(PC 32 / 모바일 16)이 계속 만든다.
   쓰는 곳은 «최근 본 상품 · 관심상품» 두 화면뿐이라 둘이 함께 붙는다. */
.ee-my-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
.ee-my-g-a { display: flex; flex-direction: column; gap: 10px; text-decoration: none; }
/* 관심상품 카드는 «div» 다 — a 가 아니라 text-decoration 을 주면 안 된다(계산값이 달라진다) */
.ee-my-g-w { display: flex; flex-direction: column; gap: 10px; }
.ee-my-g-th {
  position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 2px; overflow: hidden;
  background: var(--wds-fill); display: block; box-shadow: var(--wds-elev-inset-line);
}
.ee-my-g-th img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ee-my-g-meta { display: flex; flex-direction: column; gap: 3px; }
.ee-my-g-name {
  font-size: 15px; line-height: 22px; color: var(--wds-text-neutral); text-decoration: none;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ee-my-g-price { display: flex; align-items: baseline; gap: 5px; }
.ee-my-g-off { font-size: 14px; font-weight: 700; color: var(--wds-primary); }
.ee-my-g-v { font-size: 16px; font-weight: 700; letter-spacing: 0.0096em; color: var(--wds-text); }
/* 관심상품 쪽 가격은 색을 «지정하지 않았다» — 물려받는 값이 그대로 와야 한다 */
.ee-my-g-v.is-plain { color: inherit; }
.ee-my-wish-del {
  position: absolute; right: 8px; top: 8px; width: 34px; height: 34px; border-radius: 1000px; border: 0;
  background: rgba(255, 255, 255, 0.86); display: grid; place-items: center; cursor: pointer; color: var(--wds-destructive);
}

/* ── 허브 요약 ── */
.ee-my-card { padding: 20px; border-radius: 4px; background: var(--wds-surface); box-shadow: var(--wds-elev-inset-line); }
.ee-my-card.is-tinted { background: var(--wds-surface-alt); box-shadow: none; }
.ee-my-sec-hd { display: flex; align-items: center; gap: 8px; padding-bottom: 12px; }
.ee-my-sec-t { flex: 1; font-size: 17px; line-height: 26px; letter-spacing: -0.002em; font-weight: 700; }
.ee-my-more { display: inline-flex; align-items: center; gap: 2px; font-size: 14px; color: var(--wds-text-alt); text-decoration: none; }
.ee-my-more.is-spaced { letter-spacing: 0.0194em; }
.ee-my-sum { display: flex; flex-direction: column; gap: 16px; }
.ee-my-sum-hd { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ee-my-avatar { flex: none; width: 48px; height: 48px; border-radius: 1000px; background: var(--wds-fill-strong); display: grid; place-items: center; color: var(--wds-surface); }
.ee-my-sum-l { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ee-my-sum-row { display: flex; align-items: center; gap: 6px; }
.ee-my-sum-name { font-size: 21px; font-weight: 800; letter-spacing: -0.012em; }
.ee-my-level { font-size: 12px; font-weight: 700; letter-spacing: 0.0311em; padding: 3px 7px; border-radius: 4px; background: var(--wds-text); color: #fff; }
.ee-my-sum-id { font-size: 13px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-edit {
  flex: none; height: 36px; padding: 0 12px; border-radius: 4px; display: grid; place-items: center;
  font-size: 14px; font-weight: 700; background: var(--wds-fill); color: var(--wds-text-neutral); text-decoration: none;
}
.ee-my-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ee-my-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 18px 12px; border-radius: 4px; background: var(--wds-surface-alt); text-decoration: none; }
.ee-my-stat-v { font-size: 22px; font-weight: 800; letter-spacing: -0.012em; color: var(--wds-text); }
.ee-my-stat-k { font-size: 13px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-steps-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ee-my-steps-t { flex: 1; font-size: 15px; font-weight: 700; letter-spacing: 0.0145em; }
.ee-my-steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.ee-my-step { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 4px 2px; text-decoration: none; box-shadow: inset -1px 0 0 var(--wds-line-alt); }
.ee-my-step.is-last { box-shadow: none; }
.ee-my-step-n { font-size: 24px; font-weight: 800; letter-spacing: -0.012em; color: var(--wds-text-assistive); }
.ee-my-step-n.is-on { color: var(--wds-text); }
.ee-my-step-k { font-size: 13px; letter-spacing: 0.0252em; color: var(--wds-text-alt); white-space: nowrap; }

/* ── 최근 주문 ── */
.ee-my-ro { display: flex; flex-direction: column; }
.ee-my-ro-i { display: flex; flex-direction: column; gap: 10px; padding: 16px 0; box-shadow: inset 0 -1px 0 var(--wds-line-alt); }
.ee-my-ro-hd { display: flex; align-items: center; gap: 8px; }
.ee-my-ro-date { font-size: 14px; font-weight: 700; letter-spacing: 0.0194em; }
.ee-my-ro-no { font-size: 13px; color: var(--wds-text-assistive); }
.ee-my-ro-more { margin-left: auto; display: inline-flex; align-items: center; gap: 2px; font-size: 13px; color: var(--wds-text-alt); text-decoration: none; }
.ee-my-ro-a { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.ee-my-ro-th { flex: none; position: relative; width: 56px; height: 70px; border-radius: 2px; overflow: hidden; background: var(--wds-fill); display: block; }
.ee-my-ro-th img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ee-my-ro-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ee-my-ro-name { font-size: 14px; line-height: 20px; color: var(--wds-text-neutral); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.ee-my-ro-sub { font-size: 13px; color: var(--wds-text-alt); }
.ee-my-ro-st { flex: none; font-size: 13px; font-weight: 600; padding: 4px 8px; border-radius: 4px; background: var(--wds-primary-tint); color: var(--wds-primary); }
.ee-my-ro-st.is-done { background: var(--wds-fill); color: var(--wds-text-neutral); }
.ee-my-wg { padding-top: 20px; }

/* ── 모바일 헤더 ── */
.ee-my-mhd { flex: 0 0 auto; position: relative; box-shadow: inset 0 -1px 0 var(--wds-line-alt); }
.ee-my-mhd-row { height: 56px; display: flex; align-items: center; padding: 0 4px; position: relative; }
/* ⚠️ 뒤로가기만 `flex:0 0 auto` 였다 — 검색·장바구니는 기본값(0 1 auto)이다.
   셋 다 같은 값으로 묶으면 계산값이 달라진다. */
.ee-my-mhd-a { width: 44px; height: 44px; display: grid; place-items: center; color: var(--wds-text); }
.ee-my-mhd-a.is-back { flex: 0 0 auto; }
.ee-my-mhd-a.is-cart { position: relative; }
.ee-my-mhd-gap { flex: 1; }
.ee-my-mhd-badge { position: absolute; top: 6px; right: 6px; }
/* ★ 제목은 «절대배치 + pointer-events:none» — 흐름에 넣으면 제목 길이가 버튼을 민다.
   좌우 88px 은 양쪽 버튼(44×2) 자리다. */
.ee-my-mhd-t {
  position: absolute; inset: 0 88px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 26px; font-weight: 700; color: var(--wds-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; pointer-events: none;
}

/* ── PC 2단 · 좌측 메뉴 ── */
.ee-my-hd { display: flex; align-items: baseline; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid var(--wds-text); }
.ee-my-h1 { margin: 0; font-size: 30px; line-height: 40px; letter-spacing: -0.0236em; font-weight: 800; }
.ee-my-hd-who { font-size: 15px; color: var(--wds-text-alt); }
.ee-my-cols { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 40px; align-items: start; padding-top: 28px; }
.ee-my-side { position: sticky; top: 24px; border-radius: 4px; background: var(--wds-surface); box-shadow: var(--wds-elev-inset-line); overflow: hidden; }
.ee-my-side-in { display: flex; flex-direction: column; padding: 6px 0 10px; }
.ee-my-nav-home { position: relative; display: flex; align-items: center; gap: 10px; min-height: 44px; background: transparent; padding: 0 16px; margin-top: 8px; text-decoration: none; }
.ee-my-nav-home.is-on { background: var(--wds-fill); }
.ee-my-rail { position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px; border-radius: 0 1000px 1000px 0; background: var(--wds-primary); }
.ee-my-nav-g { display: flex; flex-direction: column; padding-top: 14px; margin-top: 6px; box-shadow: inset 0 1px 0 var(--wds-line-alt); }
.ee-my-nav-gt { font-size: 12px; font-weight: 700; letter-spacing: 0.0311em; color: var(--wds-text-assistive); padding: 0 16px 6px; }
.ee-my-nav-a { position: relative; display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 16px; text-decoration: none; background: transparent; }
.ee-my-nav-a.is-on { background: var(--wds-fill); }
/* ★ 색 우선순위는 «액티브가 먼저» 다 — 액티브 > 회원탈퇴 > 그 외.
   회원탈퇴를 앞에 두면 그 화면에서 「아이콘은 진한데 글자만 흐린」 상태가 된다. */
.ee-my-nav-i { flex: none; display: grid; color: var(--wds-text-alt); }
.ee-my-nav-i.is-out { color: var(--wds-text-assistive); }
.ee-my-nav-i.is-on { color: var(--wds-text); }
.ee-my-nav-l { flex: 1; font-size: 15px; font-weight: 500; letter-spacing: 0.0145em; color: var(--wds-text-neutral); }
.ee-my-nav-l.is-out { color: var(--wds-text-alt); }
.ee-my-nav-l.is-on { font-weight: 700; color: var(--wds-text); }
.ee-my-nav-c { flex: none; display: grid; color: var(--wds-text-assistive); }
.ee-my-main { display: flex; flex-direction: column; gap: 32px; }

/* ── 모바일 허브 메뉴 (PC 는 왼쪽 메뉴가 대신한다 — 아래 미디어쿼리에서만 켠다) ── */
.ee-my-mhub { display: none; flex-direction: column; gap: 24px; padding-top: 8px; }
.ee-my-mgt { font-size: 14px; font-weight: 700; letter-spacing: 0.0194em; color: var(--wds-text-alt); padding-bottom: 8px; }
.ee-my-mg { display: flex; flex-direction: column; }
.ee-my-mg-a { display: flex; align-items: center; gap: 12px; min-height: 60px; text-decoration: none; box-shadow: inset 0 -1px 0 var(--wds-line-alt); }
.ee-my-mg-a.is-last { box-shadow: none; }
.ee-my-mg-i { flex: none; color: var(--wds-text-neutral); display: grid; }
.ee-my-mg-i.is-out { color: var(--wds-text-assistive); }
.ee-my-mg-l { flex: 1; font-size: 15px; letter-spacing: 0.0145em; color: var(--wds-text); }
.ee-my-mg-l.is-out { color: var(--wds-text-alt); }
.ee-my-mg-c { flex: none; color: var(--wds-text-assistive); display: grid; }
.ee-my-mwish { padding-top: 24px; }

/* ── 정보수정 · 회원탈퇴 (되심은 패널) ── */
.ee-my-flabel { font-size: 14px; line-height: 22px; letter-spacing: 0.0194em; font-weight: 700; color: var(--wds-text-neutral); }
.ee-my-in {
  width: 100%; height: 48px; padding: 0 12px; box-sizing: border-box; border-radius: 4px; border: 0; outline: none;
  background: var(--wds-surface); box-shadow: inset 0 0 0 1px var(--wds-line);
  font-family: var(--font-core); font-size: 16px; letter-spacing: 0.0096em; color: var(--wds-text);
}
.ee-my-in.is-bad { box-shadow: inset 0 0 0 1px var(--wds-destructive); }
.ee-my-ro-v {
  display: flex; align-items: center; height: 48px; padding: 0 12px; box-sizing: border-box; border-radius: 4px;
  background: var(--wds-fill); font-size: 16px; letter-spacing: 0.0096em; color: var(--wds-text-alt);
}
.ee-my-row { display: grid; grid-template-columns: 120px minmax(0, 1fr); flex-direction: column; align-items: center; gap: 16px; padding: 10px 0; }
/* 입력칸은 최대 450px — 넓은 화면에서 한 줄이 과하게 길어지지 않게 */
.ee-my-row-b { display: flex; flex-direction: column; gap: 4px; min-width: 0; max-width: 450px; }
.ee-my-hint { font-size: 13px; line-height: 18px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-hint.is-bad { color: var(--wds-destructive); }
.ee-my-btn {
  /* box-sizing 이 없으면 «취소(a)» 와 «변경(button)» 의 폭이 갈린다 —
     a 는 content-box 라 min-width 140 + padding 48 = 188, button 은 border-box 라 140.
     PC 에서 두 버튼이 48px 어긋나 보였다. */
  box-sizing: border-box;
  flex: 0 0 auto; min-width: 140px; height: 48px; padding: 0 24px; border-radius: 4px; border: 0; cursor: pointer;
  font-family: var(--font-core); font-size: 16px; font-weight: 700; letter-spacing: 0.0096em;
  background: var(--wds-fill); color: var(--wds-text-neutral);
}
/* ★ nowrap 은 eeBtn 이 만든 버튼에만 있었다 —
   취소 링크(a)도, 손으로 쓴 「회원탈퇴」 버튼도 없다. 뭉뚱그리면 둘 다 어긋난다. */
.ee-my-btn.is-nowrap { white-space: nowrap; }
.ee-my-btn.is-primary { background: var(--wds-primary); color: #fff; }
.ee-my-btn.is-danger { background: var(--wds-destructive); color: #fff; }
.ee-my-btn.is-link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.ee-my-btn.is-narrow { padding: 0 20px; }
.ee-my-btn.is-off { cursor: not-allowed; background: var(--wds-fill); color: var(--wds-text-assistive); }
/* ★ `.ee-my-chk` 에는 «모양을 주지 않는다».
   이 이름은 셸이 모바일 높이를 되돌리려고 쓰는 «표시» 일 뿐이고,
   체크박스 줄 말고도 배송지 추가·수정·삭제·우편번호 찾기 버튼이 같이 달고 있다.
   여기에 display:flex 를 주면 그 버튼들이 전부 바뀐다(실제로 그렇게 어긋났다).
   체크박스 줄의 모양은 아래 `.ee-my-chkrow` 가 가진다. */
.ee-my-chkrow {
  display: flex; align-items: center; gap: 10px; min-height: 44px; border: 0; background: transparent; padding: 0;
  cursor: pointer; font-family: var(--font-core); text-align: left;
}
.ee-my-chk-box { flex: none; width: 20px; height: 20px; border-radius: 4px; display: grid; place-items: center; background: var(--wds-surface); box-shadow: inset 0 0 0 1px var(--wds-line); color: #fff; }
.ee-my-chk-box.is-on { background: var(--wds-text); box-shadow: none; }
.ee-my-chk-l { flex: 1; font-size: 15px; line-height: 22px; letter-spacing: 0.0145em; color: var(--wds-text-neutral); font-weight: 500; }
.ee-my-chk-l.is-on { color: var(--wds-text); font-weight: 600; }
.ee-my-block { display: flex; flex-direction: column; }
.ee-my-block-hd { display: flex; align-items: baseline; gap: 8px; padding-bottom: 10px; box-shadow: inset 0 -1px 0 var(--wds-line-neutral); }
.ee-my-block-t { margin: 0; font-size: 17px; line-height: 26px; letter-spacing: 0.0096em; font-weight: 700; }
.ee-my-block-hint { font-size: 13px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-block-b { padding-top: 16px; }
.ee-my-form { padding-top: 16px; display: flex; flex-direction: column; }
.ee-my-form-rows { display: flex; flex-direction: column; }
.ee-my-err { margin-top: 12px; padding: 12px 14px; border-radius: 4px; background: var(--wds-primary-tint); font-size: 14px; letter-spacing: 0.0194em; color: var(--wds-destructive); }
.ee-my-err.is-flat { margin-top: 0; }
.ee-my-acts { display: flex; gap: 8px; justify-content: flex-end; padding-top: 28px; margin-top: 12px; box-shadow: inset 0 1px 0 var(--wds-line-alt); }
.ee-my-acts.is-bare { padding-top: 0; margin-top: 0; box-shadow: none; }
.ee-my-out-form { padding-top: 28px; display: flex; flex-direction: column; gap: 36px; }
.ee-my-out-notice { padding: 20px; border-radius: 4px; background: var(--wds-surface-alt); box-shadow: none; }
.ee-my-out-notice-in { display: flex; flex-direction: column; gap: 6px; }
.ee-my-out-li { display: flex; gap: 8px; font-size: 14px; line-height: 22px; letter-spacing: 0.0194em; color: var(--wds-text-neutral); font-weight: 500; }
.ee-my-out-li.is-warn { color: var(--wds-destructive); font-weight: 600; }
.ee-my-out-dot { flex: none; color: var(--wds-text-assistive); }
.ee-my-out-reasons { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; row-gap: 2px; }
.ee-my-out-etc { padding-top: 8px; max-width: 450px; }
.ee-my-ta {
  width: 100%; box-sizing: border-box; padding: 12px; border-radius: 4px; border: 0; outline: none; resize: vertical;
  box-shadow: inset 0 0 0 1px var(--wds-line); font-family: var(--font-core); font-size: 15px; line-height: 22px;
  color: var(--wds-text); background: var(--wds-surface);
}
.ee-my-out-pw { display: flex; flex-direction: column; gap: 8px; max-width: 450px; }
.ee-my-out-pw-hint { font-size: 13px; line-height: 20px; letter-spacing: 0.0252em; color: var(--wds-text-alt); }
.ee-my-out-foot { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; box-shadow: inset 0 1px 0 var(--wds-line-neutral); }
.ee-my-out-agree { padding-top: 16px; }

/* ── 모달 (탈퇴 확인 · 배송지) ── */
.ee-my-modal { position: fixed; inset: 0; z-index: 9500; display: grid; place-items: center; padding: 24px; box-sizing: border-box; }
.ee-my-modal-bg { position: absolute; inset: 0; background: rgba(23, 23, 25, 0.52); }
.ee-my-modal-box {
  position: relative; box-sizing: border-box; width: 100%; max-width: 420px;
  background: var(--wds-surface); border-radius: 12px; box-shadow: var(--wds-elev-popover);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.ee-my-modal-t { font-size: 19px; line-height: 28px; letter-spacing: -0.002em; font-weight: 700; }
.ee-my-modal-d { font-size: 14px; line-height: 22px; letter-spacing: 0.0194em; color: var(--wds-text-neutral); }
/* ★ 정렬·패딩은 «둘 중 한쪽에만» 있었다.
   탈퇴 모달  justify-content:flex-end · 버튼 padding 0 16px
   배송지 모달 정렬 지정 없음        · 버튼 padding 지정 없음(브라우저 기본 1px 6px)
   공통값으로 묶으면 배송지 쪽이 어긋난다 — 실제로 그렇게 잡혔다. */
.ee-my-modal-acts { display: flex; gap: 8px; padding-top: 4px; }
.ee-my-modal-acts.is-end { justify-content: flex-end; }
.ee-my-mbtn {
  height: 44px; border-radius: 4px; border: 0; cursor: pointer;
  font-family: var(--font-core); font-size: 15px; font-weight: 700;
  background: var(--wds-fill); color: var(--wds-text-neutral);
}
.ee-my-mbtn.is-pad { padding: 0 16px; }
.ee-my-mbtn.is-danger { background: var(--wds-destructive); color: #fff; }
/* 배송지 모달 — 취소/확인 같은 너비 (패딩은 기본값 그대로 둔다) */
.ee-my-mbtn.is-wide { flex: 1 1 0; min-width: 0; height: 48px; font-size: 16px; }
.ee-my-mbtn.is-primary { background: var(--wds-primary); color: #fff; }

/* ── 나의 배송지 ── */
.ee-my-ad-add {
  height: 36px; padding: 0 12px; border-radius: 4px; border: 0; cursor: pointer;
  font-family: var(--font-core); font-size: 14px; font-weight: 700;
  background: var(--wds-text); color: #fff; white-space: nowrap;
}
.ee-my-ad-list { padding-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.ee-my-ad-i { display: flex; flex-direction: column; gap: 6px; padding: 18px; border-radius: 4px; background: var(--wds-surface-alt); }
.ee-my-ad-hd { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ee-my-ad-chip { flex: none; font-size: 13px; font-weight: 700; letter-spacing: 0.0252em; padding: 3px 7px; border-radius: 4px; background: var(--wds-fill); color: var(--wds-text-neutral); }
.ee-my-ad-chip.is-dark { background: var(--wds-primary); color: #fff; }
.ee-my-ad-btns { margin-left: auto; display: flex; gap: 6px; }
.ee-my-ad-sbtn {
  height: 32px; padding: 0 10px; border-radius: 4px; border: 0; cursor: pointer;
  font-family: var(--font-core); font-size: 13px; font-weight: 700;
  background: var(--wds-fill); color: var(--wds-text-neutral); white-space: nowrap;
}
.ee-my-ad-sbtn.is-dim { color: var(--wds-text-alt); }
.ee-my-ad-who { font-size: 15px; font-weight: 700; letter-spacing: 0.0145em; }
.ee-my-ad-addr { font-size: 14px; line-height: 22px; letter-spacing: 0.0194em; color: var(--wds-text-neutral); }
.ee-my-ad-form { display: flex; flex-direction: column; gap: 14px; max-height: 52vh; overflow-y: auto; }
.ee-my-ad-field { display: flex; flex-direction: column; gap: 6px; }
.ee-my-ad-field-k { font-size: 14px; line-height: 20px; letter-spacing: 0.0194em; font-weight: 700; color: var(--wds-text-neutral); }
.ee-my-req { font-style: normal; font-weight: 700; color: var(--wds-destructive); }
.ee-my-in2 {
  width: 100%; height: 44px; padding: 0 12px; box-sizing: border-box; border-radius: 4px; border: 0; outline: none;
  box-shadow: inset 0 0 0 1px var(--wds-line); background: var(--wds-surface);
  font-family: var(--font-core); font-size: 15px; letter-spacing: 0.0145em; color: var(--wds-text);
}
.ee-my-ad-addr-w { display: flex; flex-direction: column; gap: 6px; }
.ee-my-ad-post-row { display: flex; gap: 6px; }
.ee-my-ad-find {
  flex: none; height: 44px; padding: 0 16px; border-radius: 4px; border: 0; cursor: pointer;
  font-family: var(--font-core); font-size: 15px; font-weight: 700; letter-spacing: 0.0145em;
  background: var(--wds-text); color: #fff; white-space: nowrap;
}
.ee-my-ad-box {
  display: flex; align-items: center; height: 44px; padding: 0 12px; border-radius: 4px;
  background: var(--wds-fill); font-size: 15px; letter-spacing: 0.0145em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--wds-text-assistive);
}
.ee-my-ad-box.is-filled { color: var(--wds-text); }
.ee-my-ad-box.is-post { flex: 1; }
.ee-my-ad-err { font-size: 13px; line-height: 18px; color: var(--wds-destructive); }
/* 배송지 «없음» 문구만 자간이 다르다(0.0145em) — 공통 .ee-my-empty-t 와 값이 어긋난다 */
.ee-my-ad-none { font-size: 15px; letter-spacing: 0.0145em; }
.ee-my-ad-search { display: flex; flex-direction: column; gap: 10px; }
.ee-my-ad-search-hd { display: flex; align-items: center; gap: 8px; }
.ee-my-ad-search-back { flex: none; width: 32px; height: 32px; border: 0; background: transparent; display: grid; place-items: center; cursor: pointer; color: var(--wds-text); }
.ee-my-ad-search-t { font-size: 16px; font-weight: 700; letter-spacing: 0.0096em; }
.ee-my-ad-search-box { width: 100%; height: 420px; max-height: 52vh; border-radius: 4px; overflow: hidden; box-shadow: inset 0 0 0 1px var(--wds-line); }

@media (max-width: 768px) {
  .ee-my-ph-t { font-size: 17px; }
  .ee-my-tab { flex: 1; min-width: 0; }
  .ee-my-tab.is-narrow { min-width: 0; }

  .ee-my-od { padding: 14px; }
  .ee-my-od-th { width: 68px; }
  .ee-my-od-name { font-size: 15px; }
  .ee-my-od-price { font-size: 16px; }

  .ee-my-cp { padding: 14px; }
  .ee-my-cp-t { font-size: 16px; }
  .ee-my-cp-v { font-size: 20px; }

  .ee-my-pt-wrap { padding-top: 16px; }
  /* 2026-08-24 황수빈 요청 : 배경색을 PC 와 동일하게 — 모바일도 «줄» 이 아니라 «카드» 다.
     좌우 여백이 0 이면 배경이 글자에 딱 붙으므로 16px 을 같이 준다(PC 는 20px).
     밑줄(inset shadow)은 카드 안쪽 선처럼 보이므로 PC 처럼 없앤다. */
  .ee-my-pt-sum { padding: 16px; border-radius: 4px; background: var(--wds-surface-alt); box-shadow: none; }
  .ee-my-pt-sum-v { font-size: 24px; line-height: 32px; }

  .ee-my-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ee-my-g-name { font-size: 14px; }
  .ee-my-g-v { font-size: 15px; }

  .ee-my-card { padding: 16px; }
  .ee-my-sum { gap: 12px; }
  .ee-my-sum-name { font-size: 18px; }
  .ee-my-stats { gap: 8px; }
  .ee-my-stat { padding: 14px 8px; }
  .ee-my-stat-v { font-size: 18px; }
  .ee-my-step-n { font-size: 19px; }

  .ee-my-row { display: flex; align-items: stretch; gap: 6px; padding: 12px 0; }
  .ee-my-block-t { font-size: 16px; line-height: 24px; }
  .ee-my-block-b { padding-top: 12px; }
  /* 2026-08-24 황수빈 요청 : 모바일 정보수정 폼을 상단 바에 바로 붙인다(0).
     짝: 같은 화면의 .ee-my-cols padding-top 0 은 그 선택자가 13화면 공용이라
     shop-my.asp 의 info_edit 게이트 <style> 에 있다. PC 는 16px 그대로. */
  .ee-my-form { padding-top: 0; }
  .ee-my-btn { flex: 1 1 0; min-width: 0; }
  .ee-my-acts { justify-content: stretch; padding-top: 20px; margin-top: 8px; }
  .ee-my-out-form { padding-top: 20px; gap: 28px; }
  .ee-my-out-notice { padding: 16px 0; border-radius: 0; background: transparent; box-shadow: inset 0 -1px 0 var(--wds-line-alt); }
  .ee-my-out-reasons { grid-template-columns: 1fr; }
  .ee-my-out-foot { gap: 16px; padding-top: 4px; }
  .ee-my-out-agree { padding-top: 12px; }

  .ee-my-modal { padding: 20px 16px; }
  .ee-my-modal-box { padding: 20px; }
  .ee-my-modal-t { font-size: 18px; }

  .ee-my-ad-list { padding-top: 16px; }
  .ee-my-ad-i { padding: 14px; }

  /* ★ aria-label 없는 버튼들 — global.css 의 14px 을 되돌린다.
     ee-my-btn/chk/mbtn 은 «셸» 이 이미 !important 로 잡고 있어 여기서 손대지 않는다. */
  .ee-my-tabs button.ee-my-tab { font-size: 15px; }
  .ee-my-pg button.ee-my-pg-n { font-size: 16px; }
  /* ※ 접이식 행(.ee-my-fold-b)은 원래도 글자크기를 안 줬다 — global 의 14px 이 맞다.
     여기서 되돌리면 «없던 변화» 를 만든다. 건드리지 않는다. */
  /* ※ 배송지 쪽 버튼들(추가·수정·삭제·우편번호 찾기)은 원래도 `ee-my-chk` 를 달고 있어
     셸이 `font-size:15px!important` 로 잡는다. 여기서 되돌리면 «셸에 지는» 죽은 규칙이 된다.
     라이브도 그 15px 이므로 그대로 둔다. */
}

/* ===== 프로토타입 전용 — 헤더/푸터 placeholder (공용 셸은 별도 작업 대기) ===== */
.proto-hdr{display:flex;align-items:center;gap:12px;padding:10px 20px;border-bottom:1px solid var(--wds-line);font:600 14px/1.4 var(--font-core);color:var(--wds-text-alt);background:#fff}
.proto-hdr .logo{font-weight:800;letter-spacing:-.02em;color:var(--wds-text)}
.proto-ftr{padding:24px 20px;text-align:center;color:var(--wds-text-assistive);font:12px/1.5 var(--font-core);border-top:1px solid var(--wds-line)}


/* ══════════════════════════════════════════════════════════════════════════
   2026-08-23 정희찬(PRO4) — 마이페이지 본문 가로폭
   my-shared.js 는 본문을 <div class="sh-wrap sh-pad-my"> 로 감싸는데 이 파일에
   .sh-wrap 규칙이 «아예 없어서» 폭 제한이 걸리지 않았다(화면 폭 전체로 퍼졌다).
   값은 상품상세(detail-static-prototype.css)와 1:1 이다 — 서브페이지끼리
   가로폭이 어긋나지 않게 하려는 것이고, 폭 자체는 shop_tokens.css 의
   --layout-body-max 를 따라간다(= 사이트 지정 가로폭).
   되돌리기 : 이 블록만 지운다.
   ══════════════════════════════════════════════════════════════════════════ */
.sh-wrap { max-width: var(--layout-body-max); margin: 0 auto; width: 100%; padding: 0 20px; box-sizing: border-box; }
.sh-pad-my { padding-top: 24px; padding-bottom: 64px; }
.sh-page-hold { min-height: 60vh; }
.sh-page-err { display: grid; place-items: center; min-height: 60vh; }
.sh-err-t { color: var(--wds-text-alt); font-size: 15px; }
@media (max-width: 768px) {
  .sh-wrap { padding: 0 16px; }
  .sh-pad-my { padding-top: 12px; padding-bottom: 40px; }
}

/* 모바일 — 왼쪽 메뉴는 본문 위로 쌓는다.
   PC 값(220px + 본문) 그대로 두면 390px 화면에서 가로로 삐져나간다.
   (지금까지는 본문이 헤더 자리에 잘못 그려져 이 겹침이 드러나지 않았다.) */
@media (max-width: 768px) {
  .ee-my-cols { grid-template-columns: 1fr; gap: 20px; padding-top: 16px; }
  .ee-my-side { position: static; }
}


/* 2026-08-23 요청 : 「최근 본 상품」은 PC 에서 5열 (관심상품은 4열 그대로).
   모바일은 .ee-my-grid 의 2열 규칙을 그대로 쓴다. */
@media (min-width: 769px) {
  .ee-my-grid.ee-my-recent { grid-template-columns: repeat(5, 1fr); }
}


/* 다음(카카오) 우편번호 레이어 — 배송지 모달(z-index:9500) 위에 뜬다 */
.ee-post-layer { position: fixed; inset: 0; z-index: 9600; display: grid; place-items: center; padding: 24px; box-sizing: border-box; }
.ee-post-bg { position: absolute; inset: 0; background: rgba(23, 23, 25, 0.52); }
.ee-post-box { position: relative; display: flex; flex-direction: column; width: 100%; max-width: 480px; height: 520px; max-height: calc(100vh - 48px); background: var(--wds-surface); border-radius: 12px; overflow: hidden; box-shadow: var(--wds-elev-popover); }
/* 닫기 버튼을 iframe 위에 얹으면 카카오 검색바 줄과 겹친다 — 헤더 줄로 분리한다 */
.ee-post-hd { flex: none; display: flex; align-items: center; justify-content: space-between; gap: 8px; height: 52px; padding: 0 6px 0 16px; box-sizing: border-box; border-bottom: 1px solid var(--wds-line); }
.ee-post-t { font-size: 16px; font-weight: 700; letter-spacing: 0.0096em; color: var(--wds-text); }
.ee-post-x { flex: none; width: 40px; height: 40px; padding: 0; border: 0; background: transparent; font-size: 24px; line-height: 1; color: var(--wds-text); cursor: pointer; }
.ee-post-in { flex: 1 1 auto; min-height: 0; width: 100%; }
@media (max-width: 768px) {
  .ee-post-layer { padding: 16px; }
  .ee-post-box { height: calc(100vh - 32px); }
}

/* ══════════════════════════════════════════════════════════════════════════
   2026-08-24 요청 : 모바일 마이페이지에서 «왼쪽 메뉴»와 «상단 햄버거»를 없앤다.

   메뉴는 허브(/my/main.asp) 본문의 .ee-my-mhub 목록 하나로 모은다(시안과 같음).
   그래서 다른 화면에서는 왼쪽 메뉴 자체를 안 그린다 — 뒤로가기로 허브에 온다.
   관심상품 그리드도 모바일 시안에는 없다.
   되돌리기 : 이 블록을 지우고 두 셸의 EE_MOBILE_BACK_MENU · my-menu-drawer.js 를 되살린다.
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .ee-my-cols > .ee-my-side { display: none; }
  .ee-my-mhub { display: flex; }
  .ee-my-wish-sec { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   2026-08-23 정희찬(PRO4) 요청 — 마이페이지 정리 2건

   ① 「관심 브랜드」처럼 타이틀에 붙어 있던 «구분선» 을 전부 뺐다.
      .ee-my-ph(패널 제목) · .ee-my-sec-hd(허브 섹션 제목) · .ee-my-hd(허브 대제목)
      세 곳의 box-shadow / border-bottom 을 위에서 직접 지웠다.
      ※ 목록 구분선(--wds-line-alt)·탭 밑줄(.ee-my-tabs)은 «기능» 이라 그대로 둔다.
      ※ 2026-08-24 황수빈 : 시안(SectionHead)대로 .ee-my-hd 와 .ee-my-ph 의 선은
        되살렸다. 지금 선이 없는 것은 .ee-my-sec-hd 뿐이다.

   ② 모바일 탑메뉴가 «뒤로가기 + 페이지제목» 바로 바뀌면서(shop-my.asp),
      본문 맨 위의 같은 제목이 두 번 겹쳐 보였다 — 모바일에서만 제목 글자를 숨긴다.
      ⚠ 제목이 들어 있던 «상자»(.ee-my-ph)는 절대 숨기면 안 된다 —
        「나의 배송지」 화면이 그 안에 «배송지 추가» 버튼을 꽂는다(my-shared.js).
        그래서 글자(.ee-my-ph-t)와 뒤로화살표(.ee-my-ph-back)만 감추고,
        개수(3건 등)·버튼은 오른쪽에 그대로 남긴다.
   되돌리기 : 이 블록만 지운다(구분선은 위 세 줄에 box-shadow 를 되살린다).
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .ee-my-ph-back, .ee-my-ph-t { display: none; }
  /* 2026-08-24 황수빈 요청 : justify-content 삭제 — 개수(「0개」)가 왼쪽으로 온다.
     ⚠ 「+ 배송지 추가」 처럼 «동작 버튼» 이 든 머리줄은 오른쪽을 유지한다 —
        개수 라벨과 성격이 다르고 이번 지시(최근 본 상품)의 대상이 아니다.
     ⚠ 자손 결합자(.ee-my-main > …)를 쓰면 안 된다 — 배송지의 머리줄은
        클래스 없는 div 한 겹 안에 들어 있어 «직계 자식이 아니다»(실측). */
  .ee-my-ph { padding-bottom: 0; border-bottom: 0; }
  .ee-my-ph:has(button) { justify-content: flex-end; }
  .ee-my-hd { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   2026-08-23 정희찬(PRO4) 요청 — 모바일 마이페이지 «윗 여백 정리 + 개수 위치»

   ① 윗 여백 : 탑바(56) 밑에 sh-pad-my 12 + ee-my-cols 16 + 패널 사이 간격 32 가
      겹쳐 첫 요소가 한참 아래에서 시작했다. 모바일에서만 줄인다(PC 무변경).

   ② 「1건」 같은 개수는 제목 옆에 있던 것이라, 모바일에서 제목을 감추면서
      «탭 위» 에 홀로 떠 있었다. 탭을 목록 쪽으로 끌어올려 개수가 탭 아래로 가게 한다.
      .ee-my-main 은 원래부터 flex column 이라 order 한 줄이면 된다(마크업 무변경).

   ③ 개수도 버튼도 없는 패널(정보수정·회원탈퇴 등)은 제목만 들어 있던 빈 상자가
      간격만 차지한다 — :has() 로 «비어 있을 때만» 접는다.
      (:has 를 모르는 브라우저는 이 줄만 무시하고 예전처럼 여백이 조금 남는다)
   되돌리기 : 이 블록만 지운다.
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .sh-pad-my { padding-top: 0; }
  .ee-my-cols { padding-top: 12px; }
  .ee-my-main { gap: 16px; }
  .ee-my-main > .ee-my-tabs { order: -1; margin-top: 0; }
  .ee-my-list { padding-top: 0; }
}
@media (max-width: 768px) {
  .ee-my-main > .ee-my-ph:not(:has(.ee-my-cnt)):not(:has(button)) { display: none; }
}


/* ── 쿠폰함 «받을 수 있는 쿠폰» (2026-08-24 황수빈) ───────────────────────
   카드는 «받은 쿠폰» 과 같은 .ee-my-cp 를 그대로 쓴다 — 여기선 구역 제목과
   받기 버튼만 정의한다. 색 강조는 금액·버튼에만 (--wds-primary-tint 는 관리자
   「사이트 테마 색상3」이라 면 색으로 쓰면 사이트마다 엉뚱한 색이 깔린다). */
.ee-my-cpsec { padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.ee-my-cpsec-hd { display: flex; align-items: center; justify-content: space-between; min-height: 28px; }
.ee-my-cpsec-hd.is-own { padding-top: 26px; }
.ee-my-cpsec-t { font-size: 15px; font-weight: 700; letter-spacing: -.003em; }
.ee-my-cpsec-t em { font-style: normal; color: var(--wds-primary); }
.ee-my-cpsec-all {
  height: 28px; padding: 0 12px; border-radius: 999px;
  background: var(--wds-fill); color: var(--wds-text); font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background .16s var(--wds-ease);
}
.ee-my-cpsec-all:hover { background: var(--wds-fill-strong); }
.ee-my-cpsec-all[disabled] { color: var(--wds-text-assistive); cursor: default; }
.ee-my-cpsec-list { display: flex; flex-direction: column; gap: 8px; }
.ee-my-list.is-tight { padding-top: 0; }
.ee-my-cp-get {
  flex: none; height: 36px; padding: 0 16px; border-radius: 8px;
  background: var(--wds-primary); color: #fff; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background .16s var(--wds-ease), transform .16s var(--wds-ease);
}
.ee-my-cp-get:hover { background: var(--wds-primary-strong); }
.ee-my-cp-get:active { transform: scale(.96); }
.ee-my-cp-get[disabled] { background: var(--wds-fill-strong); color: var(--wds-text-assistive); cursor: default; transform: none; }

@media (max-width: 768px) {
  .ee-my-cpsec { padding-top: 0; }
  .ee-my-cpsec-hd.is-own { padding-top: 14px; }
  .ee-my-cp-get { height: 34px; padding: 0 13px; font-size: 13px; }
}


/* 최근 본 상품 찜 하트 — 목록(.ee-ls-wish)·브랜드상세(.br-gc-wish)와 «수치를 그대로» 맞춘다.
   우8 / 상8 · 34 원형 · rgba(255,255,255,.86) · 아이콘 18 · 켜지면 destructive.
   2026-08-24 황수빈 */
.ee-my-wish {
  position: absolute; right: 8px; top: 8px; z-index: 2;
  width: 34px; height: 34px; border-radius: 1000px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 3px rgba(23, 23, 25, 0.14);
  display: grid; place-items: center; cursor: pointer;
  color: var(--wds-text-alt);
  transition: background .18s ease, color .18s ease, transform .18s cubic-bezier(.16, 1, .3, 1);
}
.ee-my-wish:hover { background: #fff; transform: scale(1.06); }
.ee-my-wish:active { transform: scale(0.94); }
.ee-my-wish:focus-visible { outline: 2px solid var(--wds-text); outline-offset: 2px; }
.ee-my-wish.is-on { color: var(--wds-destructive); }
.ee-my-wish.is-busy { cursor: default; opacity: 0.6; }
@media (prefers-reduced-motion: reduce) { .ee-my-wish { transition: none; } }
@media (max-width: 768px) { .ee-my-wish { right: 6px; top: 6px; width: 30px; height: 30px; } }
/* ── 토스트 ─────────────────────────────────────────────────────────────
   정보수정 결과를 브라우저 alert() 대신 여기로 띄운다.
   모양·위치·수명은 가입완료 토스트(default.asp 의 printJoinedToast)와 «같은 언어» 로
   맞췄다 — 한 사이트에 서로 다른 토스트가 두 벌 생기면 안 된다.
   하단 고정 탭바(ee-nav.js 의 .ee-bn 62px / z-index 9000) 위에 앉는다. */
.ee-toast-host {
  position: fixed; left: 50%; bottom: 40px; z-index: 10000;
  transform: translateX(-50%); width: max-content; max-width: calc(100vw - 32px);
  pointer-events: none;
}
@media (max-width: 768px) {
  .ee-toast-host { bottom: calc(74px + env(safe-area-inset-bottom, 0px)); }
}
.ee-toast {
  display: flex; align-items: center; gap: 10px; padding: 13px 20px 13px 15px;
  border-radius: 14px; background: #fff; border: 1px solid #e8ebee;
  box-shadow: 0 12px 32px rgba(17, 17, 26, .16), 0 2px 8px rgba(17, 17, 26, .06);
  font-family: var(--font-core);
  font-size: 15px; line-height: 1.4; font-weight: 600; letter-spacing: -.01em; color: #191f28;
  text-align: left; word-break: keep-all;
  animation: eeToastIn .32s cubic-bezier(.16, 1, .3, 1) both,
             eeToastOut .3s ease-in var(--ee-toast-hold, 2.3s) both;
}
.ee-toast-ic {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; background: var(--wds-primary);
}
.ee-toast.is-err .ee-toast-ic { background: var(--wds-destructive); }
@keyframes eeToastIn { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes eeToastOut { to { opacity: 0; transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .ee-toast { animation: none; } }
