.mypage-page {
  background: #fff;
}

.mypage-inner {
  padding: 0 16px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-title {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.icon-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User Profile */
.user-profile {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.user-info-text .name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.user-info-text .grade {
  font-size: 14px;
  color: #999;
}

.chevron-right {
  margin-top: 4px;
  flex-shrink: 0;
}

/* Status Grid */
.user-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 24px 0;
}

.status-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.status-label-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.status-label {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}

.status-value {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  text-align: center;
  word-break: break-all;
}

/* Section */
.section {
  padding: 26px 0;
  background: #fff;
}

.section-title {
  font-size: 14px;
  color: #999;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Order Steps */
.order-list-v1-mypage {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 30px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.order-list-v1-mypage ::-webkit-scrollbar {
  display: none;
}

.order-step {
  flex: 0 0 95px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
}

.step-date {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}

.step-thumb {
  width: 100%;
  aspect-ratio: 75 / 100;
  background: #f6f6f6;
  overflow: hidden;
}

.step-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-product-name {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Menu */
.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-item {
  min-height: 56px;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.menu-name {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* Divider */
.filler {
  height: 1px;
  background: #ededed;
}
