/* ========== User Center ========== */
.user-header {
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  padding: 40px 16px 30px; color: #fff;
}
.user-info {
  display: flex; align-items: center; gap: 14px;
}
.user-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; border: 2px solid rgba(255,255,255,.5);
}
.user-name { font-size: 18px; font-weight: 600; }
.user-id { font-size: 12px; opacity: .8; margin-top: 4px; }

.user-stats {
  display: flex; justify-content: space-around;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.user-stat { text-align: center; }
.user-stat-num { font-size: 18px; font-weight: 600; }
.user-stat-label { font-size: 11px; opacity: .8; margin-top: 2px; }

/* ========== Order Quick Entry ========== */
.order-entry {
  background: #fff; margin: 8px 12px;
  border-radius: 8px; padding: 14px 16px;
}
.order-entry-title {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 12px;
}
.order-entry-title span:first-child {
  font-size: 15px; font-weight: 600;
}
.order-entry-title span:last-child {
  font-size: 12px; color: #999;
}
.order-entry-grid {
  display: flex; justify-content: space-around;
}
.order-entry-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  position: relative;
}
.order-entry-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.order-entry-text { font-size: 11px; color: #666; }

/* ========== Menu List ========== */
.menu-list {
  background: #fff; margin: 8px 12px;
  border-radius: 8px; overflow: hidden;
}
.menu-item {
  display: flex; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #f5f5f5;
}
.menu-item:last-child { border-bottom: none; }
.menu-icon {
  width: 24px; height: 24px; margin-right: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.menu-text { flex: 1; font-size: 14px; }
.menu-arrow {
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ccc' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ========== Address List ========== */
.address-list { padding: 8px 12px; }
.address-item {
  background: #fff; border-radius: 8px;
  padding: 14px 16px; margin-bottom: 8px;
}
.address-item-name { font-size: 15px; font-weight: 600; }
.address-item-phone { font-size: 14px; color: #666; margin-left: 10px; }
.address-item-detail { font-size: 13px; color: #666; margin-top: 6px; line-height: 1.5; }
.address-item-actions {
  display: flex; justify-content: flex-end;
  gap: 16px; margin-top: 10px;
  padding-top: 10px; border-top: 1px solid #f5f5f5;
}
.address-item-action { font-size: 13px; color: #666; }
.address-item-tag {
  display: inline-block; font-size: 10px;
  padding: 1px 6px; border-radius: 3px;
  background: rgba(255,71,87,.1); color: #ff4757;
  margin-left: 8px;
}

/* ========== Legal Pages ========== */
.legal-content {
  padding: 16px; font-size: 14px; line-height: 1.8; color: #333;
}
.legal-content h2 {
  font-size: 16px; font-weight: 600;
  margin: 20px 0 10px; color: #333;
}
.legal-content p { margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content li { margin-bottom: 4px; }
