/*
 * ============================================================
 * h5.aiisme.cn - 智慧服务平台 UI 设计系统 (浅色主题)
 * 基于 UI/UX Pro Max v2.0 推荐 - Minimalism & Swiss Style
 * ============================================================
 */

:root {
  /* ===== 颜色系统 ===== */
  /* 主色 - 活力红 */
  --primary: #E53E3E;
  --primary-gradient-start: #E53E3E;
  --primary-gradient-end: #EF4444;
  
  /* 背景色 - 浅色 */
  --bg: #F5F7FA;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-section: #F0F2F5;
  --bg-hover: #F8F9FA;
  
  /* 文字色 - 深色 */
  --text-primary: #1A1A2E;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --text-light: #A0AEC0;
  
  /* 价格色 - 红色 */
  --price: #EF4444;
  --price-dark: #DC2626;
  
  /* 边框 */
  --border: #E2E8F0;
  --border-light: #EDF2F7;
  
  /* ===== 阴影系统 ===== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(229, 62, 62, 0.15);
  
  /* ===== 圆角系统 ===== */
  --r-sm: 0.375rem;    /* 6px */
  --r-md: 0.5rem;      /* 8px */
  --r-lg: 0.75rem;     /* 12px */
  --r-xl: 1rem;        /* 16px */
  --r-2xl: 1.25rem;    /* 20px */
  --r-full: 9999px;
  
  /* ===== 间距系统 (8px 基准) ===== */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  
  /* ===== 字体系统 ===== */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-display: 'Calistoga', cursive;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* ===== 动画系统 ===== */
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* ===== 导航栏高度 ===== */
  --nav: calc(4rem + env(safe-area-inset-bottom, 0px));
  --hdr: calc(3.5rem + env(safe-area-inset-top, 0px));
}

/* ===== 基础重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== 无障碍优化 ===== */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== 触摸目标优化 ===== */
button, a, input, select, textarea, [role="button"], [tabindex] {
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
  cursor: pointer;
}

/* ===== 渐变按钮 ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: #FFFFFF;
  border: none;
  border-radius: var(--r-xl);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  height: 56px;
  transition: transform 0.2s var(--transition-spring), box-shadow 0.2s var(--transition-spring);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: scale(0.96); box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: var(--shadow-lg); }

/* ===== 白色卡片 ===== */
.card-white {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

/* ===== 弹簧动画 ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.5s var(--transition-spring) forwards; }
.animate-fade-in-up:nth-child(1) { animation-delay: 0ms; }
.animate-fade-in-up:nth-child(2) { animation-delay: 80ms; }
.animate-fade-in-up:nth-child(3) { animation-delay: 160ms; }
.animate-fade-in-up:nth-child(4) { animation-delay: 240ms; }
.animate-fade-in-up:nth-child(5) { animation-delay: 320ms; }

/* ===== 响应式断点 ===== */
@media (max-width: 640px) { :root { --space-page: var(--space-4); } }
@media (min-width: 641px) and (max-width: 1024px) { :root { --space-page: var(--space-6); } }
@media (min-width: 1025px) { :root { --space-page: var(--space-10); } }

/* ===== 安全区域 ===== */
.safe-top { padding-top: env(safe-area-inset-top, 0px); }
.safe-bottom { padding-bottom: env(safe-area-inset-bottom, 0px); }

/* ===== 文字层级 ===== */
.text-display { font-size: 2.5rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.text-h1 { font-size: 2rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
.text-h2 { font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
.text-h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
.text-body { font-size: 1rem; font-weight: 400; line-height: 1.6; }
.text-small { font-size: 0.875rem; line-height: 1.5; }
.text-tiny { font-size: 0.75rem; line-height: 1.4; }

/* ===== 颜色 ===== */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-price { color: var(--price); }
.text-price-dark { color: var(--price-dark); }

/* ===== 骨架屏 ===== */
@keyframes skeleton-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.skeleton {
  background: linear-gradient(90deg, var(--bg-section) 0%, var(--bg-hover) 50%, var(--bg-section) 100%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  border-radius: var(--r-md);
}

/* ===== Toast 通知 ===== */
.h5-toast {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%) translateY(-100px);
  background: var(--text-primary); color: #fff;
  border-radius: var(--r-lg); padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-lg); opacity: 0;
  transition: transform 0.3s var(--transition-spring), opacity 0.3s;
  z-index: 9999; font-size: 0.875rem; white-space: nowrap;
}
.h5-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== 底部导航 ===== */
.nav-bottom {
  position: fixed; bottom: 0; left: 0; right: 0; height: var(--nav);
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-around; align-items: center;
  padding-bottom: env(safe-area-inset-bottom, 0px); z-index: 100;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}
.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--text-muted); font-size: 0.6875rem; font-weight: 500;
  transition: color 0.2s; padding: var(--space-2);
  min-width: 44px; min-height: 44px; justify-content: center;
}
.nav-item.active { color: var(--primary); font-weight: 700; }
.nav-item:active { transform: scale(0.95); }
.nav-item svg { width: 24px; height: 24px; transition: color 0.2s; }

/* ===== 页面容器 ===== */
.i-body { min-height: 100vh; padding-bottom: var(--nav); }

/* ========================================
   首页组件
   ======================================== */

.i-hero {
  background: var(--bg-white);
  padding: calc(var(--s) + 20px) var(--space-page) var(--space-6);
  position: relative;
  overflow: hidden;
}

.i-hero__content { position: relative; z-index: 1; }

.i-hero__logo {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--r-full); padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-4);
}
.i-hero__logo-icon { font-size: 1rem; }
.i-hero__logo-text { font-size: 0.6875rem; color: var(--text-muted); font-weight: 500; }

.i-hero__title {
  font-size: 2rem; font-weight: 800; line-height: 1.15;
  margin-bottom: var(--space-2); color: var(--text-primary);
}

.i-hero__sub { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: var(--space-6); }

.i-hero__search {
  display: flex; align-items: center;
  background: var(--bg-section); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: var(--space-3) var(--space-4);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.i-hero__search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.08);
}
.i-hero__input { flex: 1; background: transparent; border: none; color: var(--text-primary); font-size: 0.9375rem; outline: none; min-height: 44px; }
.i-hero__input::placeholder { color: var(--text-light); }
.i-hero__scan { font-size: 1.125rem; color: var(--text-light); padding: var(--space-2); margin-left: var(--space-2); }

/* Banner */
.i-banner {
  margin: 0 var(--space-page) var(--space-6);
  background: linear-gradient(135deg, #E53E3E 0%, #EF4444 100%);
  border-radius: var(--r-2xl); padding: var(--space-5) var(--space-5);
  display: flex; align-items: center; gap: var(--space-3);
  cursor: pointer; color: #fff;
  transition: transform 0.2s var(--transition-spring);
  position: relative; overflow: hidden;
}
.i-banner::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; background: rgba(255,255,255,0.1);
  border-radius: 50%; pointer-events: none;
}
.i-banner:active { transform: scale(0.98); }
.i-banner__deco { font-size: 1.75rem; flex-shrink: 0; }
.i-banner__text { flex: 1; }
.i-banner__title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 2px; }
.i-banner__desc { font-size: 0.75rem; color: rgba(255,255,255,0.85); }
.i-banner__badge {
  background: #fff; color: var(--primary);
  font-size: 0.6875rem; font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--r-full); white-space: nowrap;
}

/* 分类 */
.i-cats { padding: 0 var(--space-page) var(--space-6); }
.i-cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.i-cat { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); cursor: pointer; transition: transform 0.2s var(--transition-spring); padding: var(--space-2); border-radius: var(--r-lg); }
.i-cat:active { transform: scale(0.95); }
.i-cat__icon {
  width: 52px; height: 52px; border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center; font-size: 1.375rem;
  background: var(--bg-section); border: 1px solid var(--border-light);
  transition: transform 0.2s var(--transition-spring);
}
.i-cat__img { width: 52px; height: 52px; border-radius: 50% !important; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: transform 0.2s var(--transition-spring); }
.i-cat:hover .i-cat__icon { transform: scale(1.05); }
.i-cat__name { font-size: 0.6875rem; color: var(--text-secondary); text-align: center; font-weight: 500; }

/* 横向滚动服务 */
.i-scroll__wrap {
  display: flex; gap: var(--space-3); overflow-x: auto;
  padding: 0 var(--space-page) var(--space-2);
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.i-scroll__wrap::-webkit-scrollbar { display: none; }
.i-scroll__card {
  flex-shrink: 0; width: 150px; background: var(--bg-white);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: var(--space-3); cursor: pointer;
  transition: transform 0.2s var(--transition-spring), box-shadow 0.2s;
  scroll-snap-align: start; box-shadow: var(--shadow-sm);
}
.i-scroll__card:active { transform: scale(0.97); }
.i-scroll__card:hover { box-shadow: var(--shadow-md); }
.i-scroll__icon {
  width: 100%; height: 100px; border-radius: var(--r-lg);
  margin-bottom: var(--space-3); display: flex; align-items: center;
  justify-content: center; font-size: 2.5rem; background: var(--bg-section);
}
.i-scroll__name { font-size: 0.8125rem; font-weight: 600; margin-bottom: var(--space-1); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.i-scroll__price { font-size: 1.125rem; font-weight: 700; color: var(--price); margin-bottom: var(--space-1); }
.i-scroll__price small { font-size: 0.75rem; font-weight: 400; }
.i-scroll__sub { font-size: 0.6875rem; color: var(--text-muted); }

/* 服务网格 */
.i-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); padding: 0 var(--space-page) var(--space-6); }
.i-service-card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--transition-spring), box-shadow 0.2s;
}
.i-service-card:active { transform: scale(0.98); }
.i-service-card:hover { box-shadow: var(--shadow-md); }
.i-service-card__img {
  width: 100%; height: 130px; display: flex; align-items: center;
  justify-content: center; font-size: 2.5rem; background: var(--bg-section);
}
.i-service-card__body { padding: var(--space-3) var(--space-3) var(--space-4); }
.i-service-card__name { font-size: 0.875rem; font-weight: 600; margin-bottom: var(--space-1); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.i-service-card__vendor { font-size: 0.6875rem; color: var(--text-muted); margin-bottom: var(--space-2); }
.i-service-card__footer { display: flex; justify-content: space-between; align-items: center; }
.i-service-card__price { font-size: 1.0625rem; font-weight: 700; color: var(--price); }
.i-service-card__price small { font-size: 0.75rem; }
.i-service-card__sales { font-size: 0.6875rem; color: var(--text-muted); }

/* Section */
.i-section { margin-bottom: var(--space-6); }
.i-section__hd { display: flex; justify-content: space-between; align-items: center; padding: 0 var(--space-page) var(--space-4); }
.i-section__title { font-size: 1.125rem; font-weight: 700; color: var(--text-primary); }
.i-section__more { font-size: 0.8125rem; color: var(--text-muted); cursor: pointer; }
.i-section__more:hover { color: var(--primary); }

/* ========================================
   个人中心 (Mine)
   ======================================== */
.m-profile { padding: var(--space-6) var(--space-page); }
.m-profile__top { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-6); }
.m-profile__avatar {
  width: 60px; height: 60px; border-radius: var(--r-full);
  background: var(--bg-section); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; overflow: hidden; flex-shrink: 0;
}
.m-profile__info { flex: 1; }
.m-profile__name { font-size: 1.125rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.m-profile__id { font-size: 0.75rem; color: var(--text-muted); }
.m-profile__edit { font-size: 1.25rem; padding: var(--space-2); cursor: pointer; }
.m-profile__stats {
  display: flex; align-items: center; justify-content: space-around;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--space-4); box-shadow: var(--shadow-sm);
}
.m-profile__stat { text-align: center; cursor: pointer; flex: 1; transition: transform 0.2s var(--transition-spring); }
.m-profile__stat:active { transform: scale(0.95); }
.m-profile__stat-val { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.m-profile__stat-lbl { font-size: 0.6875rem; color: var(--text-muted); }
.m-profile__divider { width: 1px; height: 32px; background: var(--border); }

/* Quick Actions */
.m-quick { padding: 0 var(--space-page); margin-bottom: var(--space-4); }
.m-quick__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3);
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--space-4); box-shadow: var(--shadow-sm);
}
.m-quick__item { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); cursor: pointer; transition: transform 0.2s; }
.m-quick__item:active { transform: scale(0.95); }
.m-quick__icon { width: 44px; height: 44px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; }
.m-quick__lbl { font-size: 0.625rem; color: var(--text-secondary); text-align: center; }

/* Order Tabs */
.m-order { margin: 0 var(--space-page) var(--space-4); background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--space-4); box-shadow: var(--shadow-sm); }
.m-order__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-4); }
.m-order__title { font-size: 0.9375rem; font-weight: 700; color: var(--text-primary); }
.m-order__more { font-size: 0.75rem; color: var(--text-muted); cursor: pointer; }
.m-order__tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.m-order__tab { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); cursor: pointer; }
.m-order__tab:active { transform: scale(0.95); }
.m-order__tab-icon { width: 44px; height: 44px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; position: relative; }
.m-order__badge { position: absolute; top: -4px; right: -4px; min-width: 16px; height: 16px; background: var(--price); color: white; font-size: 0.5625rem; font-weight: 700; border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; padding: 0 3px; }
.m-order__tab-lbl { font-size: 0.625rem; color: var(--text-secondary); }

/* Entry List */
.m-entry { margin: 0 var(--space-page) var(--space-4); background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.m-entry__hd { padding: var(--space-3) var(--space-4); font-size: 0.75rem; font-weight: 600; color: var(--text-muted); border-bottom: 1px solid var(--border-light); background: var(--bg-section); }
.m-entry__row { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-4); border-bottom: 1px solid var(--border-light); cursor: pointer; }
.m-entry__row:last-child { border-bottom: none; }
.m-entry__row:active { background: var(--bg-hover); }
.m-entry__icon { width: 36px; height: 36px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.m-entry__text { flex: 1; min-width: 0; }
.m-entry__name { font-size: 0.875rem; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }
.m-entry__sub { font-size: 0.6875rem; color: var(--text-muted); }
.m-entry__right { display: flex; align-items: center; gap: var(--space-2); }
.m-entry__tag { font-size: 0.625rem; font-weight: 600; padding: 2px 8px; border-radius: var(--r-full); }
.m-entry__tag.green { background: rgba(34,197,94,0.1); color: #16A34A; }
.m-entry__tag.blue { background: rgba(59,130,246,0.1); color: #2563EB; }
.m-entry__tag.red { background: rgba(239,68,68,0.1); color: #DC2626; }
.m-entry__arrow { color: var(--text-light); font-size: 1.125rem; }

/* ========================================
   订单页面 (Orders)
   ======================================== */
.o-tabs {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0px);
  box-shadow: var(--shadow-sm);
}
.o-tabs__back {
  position: absolute; left: var(--space-4);
  top: calc(env(safe-area-inset-top, 0px) + 0.5rem);
  font-size: 1.5rem; font-weight: 300; color: var(--text-primary);
  cursor: pointer; padding: var(--space-2); min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.o-tabs__wrap { display: flex; overflow-x: auto; gap: var(--space-2); padding: var(--space-3) var(--space-4); -webkit-overflow-scrolling: touch; }
.o-tabs__wrap::-webkit-scrollbar { display: none; }
.o-tab { padding: var(--space-2) var(--space-4); font-size: 0.8125rem; color: var(--text-muted); text-decoration: none; border-radius: var(--r-full); white-space: nowrap; transition: all 0.2s; min-height: 44px; display: flex; align-items: center; }
.o-tab.active { background: var(--primary); color: #fff; font-weight: 600; }

.o-body { padding: var(--space-4); padding-bottom: calc(var(--nav) + var(--space-4)); }
.o-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-xl); margin-bottom: var(--space-3);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--transition-spring);
}
.o-card:active { transform: scale(0.99); }
.o-card__shop { display: flex; align-items: center; gap: var(--space-2); padding: var(--space-4); border-bottom: 1px solid var(--border-light); }
.o-card__shop-icon { font-size: 0.875rem; }
.o-card__shop-name { font-size: 0.8125rem; font-weight: 600; color: var(--text-primary); flex: 1; }
.o-card__status { font-size: 0.6875rem; font-weight: 600; padding: 2px 8px; border-radius: var(--r-full); }
.o-card__status.pending { background: rgba(245,158,11,0.1); color: #D97706; }
.o-card__status.processing { background: rgba(59,130,246,0.1); color: #2563EB; }
.o-card__status.completed { background: rgba(34,197,94,0.1); color: #16A34A; }
.o-card__status.reviewed { background: rgba(139,92,246,0.1); color: #7C3AED; }

.o-card__goods { display: flex; gap: var(--space-4); padding: var(--space-4); cursor: pointer; }
.o-card__img { width: 68px; height: 68px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; background: var(--bg-section); flex-shrink: 0; }
.o-card__info { flex: 1; min-width: 0; }
.o-card__name { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-1); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.o-card__spec { font-size: 0.6875rem; color: var(--text-muted); margin-bottom: var(--space-2); }
.o-card__footer { display: flex; justify-content: space-between; align-items: center; }
.o-card__price { font-size: 0.9375rem; font-weight: 700; color: var(--price); }
.o-card__price small { font-size: 0.75rem; font-weight: 400; }
.o-card__qty { font-size: 0.6875rem; color: var(--text-muted); }

/* Order Buttons */
.o-card__btn { padding: var(--space-2) var(--space-3); border-radius: var(--r-md); font-size: 0.75rem; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s var(--transition-spring); min-height: 40px; }
.o-card__btn:active { transform: scale(0.95); }
.o-card__btn.primary { background: var(--primary); color: #fff; }
.o-card__btn.ghost { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); }
.o-card__btn.danger { background: rgba(239,68,68,0.08); color: var(--price); }
.o-card__btn.green { background: rgba(34,197,94,0.08); color: #16A34A; }
.o-card__btn.purple { background: rgba(139,92,246,0.08); color: #7C3AED; }

/* Timeline */
.o-card__timeline { display: flex; align-items: center; gap: var(--space-2); padding: var(--space-3) var(--space-4); background: rgba(245,158,11,0.04); border-top: 1px solid var(--border-light); }
.o-card__tl-icon { font-size: 0.875rem; }
.o-card__tl-text { flex: 1; font-size: 0.6875rem; color: var(--text-muted); }
.o-card__tl-time { font-size: 0.75rem; font-weight: 600; color: #D97706; font-family: var(--font-mono); }

/* Empty State */
.o-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem var(--space-page); text-align: center; }
.o-empty__icon { font-size: 3.5rem; margin-bottom: var(--space-4); opacity: 0.5; }
.o-empty__text { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: var(--space-6); line-height: 1.6; }
.o-empty__btn { background: var(--primary); color: white; padding: var(--space-3) var(--space-8); border-radius: var(--r-full); font-size: 0.875rem; font-weight: 600; border: none; cursor: pointer; min-height: 44px; }
.o-empty__btn:active { transform: scale(0.95); }

/* ========================================
   详情页 (Detail)
   ======================================== */
.d-body { min-height: 100vh; padding-bottom: calc(var(--nav) + var(--space-10)); background: var(--bg); }

.d-hero {
  background: var(--bg-white);
  padding: calc(var(--hdr) + var(--space-4)) var(--space-page) var(--space-6);
  position: relative;
}
.d-hero__tag {
  display: inline-block; background: linear-gradient(135deg, var(--primary), #EF4444);
  color: #fff; font-size: 0.625rem; font-weight: 700;
  padding: 3px 10px; border-radius: var(--r-full); margin-bottom: var(--space-3);
}
.d-hero__title { font-size: 1.25rem; font-weight: 800; line-height: 1.35; margin-bottom: var(--space-3); color: var(--text-primary); }
.d-hero__desc { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: var(--space-4); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.d-hero__meta { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-4); }
.d-meta-item { font-size: 0.6875rem; color: var(--text-secondary); }
.d-meta-item strong { color: var(--text-primary); font-weight: 700; }
.d-hero__price { display: flex; align-items: baseline; gap: var(--space-2); flex-wrap: wrap; }
.d-price__main { font-size: 1.75rem; font-weight: 800; color: var(--price); }
.d-price__unit { font-size: 0.75rem; color: var(--text-muted); }
.d-price__orig { font-size: 0.8125rem; color: var(--text-light); text-decoration: line-through; }
.d-price__tag { font-size: 0.5625rem; font-weight: 700; background: rgba(239,68,68,0.1); color: var(--price); padding: 2px 6px; border-radius: var(--r-md); }

/* Trust bar */
.d-trust { display: flex; gap: var(--space-2); padding: var(--space-3) var(--space-page); border-bottom: 1px solid var(--border-light); overflow-x: auto; background: var(--bg-white); }
.d-trust::-webkit-scrollbar { display: none; }
.d-trust__item { flex-shrink: 0; font-size: 0.6875rem; color: var(--text-secondary); background: var(--bg-section); padding: var(--space-2) var(--space-3); border-radius: var(--r-full); white-space: nowrap; }

/* Tabs */
.d-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; background: var(--bg-white); }
.d-tab { flex: 1; text-align: center; padding: var(--space-3) 0; font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; }
.d-tab.active { color: var(--primary); font-weight: 700; border-bottom-color: var(--primary); }

/* Panels */
.d-panel { display: none; padding: var(--space-4); }
.d-panel.active { display: block; }

/* Blocks */
.d-block { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--space-4); margin-bottom: var(--space-4); box-shadow: var(--shadow-sm); }
.d-block__title { font-size: 0.9375rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-3); display: flex; align-items: center; gap: var(--space-2); }
.d-block__title::before { content: ''; width: 3px; height: 16px; background: var(--primary); border-radius: 2px; }
.d-block ul { margin: 0; padding: 0 0 0 var(--space-5); }
.d-block li { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: var(--space-1); }

.d-feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.d-feat-chip { display: flex; align-items: flex-start; gap: var(--space-2); background: var(--bg-section); padding: var(--space-3); border-radius: var(--r-lg); }
.d-feat-chip__icon { font-size: 1.25rem; flex-shrink: 0; }
.d-feat-chip__txt { font-size: 0.6875rem; color: var(--text-secondary); line-height: 1.4; }
.d-feat-chip__txt strong { display: block; color: var(--text-primary); font-weight: 600; }

/* Packages */
.d-pkgs { display: flex; flex-direction: column; gap: var(--space-3); }
.d-pkg { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--space-4); position: relative; box-shadow: var(--shadow-sm); }
.d-pkg.hot { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.d-pkg__rec { position: absolute; top: -10px; right: var(--space-4); background: linear-gradient(135deg, var(--primary), #EF4444); color: #fff; font-size: 0.5625rem; font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); }
.d-pkg__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-2); }
.d-pkg__name { font-size: 0.9375rem; font-weight: 700; color: var(--text-primary); }
.d-pkg__badge { font-size: 0.5625rem; font-weight: 700; padding: 2px 8px; border-radius: var(--r-full); }
.d-pkg__badge.red { background: rgba(239,68,68,0.1); color: var(--price); }
.d-pkg__badge.blue { background: rgba(59,130,246,0.1); color: #2563EB; }
.d-pkg__badge.green { background: rgba(34,197,94,0.1); color: #16A34A; }
.d-pkg__desc { font-size: 0.6875rem; color: var(--text-muted); margin-bottom: var(--space-3); line-height: 1.5; }
.d-pkg__specs { display: flex; flex-wrap: wrap; gap: var(--space-1); margin-bottom: var(--space-3); }
.d-pkg__spec { font-size: 0.5625rem; color: var(--text-secondary); background: var(--bg-section); padding: 2px 8px; border-radius: var(--r-full); }
.d-pkg__footer { display: flex; align-items: flex-end; justify-content: space-between; }
.d-pkg__price { font-size: 1.25rem; font-weight: 800; color: var(--price); }
.d-pkg__price small { font-size: 0.75rem; font-weight: 400; }
.d-pkg__deliv { font-size: 0.5625rem; color: var(--text-muted); margin-top: var(--space-1); }
.d-pkg__btn { background: linear-gradient(135deg, var(--primary), #EF4444); color: #fff; font-size: 0.75rem; font-weight: 700; padding: var(--space-2) var(--space-6); border-radius: var(--r-full); border: none; cursor: pointer; min-height: 44px; }
.d-pkg__btn:active { transform: scale(0.95); }

/* Reviews */
.d-reviews { display: flex; flex-direction: column; gap: var(--space-3); }
.d-review-sum { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--space-4); display: flex; gap: var(--space-4); box-shadow: var(--shadow-sm); }
.d-review-score { text-align: center; flex-shrink: 0; }
.d-review-stars { font-size: 0.75rem; color: #F59E0B; margin-bottom: var(--space-1); }
.d-review-num { font-size: 1.375rem; font-weight: 800; color: var(--text-primary); }
.d-review-lbl { font-size: 0.5625rem; color: var(--text-muted); }
.d-review-bars { flex: 1; display: flex; flex-direction: column; gap: var(--space-1); justify-content: center; }
.d-review-bar { display: flex; align-items: center; gap: var(--space-2); }
.d-review-bar__lbl { font-size: 0.5625rem; color: var(--text-secondary); width: 1.5rem; }
.d-review-bar__track { flex: 1; height: 6px; background: var(--bg-section); border-radius: 3px; overflow: hidden; }
.d-review-bar__fill { height: 100%; background: #F59E0B; border-radius: 3px; }
.d-review-bar__pct { font-size: 0.5625rem; color: var(--text-muted); width: 1.5rem; text-align: right; }
.d-review-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--space-4); box-shadow: var(--shadow-sm); }
.d-review-hd { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.d-review-avatar { width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; background: var(--bg-section); }
.d-review-user { flex: 1; }
.d-review-name { font-size: 0.8125rem; font-weight: 600; color: var(--text-primary); }
.d-review-date { font-size: 0.5625rem; color: var(--text-muted); }
.d-review-stars2 { font-size: 0.625rem; color: #F59E0B; }
.d-review-text { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.6; }
.d-more-btn { background: var(--bg-white); border: 1px solid var(--border); color: var(--text-secondary); font-size: 0.8125rem; padding: var(--space-3) var(--space-6); border-radius: var(--r-full); cursor: pointer; margin-top: var(--space-2); min-height: 44px; }

/* Vendor */
.d-vendor-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--space-4); display: flex; align-items: center; gap: var(--space-4); box-shadow: var(--shadow-sm); }
.d-vendor-avatar { width: 3rem; height: 3rem; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 1.375rem; background: var(--bg-section); flex-shrink: 0; }
.d-vendor-info { flex: 1; }
.d-vendor-name { font-size: 0.9375rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.d-vendor-sub { font-size: 0.5625rem; color: var(--text-muted); margin-bottom: var(--space-2); }
.d-vendor-stats { display: flex; gap: var(--space-4); }
.d-vendor-stat { font-size: 0.6875rem; color: var(--text-secondary); }
.d-vendor-stat strong { color: var(--text-primary); font-weight: 700; }
.d-vendor-btns { display: flex; gap: var(--space-2); }
.d-vendor-btn { padding: var(--space-2) var(--space-4); border-radius: var(--r-full); font-size: 0.6875rem; font-weight: 600; cursor: pointer; min-height: 44px; }
.d-vendor-btn.primary { background: var(--primary); color: #fff; border: none; }
.d-vendor-btn.secondary { background: transparent; color: var(--primary); border: 1px solid var(--primary); }

/* Bottom CTA */
.d-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-white); border-top: 1px solid var(--border);
  display: flex; align-items: center; padding: var(--space-3) var(--space-4);
  gap: var(--space-3); z-index: 200; padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}
.d-cta__icon { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 0.5rem; color: var(--text-muted); cursor: pointer; padding: 0 var(--space-2); min-width: 44px; min-height: 44px; justify-content: center; }
.d-cta__icon span:first-child { font-size: 1.125rem; }
.d-cta__icon:active { color: var(--primary); }
.d-cta__btn { flex: 1; height: 48px; background: linear-gradient(135deg, var(--primary), #EF4444); color: #fff !important; font-size: 0.9375rem; font-weight: 700; border-radius: var(--r-full); border: none; cursor: pointer; }
.d-cta__btn:active { transform: scale(0.96); }

/* ========================================
   通用页面组件
   ======================================== */
.page-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0px);
  padding: var(--space-4); display: flex; align-items: center; gap: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.page-header__back { font-size: 1.5rem; cursor: pointer; padding: var(--space-2); min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; color: var(--text-primary); }
.page-header__back:active { transform: scale(0.9); }
.page-header__title { font-size: 1.0625rem; font-weight: 700; color: var(--text-primary); flex: 1; }

/* 搜索 */
.s-bar { display: flex; align-items: center; gap: var(--space-3); padding: calc(env(safe-area-inset-top, 0px) + var(--space-3)) var(--space-4) var(--space-3); background: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.s-bar__back { font-size: 1.5rem; cursor: pointer; padding: var(--space-2); min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; color: var(--text-primary); }
.s-bar__input-wrap { flex: 1; display: flex; align-items: center; background: var(--bg-section); border: 1.5px solid var(--border); border-radius: var(--r-full); padding: var(--space-2) var(--space-4); gap: var(--space-2); }
.s-bar__input { flex: 1; background: transparent; border: none; color: var(--text-primary); font-size: 0.875rem; outline: none; min-height: 44px; }
.s-bar__input::placeholder { color: var(--text-light); }
.s-bar__icon { color: var(--text-light); font-size: 0.875rem; }
.s-bar__clear { color: var(--text-light); font-size: 0.75rem; cursor: pointer; display: none; padding: var(--space-1); }
.s-bar__clear.show { display: block; }
.s-bar__cancel { font-size: 0.8125rem; color: var(--primary); cursor: pointer; padding: var(--space-2); min-width: 44px; text-align: center; }

/* 搜索结果 */
.s-body { padding-bottom: calc(var(--nav) + var(--space-4)); }
.s-hot { padding: var(--space-6) var(--space-page); }
.s-hot__hd { font-size: 0.9375rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-4); }
.s-hot__tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.s-hot__tag { padding: var(--space-2) var(--space-3); background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-full); font-size: 0.75rem; color: var(--text-secondary); cursor: pointer; }
.s-hot__tag:active { transform: scale(0.95); }
.s-hot__tag.hot { background: rgba(229,62,62,0.06); border-color: var(--primary); color: var(--primary); }

.s-hist { padding: var(--space-4) var(--space-page); }
.s-hist__hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-3); }
.s-hist__title { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.s-hist__clear { font-size: 0.6875rem; color: var(--text-muted); cursor: pointer; }
.s-hist__list { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.s-hist__item { padding: var(--space-2) var(--space-3); background: var(--bg-section); border-radius: var(--r-full); font-size: 0.6875rem; color: var(--text-secondary); cursor: pointer; }

.s-filter { display: flex; gap: 0; border-bottom: 1px solid var(--border); background: var(--bg-white); }
.s-filter__tab { flex: 1; text-align: center; padding: var(--space-3) 0; font-size: 0.75rem; color: var(--text-muted); cursor: pointer; }
.s-filter__tab.active { color: var(--primary); font-weight: 700; border-bottom: 2px solid var(--primary); }

.s-result { padding: var(--space-4); }
.s-result__count { font-size: 0.75rem; color: var(--text-muted); margin-bottom: var(--space-3); }
.s-card { display: flex; gap: var(--space-3); padding: var(--space-3); background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); margin-bottom: var(--space-3); cursor: pointer; box-shadow: var(--shadow-sm); }
.s-card:active { transform: scale(0.99); }
.s-card__img { width: 72px; height: 72px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; background: var(--bg-section); flex-shrink: 0; }
.s-card__body { flex: 1; min-width: 0; }
.s-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-2); }
.s-card__name { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.s-card__badge { font-size: 0.5625rem; font-weight: 600; padding: 2px 6px; border-radius: var(--r-full); white-space: nowrap; }
.s-card__vendor { font-size: 0.625rem; color: var(--text-muted); margin-bottom: var(--space-2); }
.s-card__footer { display: flex; align-items: center; gap: var(--space-2); }
.s-card__price { font-size: 1rem; font-weight: 700; color: var(--price); }
.s-card__price small { font-size: 0.6875rem; }
.s-card__orig { font-size: 0.6875rem; color: var(--text-light); text-decoration: line-through; }
.s-card__sales { font-size: 0.625rem; color: var(--text-muted); margin-left: auto; }

.s-noresult { display: flex; flex-direction: column; align-items: center; padding: 4rem var(--space-page); text-align: center; }
.s-noresult__icon { font-size: 3rem; margin-bottom: var(--space-4); }
.s-noresult__title { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-2); }
.s-noresult__sub { font-size: 0.8125rem; color: var(--text-muted); }

.s-more { text-align: center; padding: var(--space-6) 0; }
.s-more__btn { padding: var(--space-3) var(--space-8); background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-full); color: var(--text-secondary); font-size: 0.8125rem; cursor: pointer; min-height: 44px; }

/* ========================================
   表单 / 帮助 / 其他
   ======================================== */
.form-group { padding: var(--space-4) var(--space-page); }
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: var(--space-2); color: var(--text-secondary); }
.form-input { width: 100%; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--space-3) var(--space-4); color: var(--text-primary); font-size: 0.875rem; outline: none; min-height: 48px; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(229,62,62,0.08); }
.form-input::placeholder { color: var(--text-light); }
.form-textarea { min-height: 120px; resize: vertical; }

.help-section { padding: var(--space-6) var(--space-page); border-bottom: 1px solid var(--border-light); }
.help-section__title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-3); }
.help-section__content { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.8; }

.list-empty, .o-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem var(--space-page); text-align: center; }
.list-empty__icon, .o-empty__icon { font-size: 3.5rem; margin-bottom: var(--space-4); opacity: 0.5; }
.list-empty__text, .o-empty__text { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: var(--space-4); }

.recharge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); padding: var(--space-4) var(--space-page); }
.recharge-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--space-5) var(--space-3); text-align: center; cursor: pointer; box-shadow: var(--shadow-sm); }
.recharge-card.selected { border-color: var(--primary); background: rgba(229,62,62,0.04); }
.recharge-card:active { transform: scale(0.96); }
.recharge-card__amount { font-size: 1.375rem; font-weight: 700; color: var(--price); margin-bottom: 2px; }
.recharge-card__amount small { font-size: 0.8125rem; }
.recharge-card__bonus { font-size: 0.6875rem; color: var(--text-muted); }

.coupon-card { margin: var(--space-3) var(--space-page); background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--space-4); display: flex; align-items: center; gap: var(--space-4); box-shadow: var(--shadow-sm); }
.coupon-card__amount { font-size: 1.5rem; font-weight: 700; color: var(--price); text-align: center; min-width: 70px; }
.coupon-card__amount small { font-size: 0.8125rem; }
.coupon-card__info { flex: 1; }
.coupon-card__name { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.coupon-card__expire { font-size: 0.6875rem; color: var(--text-muted); }
.coupon-card__btn { padding: var(--space-2) var(--space-4); background: var(--primary); color: white; border: none; border-radius: var(--r-full); font-size: 0.75rem; font-weight: 600; cursor: pointer; min-height: 44px; }

.scan-container { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80vh; padding: var(--space-8) var(--space-page); }
.scan-box { width: 220px; height: 220px; border: 2px solid var(--primary); border-radius: var(--r-2xl); position: relative; margin-bottom: var(--space-8); }
.scan-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--primary); animation: scanLine 2s ease-in-out infinite; }
@keyframes scanLine { 0%, 100% { top: 0; } 50% { top: 100%; } }
.scan-text { font-size: 0.9375rem; color: var(--text-secondary); text-align: center; }

.badge { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; background: var(--price); color: white; font-size: 0.5625rem; font-weight: 700; border-radius: var(--r-full); padding: 0 4px; }
.divider { height: 1px; background: var(--border-light); margin: 0 var(--space-page); }

/* Loading */
.loading-spinner { display: inline-block; width: 24px; height: 24px; border: 2px solid var(--border); border-top-color: var(--primary); border-radius: var(--r-full); animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Empty State Generic */
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem var(--space-page); text-align: center; }
.empty-state__icon { font-size: 3.5rem; margin-bottom: var(--space-4); opacity: 0.4; }
.empty-state__title { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-2); }
.empty-state__desc { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: var(--space-6); }
