*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 全局设置：桌面端也使用移动端布局 */
html {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f2ed;
  color: #222;
  line-height: 1.6;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   图片性能优化
   ============================================ */
img {
  /* 优化图片渲染 */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* 使用硬件加速 */
  transform: translateZ(0);
  /* 优化加载性能 */
  content-visibility: auto;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #f5f2edee;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e3ddd4;
}

/* 登录/注册页面的header样式 */
.login-section ~ .header,
body:has(.login-section) .header {
  background: rgba(245, 242, 237, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.nav {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 16px;
}

.login-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #222;
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 1;
}

.login-icon:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.login-icon svg {
  width: 20px;
  height: 20px;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 0;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 1;
}

.menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-overlay.show {
  display: block;
  opacity: 1;
}

/* ============================================
   Dark Luxury Side Menu / Drawer
   ============================================ */

.menu-dropdown {
  position: fixed;
  top: 0;
  right: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh;
  background: #1a1a1a !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5) !important;
}

.menu-dropdown.show {
  transform: translateX(0);
}

/* 顶部Header */
.menu-header {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 28px 24px;
  border-bottom: none;
  position: relative;
}

.menu-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  letter-spacing: 0.5px;
  text-align: center;
}

.menu-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #D4AF37 !important;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  z-index: 1001;
}

.menu-close:hover {
  background-color: rgba(212, 175, 55, 0.1);
  transform: rotate(90deg);
}

.menu-close svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5 !important;
}

/* 主导航链接 */
.menu-items {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 40px 28px 24px;
  gap: 0;
}

.menu-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 15px 0 !important;
  border-bottom: none !important;
  opacity: 0.9;
  outline: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.menu-item:last-of-type {
  border-bottom: none !important;
}

.menu-item:hover {
  opacity: 1;
  transform: translateX(4px);
}

.menu-item:focus {
  outline: none !important;
  box-shadow: none !important;
}

.menu-item:active {
  outline: none !important;
  box-shadow: none !important;
}

.menu-item-text {
  font-family: 'Playfair Display', serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #f9f7f2 !important;
  line-height: 1.5;
  letter-spacing: 0.2px;
  text-shadow: none !important;
}

.menu-item-featured {
  position: relative;
  padding: 15px 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: transparent !important;
}

.menu-item-featured .menu-item-text {
  color: #D4AF37 !important;
  font-weight: 400 !important;
}

.menu-item-featured:hover {
  background: transparent !important;
  transform: translateX(4px);
}

/* 菜单图标样式 */
.menu-item .menu-icon,
.menu-item img.menu-icon {
  width: 20px !important;
  height: 20px !important;
  margin-right: 15px !important;
  color: #D4AF37 !important;
  flex-shrink: 0;
}

.menu-item .menu-icon svg {
  width: 20px !important;
  height: 20px !important;
  color: #D4AF37 !important;
}

/* 底部功能区 */
.menu-footer {
  padding: 24px 28px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.menu-footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f9f7f2;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.menu-footer-link:hover {
  color: #D4AF37;
}

.menu-footer-link svg {
  width: 20px;
  height: 20px;
  color: #f9f7f2;
  transition: color 0.3s ease;
}

.menu-footer-link:hover svg {
  color: #D4AF37;
}

.menu-social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.menu-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #D4AF37;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(212, 175, 55, 0.1);
}

.menu-social-icon:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.menu-social-icon svg {
  width: 24px;
  height: 24px;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .menu-dropdown {
    width: 100% !important;
    max-width: 100% !important;
  }

  .menu-header {
    display: none;
    padding: 24px 20px 20px;
  }

  .menu-logo {
    font-size: 20px;
  }

  .menu-close {
    top: 20px !important;
    right: 20px !important;
    width: 36px;
    height: 36px;
  }

  .menu-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5 !important;
  }

  .menu-items {
    padding: 20px 20px;
    gap: 0;
  }

  .menu-item {
    padding: 15px 0 !important;
  }

  .menu-item-text {
    font-size: 16px !important;
    font-weight: 400 !important;
  }

  .menu-item-featured {
    padding: 15px 0 !important;
  }

  .menu-footer {
    padding: 20px 20px 24px;
  }

  .menu-social-icon {
    width: 40px;
    height: 40px;
  }

  .menu-social-icon svg {
    width: 20px;
    height: 20px;
  }
}

.logo-img {
  height: auto;
  max-height: 84px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
  color: #222;
}

.hero {
  padding-top: 24px;
  padding-bottom: 12px;
}

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-left {
  width: 100%;
  display: flex;
  justify-content: center;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: auto;
  aspect-ratio: 2 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* 为轮播图设置宽高比，避免布局偏移 */
  aspect-ratio: 4 / 3;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: rgba(255, 255, 255, 1);
  width: 24px;
  border-radius: 4px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 24px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-button:hover {
  background: #f5f5f5;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.carousel-button:active {
  transform: translateX(-50%) translateY(0);
}

.hero-right {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tag {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid #d3c8b5;
  font-size: 12px;
  padding: 4px 10px;
  margin-bottom: 12px;
  color: #8c7b5c;
}

.hero h1 {
  font-size: 30px;
  margin: 0 0 12px;
}

.hero-cn {
  font-size: 14px;
  color: #555;
}

.hero-points {
  padding-left: 18px;
  font-size: 14px;
}

.form-title {
  font-size: 18px;
  margin: 0 0 12px;
}

.request-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ddd3c4;
  font-size: 14px;
  margin-top: 4px;
  font-family: inherit;
}

.request-form textarea {
  min-height: 70px;
  resize: vertical;
}

.request-form input.error,
.request-form select.error,
.request-form textarea.error {
  border-color: #d32f2f;
}

.field-error {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.file-hint {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 4px;
}

.image-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd3c4;
  background: #f8f8f8;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: background 0.2s;
}

.preview-remove:hover {
  background: rgba(0, 0, 0, 0.9);
}

.error-message {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.btn-primary {
  width: 100%;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover:not(:disabled) {
  opacity: 0.9;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-tip {
  font-size: 11px;
  color: #777;
  margin-top: 8px;
}

/* 跳转按钮区域 */
.action-buttons-section {
  padding: 12px 0 4px;
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 440px;
  padding: 0;
  margin: 0 auto;
}

.action-button {
  display: block;
  width: calc(50% - 6px);
  max-width: 214px;
  height: auto;
  aspect-ratio: 232 / 108;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.action-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 12px 36px rgba(0, 0, 0, 0.18);
}

.action-button-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* 为按钮图片设置宽高比 */
  aspect-ratio: 2 / 1;
}

.section {
  padding: 8px 0 24px;
}

.action-buttons-section + .section {
  padding-top: 12px;
}

.section + .photo-gallery-section {
  padding-top: 8px;
}

.section-title {
  text-align: left;
  font-size: 20px;
  margin-bottom: 12px;
}

  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
.step-item {
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 14px;
}

.step-item.step-reverse {
  flex-direction: row-reverse;
}

.step-item.step-reverse .step-content {
  text-align: right;
}

.step-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f2ed;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f5f2ed;
  transition: opacity 0.3s ease;
}

.step-image img[loading="lazy"] {
  opacity: 0;
}

.step-image img[loading="lazy"].loaded {
  opacity: 1;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-content h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.step-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* 照片展示区域 */
.photo-gallery-section {
  padding: 12px 0 24px;
}

.photo-gallery-title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  text-align: left;
}

.photo-gallery-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.photo-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  padding: 8px;
}

.photo-nav-prev {
  left: 8px;
}

.photo-nav-next {
  right: 8px;
}

.photo-nav-btn:hover {
  opacity: 0.7;
  transform: translateY(-50%) scale(1.2);
}

.photo-nav-btn:active {
  transform: translateY(-50%) scale(0.9);
}

.photo-nav-btn svg {
  width: 48px;
  height: 48px;
  stroke-width: 3;
}

.photo-gallery {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding-bottom: 8px;
  width: 100%;
}

.photo-gallery::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.photo-item {
  flex: 0 0 calc(100% / 3);
  min-width: calc(100% / 3);
  aspect-ratio: 9 / 16;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: #f5f2ed;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
}

.photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f5f2ed;
  transition: opacity 0.3s ease;
}

.photo-item img[loading="lazy"] {
  opacity: 0;
}

.photo-item img[loading="lazy"].loaded {
  opacity: 1;
}

.photo-item.dimmed {
  position: relative;
}

.photo-item.dimmed::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  transition: background 0.3s ease;
}

.photo-item.highlighted::after {
  background: transparent;
  transition: background 0.3s ease;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ============================================
   Footer Styles - Dark Luxury Design
   ============================================ */

.footer {
  background: #1a1a1a;
  color: #e8e4d9;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 24px;
}

/* 左侧：品牌信息 */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #e8e4d9;
  letter-spacing: 1px;
  margin: 0;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 400;
  color: #b8b3a8;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
  text-align: center;
}

/* 中间：快速导航 */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-nav-title,
.footer-support-title {
  font-size: 16px;
  font-weight: 600;
  color: #e8e4d9;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-nav-list li {
  margin: 0;
}

.footer-nav-list a {
  color: #b8b3a8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav-list a:hover {
  color: #D4AF37;
}

/* 右侧：管家服务 */
.footer-support {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid #444;
  border-radius: 50px;
  color: #e8e4d9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

.social-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #e8e4d9;
  transition: color 0.3s ease;
}

.social-button span {
  flex: 1;
  text-align: left;
}

.social-button:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.social-button:hover svg {
  color: #1a1a1a;
}

/* 底部版权栏 */
.footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #444;
  margin-bottom: 12px;
}

.copyright-text {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin: 0;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .footer {
    padding: 32px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-tagline {
    max-width: 100%;
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-nav-list {
    align-items: center;
  }

  .footer-support {
    align-items: center;
  }

  .social-button {
    max-width: 100%;
    justify-content: center;
  }

  .social-button span {
    text-align: center;
  }

  .copyright-text {
    font-size: 11px;
  }
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #D4AF37;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}

.back-to-top.show {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-color: #D4AF37;
  color: #D4AF37;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.back-to-top:active {
  transform: translateY(-3px) scale(1);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .header {
    padding: 0;
  }
  
  .nav {
    height: 56px;
    padding: 0 16px;
  }
  
  .login-icon {
    width: 36px;
    height: 36px;
  }
  
  .login-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .logo {
    height: 100%;
  }
  
  .logo-img {
    height: auto;
    max-height: 84px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
  }
  
  .logo-text {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  
  .hero {
    padding-top: 24px;
    padding-bottom: 12px;
  }
  
  .hero h1 {
    font-size: 24px;
  }
  
  .carousel-container {
    width: 100%;
    max-width: 440px;
    height: auto;
    aspect-ratio: 2 / 1;
  }
  
  .carousel-wrapper {
    height: 100%;
  }
  
  .carousel-dots {
    bottom: 12px;
  }
  
  .dot {
    width: 6px;
    height: 6px;
  }
  
  .dot.active {
    width: 20px;
  }
  
  .carousel-button {
    bottom: 40px;
    padding: 10px 24px;
    font-size: 13px;
  }
  
  .action-buttons-section {
    padding: 12px 0 8px;
  }
  
  .action-buttons {
    width: 100%;
    max-width: 440px;
    gap: 12px;
    padding: 0;
    margin: 0 auto;
  }
  
  .action-button {
    width: calc(50% - 6px);
    max-width: 214px;
    height: auto;
    aspect-ratio: 232 / 108;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .step-item {
    gap: 12px;
    padding: 12px;
  }
  
  .step-item.step-reverse {
    flex-direction: row-reverse;
  }
  
  .step-item.step-reverse .step-content {
    text-align: right;
  }
  
  .step-image {
    width: 100px;
    height: 100px;
  }
  
  .step-content h3 {
    font-size: 15px;
  }
  
  .step-content p {
    font-size: 13px;
  }
  
  /* 照片展示区域 - 移动端 */
  .photo-gallery-section {
    padding: 32px 0;
  }
  
  .photo-gallery-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .photo-gallery {
    gap: 0;
    padding: 0;
    margin: 0;
  }
  
  .photo-item {
    flex: 0 0 calc(100% / 3);
    min-width: calc(100% / 3);
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
  
  .photo-item:active {
    transform: scale(0.98);
  }
  
  .photo-nav-prev {
    left: 4px;
  }
  
  .photo-nav-next {
    right: 4px;
  }
  
  .photo-nav-btn svg {
    width: 40px;
    height: 40px;
    stroke-width: 3;
  }
}

/* 登录页面样式 */
.back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #222;
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 1;
}

.back-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* ============================================
   Luxury Login/Register Pages - Full Screen Immersive Design
   ============================================ */

.login-section {
  position: relative;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 全屏背景 */
.login-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  /* 如果需要使用本地图片，请替换为：background-image: url('luxury-bg.jpg'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* 深色遮罩层 */
.login-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* 容器定位 */
.login-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  padding: 40px 20px;
}

/* 磨砂玻璃卡片 */
.login-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

/* 标题样式 */
.login-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 12px;
  text-align: center;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.login-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 12px;
  text-align: center;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.login-subtitle {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* 表单标签 */
.login-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-family: 'Inter', sans-serif;
}

/* 输入框样式 */
.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
  width: 100%;
  padding: 14px 0;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  background: transparent;
  font-size: 15px;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus,
.login-form input[type="text"]:focus {
  outline: none;
  border-bottom-color: #D4AF37;
  background: rgba(255, 255, 255, 0.3);
}

.login-form input[type="email"]::placeholder,
.login-form input[type="password"]::placeholder,
.login-form input[type="text"]::placeholder {
  color: #999;
  opacity: 0.7;
}

/* 按钮样式 */
.login-form .btn-primary {
  width: 100%;
  margin-top: 32px;
  padding: 16px 24px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.login-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left 0.5s ease;
}

.login-form .btn-primary:hover::before {
  left: 100%;
}

.login-form .btn-primary:hover {
  background: #2a2a2a;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.login-form .btn-primary:active {
  transform: translateY(0);
}

/* 底部链接 */
.login-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #666;
  font-family: 'Inter', sans-serif;
}

.login-footer a {
  color: #D4AF37;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-footer a:hover {
  color: #c4a027;
}

/* 错误消息 */
.error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  border-left: 3px solid #dc3545;
  font-family: 'Inter', sans-serif;
}

/* Page section styles */
.page-section {
  padding: 40px 0;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
}

.page-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.page-card h1 {
  font-size: 28px;
  margin: 0 0 8px;
  text-align: center;
}

.page-subtitle {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.content-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 16px;
  line-height: 1.6;
}

/* Form styles */
.request-form label,
.status-form label,
.track-form label,
.wholesale-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 500;
  margin-top: 20px;
}

.request-form label:first-child,
.status-form label:first-child,
.track-form label:first-child,
.wholesale-form label:first-child {
  margin-top: 0;
}

.request-form input,
.request-form select,
.request-form textarea,
.status-form input,
.status-form select,
.track-form input,
.track-form select,
.wholesale-form input,
.wholesale-form select,
.wholesale-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd3c4;
  font-size: 14px;
  margin-top: 6px;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.request-form textarea,
.wholesale-form textarea {
  resize: vertical;
  min-height: 80px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus,
.status-form input:focus,
.track-form input:focus,
.wholesale-form input:focus,
.wholesale-form select:focus,
.wholesale-form textarea:focus {
  outline: none;
  border-color: #111;
}

.request-form .btn-primary,
.status-form .btn-primary,
.track-form .btn-primary,
.wholesale-form .btn-primary {
  width: 100%;
  margin-top: 24px;
}

.request-form small {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.required {
  color: #d32f2f;
}

.error-message {
  background: #fee;
  color: #c33;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

/* Order result styles */
.order-result {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.order-details p {
  margin: 12px 0;
  font-size: 14px;
}

/* Track timeline styles */
.track-result {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.track-timeline {
  margin-top: 24px;
}

.track-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.track-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 24px;
  width: 2px;
  height: calc(100% + 8px);
  background: #ddd;
}

.track-step.active:not(:last-child)::after {
  background: #111;
}

.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.track-step.active .step-dot {
  background: #111;
}

.step-content {
  flex: 1;
}

.step-content p {
  margin: 0;
  font-size: 14px;
}

.step-content strong {
  display: block;
  margin-bottom: 4px;
}

.step-date {
  color: #777;
  font-size: 12px;
}

@media (max-width: 768px) {
  .login-section {
    padding: 0;
    min-height: 100vh;
  }

  .login-section .container {
    padding: 20px 16px;
  }
  
  .login-card {
    padding: 36px 28px;
    border-radius: 16px;
    margin: 0;
  }

  .login-title,
  .login-card h1 {
    font-size: 32px;
  }

  .login-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .login-form input[type="email"],
  .login-form input[type="password"],
  .login-form input[type="text"] {
    font-size: 14px;
    padding: 12px 0;
  }

  .login-form .btn-primary {
    margin-top: 28px;
    padding: 14px 20px;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .login-footer {
    margin-top: 28px;
    font-size: 13px;
  }
  
  .page-section {
    padding: 40px 0;
  }
  
  .page-card {
    padding: 32px 24px;
    margin: 0 16px;
  }
  
  .back-link {
    width: 36px;
    height: 36px;
  }
  
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
  
  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
  
  .menu-toggle {
    width: 36px;
    height: 36px;
  }
  
  .menu-toggle svg {
    width: 20px;
    height: 20px;
  }
  
  .menu-dropdown {
    height: 50vh;
    padding: 20px;
  }
  
  .menu-item {
    padding: 16px 20px;
    font-size: 16px;
    gap: 12px;
  }
  
  .menu-icon {
    width: 20px;
    height: 20px;
  }
}

/* Find Bag Page - Luxury Design */
.find-bag-page {
  background: #f5f2ed;
  min-height: 100vh;
}

.find-bag-main {
  padding-top: 0px;
  padding-bottom: 60px;
}

/* Top Banner Section */
.top-banner-section {
  padding: 60px 0 60px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.top-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  z-index: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.top-banner-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}

.top-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: #D4AF37;
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.top-banner-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #e8e4d9;
  margin: 0 0 32px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.top-banner-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 32px;
  text-align: center;
}

.banner-bag-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  /* 为横幅图片设置宽高比 */
  aspect-ratio: 3 / 2;
}

.top-banner-footer {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #b8b3a8;
  margin: 32px 0 0;
  line-height: 1.6;
}

/* Features Container */
.features-container {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  flex-wrap: nowrap;
}

.feature-card {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.feature-card:hover {
  transform: none;
  box-shadow: none;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: #8b7d6f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  word-break: break-word;
}

.feature-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.5;
  text-align: center;
  word-break: break-word;
}

.concierge-section {
  padding: 20px 0 40px;
}

.concierge-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.5px;
  text-align: center;
  color: #1a1a1a;
  margin: 0 0 24px;
  line-height: 1.2;
}

/* 标题下方图片 */
.title-image-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 32px;
  text-align: center;
  box-sizing: border-box;
}

.title-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}


.concierge-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Form Field with Icon */
.form-field-with-icon {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px 12px;
  align-items: start;
}

.field-icon {
  grid-column: 1;
  grid-row: 1;
  width: 24px;
  height: 24px;
  color: #8b7d6f;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.field-content {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
}

.field-label {
  grid-column: 2;
  grid-row: 1;
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  align-self: center;
}

/* Select Field */
.field-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e8e3dd;
  border-radius: 8px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238b7d6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.field-select:focus {
  outline: none;
  border-color: #8b7d6f;
}

.field-select option {
  padding: 8px;
}

/* Input Field */
.field-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e8e3dd;
  border-radius: 8px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  transition: border-color 0.3s ease;
}

.field-input:focus {
  outline: none;
  border-color: #8b7d6f;
}

.field-input::placeholder {
  color: #8b7d6f;
}

/* Budget Slider */
.budget-slider-container {
  width: 100%;
}

.budget-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e8e3dd;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 8px;
}

.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #8b7d6f;
  cursor: pointer;
  transition: background 0.3s ease;
}

.budget-slider::-webkit-slider-thumb:hover {
  background: #6b5d4f;
}

.budget-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #8b7d6f;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.budget-slider::-moz-range-thumb:hover {
  background: #6b5d4f;
}

.budget-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #8b7d6f;
}

.budget-labels span:nth-child(2) {
  font-weight: 600;
  color: #1a1a1a;
}

/* Color Options */
.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background: none;
}

.color-option:hover {
  transform: scale(1.1);
  border-color: #8b7d6f;
}

.color-option.selected {
  border-color: #1a1a1a;
  border-width: 3px;
  transform: scale(1.15);
}

/* Condition Buttons New */
.condition-buttons-new {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.condition-btn-new {
  padding: 12px 16px;
  border: 1px solid #e8e3dd;
  border-radius: 8px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.condition-btn-new:hover {
  border-color: #8b7d6f;
  background: #faf9f7;
}

.condition-btn-new.active {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
}

/* Upload Area New */
.upload-area-new {
  border: 2px dashed #d4c5b8;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #faf9f7;
}

.upload-area-new:hover {
  border-color: #b8a99a;
  background: #f5f2ed;
}

.upload-area-new.dragover {
  border-color: #1a1a1a;
  background: #f0ede8;
}

.upload-icon-new {
  color: #8b7d6f;
  margin-bottom: 12px;
}

.upload-text-new {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  margin: 0;
}

.upload-area {
  border: 2px dashed #d4c5b8;
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #faf9f7;
}

.upload-area:hover {
  border-color: #b8a99a;
  background: #f5f2ed;
}

.upload-area.dragover {
  border-color: #1a1a1a;
  background: #f0ede8;
}

.upload-icon {
  color: #8b7d6f;
  margin-bottom: 12px;
}

.upload-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  margin: 0 0 4px;
}

.upload-link {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 500;
}

.upload-hint {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #8b7d6f;
  margin: 0;
}

.upload-preview {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e3dd;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-preview {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.remove-preview:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Condition Section */
.condition-section {
  margin-bottom: 8px;
}

.condition-buttons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.condition-btn {
  flex: 1;
  padding: 16px 20px;
  border: 1.5px solid #d4c5b8;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  text-align: center;
}

.condition-btn:hover {
  border-color: #b8a99a;
  background: #faf9f7;
}

.condition-btn.active {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #ffffff;
}

.condition-label {
  display: block;
}

/* Form Fields */
.form-field {
  margin-bottom: 8px;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.form-label input {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #d4c5b8;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  margin-top: 12px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.form-label input:focus {
  outline: none;
  border-color: #1a1a1a;
  background: #faf9f7;
}

.form-label input::placeholder {
  color: #8b7d6f;
  font-weight: 300;
}

/* Submit Button */
.btn-sourcing {
  width: 100%;
  padding: 18px 24px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  text-transform: uppercase;
}

.btn-sourcing:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-sourcing:active {
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .top-banner-section {
    padding: 40px 0 40px;
  }
  
  .top-banner-content {
    padding: 40px 24px;
    margin: 0 16px;
  }
  
  .top-banner-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .top-banner-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
    color: #e8e4d9;
  }
  
  .top-banner-image {
    max-width: 100%;
    margin-bottom: 28px;
  }
  
  .top-banner-footer {
    font-size: 14px;
    color: #b8b3a8;
  }
  
  .features-container {
    flex-direction: row;
    gap: 16px;
    margin-top: 32px;
    padding: 24px 16px;
    border-radius: 16px;
    margin-left: 16px;
    margin-right: 16px;
    flex-wrap: wrap;
  }
  
  .feature-card {
    flex: 1;
    min-width: 0;
    padding: 0;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
  
  .feature-icon svg {
    width: 100%;
    height: 100%;
  }
  
  .feature-title {
    font-size: 11px;
    margin-bottom: 0;
    text-align: center;
    word-break: break-word;
  }
  
  .feature-subtitle {
    font-size: 11px;
    text-align: center;
    word-break: break-word;
  }
  
  .concierge-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .title-image-container {
    margin-bottom: 24px;
    max-width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }
  
  .title-image {
    border-radius: 10px;
  }
  
  .form-card {
    padding: 28px 20px;
    margin: 0 16px;
    border-radius: 16px;
    max-width: 100%;
  }
  
  .concierge-form {
    gap: 20px;
  }
  
  .form-field-with-icon {
    gap: 10px;
  }
  
  .field-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }
  
  .field-content {
    grid-column: 1 / -1;
    margin-left: 0;
    width: auto;
  }
  
  .field-label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .field-select,
  .field-input {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .budget-slider {
    margin-bottom: 6px;
  }
  
  .budget-labels {
    font-size: 11px;
  }
  
  .color-option {
    width: 36px;
    height: 36px;
  }
  
  .condition-buttons-new {
    gap: 6px;
  }
  
  .condition-btn-new {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .upload-area-new {
    padding: 32px 20px;
  }
  
  .upload-icon-new {
    width: 40px;
    height: 40px;
  }
  
  .upload-text-new {
    font-size: 13px;
  }
}

/* Authentication Process Page */
.auth-page {
  background: #f5f2ed;
  min-height: 100vh;
}

/* Hero Section */
.auth-hero {
  background: #1a1a1a;
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.auth-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.auth-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #e8e8e8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Process Steps Section */
.auth-process-section {
  padding: 50px 0;
  background: #f5f2ed;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid #d4af37;
}

.process-card:first-child {
  background-image: url('bags12.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.process-card:nth-child(2) {
  background-image: url('bags21.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.process-card:nth-child(3) {
  background-image: url('bags3212.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.process-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #8b7d6f;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f2ed;
  border-radius: 50%;
}

.process-card-icon svg {
  width: 48px;
  height: 48px;
}

.process-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.3;
}

.process-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Certificate Section */
.auth-certificate-section {
  padding: 50px 0;
  background: #ffffff;
}

.certificate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.certificate-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate-image-placeholder {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.certificate-image-placeholder:hover {
  transform: rotate(0deg) scale(1.02);
}

.certificate-image-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

.certificate-text {
  padding: 0 20px;
}

.certificate-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 24px;
  line-height: 1.3;
}

.certificate-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin: 0 0 24px;
  line-height: 1.6;
}

.certificate-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.certificate-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin: 0 0 12px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.certificate-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 600;
  font-size: 18px;
}

.certificate-note {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

/* Guarantee Banner */
.auth-guarantee-section {
  padding: 50px 0;
  background: #f5f2ed;
}

.guarantee-banner {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 32px;
  background: #ffffff;
  border: 3px solid #d4af37;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.guarantee-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 24px;
  line-height: 1.3;
}

.guarantee-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin: 0;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .auth-hero {
    padding: 80px 0 60px;
  }

  .auth-hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .auth-hero-subtitle {
    font-size: 16px;
    padding: 0 16px;
  }

  .auth-process-section {
    padding: 60px 0;
  }

  .process-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .process-card {
    padding: 32px 24px;
  }

  .process-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .process-card-icon svg {
    width: 40px;
    height: 40px;
  }

  .process-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .process-card-desc {
    font-size: 14px;
  }

  .auth-certificate-section {
    padding: 60px 0;
  }

  .certificate-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }

  .certificate-image-placeholder {
    max-width: 100%;
    transform: rotate(0deg);
  }

  .certificate-text {
    padding: 0;
  }

  .certificate-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .certificate-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .certificate-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .certificate-note {
    font-size: 13px;
  }

  .auth-guarantee-section {
    padding: 60px 0;
  }

  .guarantee-banner {
    padding: 40px 24px;
    margin: 0 16px;
    border-width: 2px;
  }

  .guarantee-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .guarantee-desc {
    font-size: 15px;
  }
}

/* ============================================
   Transparency Page Styles
   ============================================ */

.transparency-page {
  background: #F5F5DC;
}

/* Hero Section */
.transparency-hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.transparency-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.transparency-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.transparency-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 24px;
  line-height: 1.2;
}

.transparency-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.transparency-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #D4AF37;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.transparency-cta-btn:hover {
  background: #c4a027;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

/* Timeline Section */
.timeline-section {
  padding: 50px 0;
  background: #F5F5DC;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 36px;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #D4AF37;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.timeline-number {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.timeline-content {
  flex: 1;
  max-width: 45%;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
}

.timeline-step-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin: 0 0 16px;
}

.timeline-evidence {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  padding: 12px;
  background: #F5F5DC;
  border-left: 3px solid #D4AF37;
  border-radius: 4px;
  margin-top: 12px;
}

.timeline-evidence strong {
  color: #D4AF37;
  font-weight: 600;
}

/* Updates Demo Section */
.updates-demo-section {
  padding: 50px 0;
  background: #ffffff;
}

.updates-demo-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}

.updates-demo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  text-align: center;
  margin-bottom: 36px;
}

.phone-mockup {
  max-width: 400px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}

.phone-header {
  background: #f5f5f5;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.phone-signal {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
}

.phone-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.phone-content {
  padding: 20px 16px;
  max-height: 500px;
  overflow-y: auto;
}

.update-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.update-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.update-time {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  margin-bottom: 8px;
}

.update-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

/* Support Section */
.support-section {
  padding: 50px 0;
  background: #F5F5DC;
}

.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.support-left {
  padding-right: 40px;
}

.support-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin: 0 0 24px;
  line-height: 1.3;
}

.support-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  margin: 0 0 16px;
  line-height: 1.7;
}

.support-desc-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin: 0 0 32px;
  line-height: 1.7;
}

.support-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #ffffff;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #D4AF37;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-link svg {
  width: 32px;
  height: 32px;
  color: #D4AF37;
  transition: color 0.3s ease;
}

.social-link:hover svg {
  color: #1a1a1a;
}

.support-right {
  padding-left: 40px;
}

.support-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.support-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.support-feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #D4AF37;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
}

.support-feature-icon svg {
  width: 24px;
  height: 24px;
}

.support-feature-text {
  flex: 1;
}

.support-feature-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.support-feature-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .transparency-hero {
    padding: 60px 0 40px;
  }

  .transparency-hero-title {
    font-size: 32px;
    margin-bottom: 16px;
    padding: 0 16px;
  }

  .transparency-hero-subtitle {
    font-size: 16px;
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .transparency-cta-btn {
    padding: 14px 36px;
    font-size: 15px;
  }

  .timeline-section {
    padding: 60px 0;
  }

  .timeline-title {
    font-size: 28px;
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .timeline {
    padding: 0 16px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    margin-bottom: 40px;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
  }

  .timeline-number {
    font-size: 20px;
  }

  .timeline-content {
    max-width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
    padding: 24px;
  }

  .timeline-step-title {
    font-size: 20px;
  }

  .timeline-step-subtitle {
    font-size: 14px;
  }

  .timeline-evidence {
    font-size: 13px;
  }

  .updates-demo-section {
    padding: 60px 0;
  }

  .updates-demo-title {
    font-size: 28px;
    padding: 0 16px;
  }

  .updates-demo-subtitle {
    font-size: 14px;
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .phone-mockup {
    max-width: calc(100% - 32px);
    margin: 0 16px;
  }

  .support-section {
    padding: 60px 0;
  }

  .support-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }

  .support-left {
    padding-right: 0;
  }

  .support-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .support-desc {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .support-desc-secondary {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .support-social {
    gap: 12px;
  }

  .social-link {
    padding: 10px 20px;
    font-size: 14px;
  }

  .social-link svg {
    width: 28px;
    height: 28px;
  }

  .support-right {
    padding-left: 0;
  }

  .support-features {
    gap: 24px;
  }

  .support-feature-icon {
    width: 48px;
    height: 48px;
  }

  .support-feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .support-feature-text strong {
    font-size: 16px;
  }

  .support-feature-text p {
    font-size: 13px;
  }
}

/* ============================================
   Order Status Tracker Page
   ============================================ */

/* 订单概览卡片 */
.order-overview-section {
  padding: 40px 0 32px;
  background: #f5f2ed;
}

.order-overview-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.order-overview-left {
  flex-shrink: 0;
}

.order-thumbnail {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f2ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-overview-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-number {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.5px;
}

.order-status-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.status-in-progress {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
}

.status-completed {
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
}

.status-pending {
  background: rgba(158, 158, 158, 0.15);
  color: #9E9E9E;
}

.order-eta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
}

/* 时间轴追踪 */
.timeline-tracker-section {
  padding: 40px 0 36px;
  background: #f5f2ed;
}

.timeline-tracker {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline-tracker::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.timeline-step {
  position: relative;
  margin-bottom: 32px;
  z-index: 1;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.timeline-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  color: #9E9E9E;
  transition: all 0.3s ease;
}

.timeline-step-content {
  flex: 1;
  padding-top: 8px;
}

.timeline-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.timeline-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* 已完成状态 */
.timeline-step.step-completed .timeline-step-icon {
  background: #4CAF50;
  border-color: #4CAF50;
  color: #ffffff;
}

.timeline-step.step-completed::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 40px;
  bottom: -48px;
  width: 2px;
  background: #4CAF50;
  z-index: 0;
}

.timeline-step.step-completed:last-child::before {
  display: none;
}

/* 进行中状态 */
.timeline-step.step-in-progress .timeline-step-icon {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #ffffff;
  animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
}

.timeline-step.step-in-progress::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 40px;
  bottom: -48px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #D4AF37 0,
    #D4AF37 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

.timeline-step.step-in-progress:last-child::before {
  display: none;
}

/* 未开始状态 */
.timeline-step.step-pending .timeline-step-icon {
  background: #f5f2ed;
  border-color: #e0e0e0;
  color: #9E9E9E;
}

/* 媒体展示区 */
.timeline-step-media {
  margin-left: 60px;
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.media-item {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: #f5f2ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-item:hover {
  transform: scale(1.05);
}

.media-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
}

.media-item:hover .media-overlay {
  opacity: 1;
}

.video-overlay svg {
  width: 48px;
  height: 48px;
}

.pdf-thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8b7d6f;
  padding: 16px;
}

.pdf-thumbnail svg {
  width: 48px;
  height: 48px;
}

.pdf-thumbnail span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}

/* 管家留言板 */
.concierge-message-section {
  padding: 0 0 36px;
  background: #f5f2ed;
}

.concierge-message-card {
  max-width: 800px;
  margin: 0 auto;
  background: #FFF8E1;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #D4AF37;
}

.concierge-message-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #D4AF37;
}

.concierge-message-header svg {
  width: 20px;
  height: 20px;
  color: #D4AF37;
}

.concierge-message-content {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

.concierge-message-content p {
  margin: 0;
}

.concierge-message-time {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  font-style: italic;
}

/* 灯箱预览 */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.show {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  z-index: 10001;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.lightbox-media {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  max-width: 100%;
  max-height: 90vh;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-media iframe {
  border-radius: 8px;
}

/* 移动端响应式 */
@media (max-width: 768px) {
  .order-overview-section {
    padding: 24px 0 20px;
  }

  .order-overview-card {
    flex-direction: column;
    padding: 24px 20px;
    margin: 0 16px;
    gap: 20px;
  }

  .order-thumbnail {
    width: 100px;
    height: 100px;
  }

  .order-overview-right {
    text-align: center;
    align-items: center;
  }

  .order-status-badge {
    margin: 0 auto;
  }

  .timeline-tracker-section {
    padding: 32px 0 40px;
  }

  .timeline-tracker {
    padding-left: 32px;
    margin: 0 16px;
  }

  .timeline-tracker::before {
    left: 15px;
  }

  .timeline-step {
    margin-bottom: 40px;
  }

  .timeline-step-icon {
    width: 32px;
    height: 32px;
  }

  .timeline-step-icon svg {
    width: 18px;
    height: 18px;
  }

  .timeline-step-header {
    gap: 16px;
    margin-bottom: 16px;
  }

  .timeline-step-title {
    font-size: 18px;
  }

  .timeline-step-desc {
    font-size: 13px;
  }

  .timeline-step-media {
    margin-left: 48px;
    gap: 10px;
  }

  .media-item {
    width: 100px;
    height: 100px;
  }

  .concierge-message-section {
    padding: 0 0 40px;
  }

  .concierge-message-card {
    margin: 0 16px;
    padding: 20px;
  }

  .concierge-message-content {
    font-size: 14px;
  }

  .lightbox-content {
    max-width: 95vw;
    padding: 10px;
  }

  .lightbox-close {
    top: -40px;
    width: 36px;
    height: 36px;
  }
}
