/* ============================
   窗帘选品系统 - 全局样式
   ============================ */

/* 页面切换 */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* 步骤面板 */
.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
}

/* 隐藏 */
.hidden {
  display: none !important;
}

/* 步骤指示器 */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.2s;
}

.step-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-gold);
}

.step-dot.completed {
  background: var(--color-accent-brown);
}

/* 成功页面 */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #34D399);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.success-icon::after {
  content: "";
  display: block;
  width: 24px;
  height: 14px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg) translateY(-2px);
}

/* 表单分区 */
.form-section {
  padding: 16px;
  margin-bottom: 8px;
}

.form-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-brown);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

:root {
  /* 主色板 */
  --color-bg-primary: #FBF6EF;
  --color-bg-secondary: #F7F1E8;
  --color-bg-white: #FFFFFF;
  --color-text-primary: #2D2016;
  --color-text-secondary: #7A6B5D;
  --color-text-muted: #A89B8C;
  --color-accent-brown: #5C402A;
  --color-accent-light: #8B6F47;
  --color-gold: #D7A35F;
  --color-gold-light: #E8C992;
  --color-border: #E8DFD2;
  --color-border-light: #F0E9DE;

  /* 状态色 */
  --color-status-new: #3B82F6;
  --color-status-new-bg: #EFF6FF;
  --color-status-following: #F59E0B;
  --color-status-following-bg: #FFFBEB;
  --color-status-closed: #10B981;
  --color-status-closed-bg: #ECFDF5;
  --color-status-lost: #9CA3AF;
  --color-status-lost-bg: #F9FAFB;

  /* 圆角 */
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-tag: 4px;
  --radius-input: 8px;

  /* 阴影 */
  --shadow-card: 0 1px 3px rgba(92, 64, 42, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(92, 64, 42, 0.1);
  --shadow-fab: 0 4px 16px rgba(92, 64, 42, 0.15);
  --shadow-header: 0 1px 0 rgba(92, 64, 42, 0.06);

  /* 字体 */
  --font-family: system-ui, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* 全局 SVG 尺寸约束 */
svg {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

html {
  font-family: var(--font-family);
  background: #EDE8E1;
  color: var(--color-text-primary);
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================
   移动端手机壳容器
   ============================ */
.mobile-shell {
  max-width: 390px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--color-bg-primary);
  position: relative;
  overflow-x: hidden;
}

@media (min-width: 391px) {
  .mobile-shell {
    min-height: 844px;
    margin: 40px auto;
    border-radius: 36px;
    border: 8px solid #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: auto;
  }
}

/* ============================
   品牌页眉（首页/列表页）
   ============================ */
.brand-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-header);
  min-height: 52px;
  gap: 10px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #8B5A2B, #A67C52);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.brand-logo svg {
  width: 18px;
  height: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.brand-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent-brown);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--color-accent-light);
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================
   头部导航栏（子页面带返回）
   ============================ */
.page-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-header);
  min-height: 52px;
}

.page-header .header-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.page-header .header-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -12px -8px -12px 0;
  cursor: pointer;
  color: var(--color-text-primary);
  border: none;
  background: none;
  font-size: 20px;
}

/* ============================
   卡片组件
   ============================ */
.card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 12px;
}

.card-elevated {
  box-shadow: var(--shadow-card-hover);
}

/* ============================
   按钮组件
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-brown), var(--color-accent-light));
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-primary);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  min-height: 36px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  min-height: 48px;
}

/* ============================
   标签组件
   ============================ */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-tag);
  font-size: 12px;
  font-weight: 500;
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
}

.tag-gold {
  background: #FFF8EE;
  color: var(--color-gold);
  border: 1px solid #F5E6CC;
}

.tag-brown {
  background: #F5EDE4;
  color: var(--color-accent-brown);
}

.tag-category {
  background: var(--color-bg-secondary);
  color: var(--color-accent-light);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
}

/* ============================
   状态徽章
   ============================ */
.badge-status {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-new {
  background: var(--color-status-new-bg);
  color: var(--color-status-new);
}

.badge-following {
  background: var(--color-status-following-bg);
  color: var(--color-status-following);
}

.badge-closed {
  background: var(--color-status-closed-bg);
  color: var(--color-status-closed);
}

.badge-lost {
  background: var(--color-status-lost-bg);
  color: var(--color-status-lost);
}

/* ============================
   表单组件
   ============================ */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-input);
  font-size: 15px;
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  transition: border-color 0.15s;
  font-family: var(--font-family);
  min-height: 44px;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(215, 163, 95, 0.1);
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

textarea.form-input {
  min-height: 80px;
  resize: vertical;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23A89B8C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ============================
   搜索栏
   ============================ */
.search-bar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-input);
  margin: 0 16px 12px;
  gap: 8px;
}

.search-bar svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--color-text-primary);
  outline: none;
  font-family: var(--font-family);
}

.search-bar input::placeholder {
  color: var(--color-text-muted);
}

/* ============================
   分类筛选标签（横向滚动）
   ============================ */
.filter-tabs {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 0 16px 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-white);
  color: var(--color-text-secondary);
  transition: all 0.15s;
}

.filter-tab.active {
  background: var(--color-accent-brown);
  color: white;
  border-color: var(--color-accent-brown);
}

/* ============================
   样品卡片网格
   ============================ */
.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px 100px;
}

.sample-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.sample-card:active {
  transform: scale(0.97);
}

/* 主图：橱窗实拍图铺满整个上半部分 */
.sample-card .sample-main-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #E8E0D4;
}

.sample-card .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sample-card .photo-type-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  background: rgba(92, 64, 42, 0.85);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  color: white;
  backdrop-filter: blur(4px);
}

.sample-card .card-body {
  padding: 10px 12px;
}

.sample-card .card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sample-card .card-meta {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sample-card .card-material {
  font-size: 11px;
  color: var(--color-text-muted);
}

.sample-card .card-price {
  font-size: 13px;
  color: var(--color-accent-brown);
  font-weight: 600;
}

/* ============================
   底部浮动操作栏
   ============================ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border-light);
  z-index: 50;
  display: flex;
  gap: 10px;
}

/* ============================
   底部 Tab 导航
   ============================ */
.bottom-tab-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border-light);
  z-index: 50;
  display: flex;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-tab-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 8px;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 10px;
  gap: 4px;
  transition: color 0.15s;
}

.bottom-tab-nav a.active {
  color: var(--color-accent-brown);
}

.bottom-tab-nav a svg {
  width: 22px;
  height: 22px;
}

/* ============================
   浮动按钮 (FAB)
   ============================ */
.fab {
  position: fixed;
  bottom: 80px;
  right: max(16px, calc((100vw - 480px) / 2 + 16px));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: white;
  border: none;
  box-shadow: var(--shadow-fab);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 45;
  transition: transform 0.15s;
}

.fab:active {
  transform: scale(0.9);
}

/* ============================
   步骤指示器
   ============================ */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.2s;
}

.step-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-gold);
}

.step-dot.completed {
  background: var(--color-accent-brown);
}

/* ============================
   上传占位区域
   ============================ */
.upload-area {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--color-bg-secondary);
}

.upload-area:hover,
.upload-area:active {
  border-color: var(--color-gold);
  background: #FFF8EE;
}

.upload-area svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

/* ============================
   预览色块（图片占位）
   ============================ */
.color-preview {
  width: 100%;
  border-radius: var(--radius-card);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.color-preview-lg {
  aspect-ratio: 3/4;
  border-radius: var(--radius-card);
}

/* ============================
   信息行
   ============================ */
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .info-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

.info-row .info-value {
  font-size: 14px;
  color: var(--color-text-primary);
  font-weight: 500;
  text-align: right;
}

/* ============================
   星星评分
   ============================ */
.stars {
  display: inline-flex;
  gap: 2px;
}

.star {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
}

.star.empty {
  color: var(--color-border);
}

/* ============================
   统计数字卡
   ============================ */
.stat-card {
  text-align: center;
  padding: 12px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-card);
}

.stat-card .stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-brown);
}

.stat-card .stat-label {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================
   登录页专用
   ============================ */
.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.login-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent-brown);
  margin-bottom: 8px;
}

.login-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.login-form {
  width: 100%;
  max-width: 320px;
}

/* ============================
   成功页面
   ============================ */
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #34D399);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.success-icon::after {
  content: "";
  display: block;
  width: 24px;
  height: 14px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg) translateY(-2px);
}

/* ============================
   密码切换按钮
   ============================ */
.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 4px;
}

/* ============================
   空状态
   ============================ */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
}

.empty-state svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
  margin-bottom: 16px;
}

.empty-state .empty-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-text-secondary);
}

.empty-state .empty-subtitle {
  font-size: 13px;
}

/* ============================
   横向滚动迷你卡片
   ============================ */
.mini-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 0 16px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mini-scroll::-webkit-scrollbar {
  display: none;
}

.mini-card {
  flex-shrink: 0;
  width: 80px;
  cursor: pointer;
  text-align: center;
}

.mini-card .mini-preview {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-bottom: 6px;
  border: 2px solid transparent;
}

.mini-card.selected .mini-preview {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(215, 163, 95, 0.2);
}

.mini-card .mini-name {
  font-size: 11px;
  color: var(--color-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================
   渲染数量徽章
   ============================ */
.render-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--color-bg-secondary);
  border-radius: 20px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* ============================
   可展开区域
   ============================ */
.expandable-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 14px 0;
}

.expandable-header .expand-icon {
  transition: transform 0.2s;
  color: var(--color-text-muted);
}

.expandable-header.expanded .expand-icon {
  transform: rotate(180deg);
}

.expandable-body {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* ============================
   滑动删除提示
   ============================ */
.swipe-hint {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
  padding: 4px 0;
}

/* ============================
   渐变背景预览
   ============================ */
.preview-gradient {
  background: linear-gradient(135deg, var(--preview-from), var(--preview-to));
}

/* ============================
   页面内容区间距
   ============================ */
.page-content {
  padding-bottom: 100px;
}

.section-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  padding: 16px 16px 10px;
}

/* ============================
   方案卡片
   ============================ */
.proposal-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.proposal-card:active {
  transform: scale(0.98);
}

/* ============================
   样品管理项
   ============================ */
.sample-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-light);
  cursor: pointer;
}

.sample-list-item:active {
  background: var(--color-bg-secondary);
}

.sample-list-item .item-preview {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
}

.sample-list-item .item-info {
  flex: 1;
  min-width: 0;
}

.sample-list-item .item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sample-list-item .item-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.sample-list-item .item-prices {
  text-align: right;
  flex-shrink: 0;
}

.sample-list-item .item-cost {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-brown);
}

.sample-list-item .item-supplier {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================
   滑块组件
   ============================ */
.range-slider {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--color-border);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ============================
   分组表单区
   ============================ */
.form-section {
  padding: 16px;
  border-bottom: 8px solid var(--color-bg-secondary);
}

.form-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-brown);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
