/* ============================================
   Пиксель Pixel Workshop - 全局样式表 V2
   低饱和多巴胺 + 韩系ins风 + 可爱像素风
   ============================================ */

/* ---------- CSS 变量 ---------- */
:root {
  /* 主色 - 低饱和多巴胺配色 */
  --color-primary: #E8A598;        /* 粉橘 - 主色调 */
  --color-primary-light: #F5D5CD;  /* 浅粉橘 */
  --color-primary-dark: #D48A7C;   /* 深粉橘 */
  --color-secondary: #B5C7D3;      /* 雾霾蓝 - 辅助色 */
  --color-secondary-light: #D4E0E8;
  --color-accent-green: #A8D5BA;   /* 薄荷绿 */
  --color-accent-green-light: #C8E8D4;
  --color-accent-yellow: #F0DDA0;  /* 奶油黄 */
  --color-accent-yellow-light: #F7EDC8;
  --color-accent-purple: #D4C5E0;  /* 薰衣草紫 */
  --color-accent-purple-light: #E8DFEF;
  --color-accent-coral: #F0B8A8;   /* 珊瑚色 */

  /* 中性色 - 韩系ins风 */
  --bg-main: #FAF7F2;               /* 米白背景 */
  --bg-soft: #F5F1EB;               /* 更浅的米白 */
  --bg-card: #FFFFFF;                /* 卡片纯白 */
  --bg-gradient: linear-gradient(135deg, #FDF6F0 0%, #F5EDE4 50%, #F0E8DF 100%);
  --text-primary: #4A4A4A;          /* 深灰文字 */
  --text-secondary: #888888;        /* 中灰文字 */
  --text-light: #B0B0B0;            /* 浅灰文字 */
  --text-white: #FFFFFF;
  --border-color: #EDE8E0;          /* 浅边框 */
  --border-light: #F5F1EB;

  /* 阴影 - 柔和ins风 */
  --shadow-soft: 0 4px 20px rgba(180, 170, 160, 0.1);
  --shadow-card: 0 8px 30px rgba(180, 170, 160, 0.12);
  --shadow-hover: 0 12px 40px rgba(180, 170, 160, 0.18);
  --shadow-button: 0 4px 15px rgba(232, 165, 152, 0.3);
  --shadow-button-hover: 0 6px 20px rgba(232, 165, 152, 0.4);

  /* 状态色 */
  --status-success: #A8D5BA;
  --status-warning: #F0DDA0;
  --status-danger: #E8A598;
  --status-info: #B5C7D3;

  /* 圆角 - 韩系圆润 */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  /* 间距 */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;

  /* 字体 */
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
    'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-heading: var(--font-main);

  /* 过渡动画 */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- 基础重置 ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 全局reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-normal);
}

a:hover {
  color: var(--color-primary);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  font-size: inherit;
  transition: all var(--transition-normal);
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  transition: all var(--transition-normal);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 165, 152, 0.15);
}

/* ---------- 通用容器 ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-center {
  text-align: center;
}

.text-small {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---------- 按钮样式 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  box-shadow: var(--shadow-button-hover);
  color: var(--text-white);
}

.btn-outline {
  background: var(--bg-card);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--text-white);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--text-white);
}

.btn-small {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---------- 链接样式 ---------- */
.link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ---------- 导航栏 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(180, 170, 160, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.main-nav a {
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 4px;
  position: relative;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-soft);
  padding: 4px;
  border-radius: var(--radius-full);
}

.lang-btn {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  background: none;
}

.lang-btn.active {
  background: var(--color-primary);
  color: var(--text-white);
}

.lang-btn:hover:not(.active) {
  color: var(--text-primary);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ---------- Hero区域 ---------- */
.hero-section {
  background: var(--bg-gradient);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-secondary-light) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- 快速信息卡片 ---------- */
.quick-info {
  padding: var(--space-xl) 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.info-icon {
  font-size: 32px;
  margin-bottom: var(--space-sm);
  display: inline-block;
  background: var(--bg-soft);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  line-height: 1.6;
}

/* ---------- 通用区块标题 ---------- */
section {
  padding: var(--space-xl) 0;
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.section-header .section-title {
  margin-bottom: 0;
  text-align: left;
}

/* ---------- 项目介绍预览 ---------- */
.about-preview {
  background: var(--bg-card);
}

.about-preview-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.highlight-item {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-normal);
  text-align: center;
  min-height: 110px;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.highlight-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.highlight-item span:last-child {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

/* ---------- 作品展示 ---------- */
.gallery-preview {
  background: var(--bg-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder,
.gallery-placeholder-large {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
  color: var(--text-secondary);
  font-size: 14px;
}

.gallery-placeholder-large {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 1;
  font-size: 16px;
}

/* ---------- 价格速览 ---------- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  border: 2px solid var(--border-light);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #FFF9F7 0%, var(--bg-card) 100%);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--text-white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-button);
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.pricing-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ---------- 预约引导CTA ---------- */
.booking-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.cta-content .btn-primary {
  background: var(--text-white);
  color: var(--color-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-content .btn-primary:hover {
  background: var(--bg-soft);
  color: var(--color-primary-dark);
}

/* ---------- 页脚 ---------- */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  height: 50px;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-sm);
}

.footer-col p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-light);
}

/* ---------- 表单样式 ---------- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(232, 165, 152, 0.1);
  background: var(--bg-card);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
}

/* ---------- 卡片通用样式 ---------- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ---------- 标签/徽章 ---------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.badge-success {
  background: var(--status-success);
  color: #2D5A3D;
}

.badge-warning {
  background: var(--status-warning);
  color: #6B5A2D;
}

.badge-danger {
  background: var(--status-danger);
  color: #7A3D35;
}

.badge-info {
  background: var(--status-info);
  color: #3D5A6B;
}

/* ---------- 提示框 ---------- */
.alert {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 14px;
  border-left: 4px solid;
}

.alert-success {
  background: #F0F8F3;
  border-color: var(--status-success);
  color: #2D5A3D;
}

.alert-warning {
  background: #FBF7EC;
  border-color: var(--status-warning);
  color: #6B5A2D;
}

.alert-danger {
  background: #FBF0EE;
  border-color: var(--status-danger);
  color: #7A3D35;
}

.alert-info {
  background: #EEF4F7;
  border-color: var(--status-info);
  color: #3D5A6B;
}

/* ---------- 分页 ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-lg);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.pagination a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination .current {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
}

/* ---------- 空状态 ---------- */
.empty-state {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  color: var(--text-light);
}

.empty-state-icon {
  font-size: 64px;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  color: var(--text-light);
}

/* ---------- 响应式设计 - 平板 ---------- */
@media (max-width: 1024px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview-content {
    grid-template-columns: 1fr;
  }
}

/* ---------- 响应式设计 - 手机 ---------- */
@media (max-width: 768px) {
  :root {
    --space-xl: 36px;
    --space-2xl: 48px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  /* 导航栏移动端 */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    box-shadow: var(--shadow-card);
    border-bottom: 1px solid var(--border-light);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* 手机端显示登录按钮，但是更紧凑 */
  .header-actions {
    gap: 6px;
  }

  .header-actions .btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .header-actions .btn-small {
    padding: 5px 8px;
    font-size: 11px;
  }

  .logo-text {
    font-size: 16px;
  }

  .logo img {
    height: 36px;
  }

  /* Hero区域 */
  .hero-section {
    padding: var(--space-xl) 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  /* 快速信息 */
  .quick-info {
    margin-top: -20px;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    padding: 16px 12px;
  }

  .info-card h3 {
    font-size: 14px;
  }

  .info-card p {
    font-size: 12px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 8px;
  }

  /* 区块标题 */
  .section-title {
    font-size: 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  /* 作品展示 */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 价格卡片 - 手机端并列一排 */
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 8px;
  }

  .pricing-card {
    padding: 16px 10px;
  }

  .pricing-card .pricing-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .pricing-card h3 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .pricing-card .price {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .pricing-card p {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .pricing-card .pricing-features {
    display: none;
  }

  .pricing-card .btn {
    font-size: 11px;
    padding: 8px 10px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .pricing-card .badge {
    font-size: 9px;
    padding: 3px 8px;
    top: 8px;
    right: 8px;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }

  /* 页脚 */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* 按钮 */
  .btn-large {
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* ---------- 响应式设计 - 小手机 ---------- */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  /* 手机端显示语言切换，但是更紧凑 */
  .lang-switcher {
    display: flex;
    gap: 2px;
  }

  .lang-btn {
    padding: 4px 6px;
    font-size: 10px;
    min-width: 24px;
  }
}

/* ---------- 动画 ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ---------- 打印样式 ---------- */
@media print {
  .site-header,
  .site-footer,
  .no-print {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* ============================================
   后台管理端样式（店员端 / 管理员端）
   ============================================ */

.admin-body {
  background: var(--bg-main);
  overflow-x: hidden;
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* ---------- 侧边栏 ---------- */
.sidebar {
  width: 240px;
  background: var(--bg-card);
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  transition: all var(--transition-normal);
  box-shadow: 2px 0 20px rgba(180, 170, 160, 0.05);
}

.sidebar.collapsed {
  width: 70px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.sidebar-logo img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.sidebar-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  transition: opacity var(--transition-normal);
}

.sidebar.collapsed .sidebar-title,
.sidebar.collapsed .nav-text,
.sidebar.collapsed .sidebar-section,
.sidebar.collapsed .user-name {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

.sidebar-collapse-btn {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--bg-card);
  cursor: pointer;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-soft);
}

.sidebar-collapse-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.sidebar.collapsed .sidebar-collapse-btn {
  transform: translateY(-50%) rotate(180deg);
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 8px;
}

.sidebar-section {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 12px 6px;
  white-space: nowrap;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-item:hover {
  background: var(--bg-soft);
  color: var(--text-primary);
}

.nav-item.active {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-button);
}

.nav-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.nav-text {
  overflow: hidden;
  transition: opacity var(--transition-normal);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-soft);
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-purple) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
}

/* ---------- 主内容区 ---------- */
.admin-main {
  flex: 1;
  margin-left: 240px;
  min-height: 100vh;
  transition: margin-left var(--transition-normal);
}

.sidebar.collapsed ~ .admin-main {
  margin-left: 70px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(180, 170, 160, 0.04);
}

.admin-page-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.current-time {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.admin-content {
  padding: 24px;
}

/* ---------- 后台卡片 ---------- */
.admin-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.admin-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ---------- 统计卡片 ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.stat-card .stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.stat-card .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---------- 表格 ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th {
  background: var(--bg-soft);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 13px;
  border-bottom: 2px solid var(--border-color);
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
}

.data-table tr:hover td {
  background: var(--bg-soft);
}

.data-table .actions {
  display: flex;
  gap: 8px;
}

/* ---------- 计时卡片 ---------- */
.timer-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--border-light);
  margin-bottom: 16px;
  transition: all var(--transition-normal);
}

.timer-card.active {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #FFF9F7 0%, var(--bg-card) 100%);
}

.timer-card.warning {
  border-color: var(--status-warning);
  animation: pulse 2s ease-in-out infinite;
}

.timer-card.overtime {
  border-color: var(--status-danger);
  background: linear-gradient(180deg, #FFF5F3 0%, var(--bg-card) 100%);
}

.timer-display {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin: 16px 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}

.timer-card.warning .timer-display {
  color: #B8860B;
}

.timer-card.overtime .timer-display {
  color: var(--color-primary-dark);
}

.timer-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.timer-info-item {
  background: var(--bg-soft);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.timer-info-item .label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.timer-info-item .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.timer-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- 表单行 ---------- */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ---------- 移动端遮罩 ---------- */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

/* ---------- 后台移动端适配 ---------- */
@media (max-width: 1024px) {
  .form-row-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 260px;
  }

  .sidebar.mobile-open {
    transform: translateX(0);
  }

  .sidebar.collapsed {
    width: 260px;
  }

  .sidebar.collapsed .sidebar-title,
  .sidebar.collapsed .nav-text,
  .sidebar.collapsed .sidebar-section,
  .sidebar.collapsed .user-name {
    opacity: 1;
    width: auto;
  }

  .sidebar-collapse-btn {
    display: none;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .admin-main {
    margin-left: 0;
  }

  .sidebar.collapsed ~ .admin-main {
    margin-left: 0;
  }

  .admin-header {
    padding: 12px 16px;
  }

  .admin-page-title {
    font-size: 17px;
  }

  .admin-content {
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .timer-display {
    font-size: 32px;
  }

  .timer-info {
    grid-template-columns: 1fr;
  }

  .data-table {
    font-size: 12px;
  }

  .data-table th,
  .data-table td {
    padding: 8px 10px;
  }

  .admin-header .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .timer-actions .btn {
    width: 100%;
  }
}

/* ============================================
   首页新增元素样式
   ============================================ */

/* Hero徽章 */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(232, 165, 152, 0.2);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero统计数据 */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* 区块小标题 */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin-right: 8px;
  border-radius: 2px;
}

/* 项目介绍特性列表 */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--space-md);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-accent-green);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* 价格卡片图标和特性 */
.pricing-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto var(--space-sm);
}

.pricing-features {
  margin: var(--space-md) 0;
  text-align: left;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* 为什么选择我们 */
.why-us {
  background: var(--bg-card);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.why-us-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.why-us-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-light);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto var(--space-sm);
  box-shadow: var(--shadow-soft);
}

.why-us-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.why-us-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA按钮组 */
.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* 首页响应式 */
@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: var(--space-md);
  }

  .hero-stat-num {
    font-size: 24px;
  }

  .hero-stat-divider {
    display: none;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   价格页样式
   ============================================ */

/* 页面头部 */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-2xl) 0;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}

/* 大价格卡片 */
.pricing-cards-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pricing-card-large {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-large:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.pricing-card-large.featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #FFF9F7 0%, var(--bg-card) 100%);
  transform: scale(1.03);
}

.pricing-card-large.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-card-large .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-button);
}

.pricing-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FFF0EC 0%, #FFE8E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto var(--space-sm);
}

.pricing-card-large h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pricing-card-large .price {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.price-per-hour {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

/* 计费规则 */
.rules-section,
.group-discount-section,
.important-notes {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.rules-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.rules-icon {
  font-size: 24px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
}

.rule-card {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.rule-card:hover {
  background: var(--color-primary-light);
}

.rule-card.highlight {
  background: linear-gradient(135deg, #EDF7F0 0%, #E0F2E6 100%);
  border: 2px solid var(--color-accent-green);
}

.rule-time {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.rule-arrow {
  font-size: 18px;
  color: var(--color-primary);
  margin: 4px 0;
}

.rule-result {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* 团体优惠 */
.discount-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

.discount-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  border: 2px solid transparent;
}

.discount-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.discount-card.featured {
  background: linear-gradient(135deg, #FFF0EC 0%, #FFE8E0 100%);
  border-color: var(--color-primary);
}

.discount-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

.discount-people {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.discount-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.discount-rate {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.discount-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

.discount-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: var(--space-sm);
}

/* 配件卡片 */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.accessory-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.accessory-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-primary-light);
}

.accessory-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto var(--space-sm);
}

.accessory-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.accessory-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
}

/* 重要说明 */
.notes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-accent-green);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 价格页CTA */
.pricing-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.pricing-cta-content {
  position: relative;
  z-index: 1;
}

.pricing-cta h3 {
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.pricing-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
}

/* 价格页响应式 */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
  }

  /* 价格卡片手机端改成横着的细条条 */
  .pricing-cards-large {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-card-large {
    flex-direction: row;
    align-items: center;
    padding: 10px 12px;
    text-align: left;
    gap: 10px;
    min-height: 60px;
    overflow: hidden;
  }

  .pricing-card-large .pricing-card-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .pricing-card-large .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
    min-width: 0;
    overflow: hidden;
  }

  .pricing-card-large h3 {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pricing-card-large .price {
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 800;
    white-space: nowrap;
  }

  .pricing-card-large .price-per-hour {
    display: none;
  }

  .pricing-card-large .pricing-features {
    display: none;
  }

  .pricing-card-large .btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 32px;
    position: relative;
  }

  .pricing-card-large .btn::after {
    content: "→";
    font-size: 14px;
    font-weight: 700;
    position: absolute;
  }

  .pricing-card-large .badge {
    top: 2px;
    right: 6px;
    left: auto;
    transform: none;
    font-size: 8px;
    padding: 2px 6px;
  }

  .pricing-card-large.featured {
    transform: none;
  }

  .pricing-card-large.featured:hover {
    transform: translateY(-2px);
  }

  .discount-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .discount-card {
    padding: 12px 10px;
  }

  .discount-people {
    font-size: 24px;
  }

  .discount-label {
    font-size: 11px;
  }

  .discount-rate {
    font-size: 18px;
  }

  .discount-card p {
    font-size: 10px;
    margin-top: 4px;
  }

  .discount-badge {
    font-size: 9px;
    padding: 2px 6px;
    top: 4px;
    right: 4px;
  }

  .discount-badge-top {
    display: block;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -12px;
    margin-bottom: 8px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    box-sizing: border-box;
  }

  /* 配件手机端改成横着的细条条 */
  .accessories-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .accessory-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    text-align: left;
    gap: 12px;
    min-height: 50px;
  }

  .accessory-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .accessory-card h4 {
    flex: 1;
    font-size: 13px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .accessory-price {
    font-size: 16px;
    flex-shrink: 0;
  }

  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .rule-card {
    padding: 10px 8px;
    border-radius: var(--radius-sm);
  }

  .rule-time {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .rule-arrow {
    font-size: 12px;
    margin: 2px 0;
  }

  .rule-result {
    font-size: 11px;
    font-weight: 600;
  }

  .pricing-cta {
    padding: var(--space-lg);
  }

  .pricing-cta h3 {
    font-size: 22px;
  }
}

/* ============================================
   预约页样式
   ============================================ */

.booking-section {
  padding: var(--space-xl) 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

/* 日期选择器 */
.date-selector,
.time-slots,
.duration-selector {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.date-selector h3,
.time-slots h3,
.duration-selector h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.date-item {
  flex-shrink: 0;
  width: 64px;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--bg-soft);
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.date-item:hover {
  background: var(--color-primary-light);
}

.date-item.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-button);
}

.date-day {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.date-item.active .date-day {
  color: white;
}

.date-weekday {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 2px;
}

.date-item.active .date-weekday {
  color: rgba(255, 255, 255, 0.8);
}

/* 时段选择 */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.slot-item {
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.slot-item:hover:not(.disabled) {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
}

.slot-item.selected {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-button);
}

.slot-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slot-time {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.slot-item.selected .slot-time {
  color: white;
}

.slot-availability {
  font-size: 11px;
  color: var(--text-secondary);
}

.slot-item.selected .slot-availability {
  color: rgba(255, 255, 255, 0.8);
}

.slot-count {
  font-weight: 700;
  color: var(--color-primary);
}

.slot-item.selected .slot-count {
  color: white;
}

.slot-status {
  font-weight: 600;
}

.slot-status.past {
  color: var(--text-light);
}

.slot-status.full {
  color: var(--color-primary-dark);
}

.slot-progress {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.slot-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-green) 0%, var(--color-primary) 100%);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.slot-item.selected .slot-progress {
  background: rgba(255, 255, 255, 0.3);
}

.slot-item.selected .slot-progress-bar {
  background: white;
}

/* 时长选择 */
.duration-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.duration-option {
  position: relative;
  cursor: pointer;
}

.duration-option input {
  position: absolute;
  opacity: 0;
}

.duration-option span {
  display: block;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 2px solid transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.duration-option:hover span {
  background: var(--color-primary-light);
}

.duration-option input:checked + span {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-button);
}

/* 预约表单卡片 */
.booking-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
  position: sticky;
  top: 90px;
}

.booking-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  text-align: center;
}

/* 预约摘要 */
.booking-summary {
  background: linear-gradient(135deg, #FFF9F7 0%, #FFF5F0 100%);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-primary-light);
}

.booking-summary h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.booking-summary p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}

.booking-summary strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* 预约规则 */
.booking-rules {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.booking-rules h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-rules ul {
  list-style: none;
}

.booking-rules li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.booking-rules li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent-green);
  font-weight: 700;
}

.booking-rules a {
  color: var(--color-primary);
  font-weight: 600;
}

/* 预约状态查询 */
.booking-status-section {
  background: var(--bg-soft);
  padding: var(--space-xl) 0;
}

.status-check-form {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

/* 预约页响应式 */
@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-form-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .duration-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form-card {
    padding: var(--space-md);
  }
}

/* ============================================
   项目介绍页样式
   ============================================ */

.about-section {
  padding: var(--space-xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* 平板端2列 */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 手机端3列九宫格 */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .about-card {
    padding: 12px 8px;
    text-align: center;
  }

  .about-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin: 0 auto 8px;
  }

  .about-card h3 {
    font-size: 11px;
    margin-bottom: 4px;
    line-height: 1.3;
    font-weight: 600;
  }

  .about-desc {
    display: none;
  }

  .about-card-arrow {
    display: none;
  }
}

.about-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-light);
  text-decoration: none;
  color: inherit;
}

.about-card-link {
  cursor: pointer;
}

.about-card-link:hover .about-card-arrow {
  transform: translateX(4px);
  color: var(--color-primary);
}

.about-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 18px;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.about-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FFF0EC 0%, #FFE8E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.about-card:nth-child(2) .about-icon {
  background: linear-gradient(135deg, #EBF2F7 0%, #E0EBF2 100%);
}

.about-card:nth-child(3) .about-icon {
  background: linear-gradient(135deg, #EDF7F0 0%, #E0F2E6 100%);
}

.about-card:nth-child(4) .about-icon {
  background: linear-gradient(135deg, #FBF7EC 0%, #F5EDD8 100%);
}

.about-card:nth-child(5) .about-icon {
  background: linear-gradient(135deg, #FBF0EE 0%, #F5E0DC 100%);
}

.about-card:nth-child(6) .about-icon {
  background: linear-gradient(135deg, #F5F0FA 0%, #EDE5F5 100%);
}

.about-card:nth-child(7) .about-icon {
  background: linear-gradient(135deg, #FFF5EC 0%, #FFE8D8 100%);
}

.about-card:nth-child(8) .about-icon {
  background: linear-gradient(135deg, #ECF7F5 0%, #D8F2EE 100%);
}

.about-card:nth-child(9) .about-icon {
  background: linear-gradient(135deg, #F7F0EC 0%, #F2E5D8 100%);
}

.about-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.about-card .link {
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
}

/* ============================================
   联系页样式
   ============================================ */

.contact-section {
  padding: var(--space-xl) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-info-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-info-content a {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: var(--space-md);
}

.contact-map-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.contact-map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--bg-soft) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.contact-map-placeholder .map-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.contact-map-placeholder h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-map-placeholder p {
  font-size: 14px;
  margin-bottom: 16px;
}

/* 联系页响应式 */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-placeholder {
    height: 300px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   作品展示页样式
   ============================================ */

.gallery-section {
  padding: var(--space-xl) 0;
}

.gallery-filter {
  display: flex;
  gap: 10px;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.gallery-filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.gallery-full-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.gallery-full-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-full-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-full-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.gallery-overlay p {
  font-size: 12px;
  opacity: 0.9;
}

/* ============================================
   FAQ页样式
   ============================================ */

.faq-section {
  padding: var(--space-xl) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-item.open .faq-toggle {
  background: var(--color-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   会员登录/注册页样式
   ============================================ */

.auth-section {
  padding: var(--space-xl) 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  width: 100%;
}

.auth-logo {
  text-align: center;
  margin-bottom: var(--space-md);
}

.auth-logo img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  margin: 0 auto 12px;
}

.auth-logo h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.auth-logo p {
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-form .form-group {
  margin-bottom: var(--space-sm);
}

.auth-form .btn-block {
  margin-top: var(--space-md);
}

.auth-footer {
  text-align: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.auth-footer p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.auth-footer a {
  color: var(--color-primary);
  font-weight: 600;
}

.auth-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.auth-benefit {
  text-align: center;
}

.auth-benefit-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.auth-benefit p {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   详情页样式
   ============================================ */

.detail-section {
  padding: var(--space-xl) 0;
  background: var(--bg-soft);
  min-height: 60vh;
}

.detail-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.detail-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  object-fit: cover;
}

.detail-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-primary);
}

.detail-body p {
  margin-bottom: 16px;
}

.detail-body br {
  display: block;
  margin: 8px 0;
  content: "";
}

.detail-body strong {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.detail-body ul,
.detail-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.detail-body li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.detail-body h1,
.detail-body h2,
.detail-body h3 {
  margin: 24px 0 12px;
  color: var(--text-primary);
  font-weight: 700;
}

.detail-body h1 { font-size: 24px; }
.detail-body h2 { font-size: 20px; }
.detail-body h3 { font-size: 17px; }

.back-link {
  display: inline-block;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.back-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(-4px);
}

/* 详情页响应式 */
@media (max-width: 768px) {
  .detail-content {
    padding: var(--space-md);
    margin: 0 var(--space-sm);
    border-radius: var(--radius-lg);
  }

  .detail-body {
    font-size: 14px;
    line-height: 1.8;
  }

  .detail-body h1 { font-size: 20px; }
  .detail-body h2 { font-size: 18px; }
  .detail-body h3 { font-size: 16px; }
}

/* 登录页响应式 */
@media (max-width: 480px) {
  .auth-card {
    padding: var(--space-md);
    margin: 0 var(--space-sm);
  }

  .auth-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ============================================
   移动端导航增强样式
   ============================================ */

.mobile-lang-switcher,
.mobile-auth-section,
.mobile-staff-section {
  display: none;
}

@media (max-width: 768px) {
  /* 移动端菜单展开时显示这些区块 */
  .main-nav.open .mobile-lang-switcher,
  .main-nav.open .mobile-auth-section,
  .main-nav.open .mobile-staff-section {
    display: block;
    padding: 12px 20px;
    border-top: 1px solid var(--border-light);
  }

  .mobile-nav-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .mobile-lang-buttons {
    display: flex;
    gap: 8px;
  }

  .mobile-lang-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
  }

  .mobile-lang-btn:hover {
    background: var(--color-primary-light);
  }

  .mobile-lang-btn.active {
    background: var(--color-primary);
    color: white;
  }

  .mobile-auth-btn {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: all var(--transition-fast);
  }

  .mobile-auth-btn:hover {
    background: var(--color-primary-light);
  }

  .mobile-auth-btn:last-child {
    margin-bottom: 0;
  }

  .mobile-auth-btn-primary {
    background: var(--color-primary);
    color: white;
  }

  .mobile-auth-btn-primary:hover {
    background: var(--color-primary-dark);
  }
}

/* ============================================
   店员/管理员登录页样式（简洁版）
   ============================================ */

.staff-login-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-sm);
  background: linear-gradient(135deg, #FAF7F2 0%, #F5F0EB 100%);
}

.staff-login-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.staff-login-logo {
  text-align: center;
  margin-bottom: var(--space-md);
}

.staff-login-logo img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.staff-login-logo h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.staff-login-logo p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.staff-login-form .form-group {
  margin-bottom: var(--space-sm);
}

.staff-login-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.staff-login-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: all var(--transition-fast);
  background: var(--bg-soft);
}

.staff-login-form .form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.staff-login-form .btn-block {
  margin-top: var(--space-md);
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
}

.staff-login-footer {
  text-align: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.staff-login-footer p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.staff-login-footer a {
  color: var(--color-primary);
  font-weight: 600;
}

.staff-login-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.staff-login-tab {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.staff-login-tab:hover {
  background: var(--color-primary-light);
}

.staff-login-tab.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}


/* ========== 首页作品展示 - 横向滚动 ========== */
.gallery-horizontal {
  display: flex !important;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #E8A598 transparent;
}

.gallery-horizontal::-webkit-scrollbar {
  height: 6px;
}

.gallery-horizontal::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-horizontal::-webkit-scrollbar-thumb {
  background: #E8A598;
  border-radius: 3px;
}

.gallery-horizontal .gallery-item {
  flex: 0 0 280px !important;
  width: 280px !important;
  height: 280px !important;
  aspect-ratio: auto !important;
  scroll-snap-align: start;
}

/* 手机端横向滚动 */
@media (max-width: 768px) {
  .gallery-horizontal .gallery-item {
    flex: 0 0 200px !important;
    width: 200px !important;
    height: 200px !important;
  }
}

/* ========== 全部作品页 - 九宫格瀑布流 ========== */
.gallery-masonry {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px;
}

.gallery-masonry .gallery-item {
  aspect-ratio: 1 !important;
}

@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
}

/* ========== 图片灯箱效果 ========== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}


/* ========== 我们的优势 - 简洁版（只有图标+标题） ========== */
.why-us-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px;
}

.why-us-card {
  text-align: center;
  padding: 24px 16px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.why-us-icon {
  width: 64px !important;
  height: 64px !important;
  font-size: 28px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0 !important;
}

.why-us-card h3 {
  font-size: 15px !important;
  margin-bottom: 0 !important;
  text-align: center;
}

/* 手机端：我们的优势改成2列 */
@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  
  .why-us-card {
    padding: 16px 10px !important;
    gap: 8px;
  }
  
  .why-us-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
  }
  
  .why-us-card h3 {
    font-size: 13px !important;
  }
}


/* ========== 预约页面 - 手机端日期选择器优化 ========== */
@media (max-width: 768px) {
  .date-scroll {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 6px !important;
    overflow-x: visible !important;
    padding-bottom: 0 !important;
  }
  
  .date-item {
    width: auto !important;
    flex-shrink: 1 !important;
    padding: 8px 4px !important;
  }
  
  .date-day {
    font-size: 16px !important;
  }
  
  .date-weekday {
    font-size: 9px !important;
  }
  
  /* 预约时长手机端优化 */
  .duration-options {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  /* 时段选择手机端优化 */
  .slots-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}


/* ========== 登录页面 - 忘记密码提示 ========== */
.auth-forgot {
  text-align: center;
  margin: 15px 0;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

.auth-forgot p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-forgot a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.auth-forgot a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}


/* ========== 会员个人主页美化 ========== */
.member-dashboard {
  padding: 30px 0 60px;
}

/* 会员信息卡（渐变背景） */
.member-hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(232, 165, 152, 0.2);
}

.member-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #E8A598 0%, #F4C2A8 30%, #A8D8EA 70%, #B8E0D2 100%);
  z-index: 0;
}

.member-hero-content {
  position: relative;
  z-index: 1;
  padding: 36px 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.member-hero-main {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 600px;
}

.member-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.member-avatar-large {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 800;
  color: #E8A598;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border: 4px solid rgba(255,255,255,0.9);
}

.member-avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border: 4px solid rgba(255,255,255,0.9);
}

.member-level-badge-floating {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F39C12, #E67E22);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.member-level-badge-floating .level-icon {
  font-size: 10px;
}

.member-hero-info {
  flex: 1;
  min-width: 0;
}

.member-hero-info .member-name {
  margin: 0 0 8px 0;
  font-size: 26px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  line-height: 1.2;
}

.member-phone-display {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-icon {
  font-size: 14px;
}

.level-badge-large {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255,255,255,0.95);
  color: #E8A598;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 会员等级浮动徽章已移至头像下方 */

.member-hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hero-btn-primary {
  background: white;
  color: #E8A598;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-btn-outline {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.hero-btn-icon {
  font-size: 18px;
}

/* 会员等级进度条 */
.level-progress-section {
  position: relative;
  z-index: 1;
  padding: 0 30px 24px;
}

.level-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.level-current {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.level-next-text {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

.level-progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  overflow: hidden;
}

.level-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, white 0%, #FFF5E6 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* 统计数据卡片 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #F0EBE3;
  transition: all 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.stat-hours .stat-icon { background: linear-gradient(135deg, #FFE4E1, #FFD4CC); }
.stat-points .stat-icon { background: linear-gradient(135deg, #FFF4E0, #FFE8C2); }
.stat-coupons .stat-icon { background: linear-gradient(135deg, #E8F4F8, #D4ECF4); }
.stat-visits .stat-icon { background: linear-gradient(135deg, #E8F5E9, #D4EDDA); }

.stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #2D2D2D;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

/* 当前订单倒计时 */
.active-session-card {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFFAF0 100%);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  border: 2px solid #FFE0E0;
  box-shadow: 0 4px 16px rgba(255, 150, 150, 0.1);
}

.session-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.session-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #E87878;
  display: flex;
  align-items: center;
  gap: 10px;
}

.session-pulse {
  width: 10px;
  height: 10px;
  background: #E87878;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 120, 120, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(232, 120, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 120, 120, 0); }
}

.countdown-display {
  text-align: center;
  margin-bottom: 16px;
}

.countdown-time {
  font-size: 56px;
  font-weight: 900;
  color: #E87878;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-time.time-up {
  color: #FF4444;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.countdown-label {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
}

.session-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.session-info-item {
  background: white;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.session-info-label {
  display: block;
  font-size: 11px;
  color: #999;
  margin-bottom: 4px;
}

.session-info-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

/* 快捷功能大图标网格 */
.dashboard-section {
  margin-bottom: 24px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: #2D2D2D;
  margin: 0 0 16px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section-header .section-title {
  margin: 0;
}

.section-link {
  font-size: 13px;
  color: #E8A598;
  text-decoration: none;
  font-weight: 600;
}

.section-link:hover {
  text-decoration: underline;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-action-card {
  background: white;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #F0EBE3;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.quick-action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #E8A598;
}

.qa-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.qa-icon-booking { background: linear-gradient(135deg, #FFE4E1, #FFD4CC); }
.qa-icon-price { background: linear-gradient(135deg, #FFF4E0, #FFE8C2); }
.qa-icon-coupon { background: linear-gradient(135deg, #E8F4F8, #D4ECF4); }
.qa-icon-points { background: linear-gradient(135deg, #FFF0F5, #FFE0EC); }
.qa-icon-booking-list { background: linear-gradient(135deg, #F0E8FF, #E4D6FF); }
.qa-icon-history { background: linear-gradient(135deg, #E8F5E9, #D4EDDA); }

.qa-text {
  flex: 1;
  min-width: 0;
}

.qa-text h4 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 700;
  color: #2D2D2D;
}

.qa-text p {
  margin: 0;
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qa-arrow {
  font-size: 18px;
  color: #CCC;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.quick-action-card:hover .qa-arrow {
  transform: translateX(4px);
  color: #E8A598;
}

/* 最近预约列表 */
.recent-bookings-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-mini-card {
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  border: 1px solid #F0EBE3;
  border-left: 4px solid #E8A598;
}

.booking-mini-card.status-pending { border-left-color: #FFB74D; }
.booking-mini-card.status-confirmed { border-left-color: #81C784; }
.booking-mini-card.status-cancelled { border-left-color: #BDBDBD; }

.booking-mini-date {
  text-align: center;
  flex-shrink: 0;
  width: 50px;
}

.booking-mini-day {
  font-size: 22px;
  font-weight: 800;
  color: #2D2D2D;
  line-height: 1;
}

.booking-mini-month {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  margin-top: 2px;
}

.booking-mini-info {
  flex: 1;
}

.booking-mini-time {
  font-size: 16px;
  font-weight: 700;
  color: #2D2D2D;
}

.booking-mini-people {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.status-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.status-pending { background: #FFF3E0; color: #F57C00; }
.status-confirmed { background: #E8F5E9; color: #388E3C; }
.status-cancelled { background: #F5F5F5; color: #757575; }

/* 底部操作按钮 */
.dashboard-bottom-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.bottom-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.bottom-action-contact {
  background: linear-gradient(135deg, #E8F4F8, #D4ECF4);
  color: #0288D1;
  border: 1px solid #B3E5FC;
}

.bottom-action-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 136, 209, 0.15);
}

.bottom-action-logout {
  background: #FFF5F5;
  color: #E57373;
  border: 1px solid #FFCDD2;
}

.bottom-action-logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 115, 115, 0.15);
}

.bottom-action-icon {
  font-size: 20px;
}

/* 手机端响应式 */
@media (max-width: 768px) {
  .member-dashboard {
    padding: 16px 0 40px;
  }
  
  .member-hero-content {
    padding: 30px 20px 16px;
  }
  
  .member-hero-main {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .member-hero-info {
    text-align: center;
  }
  
  .member-hero-info .member-name {
    text-align: center;
    font-size: 22px;
  }
  
  .member-phone-display {
    justify-content: center;
  }
  
  .member-hero-actions {
    justify-content: center;
    width: 100%;
  }
  
  .hero-btn {
    flex: 1;
    justify-content: center;
  }
  
  .level-progress-section {
    padding: 0 20px 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .stat-card {
    padding: 14px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .stat-value {
    font-size: 22px;
  }
  
  .session-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .quick-actions-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
  .member-hero-actions {
    flex-direction: column;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .countdown-time {
    font-size: 44px;
  }
  
  .dashboard-bottom-actions {
    grid-template-columns: 1fr;
  }
}


/* ========== 会员等级福利页面 ========== */
.levels-section {
  padding: 40px 0 60px;
}

/* 当前等级卡片 */
.current-level-card {
  background: linear-gradient(135deg, #E8A598 0%, #F4C2A8 50%, #A8D8EA 100%);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(232, 165, 152, 0.2);
}

.current-level-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.current-level-label {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.current-level-badge {
  padding: 8px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.95);
  color: #E8A598;
  font-weight: 700;
  font-size: 16px;
}

.current-level-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.current-level-stat {
  text-align: center;
  background: rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

.current-level-stat .stat-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.current-level-stat .stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* 等级福利链接 */
.level-benefits-link {
  text-align: center;
  margin-top: 12px;
}

.level-benefits-link a {
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.level-benefits-link a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* 所有等级列表 */
.levels-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.level-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 2px solid #F0EBE3;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.level-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.level-card-current {
  border-color: #E8A598;
  background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F0 100%);
}

.level-card-passed {
  opacity: 0.7;
}

.level-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.level-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5F5F5, #E8E8E8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.level-card-current .level-number {
  background: linear-gradient(135deg, #E8A598, #F4C2A8);
}

.level-num {
  font-size: 24px;
  font-weight: 800;
  color: #999;
}

.level-card-current .level-num {
  color: white;
}

.level-info {
  flex: 1;
}

.level-name {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 700;
  color: #2D2D2D;
}

.level-hours {
  margin: 0;
  font-size: 13px;
  color: #999;
}

.level-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.level-tag-current {
  background: #E8A598;
  color: white;
}

.level-tag-passed {
  background: #E8F5E9;
  color: #388E3C;
}

/* 等级福利 */
.level-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #F0EBE3;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-icon {
  font-size: 18px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 14px;
  color: #555;
}

.benefit-text strong {
  color: #E8A598;
  font-weight: 700;
}

/* 积分说明卡片 */
.points-info-card {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF5D6 100%);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
  border: 2px solid #FFE8A3;
}

.points-info-card h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 700;
  color: #F57C00;
  text-align: center;
}

.points-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.points-info-item {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 20px;
}

.points-info-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.points-info-item h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: #2D2D2D;
}

.points-info-item p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* 返回按钮 */
.back-to-dashboard {
  text-align: center;
  margin-top: 30px;
}

/* 手机端响应式 */
@media (max-width: 768px) {
  .levels-section {
    padding: 20px 0 40px;
  }
  
  .current-level-card {
    padding: 20px;
  }
  
  .current-level-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .level-card {
    padding: 18px;
  }
  
  .level-number {
    width: 44px;
    height: 44px;
  }
  
  .level-num {
    font-size: 18px;
  }
  
  .level-name {
    font-size: 17px;
  }
  
  .points-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .points-info-card {
    padding: 20px;
  }
}


/* ===== 计时详情页面 V2 ===== */
.timer-detail-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.timer-header-card {
    background: linear-gradient(135deg, #E8A598 0%, #F5C6AA 100%);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.3);
}

.timer-customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #E8A598;
}

.customer-details h2 {
    margin: 0;
    color: white;
    font-size: 20px;
}

.customer-meta {
    margin: 4px 0 0 0;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.timer-status-badge {
    background: rgba(255,255,255,0.25);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.timer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.timer-left-col, .timer-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.countdown-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.countdown-card.warning {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.3);
}

.countdown-card.grace {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.countdown-card.danger {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    box-shadow: 0 8px 24px rgba(244, 67, 54, 0.3);
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.countdown-display {
    font-size: 64px;
    font-weight: bold;
    color: #333;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.countdown-label {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

.countdown-progress {
    margin-top: 20px;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #E8A598, #F5C6AA);
    border-radius: 4px;
    transition: width 1s linear;
}

.time-details-card, .extend-card, .accessory-card, .add-accessory-card, .summary-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.card-title {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #333;
}

.time-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.time-detail-item {
    background: #f8f8f8;
    padding: 12px;
    border-radius: 10px;
}

.detail-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.extend-buttons {
    display: flex;
    gap: 10px;
}

.extend-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #E8A598;
    background: white;
    color: #E8A598;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.extend-btn:hover {
    background: #E8A598;
    color: white;
}

.extend-hint {
    margin: 12px 0 0 0;
    font-size: 12px;
    color: #999;
    text-align: center;
}

.end-timer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
    color: white;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    transition: all 0.3s;
}

.end-timer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.5);
}

.end-icon {
    font-size: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.accessory-count {
    background: #E8A598;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.accessory-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.accessory-item {
    background: #f8f8f8;
    padding: 12px;
    border-radius: 10px;
}

.item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.item-price {
    font-size: 13px;
    color: #999;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #E8A598;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #D4958A;
}

.qty-value {
    font-size: 14px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.remove-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #FF6B6B;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.remove-btn:hover {
    background: #EE5A5A;
}

.item-subtotal {
    text-align: right;
    font-size: 13px;
    color: #E8A598;
    font-weight: 600;
    margin-top: 4px;
}

.empty-accessory {
    text-align: center;
    padding: 32px;
    color: #999;
}

.empty-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.accessory-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px dashed #eee;
    font-size: 16px;
}

.accessory-total strong {
    color: #E8A598;
    font-size: 20px;
}

.accessory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.accessory-btn {
    background: #f8f8f8;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 12px 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.accessory-btn:hover {
    border-color: #E8A598;
    background: #FFF5F3;
}

.acc-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.acc-price {
    display: block;
    font-size: 14px;
    color: #E8A598;
    font-weight: bold;
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 14px;
    color: #666;
}

.summary-value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.discount-row .summary-value {
    color: #4CAF50;
}

.total-row {
    padding-top: 16px;
    border-top: 2px dashed #eee;
}

.total-row .summary-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.total-row .summary-value {
    font-size: 24px;
    color: #E8A598;
}

.summary-hint {
    margin: 16px 0 0 0;
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* 响应式 */
@media (max-width: 768px) {
    .timer-detail-v2 {
        padding: 12px;
    }
    
    .timer-header-card {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .timer-customer-info {
        flex-direction: column;
    }
    
    .customer-meta {
        justify-content: center;
    }
    
    .timer-main-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-display {
        font-size: 48px;
    }
    
    .time-details-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .accessory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== 手机号输入框样式 ===== */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.phone-input-wrapper:focus-within {
    border-color: #E8A598;
}

.phone-prefix {
    background: #f5f5f5;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    border-right: 2px solid #e0e0e0;
    user-select: none;
}

.phone-input-wrapper input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 16px !important;
    font-size: 16px;
    outline: none;
}

.phone-input-wrapper input:focus {
    box-shadow: none;
}


/* ===== 店员端仪表盘 V2 ===== */
.dashboard-welcome {
    background: linear-gradient(135deg, #E8A598 0%, #F5C6AA 50%, #A8D8EA 100%);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.3);
}

.welcome-content h2 {
    margin: 0 0 8px 0;
    color: white;
    font-size: 22px;
}

.welcome-content p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.welcome-actions {
    display: flex;
    gap: 12px;
}

.btn-welcome-primary, .btn-welcome-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-welcome-primary {
    background: white;
    color: #E8A598;
}

.btn-welcome-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.btn-welcome-secondary {
    background: rgba(255,255,255,0.25);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-welcome-secondary:hover {
    background: rgba(255,255,255,0.35);
}

/* 统计卡片 */
.stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card-v2 {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.2s;
    border-left: 4px solid;
}

.stat-card-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-blue { border-left-color: #5B9BD5; }
.stat-orange { border-left-color: #ED7D31; }
.stat-green { border-left-color: #70AD47; }
.stat-purple { border-left-color: #9B59B6; }

.stat-icon-v2 {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #f5f5f5;
}

.stat-blue .stat-icon-v2 { background: #E8F1FB; }
.stat-orange .stat-icon-v2 { background: #FDF0E5; }
.stat-green .stat-icon-v2 { background: #EAF5E3; }
.stat-purple .stat-icon-v2 { background: #F3E8F8; }

.stat-value-v2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.stat-label-v2 {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

/* 仪表盘布局 */
.dashboard-layout-v2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.dashboard-panel-v2 {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.panel-header-v2 {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-title-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title-v2 h3 {
    margin: 0;
    font-size: 17px;
    color: #333;
}

.panel-icon {
    font-size: 20px;
}

.panel-badge {
    background: #E8A598;
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.panel-badge.warning {
    background: #ED7D31;
}

.btn-panel-primary, .btn-panel-secondary {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-panel-primary {
    background: #E8A598;
    color: white;
}

.btn-panel-primary:hover {
    background: #D4958A;
}

.btn-panel-secondary {
    color: #E8A598;
}

.btn-panel-secondary:hover {
    color: #D4958A;
}

.panel-body-v2 {
    padding: 16px;
}

/* 进行中计时卡片 */
.active-timer-card-v2 {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
    border: 1px solid #f0f0f0;
}

.active-timer-card-v2:hover {
    background: #F5F5F5;
    border-color: #E8A598;
}

.active-timer-card-v2:last-child {
    margin-bottom: 0;
}

.timer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.timer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.timer-details {
    flex: 1;
    min-width: 0;
}

.timer-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.timer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.timer-center {
    text-align: center;
    flex-shrink: 0;
}

.timer-countdown-v2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    font-family: 'Courier New', monospace;
    padding: 8px 16px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    min-width: 90px;
}

.timer-countdown-v2.warning {
    color: #ED7D31;
    border-color: #ED7D31;
    background: #FDF0E5;
}

.timer-countdown-v2.grace {
    color: #5B9BD5;
    border-color: #5B9BD5;
    background: #E8F1FB;
}

.timer-countdown-v2.danger {
    color: #E74C3C;
    border-color: #E74C3C;
    background: #FDEDEC;
    animation: pulse-danger 1s infinite;
}

@keyframes pulse-danger {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.timer-countdown-label {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.timer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.btn-timer-detail, .btn-timer-end {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-timer-detail {
    background: #E8A598;
    color: white;
}

.btn-timer-detail:hover {
    background: #D4958A;
}

.btn-arrow {
    font-size: 12px;
}

.btn-timer-end {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
}

.btn-timer-end:hover {
    background: #E74C3C;
    color: white;
    border-color: #E74C3C;
}

/* 预约卡片 */
.booking-card-v2 {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
    border: 1px solid #f0f0f0;
}

.booking-card-v2:hover {
    background: #F5F5F5;
    border-color: #ED7D31;
}

.booking-card-v2:last-child {
    margin-bottom: 0;
}

.booking-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.booking-date-box {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ED7D31, #F5A623);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.booking-day {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.booking-month {
    font-size: 10px;
    margin-top: 2px;
}

.booking-details {
    flex: 1;
    min-width: 0;
}

.booking-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.booking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.booking-note {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    background: #FFF8E1;
    padding: 4px 8px;
    border-radius: 4px;
}

.booking-actions-v2 {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.booking-actions-v2 form {
    margin: 0;
}

.btn-booking-confirm, .btn-booking-reject {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-booking-confirm {
    background: #70AD47;
    color: white;
}

.btn-booking-confirm:hover {
    background: #5E9A37;
}

.btn-booking-reject {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
}

.btn-booking-reject:hover {
    background: #E74C3C;
    color: white;
    border-color: #E74C3C;
}

/* 空状态 */
.empty-state-v2 {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon-v2 {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.empty-state-v2 h4 {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 16px;
}

.empty-state-v2 p {
    margin: 0 0 16px 0;
    color: #999;
    font-size: 13px;
}

.btn-empty-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #E8A598;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-empty-primary:hover {
    background: #D4958A;
}

/* 响应式 */
@media (max-width: 1024px) {
    .stats-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-layout-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-welcome {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .welcome-actions {
        width: 100%;
    }
    .btn-welcome-primary, .btn-welcome-secondary {
        flex: 1;
        justify-content: center;
    }
    .stats-grid-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-card-v2 {
        padding: 16px;
    }
    .stat-value-v2 {
        font-size: 22px;
    }
    .active-timer-card-v2, .booking-card-v2 {
        flex-direction: column;
        align-items: stretch;
    }
    .timer-right, .booking-actions-v2 {
        flex-direction: row;
        justify-content: center;
    }
    .btn-timer-detail, .btn-timer-end {
        flex: 1;
    }
}


/* ===== 预约管理页面 V3 ===== */
.booking-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.booking-stat-card {
    background: white;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid;
    transition: all 0.2s;
}

.booking-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.stat-pending { border-left-color: #ED7D31; }
.stat-confirmed { border-left-color: #70AD47; }
.stat-total { border-left-color: #5B9BD5; }
.stat-people { border-left-color: #9B59B6; }

.booking-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #f5f5f5;
}

.stat-pending .booking-stat-icon { background: #FDF0E5; }
.stat-confirmed .booking-stat-icon { background: #EAF5E3; }
.stat-total .booking-stat-icon { background: #E8F1FB; }
.stat-people .booking-stat-icon { background: #F3E8F8; }

.booking-stat-value {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.booking-stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.booking-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.booking-section-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.booking-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.booking-section-title h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.section-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.section-dot.pending { background: #ED7D31; }
.section-dot.confirmed { background: #70AD47; }

.section-badge {
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.section-badge.pending { background: #ED7D31; }
.section-badge.confirmed { background: #70AD47; }

.section-hint {
    margin: 0;
    font-size: 13px;
    color: #999;
}

.booking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-card-v3 {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.booking-card-v3:hover {
    background: #F5F5F5;
    border-color: #E8A598;
}

.booking-card-v3.pending {
    border-left: 4px solid #ED7D31;
}

.booking-card-v3.confirmed {
    border-left: 4px solid #70AD47;
}

.booking-card-left {
    display: flex;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.booking-date-card {
    width: 60px;
    height: 70px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ED7D31, #F5A623);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.booking-date-card.confirmed {
    background: linear-gradient(135deg, #70AD47, #8BC34A);
}

.booking-date-day {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}

.booking-date-month {
    font-size: 11px;
    margin-top: 2px;
}

.booking-date-weekday {
    font-size: 10px;
    margin-top: 2px;
    opacity: 0.9;
}

.booking-card-info {
    flex: 1;
    min-width: 0;
}

.booking-card-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.booking-card-name strong {
    font-size: 16px;
    color: #333;
}

.customer-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: bold;
}

.member-tag {
    background: #E8A598;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.status-tag {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.status-tag.confirmed {
    background: #EAF5E3;
    color: #70AD47;
}

.booking-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.meta-item {
    font-size: 13px;
    color: #666;
}

.booking-card-note {
    background: #FFF8E1;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: #795548;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.booking-card-time {
    font-size: 11px;
    color: #bbb;
}

.booking-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.booking-card-actions form {
    margin: 0;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-action.confirm {
    background: #70AD47;
    color: white;
}

.btn-action.confirm:hover {
    background: #5E9A37;
}

.btn-action.reject {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
}

.btn-action.reject:hover {
    background: #E74C3C;
    color: white;
    border-color: #E74C3C;
}

.btn-action.start-timer {
    background: #E8A598;
    color: white;
}

.btn-action.start-timer:hover {
    background: #D4958A;
}

.btn-action.cancel {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
}

.btn-action.cancel:hover {
    background: #E74C3C;
    color: white;
    border-color: #E74C3C;
}

.action-icon {
    font-size: 14px;
}

.empty-booking {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon-lg {
    font-size: 56px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.empty-booking h4 {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 16px;
}

.empty-booking p {
    margin: 0;
    color: #999;
    font-size: 13px;
}

/* ===== 新建计时页面 V2 ===== */
.new-timer-page {
    max-width: 900px;
    margin: 0 auto;
}

.new-timer-header {
    background: linear-gradient(135deg, #E8A598 0%, #F5C6AA 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(232, 165, 152, 0.3);
}

.header-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.header-content h2 {
    margin: 0 0 4px 0;
    color: white;
    font-size: 22px;
}

.header-content p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

.new-timer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.timer-form-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.section-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E8A598;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.section-title h3 {
    margin: 0;
    font-size: 17px;
    color: #333;
}

.form-group-v2 {
    margin-bottom: 18px;
}

.form-group-v2:last-child {
    margin-bottom: 0;
}

.form-label-v2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.label-icon {
    margin-right: 4px;
}

.label-hint {
    font-size: 11px;
    color: #999;
    font-weight: normal;
}

.form-input-v2, .form-select-v2 {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input-v2:focus, .form-select-v2:focus {
    outline: none;
    border-color: #E8A598;
}

.form-row-v2 {
    display: flex;
    gap: 16px;
}

.form-group-v2.half {
    flex: 1;
}

.duration-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.duration-card {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.duration-card:hover {
    border-color: #E8A598;
    background: #FFF5F3;
}

.duration-card.selected {
    border-color: #E8A598;
    background: #FFF5F3;
    box-shadow: 0 2px 8px rgba(232, 165, 152, 0.2);
}

.duration-hours {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.duration-price {
    font-size: 16px;
    font-weight: bold;
    color: #E8A598;
}

.duration-tag {
    position: absolute;
    top: -8px;
    right: -4px;
    background: #E8A598;
    color: white;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
}

.duration-card.all-day {
    background: linear-gradient(135deg, #FFF8E1, #FFECB3);
    border-color: #FFB300;
}

.duration-card.all-day.selected {
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.3);
}

.duration-card.all-day .duration-price {
    color: #FF8F00;
}

.fee-estimate-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 2px solid #E8A598;
}

.fee-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.fee-header h3 {
    margin: 0;
    font-size: 17px;
    color: #333;
}

.fee-icon {
    font-size: 20px;
}

.fee-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fee-label {
    font-size: 14px;
    color: #666;
}

.fee-value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.fee-row.discount .fee-label,
.fee-row.discount .fee-value {
    color: #70AD47;
}

.fee-row.total {
    padding-top: 12px;
    border-top: 2px dashed #eee;
}

.fee-row.total .fee-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.fee-row.total .fee-value {
    font-size: 24px;
    color: #E8A598;
}

.fee-hint {
    margin: 12px 0 0 0;
    font-size: 12px;
    color: #999;
    text-align: center;
}

.tips-card {
    background: #F0F7FF;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 24px;
    border-left: 4px solid #5B9BD5;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.tips-header h4 {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.tips-icon {
    font-size: 18px;
}

.tips-list {
    margin: 0;
    padding-left: 20px;
}

.tips-list li {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.submit-section {
    text-align: center;
}

.btn-start-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #E8A598 0%, #D4958A 100%);
    color: white;
    padding: 18px 60px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    box-shadow: 0 6px 20px rgba(232, 165, 152, 0.4);
}

.btn-start-timer:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 165, 152, 0.5);
}

.start-icon {
    font-size: 20px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .booking-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .new-timer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .booking-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .booking-stat-card {
        padding: 14px;
    }
    .booking-stat-value {
        font-size: 20px;
    }
    .booking-card-v3 {
        flex-direction: column;
        align-items: stretch;
    }
    .booking-card-actions {
        flex-direction: row;
    }
    .booking-card-actions .btn-action {
        flex: 1;
    }
    .duration-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row-v2 {
        flex-direction: column;
        gap: 0;
    }
    .btn-start-timer {
        width: 100%;
        padding: 16px;
    }
}


/* ===== 计时详情页面 V3 ===== */
.timer-detail-v3 {
    max-width: 1200px;
    margin: 0 auto;
}

/* 顶部顾客信息横幅 */
.timer-banner {
    background: linear-gradient(135deg, #E8A598 0%, #F5C6AA 50%, #A8D8EA 100%);
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.3);
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.customer-avatar-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #E8A598;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.customer-info-lg h2 {
    margin: 0 0 8px 0;
    color: white;
    font-size: 22px;
}

.customer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.customer-tag {
    background: rgba(255,255,255,0.25);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 4px;
}

.customer-tag.member {
    background: rgba(255,255,255,0.35);
}

.customer-tag.all-day {
    background: rgba(255, 193, 7, 0.4);
}

.tag-icon {
    font-size: 11px;
}

.status-pill {
    background: rgba(255,255,255,0.25);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.status-pill.warning {
    background: rgba(237, 125, 49, 0.5);
}

.status-pill.grace {
    background: rgba(91, 155, 213, 0.5);
}

.status-pill.danger {
    background: rgba(231, 76, 60, 0.5);
    animation: pulse-danger 1s infinite;
}

.status-dot-lg {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse-danger {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 内容网格 */
.timer-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.timer-left-section, .timer-right-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 倒计时大卡片 */
.countdown-hero {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.countdown-hero.warning {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.2);
}

.countdown-hero.grace {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.2);
}

.countdown-hero.danger {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    box-shadow: 0 8px 24px rgba(244, 67, 54, 0.2);
}

.countdown-ring {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.ring-svg {
    width: 100%;
    height: 100%;
}

.ring-progress {
    transition: stroke-dashoffset 1s linear, stroke 0.3s;
}

.countdown-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.countdown-time {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.countdown-sub {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

.countdown-info-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.countdown-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.info-icon {
    font-size: 16px;
}

.info-text strong {
    color: #333;
}

/* 信息卡片通用样式 */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.info-card-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
    flex: 1;
}

.info-card-icon {
    font-size: 20px;
}

.info-card-hint {
    font-size: 11px;
    color: #999;
    font-weight: normal;
}

/* 时间详情网格 */
.info-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.info-item-box {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.info-box-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.info-box-value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* 员工延后按钮 */
.extend-btn-row {
    display: flex;
    gap: 12px;
}

.extend-btn-v2 {
    flex: 1;
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.extend-btn-v2:hover {
    border-color: #E8A598;
    background: #FFF5F3;
}

.extend-btn-v2.primary {
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    border-color: #E8A598;
    color: white;
}

.extend-btn-v2.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.3);
}

.extend-num {
    font-size: 22px;
    font-weight: bold;
}

.extend-unit {
    font-size: 12px;
    opacity: 0.8;
}

/* 结束计时按钮 */
.end-timer-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    transition: all 0.3s;
}

.end-timer-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.5);
}

.end-icon-lg {
    font-size: 24px;
}

.end-arrow {
    font-size: 20px;
    opacity: 0.8;
}

/* 配件列表 V2 */
.accessory-badge {
    background: #E8A598;
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.accessory-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
}

.accessory-item-v2 {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.accessory-item-v2:hover {
    background: #f0f0f0;
}

.accessory-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.accessory-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.accessory-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accessory-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.accessory-item-price {
    font-size: 12px;
    color: #999;
}

.accessory-item-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border-radius: 8px;
    padding: 4px;
}

.qty-btn-v2 {
    width: 24px;
    height: 24px;
    border: none;
    background: #E8A598;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn-v2:hover {
    background: #D4958A;
}

.qty-num {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.accessory-item-subtotal {
    font-size: 14px;
    font-weight: 600;
    color: #E8A598;
    min-width: 50px;
    text-align: right;
}

.remove-btn-v2 {
    width: 24px;
    height: 24px;
    border: none;
    background: #f0f0f0;
    color: #999;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn-v2:hover {
    background: #E74C3C;
    color: white;
}

.empty-accessory-v2 {
    text-align: center;
    padding: 32px 20px;
}

.empty-accessory-v2 .empty-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
    opacity: 0.5;
}

.empty-accessory-v2 p {
    margin: 0;
    color: #999;
    font-size: 13px;
}

.accessory-total-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px dashed #eee;
    font-size: 15px;
}

.accessory-total-v2 strong {
    color: #E8A598;
    font-size: 20px;
}

/* 添加配件网格 */
.add-accessory-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.accessory-btn-v2 {
    background: #f8f8f8;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accessory-btn-v2:hover {
    border-color: #E8A598;
    background: #FFF5F3;
}

.acc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.acc-name-v2 {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.acc-price-v2 {
    font-size: 14px;
    font-weight: bold;
    color: #E8A598;
}

/* 费用卡片 */
.fee-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 2px solid #E8A598;
}

.fee-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.fee-card-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.fee-card-icon {
    font-size: 20px;
}

.fee-rows-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fee-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fee-label-v2 {
    font-size: 14px;
    color: #666;
}

.fee-value-v2 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.fee-row-v2.discount .fee-label-v2,
.fee-row-v2.discount .fee-value-v2 {
    color: #70AD47;
}

.discount-hint {
    font-size: 11px;
    color: #999;
    font-weight: normal;
    margin-left: 4px;
}

.fee-row-v2.total {
    padding-top: 14px;
    border-top: 2px dashed #eee;
}

.fee-row-v2.total .fee-label-v2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.fee-row-v2.total .fee-value-v2 {
    font-size: 26px;
    color: #E8A598;
}

.fee-hint-v2 {
    margin: 14px 0 0 0;
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* 响应式 */
@media (max-width: 1024px) {
    .timer-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timer-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .banner-left {
        flex-direction: column;
    }
    .customer-tags {
        justify-content: center;
    }
    .info-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .countdown-time {
        font-size: 36px;
    }
    .countdown-ring {
        width: 180px;
        height: 180px;
    }
    .add-accessory-grid-v2 {
        grid-template-columns: 1fr;
    }
    .accessory-item-v2 {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .accessory-item-right {
        justify-content: space-between;
    }
}


/* ===== 进行中计时页面 V3 ===== */
.active-timers-page {
    max-width: 1200px;
    margin: 0 auto;
}

.active-timers-header {
    background: linear-gradient(135deg, #E8A598 0%, #F5C6AA 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(232, 165, 152, 0.3);
}

.header-info h2 {
    margin: 0 0 6px 0;
    color: white;
    font-size: 22px;
}

.header-info p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.header-info p strong {
    font-size: 18px;
    color: white;
}

.btn-new-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #E8A598;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-new-timer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.btn-new-timer span:first-child {
    font-size: 20px;
    font-weight: bold;
}

/* 计时卡片网格 */
.active-timers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.active-timer-card-v3 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.active-timer-card-v3:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #E8A598;
}

/* 卡片顶部 */
.timer-card-top {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f5f5f5;
}

.timer-customer-info {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.customer-avatar-md {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.customer-details-md {
    flex: 1;
    min-width: 0;
}

.customer-details-md h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-meta-md {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: #999;
}

.meta-tag {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 11px;
}

.meta-tag.all-day {
    background: #FFF8E1;
    color: #FF8F00;
}

.timer-status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 16px;
    background: #E8F5E9;
    flex-shrink: 0;
    transition: all 0.3s;
}

.timer-status-indicator.warning {
    background: #FFF3E0;
}

.timer-status-indicator.grace {
    background: #E3F2FD;
}

.timer-status-indicator.danger {
    background: #FFEBEE;
    animation: pulse-danger 1s infinite;
}

.status-dot-md {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
}

.timer-status-indicator.warning .status-dot-md {
    background: #FF9800;
}

.timer-status-indicator.grace .status-dot-md {
    background: #2196F3;
}

.timer-status-indicator.danger .status-dot-md {
    background: #F44336;
}

.status-text-md {
    font-size: 12px;
    font-weight: 600;
    color: #4CAF50;
}

.timer-status-indicator.warning .status-text-md {
    color: #FF9800;
}

.timer-status-indicator.grace .status-text-md {
    color: #2196F3;
}

.timer-status-indicator.danger .status-text-md {
    color: #F44336;
}

/* 卡片中部：倒计时 */
.timer-card-countdown {
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
}

.countdown-display-md {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    display: inline-block;
    border: 2px solid #e0e0e0;
    min-width: 140px;
    transition: all 0.3s;
}

.countdown-display-md.warning {
    color: #FF9800;
    border-color: #FF9800;
    background: #FFF8E1;
}

.countdown-display-md.grace {
    color: #2196F3;
    border-color: #2196F3;
    background: #E3F2FD;
}

.countdown-display-md.danger {
    color: #F44336;
    border-color: #F44336;
    background: #FFEBEE;
    animation: pulse-danger 1s infinite;
}

.countdown-label-md {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* 卡片底部 */
.timer-card-bottom {
    padding: 16px 18px;
}

.timer-time-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.time-info-item {
    text-align: center;
}

.time-info-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.time-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.timer-card-actions {
    display: flex;
    gap: 10px;
}

.btn-card-detail {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #E8A598;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-card-detail:hover {
    background: #D4958A;
}

.btn-arrow-md {
    font-size: 12px;
}

.btn-card-end {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #666;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid #e0e0e0;
}

.btn-card-end:hover {
    background: #E74C3C;
    color: white;
    border-color: #E74C3C;
}

/* 空状态 */
.empty-timers {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
}

.empty-icon-xl {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-timers h3 {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 20px;
}

.empty-timers p {
    margin: 0 0 20px 0;
    color: #999;
    font-size: 14px;
}

.btn-empty-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-empty-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 165, 152, 0.4);
}

.btn-empty-new span:first-child {
    font-size: 22px;
    font-weight: bold;
}

/* 响应式 */
@media (max-width: 768px) {
    .active-timers-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .active-timers-grid {
        grid-template-columns: 1fr;
    }
    .countdown-display-md {
        font-size: 36px;
        min-width: 120px;
    }
}


/* ===== 结算页面 V3 ===== */
.checkout-page-v3 {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-header {
    background: linear-gradient(135deg, #E8A598 0%, #F5C6AA 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(232, 165, 152, 0.3);
}

.checkout-header-info h2 {
    margin: 0 0 6px 0;
    color: white;
    font-size: 22px;
}

.checkout-header-info p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.checkout-header-info p strong {
    color: white;
    font-size: 16px;
}

.status-badge {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.success {
    background: rgba(76, 175, 80, 0.3);
    color: white;
}

.status-badge.danger {
    background: rgba(244, 67, 54, 0.3);
    color: white;
    animation: pulse-danger 1s infinite;
}

.checkout-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.checkout-left, .checkout-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 计时信息网格 */
.checkout-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkout-info-item {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 12px;
}

.checkout-info-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.checkout-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.checkout-info-value.highlight {
    color: #E8A598;
    font-size: 16px;
}

/* 配件选择列表 */
.accessory-checkout-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.accessory-checkout-item {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.accessory-checkout-item:hover {
    background: #f0f0f0;
}

.accessory-checkout-item.selected {
    background: #FFF5F3;
    border-color: #E8A598;
}

.accessory-checkout-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

/* 圆形勾选框 */
.checkbox-circle {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-circle input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.checkmark-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: white;
    transition: all 0.2s;
}

.checkbox-circle input:checked ~ .checkmark-circle {
    background: #E8A598;
    border-color: #E8A598;
}

.checkmark-circle:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-circle input:checked ~ .checkmark-circle:after {
    display: block;
}

.accessory-checkout-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accessory-checkout-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.accessory-checkout-price {
    font-size: 12px;
    color: #999;
}

.accessory-checkout-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.checkout-qty {
    background: white;
}

.accessory-checkout-subtotal {
    font-size: 15px;
    font-weight: 600;
    color: #E8A598;
    min-width: 50px;
    text-align: right;
}

.accessory-checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px dashed #eee;
    font-size: 15px;
}

.accessory-checkout-total strong {
    color: #E8A598;
    font-size: 20px;
}

/* 超时豁免 */
.overtime-waiver-section {
    margin: 16px 0;
    padding: 12px;
    background: #FFF8E1;
    border-radius: 10px;
}

.waiver-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.waiver-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.waiver-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.input-field {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 8px;
}

.input-field:focus {
    outline: none;
    border-color: #E8A598;
}

/* 优惠券选择 */
.coupon-section {
    margin: 16px 0;
    padding: 16px;
    background: #F3E5F5;
    border-radius: 10px;
}

.coupon-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #7B1FA2;
}

.select-field {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    background: white;
    cursor: pointer;
}

.select-field:focus {
    outline: none;
    border-color: #E8A598;
}

.no-coupon-text {
    margin: 0;
    font-size: 13px;
    color: #999;
    text-align: center;
}

/* 支付方式 */
.payment-section {
    margin: 16px 0;
    padding: 16px;
    background: #E3F2FD;
    border-radius: 10px;
}

.payment-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #1565C0;
}

.payment-options {
    display: flex;
    gap: 12px;
}

.payment-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.payment-option:hover {
    border-color: #1565C0;
}

.payment-option input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
}

.payment-text {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

/* 结算按钮 */
.checkout-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    margin-top: 16px;
}

.checkout-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* 结算按钮组 */
.checkout-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.checkout-buttons .checkout-submit-btn {
    flex: 2;
    margin-top: 0;
}

.checkout-pend-btn {
    flex: 1;
    padding: 16px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.checkout-pend-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.checkout-icon {
    font-size: 22px;
}

/* 温馨提示 */
.checkout-tips {
    background: #FFF8E1;
    border-radius: 12px;
    padding: 16px;
    border-left: 4px solid #FFC107;
}

.checkout-tips p {
    margin: 0 0 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: #F57F17;
}

.checkout-tips ul {
    margin: 0;
    padding-left: 20px;
}

.checkout-tips li {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .checkout-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .checkout-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .checkout-info-grid {
        grid-template-columns: 1fr;
    }
    .payment-options {
        flex-direction: column;
    }
}


/* ===== 进行中计时页面 V4 ===== */
.active-timer-card-v4 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.active-timer-card-v4:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #E8A598;
}

/* 延后按钮区域 */
.timer-extend-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #F8F9FA;
    border-top: 1px solid #f0f0f0;
}

.extend-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    flex-shrink: 0;
}

.extend-btn-group {
    display: flex;
    gap: 6px;
    flex: 1;
}

.extend-btn-mini {
    flex: 1;
    padding: 8px 4px;
    background: white;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.extend-btn-mini:hover {
    border-color: #E8A598;
    color: #E8A598;
    background: #FFF5F3;
}

.extend-btn-mini.primary {
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    border-color: #E8A598;
    color: white;
}

.extend-btn-mini.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(232, 165, 152, 0.4);
}

/* 结算按钮 */
.timer-card-actions {
    padding: 14px 18px 18px;
}

.btn-card-settle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-card-settle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* 响应式 */
@media (max-width: 768px) {
    .timer-extend-section {
        flex-direction: column;
        align-items: stretch;
    }
    .extend-label {
        text-align: center;
    }
}


/* ===== 结算单页面 V3 ===== */
.receipt-page-v3 {
    max-width: 600px;
    margin: 0 auto;
}

.receipt-page-header {
    background: linear-gradient(135deg, #E8A598 0%, #F5C6AA 100%);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(232, 165, 152, 0.3);
}

.receipt-header-info h2 {
    margin: 0 0 4px 0;
    color: white;
    font-size: 20px;
}

.receipt-header-info p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

.receipt-header-actions {
    display: flex;
    gap: 8px;
}

.btn-receipt-print, .btn-receipt-new, .btn-receipt-dashboard {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-receipt-print {
    background: white;
    color: #E8A598;
}

.btn-receipt-print:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-receipt-new {
    background: rgba(255,255,255,0.2);
    color: white;
}

.btn-receipt-new:hover {
    background: rgba(255,255,255,0.3);
}

.btn-receipt-dashboard {
    background: rgba(255,255,255,0.2);
    color: white;
}

.btn-receipt-dashboard:hover {
    background: rgba(255,255,255,0.3);
}

/* 结算单卡片 */
.receipt-card-v3 {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

/* 店铺头部 */
.receipt-store-header {
    text-align: center;
    margin-bottom: 20px;
}

.receipt-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFF5F3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.receipt-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.receipt-store-name {
    margin: 0 0 4px 0;
    font-size: 28px;
    font-weight: bold;
    color: #E8A598;
    letter-spacing: 2px;
}

.receipt-store-subtitle {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #999;
}

.receipt-store-info {
    font-size: 11px;
    color: #999;
    line-height: 1.6;
}

.receipt-store-info p {
    margin: 0;
}

/* 分割线 */
.receipt-divider-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    color: #ddd;
    font-size: 12px;
}

.receipt-divider-v3::before,
.receipt-divider-v3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
}

.receipt-divider-v3 span {
    padding: 0 12px;
}

/* 区块 */
.receipt-section {
    margin-bottom: 10px;
}

.receipt-section-title {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

/* 信息网格 */
.receipt-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.receipt-info-item {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 10px 12px;
}

.receipt-info-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.receipt-info-value {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.receipt-info-value.highlight {
    color: #E8A598;
    font-size: 15px;
}

/* 费用明细列表 */
.receipt-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.receipt-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f8f8;
    border-radius: 8px;
}

.receipt-item-row.discount {
    background: #E8F5E9;
}

.receipt-item-row.discount .receipt-item-price {
    color: #4CAF50;
}

.receipt-item-row.overtime {
    background: #FFEBEE;
}

.receipt-item-row.overtime .receipt-item-price {
    color: #E74C3C;
}

.receipt-item-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.receipt-item-name {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.receipt-item-qty {
    font-size: 12px;
    color: #999;
    background: white;
    padding: 2px 8px;
    border-radius: 10px;
}

.receipt-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}

/* 应收合计 */
.receipt-total-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #FFF5F3 0%, #FFE8E0 100%);
    border-radius: 12px;
    border: 2px solid #E8A598;
    margin-bottom: 12px;
}

.receipt-total-label {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.receipt-total-value {
    font-size: 28px;
    font-weight: bold;
    color: #E8A598;
}

/* 支付方式 */
.receipt-payment-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    margin-bottom: 20px;
}

.receipt-payment-label {
    font-size: 13px;
    color: #999;
}

.receipt-payment-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* 底部 */
.receipt-footer-v3 {
    text-align: center;
    padding-top: 10px;
}

.receipt-thanks {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #E8A598;
}

.receipt-thanks-sub {
    margin: 0 0 16px 0;
    font-size: 12px;
    color: #999;
}

.receipt-footer-info {
    font-size: 11px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 16px;
}

.receipt-footer-info p {
    margin: 0;
}

/* 条形码 */
.receipt-barcode {
    margin-top: 16px;
}

.barcode-lines {
    display: flex;
    justify-content: center;
    gap: 2px;
    height: 40px;
    margin-bottom: 8px;
}

.barcode-lines span {
    width: 2px;
    background: #333;
}

.barcode-lines span:nth-child(odd) {
    width: 1px;
}

.barcode-lines span:nth-child(3n) {
    width: 3px;
}

.barcode-number {
    margin: 0;
    font-size: 12px;
    color: #999;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* 底部操作按钮 */
.receipt-bottom-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.btn-receipt-print-lg, .btn-receipt-new-lg, .btn-receipt-dashboard-lg {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-receipt-print-lg {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.btn-receipt-print-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn-receipt-new-lg {
    background: linear-gradient(135deg, #E8A598 0%, #F5C6AA 100%);
    color: white;
}

.btn-receipt-new-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4);
}

.btn-receipt-dashboard-lg {
    background: #f0f0f0;
    color: #666;
}

.btn-receipt-dashboard-lg:hover {
    background: #e0e0e0;
}

/* 响应式 */
@media (max-width: 768px) {
    .receipt-page-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .receipt-header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    .receipt-info-grid {
        grid-template-columns: 1fr;
    }
    .receipt-bottom-actions {
        flex-direction: column;
    }
    .receipt-card-v3 {
        padding: 20px;
    }
}


/* ===== 会员端消费历史 V3 ===== */
.history-section-v3 { padding: 40px 0; }
.history-list-v3 { display: flex; flex-direction: column; gap: 20px; max-width: 700px; margin: 0 auto; }
.history-card-v3 { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #f0f0f0; }
.history-card-v3:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.history-card-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: linear-gradient(135deg, #FFF5F3 0%, #FFE8E0 100%); border-bottom: 1px solid #f0f0f0; }
.history-date-info { display: flex; align-items: center; gap: 12px; }
.history-date-icon { width: 40px; height: 40px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.history-date-text { display: flex; flex-direction: column; gap: 2px; }
.history-date { font-size: 15px; font-weight: 600; color: #333; }
.history-time { font-size: 12px; color: #999; }
.history-amount-v3 { text-align: right; }
.amount-label { display: block; font-size: 11px; color: #999; margin-bottom: 2px; }
.amount-value { font-size: 22px; font-weight: bold; color: #E8A598; }
.history-card-body { padding: 16px 20px; }
.history-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
.history-info-item { display: flex; align-items: center; gap: 10px; }
.history-info-item .info-icon { width: 32px; height: 32px; border-radius: 8px; background: #f8f8f8; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.history-info-item .info-text { display: flex; flex-direction: column; gap: 2px; }
.history-info-item .info-label { font-size: 11px; color: #999; }
.history-info-item .info-value { font-size: 13px; font-weight: 600; color: #333; }
.history-info-item .info-value.highlight { color: #E8A598; }
.history-fee-summary { background: #f8f8f8; border-radius: 10px; padding: 12px; }
.history-fee-summary .fee-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: #666; }
.history-fee-summary .fee-row.discount { color: #4CAF50; }
.history-fee-summary .fee-row.overtime { color: #E74C3C; }
.history-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-top: 1px solid #f0f0f0; background: #fafafa; }
.order-number { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #999; }
.status-badge.completed { background: #E8F5E9; color: #4CAF50; padding: 3px 10px; border-radius: 10px; font-size: 11px; font-weight: 600; }
.btn-view-receipt { display: flex; align-items: center; gap: 6px; padding: 8px 16px; background: linear-gradient(135deg, #E8A598, #F5C6AA); color: white; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.btn-view-receipt:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4); }
.empty-state-v3 { text-align: center; padding: 60px 20px; background: white; border-radius: 16px; max-width: 500px; margin: 0 auto; }
.empty-state-v3 .empty-icon-xl { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }
.empty-state-v3 h3 { margin: 0 0 8px 0; color: #666; font-size: 20px; }
.empty-state-v3 p { margin: 0 0 20px 0; color: #999; font-size: 14px; }
.btn-empty-action { display: inline-flex; align-items: center; gap: 6px; padding: 12px 24px; background: linear-gradient(135deg, #E8A598, #F5C6AA); color: white; border-radius: 10px; text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.2s; }
.btn-empty-action:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232, 165, 152, 0.4); }

/* ===== 会员端结算单 ===== */
.receipt-member-section { padding: 40px 0; }
.receipt-member-card { max-width: 500px; margin: 0 auto; background: white; border-radius: 16px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid #f0f0f0; }
.receipt-member-actions { display: flex; gap: 12px; margin-top: 24px; justify-content: center; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-print-receipt, .btn-back-history { display: flex; align-items: center; gap: 6px; padding: 12px 24px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; }
.btn-print-receipt { background: linear-gradient(135deg, #4CAF50, #45a049); color: white; }
.btn-print-receipt:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4); }
.btn-back-history { background: #f0f0f0; color: #666; }
.btn-back-history:hover { background: #e0e0e0; }

@media (max-width: 768px) {
    .history-info-grid { grid-template-columns: 1fr; }
    .history-card-header { flex-direction: column; gap: 12px; text-align: center; }
    .history-amount-v3 { text-align: center; }
    .history-card-footer { flex-direction: column; gap: 12px; }
    .receipt-member-actions { flex-direction: column; }
    .receipt-member-card { padding: 20px; }
}


/* ===== 预约页面 V3 ===== */
.booking-section-v3 {
    padding: 40px 0;
    overflow-x: hidden;
}

.booking-section-v3 .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden;
}

/* 步骤指示器 */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.step-item.active .step-num {
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    color: white;
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4);
}

.step-item span {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.step-item.active span {
    color: #E8A598;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 12px;
    margin-bottom: 22px;
}

/* 布局 */
.booking-layout-v3 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: start;
    max-width: 100%;
    overflow-x: hidden;
}

.booking-left-v3, .booking-right-v3 {
    max-width: 100%;
    overflow-x: hidden;
    min-width: 0;
}

.booking-left-v3, .booking-right-v3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 卡片通用样式 */
.booking-card-v3 {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.booking-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f5f5f5;
}

.booking-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #FFF5F3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.booking-card-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    flex: 1;
}

.booking-card-hint {
    font-size: 12px;
    color: #999;
}

.booking-card-hint strong {
    color: #E8A598;
    font-size: 14px;
}

/* 日期选择 */
.date-scroll-v3 {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.date-scroll-v3::-webkit-scrollbar {
    height: 4px;
}

.date-scroll-v3::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.date-scroll-v3::-webkit-scrollbar {
    height: 4px;
}

.date-scroll-v3::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.date-item-v3 {
    flex-shrink: 0;
    width: 70px;
    padding: 12px 8px;
    border-radius: 12px;
    background: #f8f8f8;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.date-item-v3:hover {
    background: #FFF5F3;
    border-color: #E8A598;
}

.date-item-v3.active {
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    border-color: #E8A598;
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4);
}

.date-weekday-v3 {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.date-item-v3.active .date-weekday-v3 {
    color: rgba(255,255,255,0.8);
}

.date-day-v3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    margin-bottom: 4px;
}

.date-item-v3.active .date-day-v3 {
    color: white;
}

.date-month-v3 {
    font-size: 11px;
    color: #999;
}

.date-item-v3.active .date-month-v3 {
    color: rgba(255,255,255,0.8);
}

/* 时段选择 */
.slots-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 100%;
}

.slot-item-v3 {
    min-width: 0;
    word-break: break-word;
}

.slot-item-v3 {
    padding: 14px 10px;
    border-radius: 12px;
    background: #f8f8f8;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.slot-item-v3:hover:not(.disabled) {
    background: #FFF5F3;
    border-color: #E8A598;
}

.slot-item-v3.selected {
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    border-color: #E8A598;
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4);
}

.slot-item-v3.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slot-time-v3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.slot-item-v3.selected .slot-time-v3 {
    color: white;
}

.slot-availability-v3 {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}

.slot-booked {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.slot-item-v3.selected .slot-booked {
    color: white;
}

.slot-remaining-text {
    font-size: 10px;
    color: #999;
}

.slot-item-v3.selected .slot-remaining-text {
    color: rgba(255,255,255,0.8);
}

.slot-progress-v3 {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.slot-progress-bar-v3 {
    height: 100%;
    background: #E8A598;
    border-radius: 2px;
    transition: width 0.3s;
}

.slot-item-v3.selected .slot-progress-bar-v3 {
    background: white;
}

.slot-status-v3 {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
}

.slot-status-v3.past {
    background: #f0f0f0;
    color: #999;
}

.slot-status-v3.full {
    background: #FFEBEE;
    color: #E74C3C;
}

/* 预约时长 */
.duration-options-v3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 100%;
}

.duration-option-v3 {
    min-width: 0;
}

.duration-option-content {
    min-width: 0;
    word-break: break-word;
}

.duration-option-v3 {
    position: relative;
    cursor: pointer;
}

.duration-option-v3 input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.duration-option-content {
    padding: 16px 8px;
    border-radius: 12px;
    background: #f8f8f8;
    text-align: center;
    transition: all 0.2s;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.duration-option-v3 input:checked + .duration-option-content {
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    border-color: #E8A598;
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4);
}

.duration-option-v3:hover .duration-option-content {
    background: #FFF5F3;
    border-color: #E8A598;
}

.duration-num {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.duration-option-v3 input:checked + .duration-option-content .duration-num {
    color: white;
}

.duration-unit {
    font-size: 11px;
    color: #999;
}

.duration-option-v3 input:checked + .duration-option-content .duration-unit {
    color: rgba(255,255,255,0.8);
}

.duration-price {
    font-size: 13px;
    font-weight: 600;
    color: #E8A598;
}

.duration-option-v3 input:checked + .duration-option-content .duration-price {
    color: white;
}

.duration-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFC107;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    z-index: 2;
    white-space: nowrap;
}

/* 表单样式 */
.form-group-v3 {
    margin-bottom: 16px;
}

.form-label-v3 {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-input-v3, .form-select-v3, .form-textarea-v3 {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
    background: white;
    box-sizing: border-box;
}

.form-input-v3:focus, .form-select-v3:focus, .form-textarea-v3:focus {
    outline: none;
    border-color: #E8A598;
    box-shadow: 0 0 0 3px rgba(232, 165, 152, 0.1);
}

.form-textarea-v3 {
    resize: vertical;
    min-height: 80px;
}

/* 预约摘要 */
.booking-summary-v3 {
    background: linear-gradient(135deg, #FFF5F3 0%, #FFE8E0 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #FFD4C8;
    max-width: 100%;
    box-sizing: border-box;
}

.summary-header-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.summary-header-v3 h4 {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.summary-rows-v3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-row-v3 {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.summary-row-v3 strong {
    color: #333;
    font-weight: 600;
}

/* 提交按钮 */
.btn-submit-v3 {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-submit-v3:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 165, 152, 0.4);
}

.btn-submit-v3:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-arrow {
    font-size: 18px;
}

/* 预约规则 */
.booking-rules-v3 {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    border-left: 4px solid #E8A598;
    max-width: 100%;
    box-sizing: border-box;
}

.rules-header-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rules-header-v3 h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.rules-list-v3 {
    margin: 0;
    padding-left: 20px;
}

.rules-list-v3 li {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.rules-list-v3 li a {
    color: #E8A598;
    text-decoration: none;
    font-weight: 500;
}

.rules-list-v3 li a:hover {
    text-decoration: underline;
}

/* 预约状态查询 */
.booking-status-section-v3 {
    padding: 40px 0 60px;
}

.status-card-v3 {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    box-sizing: border-box;
}

.booking-status-section-v3 .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.status-header-v3 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.status-icon-v3 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.status-check-form-v3 {
    width: 100%;
}

.status-input-group {
    display: flex;
    gap: 10px;
}

.status-input-v3 {
    flex: 1;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
}

.status-input-v3:focus {
    outline: none;
    border-color: #E8A598;
    box-shadow: 0 0 0 3px rgba(232, 165, 152, 0.1);
}

.status-btn-v3 {
    padding: 14px 28px;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.status-btn-v3:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4);
}

/* 响应式 */
@media (max-width: 900px) {
    .booking-layout-v3 {
        grid-template-columns: 1fr;
    }
    
    .slots-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .duration-options-v3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .booking-section-v3 .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 600px) {
    .booking-steps {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .step-line {
        display: none;
    }
    
    .slots-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .duration-options-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .status-input-group {
        flex-direction: column;
    }
    
    .booking-card-v3 {
        padding: 16px;
    }
    
    .status-card-v3 {
        padding: 20px;
    }
    
    .date-item-v3 {
        width: 60px;
        padding: 10px 6px;
    }
    
    .date-day-v3 {
        font-size: 18px;
    }
    
    .slot-time-v3 {
        font-size: 16px;
    }
    
    .duration-num {
        font-size: 20px;
    }
    
    .booking-card-header h3 {
        font-size: 16px;
    }
    
    .booking-card-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .btn-submit-v3 {
        padding: 14px;
        font-size: 15px;
    }
    
    .status-header-v3 {
        flex-direction: column;
        text-align: center;
    }
    
    .status-icon-v3 {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}


/* ===== 优惠券页面 V3 ===== */
.coupons-section-v3 {
    padding: 32px 0 60px;
}

.coupons-section-v3 .container {
    max-width: 900px;
}

/* 统计卡片 */
.coupons-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.coupon-stat-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.coupon-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.coupon-stat-info {
    flex: 1;
    min-width: 0;
}

.coupon-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}

.coupon-stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* 分类标题 */
.coupons-category {
    margin-bottom: 36px;
}

.category-header {
    margin-bottom: 20px;
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px 0;
}

.category-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.category-count {
    background: #f5f5f5;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 10px;
}

.category-hint {
    font-size: 13px;
    color: #999;
    margin: 0;
    padding-left: 20px;
}

/* 优惠券网格 */
.coupons-grid-v3 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 优惠券卡片 - 票根样式 */
.coupon-card-v3 {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    position: relative;
}

.coupon-card-v3:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.coupon-card-v3.used {
    opacity: 0.7;
}

.coupon-card-v3.used:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* 左侧金额部分 */
.coupon-left {
    background: linear-gradient(135deg, #E8A598 0%, #F5C6AA 100%);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    color: white;
    position: relative;
}

.coupon-card-v3.used .coupon-left {
    background: linear-gradient(135deg, #B0B0B0 0%, #D0D0D0 100%);
}

.coupon-amount-v3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.coupon-currency {
    font-size: 20px;
    margin-left: 2px;
}

.coupon-type {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 中间虚线分隔 */
.coupon-divider {
    width: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: white;
}

.coupon-hole {
    width: 24px;
    height: 12px;
    background: #FAF7F2;
    border-radius: 0 0 12px 12px;
}

.coupon-hole.top {
    border-radius: 0 0 12px 12px;
    margin-top: -1px;
}

.coupon-hole.bottom {
    border-radius: 12px 12px 0 0;
    margin-bottom: -1px;
}

.coupon-dashes {
    flex: 1;
    border-left: 2px dashed #e0e0e0;
    margin: 4px 0;
}

/* 右侧信息部分 */
.coupon-right {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-width: 0;
}

.coupon-name-v3 {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.coupon-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.coupon-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.coupon-meta-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.coupon-code-v3 {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #E8A598;
    background: #FFF5F3;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 13px;
}

.coupon-actions {
    display: flex;
    gap: 10px;
}

.coupon-use-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.coupon-use-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4);
}

.coupon-used-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f0f0f0;
    color: #999;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 8px;
    text-transform: uppercase;
}

/* 空状态 */
.coupons-empty {
    background: white;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    border: 2px dashed #e0e0e0;
}

.coupons-empty.small {
    padding: 32px 24px;
}

.empty-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.coupons-empty h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 8px 0;
}

.coupons-empty p {
    font-size: 14px;
    color: #999;
    margin: 0 0 20px 0;
}

/* 使用说明 */
.coupons-tips {
    background: linear-gradient(135deg, #FFF9F7 0%, #FFF5F3 100%);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #FFE8E0;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tips-icon {
    font-size: 24px;
}

.tips-header h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.tips-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tip-step {
    display: flex;
    gap: 12px;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 14px;
    color: #333;
    margin: 0 0 4px 0;
}

.step-content p {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* 响应式 */
@media (max-width: 768px) {
    .coupons-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .coupon-stat-card {
        padding: 16px;
    }
    
    .coupon-card-v3 {
        flex-direction: column;
    }
    
    .coupon-left {
        flex-direction: row;
        padding: 16px 20px;
        min-width: auto;
        gap: 12px;
    }
    
    .coupon-amount-v3 {
        font-size: 28px;
    }
    
    .coupon-type {
        margin-top: 0;
    }
    
    .coupon-divider {
        width: 100%;
        height: 24px;
        flex-direction: row;
    }
    
    .coupon-hole {
        width: 12px;
        height: 24px;
    }
    
    .coupon-hole.top {
        border-radius: 0 12px 12px 0;
        margin-top: 0;
        margin-left: -1px;
    }
    
    .coupon-hole.bottom {
        border-radius: 12px 0 0 12px;
        margin-bottom: 0;
        margin-right: -1px;
    }
    
    .coupon-dashes {
        flex: 1;
        border-left: none;
        border-top: 2px dashed #e0e0e0;
        margin: 0 4px;
    }
    
    .coupon-right {
        padding: 16px 20px;
    }
    
    .coupon-name-v3 {
        font-size: 15px;
    }
    
    .tips-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .coupons-tips {
        padding: 20px;
    }
    
    .category-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .coupon-left {
        padding: 14px 16px;
    }
    
    .coupon-amount-v3 {
        font-size: 24px;
    }
    
    .coupon-right {
        padding: 14px 16px;
    }
    
    .coupon-meta-item {
        font-size: 12px;
    }
    
    .coupon-use-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}


/* ===== 优惠券二维码模态框 ===== */
.qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.qr-modal.active {
    display: flex;
}

.qr-modal-content {
    background: white;
    border-radius: 24px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: qrModalSlideIn 0.3s ease-out;
}

@keyframes qrModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.qr-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #999;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.qr-close-btn:hover {
    background: #E8A598;
    color: white;
    transform: rotate(90deg);
}

.qr-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.qr-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.qr-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.qr-amount {
    font-size: 32px;
    font-weight: 800;
    color: #E8A598;
    margin: 0;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.qr-code-wrapper {
    width: 220px;
    height: 220px;
    padding: 16px;
    background: white;
    border-radius: 16px;
    border: 3px solid #E8A598;
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 220px;
    height: 220px;
}

.qr-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top-color: #E8A598;
    border-radius: 50%;
    animation: qrSpin 1s linear infinite;
}

@keyframes qrSpin {
    to {
        transform: rotate(360deg);
    }
}

.qr-loading p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.qr-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.qr-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.qr-info-item:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.qr-info-label {
    font-size: 13px;
    color: #999;
}

.qr-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.qr-info-value.countdown {
    color: #E8A598;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.qr-tips {
    text-align: center;
    margin-bottom: 20px;
}

.qr-tips p {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

.qr-refresh-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #E8A598, #F5C6AA);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.qr-refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 165, 152, 0.4);
}

/* 优惠券按钮样式调整 */
.coupon-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qr-btn {
    background: linear-gradient(135deg, #B5C7D3, #D4E0E8) !important;
}

.qr-btn:hover {
    box-shadow: 0 4px 12px rgba(181, 199, 211, 0.4) !important;
}

/* 响应式 */
@media (max-width: 480px) {
    .qr-modal-content {
        padding: 24px 20px;
    }
    
    .qr-code-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .qr-loading {
        width: 180px;
        height: 180px;
    }
    
    .qr-amount {
        font-size: 28px;
    }
    
    .coupon-actions {
        flex-direction: column;
    }
    
    .coupon-use-btn {
        width: 100%;
    }
}


/* ===== 扫码功能样式 ===== */
.phone-input-wrapper.with-scan {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-divider {
    text-align: center;
    color: #999;
    font-size: 12px;
    position: relative;
}

.input-divider::before,
.input-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.input-divider::before {
    left: 0;
}

.input-divider::after {
    right: 0;
}

.phone-input-group {
    display: flex;
    align-items: center;
}

.member-info-display {
    margin-top: 10px;
}

.member-info-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f0faf0, #e8f5e8);
    border: 1px solid #c8e8c8;
    border-radius: 8px;
}

.member-info-icon {
    font-size: 18px;
}

.member-info-text {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

/* 扫码按钮在输入框旁边的样式 */
.scan-btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #B5C7D3, #D4E0E8);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.scan-btn-inline:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(181, 199, 211, 0.4);
}

.input-with-scan {
    display: flex;
    gap: 8px;
    align-items: center;
}

.input-with-scan input,
.input-with-scan select {
    flex: 1;
    min-width: 0;
}


/* ===== 积分兑换页面会员信息样式 ===== */
.scan-section {
    margin-bottom: 20px;
}

.scan-btn.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-bottom: 8px;
}

.member-info-display {
    margin-bottom: 20px;
}

.member-info-card {
    background: linear-gradient(135deg, #f0faf0 0%, #e8f5e8 100%);
    border: 1px solid #c8e8c8;
    border-radius: 12px;
    padding: 16px;
}

.member-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #c8e8c8;
}

.member-info-icon {
    font-size: 20px;
}

.member-info-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.member-info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.member-info-stat {
    text-align: center;
    background: white;
    padding: 10px 8px;
    border-radius: 8px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.stat-value.points {
    color: #E8A598;
    font-size: 18px;
}

.member-info-warning {
    background: #FFF3E0;
    color: #E65100;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* 响应式 */
@media (max-width: 480px) {
    .member-info-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .member-info-stat {
        padding: 8px 4px;
    }
    
    .stat-value {
        font-size: 14px;
    }
    
    .stat-value.points {
        font-size: 16px;
    }
}


/* ===== 更改套餐按钮样式 ===== */
.btn-card-change {
    flex: 1;
    padding: 10px 8px;
    background: linear-gradient(135deg, #B5C7D3 0%, #D4E0E8 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}

.btn-card-change:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(181, 199, 211, 0.4);
}

.timer-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

/* ===== 更改套餐模态框样式 ===== */
.change-package-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.change-package-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.change-package-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.change-package-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.change-package-modal-body {
    padding: 20px;
}

.change-package-customer-info {
    background: #f9f9f9;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.change-package-customer-info p {
    margin: 4px 0;
    font-size: 14px;
    color: #555;
}

.change-package-options h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #333;
}

.package-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.package-option {
    position: relative;
    padding: 14px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.package-option:hover {
    border-color: #E8A598;
    background: #FFF9F7;
}

.package-option.selected {
    border-color: #E8A598;
    background: linear-gradient(135deg, #FFF9F7 0%, #FFEDE8 100%);
    box-shadow: 0 2px 8px rgba(232, 165, 152, 0.3);
}

.package-hours {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.package-price {
    font-size: 16px;
    font-weight: 700;
    color: #E8A598;
}

.package-option.all-day {
    grid-column: span 3;
    background: linear-gradient(135deg, #FFF9F7 0%, #FFEDE8 100%);
    border-color: #E8A598;
}

.package-tag {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #E8A598;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.change-package-summary {
    background: #f9f9f9;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
}

.summary-item span:first-child {
    color: #666;
}

.summary-item span:last-child {
    font-weight: 700;
    color: #333;
}

.change-package-notice {
    background: #FFF8E1;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.change-package-notice p {
    margin: 4px 0;
    font-size: 12px;
    color: #E65100;
}

.change-package-modal-footer {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
}

.btn-cancel {
    flex: 1;
    padding: 12px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: #e8e8e8;
}

.btn-confirm {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4);
}

/* 响应式 */
@media (max-width: 480px) {
    .package-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-option.all-day {
        grid-column: span 2;
    }
}


/* ===== 智能升级提示样式 ===== */
.upgrade-suggestion-card {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border: 2px solid #FFB300;
    border-radius: 12px;
    padding: 14px;
    margin: 12px 0;
}

.upgrade-suggestion-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.upgrade-icon {
    font-size: 20px;
}

.upgrade-title {
    font-size: 14px;
    font-weight: 700;
    color: #E65100;
}

.upgrade-suggestion-body p {
    font-size: 13px;
    color: #5D4037;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.upgrade-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.upgrade-compare-item {
    text-align: center;
    padding: 6px 10px;
    border-radius: 6px;
}

.upgrade-compare-item.current {
    background: #FFEBEE;
}

.upgrade-compare-item.upgrade {
    background: #E8F5E9;
}

.compare-label {
    display: block;
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
}

.compare-price {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.upgrade-compare-item.current .compare-price {
    color: #C62828;
    text-decoration: line-through;
}

.upgrade-compare-item.upgrade .compare-price {
    color: #2E7D32;
}

.upgrade-arrow {
    font-size: 18px;
    color: #999;
    font-weight: 700;
}

.upgrade-savings {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.upgrade-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    background: white;
    border-radius: 8px;
    transition: all 0.2s;
}

.upgrade-checkbox-label:hover {
    background: #F5F5F5;
}

.upgrade-checkbox-label input[type='checkbox'] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #E8A598;
}

.upgrade-checkbox-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}


/* ===== 店员端积分兑换页面V2样式 ===== */
.points-redeem-page-v2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.redeem-page-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #FFF9F7 0%, #FFEDE8 100%);
    border-radius: 16px;
    border: 1px solid #FFD4C8;
}

.redeem-header-icon {
    font-size: 48px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.2);
}

.redeem-header-info h2 {
    margin: 0 0 4px 0;
    font-size: 22px;
    color: #333;
}

.redeem-header-info p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

.redeem-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 20px;
}

.redeem-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.redeem-step-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.step-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scan-btn-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: linear-gradient(135deg, #B5C7D3 0%, #D4E0E8 100%);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.scan-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 199, 211, 0.4);
}

.scan-icon {
    font-size: 40px;
}

.scan-text {
    font-size: 18px;
    font-weight: 700;
}

.scan-hint {
    font-size: 12px;
    opacity: 0.9;
}

.divider-with-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 12px;
}

.divider-with-text::before,
.divider-with-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.scan-btn-small {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #B5C7D3 0%, #D4E0E8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.scan-btn-small:hover {
    transform: scale(1.05);
}

/* 会员信息卡片V2 */
.member-info-card-v2 {
    background: linear-gradient(135deg, #f8faf8 0%, #eef5ee 100%);
    border: 1px solid #c8e8c8;
    border-radius: 16px;
    padding: 20px;
}

.member-info-header-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.member-avatar-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.member-info-text-v2 {
    flex: 1;
}

.member-info-text-v2 h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    color: #333;
}

.member-info-text-v2 p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

.member-level-badge-v2 {
    padding: 6px 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.member-stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.member-stat-item-v2 {
    background: white;
    padding: 14px 10px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-icon {
    font-size: 20px;
}

.stat-value-v2 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.points-stat .stat-value-v2 {
    color: #E8A598;
}

.stat-label-v2 {
    font-size: 12px;
    color: #999;
}

.member-info-warning-v2 {
    background: #FFF3E0;
    color: #E65100;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

/* 奖励快速选择 */
.reward-quick-picks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.reward-pick-btn {
    padding: 12px 8px;
    background: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.reward-pick-btn:hover {
    border-color: #E8A598;
    background: #FFF9F7;
}

.reward-pick-btn.selected {
    border-color: #E8A598;
    background: linear-gradient(135deg, #FFF9F7 0%, #FFEDE8 100%);
    color: #E8A598;
    font-weight: 600;
}

/* 右侧卡片 */
.redeem-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.redeem-confirm-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid #E8A598;
    position: sticky;
    top: 20px;
}

.confirm-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.confirm-icon {
    font-size: 24px;
}

.confirm-card-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.confirm-card-body {
    margin-bottom: 16px;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-label {
    font-size: 14px;
    color: #888;
}

.confirm-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.confirm-value.highlight {
    color: #E8A598;
    font-size: 16px;
}

.btn-confirm-redeem {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.btn-confirm-redeem:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.4);
}

.redeem-notice-v2 {
    background: #FFF8E1;
    padding: 12px;
    border-radius: 8px;
}

.redeem-notice-v2 p {
    margin: 4px 0;
    font-size: 12px;
    color: #E65100;
}

/* 奖池参考 */
.prize-pool-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.prize-pool-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.prize-icon {
    font-size: 22px;
}

.prize-pool-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.prize-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f9f9f9;
    border-radius: 8px;
}

.prize-icon-item {
    font-size: 18px;
}

.prize-name {
    font-size: 13px;
    color: #555;
}

.prize-hint {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    margin: 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .redeem-content-grid {
        grid-template-columns: 1fr;
    }
    
    .redeem-confirm-card {
        position: static;
    }
    
    .reward-quick-picks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .member-stats-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}


/* ===== 顾客端积分与礼包页面样式 ===== */
.member-points-page {
    padding: 20px 0 60px;
}

/* 积分余额大卡片 */
.points-balance-card {
    position: relative;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 50%, #F5C6B8 100%);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(232, 165, 152, 0.3);
}

.balance-card-content {
    position: relative;
    z-index: 2;
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.balance-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.balance-level-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.balance-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.balance-num {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.balance-unit {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.balance-redeemable {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.balance-redeemable strong {
    font-size: 18px;
    font-weight: 700;
}

.redeemable-icon {
    font-size: 20px;
}

.balance-actions {
    display: flex;
    gap: 12px;
}

.btn-show-qr {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: #E8A598;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-show-qr:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* 装饰圆圈 */
.balance-card-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.decor-circle.c1 {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -40px;
}

.decor-circle.c2 {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: 80px;
}

.decor-circle.c3 {
    width: 80px;
    height: 80px;
    top: 40px;
    right: 200px;
}

/* 通用区块标题 */
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

/* 积分规则 */
.points-rules-section {
    margin-bottom: 30px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.rule-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
    transition: all 0.3s;
}

.rule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.rule-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF9F7 0%, #FFEDE8 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.rule-content h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.rule-content p {
    margin: 0;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* 奖池展示 */
.prize-pool-section {
    margin-bottom: 30px;
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.prize-card {
    background: white;
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
    transition: all 0.3s;
}

.prize-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.2);
    border-color: #FFD4C8;
}

.prize-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.prize-card-name {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

/* 兑换流程 */
.redeem-process-section {
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.step-number-circle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: #333;
    font-weight: 700;
}

.step-content p {
    margin: 0;
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

.process-arrow {
    font-size: 24px;
    color: #ccc;
    font-weight: 700;
}

/* 积分记录时间线 */
.points-history-section {
    margin-bottom: 30px;
}

.history-timeline {
    margin-top: 20px;
    padding-left: 20px;
    border-left: 2px solid #f0f0f0;
}

.history-item {
    position: relative;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.history-dot {
    position: absolute;
    left: -28px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #f0f0f0;
}

.history-dot.positive {
    background: #4CAF50;
}

.history-dot.negative {
    background: #E8A598;
}

.history-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.history-reason {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.history-change {
    font-size: 16px;
    font-weight: 700;
}

.history-change.positive {
    color: #4CAF50;
}

.history-change.negative {
    color: #E8A598;
}

.history-date {
    font-size: 12px;
    color: #aaa;
}

.history-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.history-empty .empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.history-empty p {
    margin: 4px 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .points-balance-card {
        padding: 24px 20px;
    }
    
    .balance-num {
        font-size: 44px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .prize-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        max-width: 100%;
        width: 100%;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .prize-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .prize-card {
        padding: 18px 12px;
    }
    
    .prize-card-icon {
        font-size: 32px;
    }
    
    .balance-num {
        font-size: 36px;
    }
}


/* ===== 顾客端我的二维码页面样式 ===== */
.member-qrcode-page {
    padding: 20px 0 60px;
}

/* 页面标题 */
.qrcode-page-header {
    text-align: center;
    margin-bottom: 24px;
}

.qrcode-page-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    margin: 0 0 8px 0;
}

.qrcode-page-header p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* 二维码大卡片 */
.qrcode-main-card {
    position: relative;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 50%, #F5C6B8 100%);
    border-radius: 28px;
    padding: 28px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(232, 165, 152, 0.35);
}

.qrcode-card-content {
    position: relative;
    z-index: 2;
}

/* 会员信息头部 */
.qrcode-member-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.qrcode-avatar {
    width: 52px;
    height: 52px;
    background: white;
    color: #E8A598;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qrcode-member-info {
    flex: 1;
}

.qrcode-member-info h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    color: white;
    font-weight: 700;
}

.qrcode-member-info p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.qrcode-level-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* 二维码显示区 */
.qrcode-display-area {
    background: white;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.qrcode-frame {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto 16px;
}

.qrcode-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* 二维码四角装饰 */
.qrcode-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: #E8A598;
    border-style: solid;
}

.qrcode-corner.tl {
    top: -6px;
    left: -6px;
    border-width: 4px 0 0 4px;
    border-radius: 8px 0 0 0;
}

.qrcode-corner.tr {
    top: -6px;
    right: -6px;
    border-width: 4px 4px 0 0;
    border-radius: 0 8px 0 0;
}

.qrcode-corner.bl {
    bottom: -6px;
    left: -6px;
    border-width: 0 0 4px 4px;
    border-radius: 0 0 0 8px;
}

.qrcode-corner.br {
    bottom: -6px;
    right: -6px;
    border-width: 0 4px 4px 0;
    border-radius: 0 0 8px 0;
}

/* 扫描提示 */
.qrcode-scan-hint {
    text-align: center;
    position: relative;
    padding-top: 8px;
}

.scan-line {
    display: block;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E8A598, transparent);
    margin: 0 auto 10px;
    animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(4px); }
}

.qrcode-scan-hint p {
    margin: 0;
    font-size: 12px;
    color: #999;
}

/* 有效期 */
.qrcode-validity {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.validity-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.validity-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.validity-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.validity-time {
    font-size: 20px;
    font-weight: 800;
    color: white;
    font-family: monospace;
}

.validity-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.validity-progress-bar {
    height: 100%;
    background: white;
    border-radius: 3px;
    transition: width 1s linear;
    width: 100%;
}

/* 积分信息 */
.qrcode-points-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.points-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.points-icon {
    font-size: 18px;
}

.points-value {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.points-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.points-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.3);
}

/* 刷新按钮 */
.btn-refresh-qrcode {
    width: 100%;
    padding: 16px;
    background: white;
    color: #E8A598;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-refresh-qrcode:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.refresh-icon {
    font-size: 20px;
}

/* 装饰元素 */
.qrcode-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.decor-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.decor-dot.d1 {
    width: 12px;
    height: 12px;
    top: 60px;
    right: 40px;
}

.decor-dot.d2 {
    width: 8px;
    height: 8px;
    top: 100px;
    right: 80px;
}

.decor-dot.d3 {
    width: 6px;
    height: 6px;
    bottom: 120px;
    left: 30px;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.decor-circle.dc1 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -30px;
}

.decor-circle.dc2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
}

/* 使用场景 */
.qrcode-usage-section {
    margin-bottom: 30px;
}

.usage-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.usage-card {
    background: white;
    padding: 20px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
    transition: all 0.3s;
}

.usage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.15);
}

.usage-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.usage-card h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #333;
    font-weight: 700;
}

.usage-card p {
    margin: 0;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

/* 温馨提示 */
.qrcode-tips {
    display: flex;
    gap: 14px;
    background: #FFF9F7;
    border: 1px solid #FFD4C8;
    border-radius: 16px;
    padding: 20px;
}

.tip-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.tip-content p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #333;
}

.tip-content ul {
    margin: 0;
    padding-left: 20px;
}

.tip-content li {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
    line-height: 1.5;
}

.tip-content li:last-child {
    margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 480px) {
    .qrcode-main-card {
        padding: 20px;
    }
    
    .qrcode-frame {
        width: 200px;
        height: 200px;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .qrcode-page-header h2 {
        font-size: 22px;
    }
}


/* ===== 商家补偿券样式 ===== */
.merchant-compensation-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    border: 1px solid #A5D6A7;
}

.compensation-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.compensation-icon {
    font-size: 18px;
}

.compensation-section-header span:last-child {
    font-size: 14px;
    font-weight: 700;
    color: #2E7D32;
}

.compensation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.compensation-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.compensation-option:hover {
    border-color: #66BB6A;
}

.compensation-option input[type='radio'] {
    accent-color: #4CAF50;
}

.compensation-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.compensation-text {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.compensation-custom-input {
    margin-bottom: 10px;
}

.compensation-custom-input input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #A5D6A7;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

.compensation-custom-input input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.compensation-reason-input {
    margin-bottom: 10px;
}

.compensation-reason-input input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #A5D6A7;
    border-radius: 8px;
    font-size: 13px;
    background: white;
}

.compensation-reason-input input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.compensation-hint {
    font-size: 11px;
    color: #666;
    margin: 0;
    text-align: center;
}

/* 商家补偿券在费用明细中的显示 */
.fee-row-v2.compensation {
    background: #E8F5E9;
}

.fee-row-v2.compensation .fee-label-v2 {
    color: #2E7D32;
}

.fee-row-v2.compensation .fee-value-v2 {
    color: #2E7D32;
    font-weight: 700;
}


/* ===== 顾客端我的预约页面样式 ===== */
.member-bookings-page {
    padding: 20px 0 60px;
}

/* 页面标题 */
.bookings-page-header {
    text-align: center;
    margin-bottom: 24px;
}

.bookings-page-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    margin: 0 0 8px 0;
}

.bookings-page-header p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* 预约统计 */
.bookings-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
}

.stat-icon {
    font-size: 28px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #333;
}

.stat-label {
    font-size: 11px;
    color: #999;
}

.stat-card.upcoming { border-left: 4px solid #E8A598; }
.stat-card.completed { border-left: 4px solid #81C784; }
.stat-card.cancelled { border-left: 4px solid #BDBDBD; }

/* 立即预约按钮 */
.bookings-action-bar {
    margin-bottom: 20px;
}

.btn-new-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(232, 165, 152, 0.3);
}

.btn-new-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.4);
    color: white;
}

.btn-new-booking .btn-icon {
    font-size: 20px;
}

/* 预约列表 */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

/* 预约卡片V2 */
.booking-card-v2 {
    background: white;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    gap: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f5;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.booking-card-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.booking-card-v2.status-pending { border-left: 4px solid #FFB74D; }
.booking-card-v2.status-confirmed { border-left: 4px solid #81C784; }
.booking-card-v2.status-cancelled { border-left: 4px solid #BDBDBD; opacity: 0.7; }
.booking-card-v2.status-completed { border-left: 4px solid #64B5F6; }

/* 左侧日期时间 */
.booking-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 70px;
}

.booking-date-v2 {
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 100%);
    color: white;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.date-day {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.booking-time-v2 {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #FFF5F2;
    padding: 6px 10px;
    border-radius: 10px;
}

.time-icon {
    font-size: 14px;
}

.time-text {
    font-size: 13px;
    font-weight: 700;
    color: #E8A598;
}

/* 中间详情 */
.booking-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.status-badge-v2 {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge-v2.status-pending { background: #FFF3E0; color: #F57C00; }
.status-badge-v2.status-confirmed { background: #E8F5E9; color: #388E3C; }
.status-badge-v2.status-cancelled { background: #F5F5F5; color: #757575; }
.status-badge-v2.status-completed { background: #E3F2FD; color: #1976D2; }

.booking-countdown {
    font-size: 12px;
    color: #E8A598;
    font-weight: 600;
    background: #FFF5F2;
    padding: 4px 10px;
    border-radius: 10px;
}

.booking-details-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-item.note {
    flex: 1;
    min-width: 100%;
}

.detail-icon {
    font-size: 14px;
}

.detail-text {
    font-size: 13px;
    color: #666;
}

.detail-item.note .detail-text {
    color: #999;
    font-style: italic;
}

/* 预约警告 */
.booking-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #FFF8E1;
    border-radius: 10px;
    padding: 10px 12px;
}

.warning-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.warning-text {
    font-size: 12px;
    color: #F57C00;
    line-height: 1.4;
}

/* 右侧操作 */
.booking-right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}

.btn-cancel-booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: #FFEBEE;
    color: #E53935;
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel-booking:hover {
    background: #FFCDD2;
    transform: scale(1.05);
}

.btn-cancel-booking .btn-icon {
    font-size: 18px;
}

.btn-contact-cancel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: #E3F2FD;
    color: #1976D2;
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-contact-cancel:hover {
    background: #BBDEFB;
    transform: scale(1.05);
    color: #1976D2;
}

.btn-contact-cancel .btn-icon {
    font-size: 18px;
}

.booking-completed-tag,
.booking-cancelled-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.booking-completed-tag {
    background: #E8F5E9;
    color: #388E3C;
}

.booking-cancelled-tag {
    background: #F5F5F5;
    color: #757575;
}

.tag-icon {
    font-size: 18px;
}

/* 空状态 */
.bookings-empty-state {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.bookings-empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.bookings-empty-state p {
    font-size: 14px;
    color: #999;
    margin: 0 0 24px 0;
}

.btn-book-now-empty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(232, 165, 152, 0.3);
}

.btn-book-now-empty:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.4);
    color: white;
}

/* 预约规则卡片 */
.bookings-rules-card {
    background: linear-gradient(135deg, #FFF9F7 0%, #FFF5F2 100%);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #FFD4C8;
}

.rules-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.rules-icon {
    font-size: 22px;
}

.rules-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.rules-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rule-dot {
    width: 8px;
    height: 8px;
    background: #E8A598;
    border-radius: 50%;
    flex-shrink: 0;
}

.rule-item span:last-child {
    font-size: 13px;
    color: #666;
}

/* 响应式 */
@media (max-width: 480px) {
    .booking-card-v2 {
        flex-direction: column;
        gap: 12px;
    }
    
    .booking-left {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    
    .booking-right {
        width: 100%;
    }
    
    .btn-cancel-booking,
    .btn-contact-cancel {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    
    .bookings-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        justify-content: center;
    }
}


/* ===== 顾客端个人资料页面样式 ===== */
.member-profile-page {
    padding: 20px 0 60px;
}

/* 个人资料大卡片 */
.profile-hero-card {
    position: relative;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 50%, #F5C6B8 100%);
    border-radius: 24px;
    padding: 30px 24px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(232, 165, 152, 0.35);
}

.profile-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* 头像区域 */
.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.profile-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.profile-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    color: #E8A598;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.profile-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.profile-avatar-edit:hover {
    transform: scale(1.1);
    background: #FFF5F2;
}

.edit-icon {
    font-size: 14px;
}

.avatar-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* 会员信息 */
.profile-info-section {
    text-align: center;
}

.profile-name {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 0 0 6px 0;
}

.profile-phone {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 10px 0;
}

.profile-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* 统计数据 */
.profile-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px 24px;
    backdrop-filter: blur(10px);
    width: 100%;
}

.profile-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.profile-stats .stat-value {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.profile-stats .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.profile-stats .stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.3);
}

/* 装饰元素 */
.profile-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.profile-decor .decor-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.profile-decor .decor-dot.d1 {
    width: 12px;
    height: 12px;
    top: 30px;
    right: 40px;
}

.profile-decor .decor-dot.d2 {
    width: 8px;
    height: 8px;
    top: 60px;
    right: 80px;
}

.profile-decor .decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-decor .decor-circle.dc1 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -30px;
}

/* 快捷入口 */
.profile-quick-links {
    background: white;
    border-radius: 18px;
    padding: 8px 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 8px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.quick-link-item:last-child {
    border-bottom: none;
}

.quick-link-item:hover {
    background: #FFF9F7;
    color: #E8A598;
}

.quick-icon {
    font-size: 22px;
    width: 36px;
    height: 36px;
    background: #FFF5F2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
}

.quick-arrow {
    font-size: 20px;
    color: #ccc;
    font-weight: 300;
}

/* 个人信息编辑卡片 */
.profile-edit-card {
    background: white;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f5f5f5;
}

.card-icon {
    font-size: 22px;
}

.card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* 表单样式V2 */
.form-group-v2 {
    margin-bottom: 18px;
}

.form-label-v2 {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-input-v2 {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-input-v2:focus {
    outline: none;
    border-color: #E8A598;
    box-shadow: 0 0 0 3px rgba(232, 165, 152, 0.1);
}

.form-input-disabled {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f8f8f8;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    color: #888;
}

.disabled-icon {
    font-size: 16px;
}

.form-hint {
    font-size: 12px;
    color: #999;
    margin: 6px 0 0 0;
}

.form-hint.warning {
    color: #E8A598;
    font-weight: 600;
}

/* 保存按钮 */
.btn-save-profile {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(232, 165, 152, 0.3);
}

.btn-save-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.4);
}

/* 修改密码按钮 */
.btn-change-password {
    width: 100%;
    padding: 14px;
    background: white;
    color: #E8A598;
    border: 2px solid #E8A598;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-change-password:hover {
    background: #FFF5F2;
}

/* 退出登录 */
.profile-logout-section {
    margin-top: 10px;
}

.btn-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #FFEBEE;
    color: #E53935;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-logout:hover {
    background: #FFCDD2;
    color: #E53935;
}

/* 响应式 */
@media (max-width: 480px) {
    .profile-hero-card {
        padding: 24px 16px;
    }
    
    .profile-stats {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .profile-stats .stat-value {
        font-size: 18px;
    }
}


/* ===== 新版页脚样式 ===== */
.site-footer-v2 {
    background: linear-gradient(180deg, #FFF9F7 0%, #FFF5F2 100%);
    border-top: 3px solid #E8A598;
    position: relative;
    margin-top: 60px;
    padding-top: 0;
}

/* 顶部渐变装饰条 */
.footer-top-gradient {
    height: 6px;
    background: linear-gradient(90deg, #E8A598 0%, #F0B8A8 25%, #F5C6B8 50%, #F0B8A8 75%, #E8A598 100%);
}

/* 页脚内容区 */
.footer-content-v2 {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
    gap: 30px;
    padding: 40px 0 30px;
}

/* 列标题 */
.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #E8A598, #F0B8A8);
    border-radius: 50%;
    flex-shrink: 0;
}

/* 第一列：品牌信息 */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-v2 {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.3);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin: 0;
    background: linear-gradient(135deg, #E8A598, #D48577);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-tagline {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.footer-brand-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 社交媒体图标 */
.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.social-icon.vk {
    background: linear-gradient(135deg, #4A76A8, #5B8BB8);
    color: white;
}

.social-icon.tg {
    background: linear-gradient(135deg, #2AABEE, #5BC0F8);
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* 第二列：快速链接 */
.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list li a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links-list li a::before {
    content: '›';
    color: #E8A598;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-links-list li a:hover {
    color: #E8A598;
    padding-left: 4px;
}

.footer-links-list li a:hover::before {
    opacity: 1;
}

/* 第三列：联系方式 */
.footer-contact-col {
    display: flex;
    flex-direction: column;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-icon {
    font-size: 18px;
    width: 32px;
    height: 32px;
    background: #FFF5F2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
}

.contact-value {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* 第四列：联系客服 */
.footer-service-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-service-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 4px 0;
}

.footer-service-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-service-btn.telegram {
    background: linear-gradient(135deg, #2AABEE, #5BC0F8);
    color: white;
}

.footer-service-btn.vk {
    background: white;
    color: #4A76A8;
    border: 2px solid #4A76A8;
}

.footer-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.footer-service-btn .btn-icon {
    font-size: 18px;
}

/* 员工/管理员登录链接 */
.footer-staff-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px dashed #e0e0e0;
}

.staff-link {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.staff-link:hover {
    color: #E8A598;
}

.link-divider {
    font-size: 12px;
    color: #ccc;
}

/* 底部分隔线 */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 10px 0 20px;
}

/* 底部版权信息 */
.footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.footer-legal p {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

/* 响应式 */
@media (max-width: 1024px) {
    .footer-content-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-content-v2 {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0 20px;
    }
    
    .footer-bottom-v2 {
        flex-direction: column;
        text-align: center;
    }
}


/* ===== FAQ页面样式 ===== */
.faq-page-header {
    background: linear-gradient(135deg, #FFF5F2 0%, #FFEDE8 50%, #FFF5F2 100%);
    padding: 50px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 165, 152, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-page-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(232, 165, 152, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-header-content {
    position: relative;
    z-index: 1;
}

.faq-header-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.faq-header-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #E8A598, #D48577);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header-subtitle {
    font-size: 16px;
    color: #888;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ列表区 */
.faq-list-section {
    padding: 40px 0 30px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ卡片 */
.faq-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.faq-card:hover {
    box-shadow: 0 6px 20px rgba(232, 165, 152, 0.15);
    transform: translateY(-2px);
}

.faq-card.active {
    border-color: #E8A598;
    box-shadow: 0 8px 24px rgba(232, 165, 152, 0.2);
}

/* FAQ问题 */
.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.faq-question-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-number {
    font-size: 20px;
    font-weight: 800;
    color: #E8A598;
    background: #FFF5F2;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* 切换图标 */
.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFF5F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s;
}

.faq-card.active .faq-toggle-icon {
    background: linear-gradient(135deg, #E8A598, #F0B8A8);
}

.toggle-plus, .toggle-minus {
    position: absolute;
    font-size: 20px;
    font-weight: 700;
    color: #E8A598;
    transition: all 0.3s;
}

.faq-card.active .toggle-plus,
.faq-card.active .toggle-minus {
    color: white;
}

.toggle-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.toggle-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-card.active .toggle-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-card.active .toggle-minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* FAQ答案 */
.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-card.active .faq-answer-wrapper {
    max-height: 1500px;
}

.faq-answer {
    padding: 0 24px 24px 80px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-height: none !important;
    overflow: visible !important;
}

/* 空状态 */
.faq-empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.faq-empty p {
    font-size: 16px;
    color: #999;
    margin: 0;
}

/* 联系客服区 */
.faq-contact-section {
    padding: 30px 0 60px;
}

.faq-contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF5F2 0%, #FFEDE8 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px dashed #E8A598;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.faq-contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.faq-contact-card p {
    font-size: 15px;
    color: #666;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-btn.telegram {
    background: linear-gradient(135deg, #2AABEE, #5BC0F8);
    color: white;
}

.contact-btn.vk {
    background: white;
    color: #4A76A8;
    border: 2px solid #4A76A8;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contact-btn .btn-icon {
    font-size: 18px;
}

/* 响应式 */
@media (max-width: 600px) {
    .faq-header-title {
        font-size: 28px;
    }
    
    .faq-header-subtitle {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 18px 20px 18px;
        font-size: 14px;
    }
    
    .faq-contact-card {
        padding: 30px 20px;
    }
    
    .faq-contact-card h3 {
        font-size: 18px;
    }
}


/* ===== 新版手机端侧边栏样式 ===== */

/* 遮罩层 */
.main-nav.open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 侧边栏整体 */
.main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #FAF7F2;
    z-index: 999;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.main-nav.open {
    right: 0;
}

/* 侧边栏头部 */
.mobile-nav-header {
    background: linear-gradient(135deg, #E8A598 0%, #F0B8A8 50%, #F5C6B8 100%);
    padding: 20px 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.mobile-nav-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -10px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.mobile-nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
}

.mobile-nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-nav-brand-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* 关闭按钮 */
.mobile-nav-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.mobile-nav-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 2px;
}

.mobile-nav-close span:first-child {
    transform: rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: rotate(-45deg);
}

/* 侧边栏内容区 */
.mobile-nav-section {
    padding: 16px;
    border-bottom: 1px solid rgba(232, 165, 152, 0.15);
}

.mobile-nav-section:last-of-type {
    border-bottom: none;
}

.mobile-nav-section-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #E8A598;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-left: 4px;
}

/* 导航菜单项 */
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s;
}

.mobile-nav-item:hover {
    background: rgba(232, 165, 152, 0.1);
    transform: translateX(4px);
}

.mobile-nav-item:active {
    background: rgba(232, 165, 152, 0.2);
}

.mobile-nav-icon {
    font-size: 20px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-nav-text {
    flex: 1;
}

.mobile-nav-item-danger {
    color: #e74c3c;
}

.mobile-nav-item-danger:hover {
    background: rgba(231, 76, 60, 0.1);
}

/* 语言切换 */
.mobile-lang-switcher-v2 {
    display: flex;
    gap: 8px;
}

.mobile-lang-btn-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    background: white;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.mobile-lang-btn-v2:hover {
    border-color: rgba(232, 165, 152, 0.3);
}

.mobile-lang-btn-v2.active {
    background: linear-gradient(135deg, #E8A598, #F0B8A8);
    color: white;
    border-color: #E8A598;
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.3);
}

.lang-flag {
    font-size: 20px;
}

/* 会员卡片 */
.mobile-member-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: linear-gradient(135deg, #FFF5F2, #FFEDE8);
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(232, 165, 152, 0.2);
}

.mobile-member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8A598, #F0B8A8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    font-size: 20px;
    color: white;
    font-weight: 700;
}

.mobile-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-member-info {
    flex: 1;
    min-width: 0;
}

.mobile-member-name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-member-level {
    font-size: 12px;
    color: #E8A598;
    margin: 0;
    font-weight: 600;
}

/* 登录/注册按钮 */
.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-auth-btn-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    background: white;
    border: 2px solid #e0e0e0;
    transition: all 0.2s;
}

.mobile-auth-btn-v2:hover {
    border-color: #E8A598;
    color: #E8A598;
}

.mobile-auth-btn-primary-v2 {
    background: linear-gradient(135deg, #E8A598, #F0B8A8);
    color: white;
    border-color: #E8A598;
    box-shadow: 0 4px 12px rgba(232, 165, 152, 0.3);
}

.mobile-auth-btn-primary-v2:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 165, 152, 0.4);
}

.mobile-auth-btn-v2 .btn-icon {
    font-size: 18px;
}

/* 员工入口 */
.mobile-staff-links-v2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-staff-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    background: rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}

.mobile-staff-btn:hover {
    background: rgba(232, 165, 152, 0.1);
    color: #E8A598;
}

.staff-icon {
    font-size: 16px;
}

/* 侧边栏底部 */
.mobile-nav-footer {
    margin-top: auto;
    padding: 20px 16px;
    background: linear-gradient(180deg, transparent, rgba(232, 165, 152, 0.05));
}

.mobile-nav-contact {
    margin-bottom: 16px;
}

.mobile-nav-contact .contact-item {
    font-size: 12px;
    color: #888;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-nav-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
}

.social-icon-v2 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    color: white;
    transition: all 0.2s;
}

.social-icon-v2.tg {
    background: linear-gradient(135deg, #2AABEE, #5BC0F8);
}

.social-icon-v2.vk {
    background: linear-gradient(135deg, #4A76A8, #5B8BB8);
}

.social-icon-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-nav-copyright {
    text-align: center;
    font-size: 11px;
    color: #bbb;
    margin: 0;
}

/* 桌面端隐藏手机端元素 */
@media (min-width: 769px) {
    .mobile-nav-header,
    .mobile-nav-section,
    .mobile-nav-footer,
    .mobile-nav-close {
        display: none;
    }
    
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        overflow: visible;
    }
    
    .main-nav.open::before {
        display: none;
    }
}


/* ===== 手机端快捷导航 ===== */
.mobile-quick-nav {
    display: none;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-quick-nav-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-quick-nav-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-quick-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 60px;
}

.mobile-quick-item:hover {
    background: rgba(232, 165, 152, 0.1);
}

.mobile-quick-item:active {
    background: rgba(232, 165, 152, 0.2);
    transform: scale(0.95);
}

.quick-icon {
    font-size: 22px;
}

.quick-text {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
}

/* 手机端顶部导航简化 */
@media (max-width: 768px) {
    .mobile-quick-nav {
        display: block;
    }
    
    .main-nav {
        display: none !important;
    }
    
    .header-inner {
        padding: 10px 16px !important;
    }
    
    .logo-text {
        font-size: 18px !important;
    }
    
    .lang-switcher {
        gap: 4px !important;
    }
    
    .lang-btn {
        padding: 4px 8px !important;
        font-size: 11px !important;
    }
    
    .btn-small {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }
    
    .header-actions {
        gap: 8px !important;
    }
}


/* ===== 店员端整体布局 ===== */
.staff-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f7fa;
    color: #333;
}

.staff-layout {
    display: flex;
    min-height: 100vh;
}

/* ===== 店员端侧边栏 ===== */
.staff-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    transition: width 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.staff-sidebar.collapsed {
    width: 70px;
}

.staff-sidebar.collapsed .staff-sidebar-brand-text,
.staff-sidebar.collapsed .staff-nav-text,
.staff-sidebar.collapsed .staff-nav-section-title,
.staff-sidebar.collapsed .staff-user-info,
.staff-sidebar.collapsed .staff-sidebar-brand-role {
    display: none;
}

.staff-sidebar.collapsed .staff-nav-item {
    justify-content: center;
    padding: 14px;
}

.staff-sidebar.collapsed .staff-nav-icon {
    margin: 0;
}

/* 侧边栏头部 */
.staff-sidebar-header {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.staff-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.staff-sidebar-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.staff-sidebar-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.staff-sidebar-brand-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.staff-sidebar-brand-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.staff-sidebar-collapse-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.staff-sidebar-collapse-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.collapse-icon {
    font-size: 12px;
}

/* 侧边栏导航 */
.staff-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.staff-sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.staff-sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.staff-sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.staff-nav-section {
    margin-bottom: 8px;
}

.staff-nav-section-title {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px 6px;
}

.staff-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.staff-nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.staff-nav-item.active {
    background: rgba(232, 165, 152, 0.2);
    color: #E8A598;
}

.staff-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #E8A598;
}

.staff-nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.staff-nav-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.staff-nav-badge {
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.staff-nav-item-logout {
    color: rgba(231, 76, 60, 0.8);
}

.staff-nav-item-logout:hover {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* 侧边栏底部用户信息 */
.staff-sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.staff-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.staff-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8A598, #D48577);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.staff-user-info {
    flex: 1;
    min-width: 0;
}

.staff-user-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.staff-user-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* 移动端遮罩 */
.staff-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.staff-sidebar-overlay.active {
    display: block;
}

/* ===== 店员端主内容区 ===== */
.staff-main {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.staff-sidebar.collapsed ~ .staff-main {
    margin-left: 70px;
}

/* 顶部栏 */
.staff-header {
    background: white;
    padding: 16px 24px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.staff-mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.staff-mobile-menu-btn:hover {
    background: #e8e8e8;
}

.staff-page-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    flex: 1;
    color: #2c3e50;
}

.staff-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.staff-current-time {
    font-size: 18px;
    font-weight: 700;
    color: #E8A598;
    font-variant-numeric: tabular-nums;
}

.staff-current-date {
    font-size: 13px;
    color: #999;
}

/* 消息提示 */
.staff-flash-messages {
    padding: 16px 24px 0;
}

.staff-flash-message {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    animation: flashSlideIn 0.3s ease;
}

@keyframes flashSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.staff-flash-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.staff-flash-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.staff-flash-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.staff-flash-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* 内容区域 */
.staff-content {
    flex: 1;
    padding: 24px;
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
    .staff-sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .staff-sidebar.mobile-open {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .staff-main {
        margin-left: 0;
    }
    
    .staff-mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .staff-header {
        padding: 12px 16px;
    }
    
    .staff-page-title {
        font-size: 17px;
    }
    
    .staff-current-date {
        display: none;
    }
    
    .staff-content {
        padding: 16px;
    }
    
    .staff-flash-messages {
        padding: 12px 16px 0;
    }
}


/* ===== 店员端侧边栏 - 优惠券和活动提醒 ===== */
.staff-sidebar-promotions {
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.promo-icon {
    font-size: 14px;
}

.promo-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.promo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E8A598;
    flex-shrink: 0;
}

/* ===== 店员端侧边栏 - 语言切换 ===== */
.staff-lang-switcher {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.lang-btn {
    flex: 1;
    padding: 6px 4px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.lang-btn.active {
    background: #E8A598;
    color: white;
}

/* ===== 店员端侧边栏 - 用户信息卡 ===== */
.staff-user-card {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s;
}

.staff-user-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.staff-user-arrow {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-left: auto;
}

/* ===== 店员端侧边栏 - 店员菜单 ===== */
.staff-user-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 6px;
    margin-bottom: 8px;
    z-index: 100;
}

.staff-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.staff-menu-item:hover {
    background: #f5f5f5;
}

/* ===== 店员端侧边栏 - 管理员登录入口 ===== */
.staff-admin-entry {
    margin-top: 10px;
}

.admin-entry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.admin-entry-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.admin-icon {
    font-size: 14px;
}

/* 折叠状态下隐藏活动提醒和语言切换 */
.staff-sidebar.collapsed .staff-sidebar-promotions,
.staff-sidebar.collapsed .staff-lang-switcher,
.staff-sidebar.collapsed .staff-admin-entry,
.staff-sidebar.collapsed .staff-user-arrow {
    display: none;
}

.staff-sidebar.collapsed .staff-user-card {
    justify-content: center;
    padding: 8px;
}

.staff-sidebar.collapsed .staff-user-info {
    display: none;
}


/* ===== 会员端 - 积分兑换优惠券 ===== */
.points-coupon-section {
    margin-bottom: 40px;
}

.coupon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.coupon-card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.coupon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.coupon-card-header {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    flex: 1;
}

.coupon-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.coupon-info {
    flex: 1;
    min-width: 0;
}

.coupon-name {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.coupon-desc {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

.coupon-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px dashed #e8e8e8;
}

.coupon-points {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.points-num {
    font-size: 24px;
    font-weight: 700;
    color: #E8A598;
}

.points-label {
    font-size: 12px;
    color: #999;
}

.btn-redeem-coupon {
    padding: 8px 18px;
    background: linear-gradient(135deg, #E8A598, #D48577);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-redeem-coupon:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(232, 165, 152, 0.4);
}

.btn-redeem-coupon:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* 响应式 */
@media (max-width: 600px) {
    .coupon-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== 会员端 - 抽屉列表 ===== */
.drawer-section {
    margin-bottom: 20px;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.2s;
    user-select: none;
}

.drawer-header:hover {
    background: #fafafa;
}

.drawer-header .section-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

.drawer-arrow {
    font-size: 14px;
    color: #999;
    transition: transform 0.2s;
}

.drawer-content {
    background: white;
    border-radius: 0 0 12px 12px;
    padding: 16px 20px;
    margin-top: -4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    animation: drawerSlideDown 0.3s ease;
}

@keyframes drawerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== 会员端 - 珍珠奶茶兑换说明 ===== */
.bubble-tea-notice {
    background: linear-gradient(135deg, #fff5f5, #fff0f5);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
}

.bubble-tea-notice .notice-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.bubble-tea-notice .notice-content h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
}

.bubble-tea-notice .notice-content p {
    margin: 0 0 6px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.bubble-tea-notice .notice-address {
    font-weight: 600;
    color: #E8A598;
}

/* ===== 会员端 - 优惠券二维码按钮 ===== */
.coupon-qr-action {
    margin-top: 8px;
}

.btn-show-coupon-qr {
    padding: 6px 14px;
    background: linear-gradient(135deg, #E8A598, #D48577);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-show-coupon-qr:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(232, 165, 152, 0.4);
}

/* ===== 会员端 - 优惠券二维码弹窗 ===== */
.coupon-qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.coupon-qr-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 360px;
    overflow: hidden;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coupon-qr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #E8A598, #D48577);
    color: white;
}

.coupon-qr-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.coupon-qr-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.coupon-qr-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.coupon-qr-modal-body {
    padding: 24px 20px;
    text-align: center;
}

.coupon-qr-display {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px auto;
    padding: 12px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
}

.coupon-qr-display img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.coupon-qr-code {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
}

.coupon-qr-code strong {
    color: #2c3e50;
    font-size: 18px;
    letter-spacing: 2px;
}

.coupon-qr-tip {
    font-size: 12px;
    color: #999;
    margin: 0;
}


/* ===== 结算页面 - 饮料选择 ===== */
.drink-add-section {
    margin-bottom: 12px;
}

.drink-add-fields {
    display: grid;
    grid-template-columns: 2fr 1fr 0.8fr;
    gap: 10px;
    margin-bottom: 10px;
}

.drink-field label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.drink-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
}

.drink-qty {
    text-align: center;
}

.btn-add-drink {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #1ABC9C, #16A085);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-drink:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(26, 188, 156, 0.4);
}

.quick-drinks {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.quick-drinks-label {
    font-size: 12px;
    color: #999;
}

.quick-drink-btn {
    padding: 5px 10px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-drink-btn:hover {
    background: #E8A598;
    color: white;
    border-color: #E8A598;
}

.selected-drinks {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

.drinks-list {
    margin-top: 8px;
}

.drink-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #f9f9f9;
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 13px;
}

.drink-item-name {
    flex: 1;
    font-weight: 500;
}

.drink-item-price {
    color: #999;
    font-size: 12px;
}

.drink-item-subtotal {
    font-weight: 700;
    color: #2c3e50;
    min-width: 50px;
    text-align: right;
}

.drink-item-remove {
    background: #ffebee;
    border: none;
    color: #e74c3c;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drinks-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e0e0e0;
    text-align: right;
    font-size: 14px;
}

.drinks-total strong {
    color: #1ABC9C;
    font-size: 16px;
}

.no-drinks {
    color: #999;
    font-size: 13px;
}

@media (max-width: 600px) {
    .drink-add-fields {
        grid-template-columns: 1fr;
    }
}


/* ===== 待结算订单 - 订单类型和星标 ===== */
.order-type-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 6px;
}

.group-order {
    background: linear-gradient(135deg, #FFEAA7, #FDCB6E);
    color: #6C5CE7;
}

.personal-order {
    background: linear-gradient(135deg, #DFE6E9, #B2BEC3);
    color: #2D3436;
}

.star-icon {
    color: #FDCB6E;
    margin-right: 4px;
}

.starred-order {
    border: 2px solid #FDCB6E !important;
    background: linear-gradient(135deg, #FFF9E6, #FFFDF5) !important;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3) !important;
}

/* 新建计时 - 星标选项 */
.starred-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #FFF9E6;
    border: 1px solid #FDCB6E;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.starred-option:hover {
    background: #FFF3CD;
}

.starred-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.starred-option label {
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #6C5CE7;
}
