/* ================================================================
   BABY-ROCK — My Page CSS
   ================================================================ */

/* ── Page Header ── */
.mp-page-header {
  background: var(--ink1);
  color: var(--paper);
  padding: 40px 0 32px;
}

.mp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.mp-breadcrumb a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.mp-breadcrumb a:hover { color: #fff; }

.mp-user-hero {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mp-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}

.mp-user-name {
  font-family: var(--font-serif);
  font-size: clamp(20px,3vw,28px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}

.mp-user-since {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin: 4px 0 0;
}

.mp-points-badge {
  margin-left: auto;
  background: var(--accent);
  color: var(--ink1);
  border-radius: 40px;
  padding: 8px 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.mp-points-num {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-mono, 'Inter', sans-serif);
}
.mp-points-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ── Layout ── */
.mp-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--gap-lg);
  padding-top: var(--gap-lg);
  padding-bottom: var(--gap-xl);
  align-items: start;
}

@media (max-width: 768px) {
  .mp-layout { grid-template-columns: 1fr; }
}

/* ── Sidebar Nav ── */
.mp-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.mp-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mp-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink2);
  cursor: pointer;
  transition: all .2s;
  text-align: left;
  width: 100%;
}
.mp-nav-item:hover {
  background: var(--surface);
  color: var(--ink1);
}
.mp-nav-item.active {
  background: var(--ink1);
  color: var(--paper);
}

@media (max-width: 768px) {
  .mp-sidebar { position: static; }
  .mp-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mp-nav::-webkit-scrollbar { display: none; }
  .mp-nav-item {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 40px;
  }
  .mp-nav-item svg { display: none; }
}

/* ── Content ── */
.mp-content { min-width: 0; }

/* ── EC Banner ── */
.mp-ec-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  background: var(--ink1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: var(--gap-lg);
  min-height: 200px;
}

.mp-ec-banner-inner {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.mp-ec-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink1);
  padding: 4px 10px;
  border-radius: 40px;
  width: fit-content;
}

.mp-ec-title {
  font-family: var(--font-serif);
  font-size: clamp(18px,3vw,26px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.mp-ec-desc {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0;
}

.mp-ec-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mp-ec-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink1);
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.mp-ec-btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.mp-ec-btn-ghost {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.mp-ec-btn-ghost:hover { color: #fff; }

.mp-ec-banner-img {
  width: 200px;
  flex-shrink: 0;
}
.mp-ec-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .mp-ec-banner { grid-template-columns: 1fr; }
  .mp-ec-banner-img { display: none; }
  .mp-ec-banner-inner { padding: 24px 20px; }
}

/* ── Stats Grid ── */
.mp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: var(--gap-lg);
}

@media (max-width: 600px) { .mp-stats-grid { grid-template-columns: repeat(2, 1fr); } }

.mp-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all .2s;
}
.mp-stat-card:hover {
  border-color: var(--ink1);
  transform: translateY(-2px);
}

.mp-stat-icon { font-size: 22px; margin-bottom: 8px; }
.mp-stat-num {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-mono, 'Inter', sans-serif);
  color: var(--ink1);
  line-height: 1;
  margin-bottom: 4px;
}
.mp-stat-label { font-size: 11px; color: var(--ink3); letter-spacing: .05em; }

/* ── Section Common ── */
.mp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mp-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink1);
}
.mp-section-link {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--ink3);
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}
.mp-section-link:hover { color: var(--ink1); }

/* ── Recent / Order Card ── */
.mp-recent,
.mp-delivering,
.mp-category-links { margin-bottom: var(--gap-lg); }

.mp-order-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.mp-order-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  cursor: pointer;
}
.mp-order-row:last-child { border-bottom: none; }
.mp-order-row:hover { background: var(--surface); }

.mp-order-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.mp-order-info {}
.mp-order-num {
  font-size: 11px;
  color: var(--ink3);
  margin-bottom: 4px;
}
.mp-order-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink1);
  margin-bottom: 4px;
}
.mp-order-date { font-size: 12px; color: var(--ink3); }

.mp-order-meta {
  text-align: right;
}
.mp-order-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink1);
  margin-bottom: 6px;
}
.mp-order-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 40px;
}
.mp-order-status.delivered  { background: #E8F5E9; color: #2E7D32; }
.mp-order-status.shipping   { background: #E3F2FD; color: #1565C0; }
.mp-order-status.processing { background: #FFF3E0; color: #E65100; }
.mp-order-status.cancelled  { background: #FAFAFA; color: #9E9E9E; }

/* ── Tracking Card ── */
.mp-tracking-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.mp-tracking-inner {
  padding: 20px 24px;
}

.mp-tracking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.mp-tracking-order { font-size: 11px; color: var(--ink3); }
.mp-tracking-eta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink1);
  margin-top: 4px;
}
.mp-tracking-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 40px;
  background: #E3F2FD;
  color: #1565C0;
  white-space: nowrap;
}

/* ── Timeline (tracking) ── */
.mp-track-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
  padding: 0 8px;
}

.mp-track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.mp-track-step::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
  z-index: -1;
}
.mp-track-step:last-child::before { display: none; }
.mp-track-step.done::before { background: var(--ink1); }

.mp-track-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.mp-track-step.done .mp-track-dot {
  background: var(--ink1);
  border-color: var(--ink1);
  color: #fff;
}
.mp-track-step.active .mp-track-dot {
  border-color: #1565C0;
  background: #E3F2FD;
  color: #1565C0;
}
.mp-track-label {
  font-size: 10px;
  color: var(--ink3);
  text-align: center;
  white-space: nowrap;
}
.mp-track-step.done .mp-track-label,
.mp-track-step.active .mp-track-label { color: var(--ink1); font-weight: 600; }

/* ── Category Shortcuts ── */
.mp-cat-shortcuts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 600px) { .mp-cat-shortcuts { grid-template-columns: repeat(3, 1fr); } }

.mp-cat-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink2);
  font-size: 11px;
  font-weight: 500;
  transition: all .2s;
  text-align: center;
}
.mp-cat-link:hover {
  border-color: var(--ink1);
  color: var(--ink1);
  transform: translateY(-2px);
}
.mp-cat-emoji { font-size: 24px; }

/* ── Orders Tab ── */
.mp-tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mp-tab-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink1);
}
.mp-tab-count {
  font-size: 13px;
  color: var(--ink3);
}

.mp-orders-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mp-order-card-full {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.mp-order-card-full:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }

.mp-order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}

.mp-oc-left { display: flex; flex-direction: column; gap: 2px; }
.mp-oc-num { font-size: 13px; font-weight: 600; color: var(--ink1); }
.mp-oc-date { font-size: 11px; color: var(--ink3); }

.mp-oc-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mp-oc-total { font-size: 15px; font-weight: 700; color: var(--ink1); }

.mp-order-card-items {
  padding: 0 20px;
}

.mp-oc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mp-oc-item:last-child { border-bottom: none; }

.mp-oc-item-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.mp-oc-item-info { flex: 1; min-width: 0; }
.mp-oc-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink1);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-oc-item-meta { font-size: 11px; color: var(--ink3); }

.mp-oc-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink1);
  white-space: nowrap;
  flex-shrink: 0;
}

.mp-order-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.mp-oc-actions {
  display: flex;
  gap: 8px;
}

.mp-oc-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink2);
}
.mp-oc-btn:hover { border-color: var(--ink1); color: var(--ink1); }
.mp-oc-btn.primary {
  background: var(--ink1);
  color: #fff;
  border-color: var(--ink1);
}
.mp-oc-btn.primary:hover { opacity: .85; }

/* ── Shipping Tab ── */
.mp-shipping-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mp-shipping-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.mp-ship-header {
  padding: 16px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mp-ship-num { font-size: 13px; font-weight: 600; color: var(--ink1); }
.mp-ship-carrier { font-size: 11px; color: var(--ink3); margin-top: 2px; }

.mp-ship-body { padding: 24px 20px; }

.mp-ship-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 24px;
}

.mp-ship-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}

.mp-ship-step::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
}
.mp-ship-step:last-child::after { display: none; }
.mp-ship-step.done::after { background: var(--ink1); }

.mp-ship-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.mp-ship-step.done .mp-ship-dot {
  background: var(--ink1);
  border-color: var(--ink1);
  color: #fff;
}
.mp-ship-step.active .mp-ship-dot {
  background: #E3F2FD;
  border-color: #1565C0;
  color: #1565C0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(21,101,192,.3); }
  50% { box-shadow: 0 0 0 6px rgba(21,101,192,0); }
}
.mp-ship-lbl { font-size: 10px; color: var(--ink3); text-align: center; }
.mp-ship-step.done .mp-ship-lbl,
.mp-ship-step.active .mp-ship-lbl { color: var(--ink1); font-weight: 600; }

.mp-ship-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mp-ship-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--surface);
  border-radius: 8px;
}

.mp-ship-item-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}
.mp-ship-item-name { font-size: 13px; font-weight: 500; color: var(--ink1); }
.mp-ship-item-meta { font-size: 11px; color: var(--ink3); }

.mp-ship-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}

.mp-ship-eta { font-size: 12px; color: var(--ink3); }
.mp-ship-eta strong { color: var(--ink1); }

.mp-ship-track-btn {
  padding: 8px 18px;
  border: 1px solid var(--ink1);
  border-radius: 8px;
  background: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink1);
  cursor: pointer;
  transition: all .2s;
}
.mp-ship-track-btn:hover { background: var(--ink1); color: #fff; }

/* ── Wishlist Tab ── */
.mp-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.mp-wish-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .2s;
  cursor: pointer;
}
.mp-wish-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }

.mp-wish-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.mp-wish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.mp-wish-card:hover .mp-wish-img-wrap img { transform: scale(1.04); }

.mp-wish-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--red);
  transition: all .2s;
}
.mp-wish-remove:hover { background: var(--red); color: #fff; transform: scale(1.1); }

.mp-wish-body { padding: 12px 14px; }
.mp-wish-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink1);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-wish-price { font-size: 14px; font-weight: 700; color: var(--ink1); }

.mp-wishlist-empty {
  text-align: center;
  padding: 80px 20px;
}
.mp-empty-icon {
  font-size: 64px;
  color: var(--border);
  margin-bottom: 16px;
}
.mp-empty-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink2);
  margin-bottom: 20px;
}

/* ── Profile Tab ── */
.mp-profile-form { max-width: 600px; }

.mp-profile-avatar-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--surface);
  border-radius: 12px;
}

.mp-profile-avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}

.mp-avatar-name { font-size: 15px; font-weight: 600; color: var(--ink1); margin-bottom: 4px; }
.mp-avatar-since { font-size: 12px; color: var(--ink3); }

.mp-profile-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink3);
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.mp-profile-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mp-profile-field {}
.mp-profile-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  margin-bottom: 6px;
  letter-spacing: .03em;
}

.mp-profile-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink1);
  background: #fff;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.mp-profile-input:focus { border-color: var(--ink1); }

/* Toggle switch */
.mp-profile-toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.mp-toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink2);
}

.mp-toggle { position: relative; }
.mp-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.mp-toggle-slider {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 24px;
  position: relative;
  transition: background .2s;
  cursor: pointer;
}
.mp-toggle-slider::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.mp-toggle input:checked ~ .mp-toggle-slider { background: var(--ink1); }
.mp-toggle input:checked ~ .mp-toggle-slider::after { transform: translateX(20px); }

.mp-profile-save {
  width: 100%;
  padding: 14px;
  background: var(--ink1);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
  margin-top: 8px;
}
.mp-profile-save:hover { opacity: .85; }

/* ── Order Modal ── */
.mp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
}

.mp-order-modal {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mp-order-modal-inner {
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.mp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.mp-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink1);
}

.mp-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink2);
  transition: color .2s;
}
.mp-modal-close:hover { color: var(--ink1); }

.mp-modal-body { padding: 24px; }

.mp-modal-section { margin-bottom: 24px; }
.mp-modal-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink3);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mp-modal-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mp-modal-item:last-child { border-bottom: none; }

.mp-modal-item-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}
.mp-modal-item-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.mp-modal-item-meta { font-size: 11px; color: var(--ink3); }
.mp-modal-item-price { font-size: 14px; font-weight: 600; margin-left: auto; white-space: nowrap; }

.mp-modal-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink2);
  padding: 6px 0;
}
.mp-modal-summary-row.total {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink1);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}

/* ── Header My Page Button ── */
.header-mypage-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-mypage-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
}

@media (max-width: 700px) {
  .header-mypage-label { display: none; }
}
