  :root {
    --bg: #f5f5f0;
    --wall: #3a3a3a;
    --room-fill: #ffffff;
    --room-label: #888;
    --furniture: #d4d4d0;
    --furniture-hover: #a8c8e8;
    --furniture-active: #5b9bd5;
    --accent: #2d6cb0;
    --panel-bg: #ffffff;
    --text: #333;
    --text-light: #888;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --divider: #e8e8e8;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  header {
    padding: 16px 24px;
    background: var(--panel-bg);
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header h1 { font-size: 18px; font-weight: 600; }
  header .subtitle { font-size: 13px; color: var(--text-light); }
  .main-container {
    display: flex;
    flex: 1;
    overflow: hidden;
  }
  .floor-plan-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: auto;
  }
  .floor-plan-area svg {
    max-width: 100%;
    height: auto;
  }
  .product-panel {
    width: 340px;
    background: var(--panel-bg);
    border-left: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .panel-handle { display: none; }
  .product-panel .panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-panel .panel-close {
    cursor: pointer;
    font-size: 18px;
    color: var(--text-light);
    background: none;
    border: none;
    padding: 4px 8px;
  }
  .product-panel .panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }
  .panel-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    text-align: center;
    gap: 12px;
  }
  .panel-placeholder .icon { font-size: 48px; opacity: 0.3; }
  .panel-placeholder p { font-size: 14px; line-height: 1.6; }
  .product-card { display: none; }
  .product-card.active { display: block; }
  .product-card .product-image {
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
  }
  .product-card .product-image img {
    width: 100%;
    height: 100%;
  }
  .product-card .product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .product-card .product-brand {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
  }
  .product-card .product-specs {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
  }
  .product-card .product-specs caption {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
  }
  .product-card .product-specs th,
  .product-card .product-specs td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
  }
  .product-card .product-specs th[scope="row"] {
    color: var(--text-light);
    font-weight: normal;
    width: 90px;
  }
  .product-card .product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .product-card .product-link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
  }
  .product-card .product-link:hover {
    opacity: 0.9;
  }
  /* ===== 子产品分组样式 ===== */
  .sub-product {
    padding: 16px 0;
    border-bottom: 2px solid var(--divider);
  }
  .sub-product:first-child { padding-top: 0; }
  .sub-product:last-child { border-bottom: none; }
  .sub-product .sub-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
  }
  .sub-product .sub-brand {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
  }
  .sub-product .sub-specs {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 8px;
  }
  .sub-product .sub-specs th,
  .sub-product .sub-specs td {
    padding: 6px 10px;
    text-align: left;
    border-bottom: 1px solid #f5f5f5;
    font-size: 12px;
  }
  .sub-product .sub-specs th[scope="row"] {
    color: var(--text-light);
    font-weight: normal;
    width: 80px;
  }
  .sub-product .sub-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
  }
  .product-card .empty-spec {
    padding: 24px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
  }
  /* SVG styles */
  .room { fill: var(--room-fill); stroke: var(--wall); stroke-width: 3; }
  .room-label {
    fill: var(--room-label);
    font-size: 13px;
    font-weight: 500;
    text-anchor: middle;
    pointer-events: none;
    user-select: none;
  }
  .furniture {
    fill: var(--furniture);
    stroke: #bbb;
    stroke-width: 1;
    cursor: pointer;
    transition: fill 0.2s;
  }
  .furniture:hover { fill: var(--furniture-hover); }
  .furniture.active { fill: var(--furniture-active); }
  .furniture-label {
    fill: #666;
    font-size: 10px;
    text-anchor: middle;
    pointer-events: none;
    user-select: none;
  }
  .window-marker {
    fill: #7ec8e3;
    stroke: #5ba8c8;
    stroke-width: 1;
    cursor: pointer;
    transition: fill 0.2s, stroke 0.2s;
  }
  .window-marker:hover { fill: #a8d8ea; }
  .window-marker.active { fill: #4a98b8; stroke: #2a7898; }
  .door-marker {
    fill: #d4a574;
    stroke: #b8895a;
    stroke-width: 1;
    cursor: pointer;
    transition: fill 0.2s, stroke 0.2s;
  }
  .door-marker:hover { fill: #e8c098; }
  .door-marker.active { fill: #a8794a; stroke: #88593a; }
  .hint-bar {
    padding: 8px 24px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
  }
  @media (max-width: 768px) {
    .main-container { flex-direction: column; }
    .floor-plan-area {
      min-height: calc(100vh - 48px);
      padding-bottom: 64px;
      align-items: flex-start;
      padding-top: 8px;
    }
    .product-panel {
      position: fixed;
      left: 0; right: 0; bottom: 0;
      width: 100%;
      height: var(--sheet-h, 52px);
      max-height: 92vh;
      border-left: none;
      border-top: 1px solid #e0e0e0;
      border-radius: 18px 18px 0 0;
      box-shadow: 0 -6px 24px rgba(0,0,0,0.18);
      transition: height 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
      overscroll-behavior: contain;
    }
    .product-panel.dragging { transition: none; }
    .panel-handle {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 0 4px;
      cursor: grab;
      flex-shrink: 0;
      touch-action: none;
      -webkit-tap-highlight-color: transparent;
    }
    .panel-handle:active { cursor: grabbing; }
    .panel-handle .handle-bar {
      width: 44px; height: 5px;
      border-radius: 3px;
      background: #d0d0d0;
    }
    .product-panel .panel-header {
      padding-top: 4px;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
  }
  .furniture:focus-visible,
  .window-marker:focus-visible,
  .door-marker:focus-visible,
  .panel-close:focus-visible,
  .product-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .furniture, .window-marker, .door-marker { outline: none; }
  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
  }
  @media print {
    .product-panel { display: none; }
    header { border: none; }
  }
  /* ===== 总价统计弹窗 ===== */
  .summary-btn {
    padding: 8px 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
  }
  .summary-btn:hover { opacity: 0.9; }
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: #fff;
    border-radius: 12px;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    overflow: hidden;
  }
  .modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
  }
  .modal-close {
    cursor: pointer;
    font-size: 18px;
    color: var(--text-light);
    background: none;
    border: none;
    padding: 4px 8px;
  }
  .modal-body { padding: 20px; overflow-y: auto; }
  .summary-total {
    text-align: center;
    padding: 16px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .summary-total .label { font-size: 13px; opacity: 0.85; }
  .summary-total .num { font-size: 30px; font-weight: 800; margin-top: 4px; }
  .summary-section { margin-bottom: 18px; }
  .summary-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .summary-section h3 .subtotal { font-size: 12px; color: var(--text-light); font-weight: 500; }
  .summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--divider);
    font-size: 13px;
  }
  .summary-row .name { color: var(--text); }
  .summary-row .amt { font-weight: 600; white-space: nowrap; }
  .summary-row.excluded .name { color: var(--text-light); }
  .summary-row.excluded .amt { color: var(--text-light); font-weight: 400; }
  .summary-empty { color: var(--text-light); font-size: 13px; }
  /* ===== 头部收纳下拉菜单 ===== */
  .header-btns { position: relative; }
  .menu-btn {
    padding: 8px 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .menu-btn .caret {
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    margin-left: 2px;
    transition: transform 0.2s;
  }
  .menu-btn.open .caret { transform: rotate(180deg); }
  .menu-btn:hover { opacity: 0.9; }
  .menu-pop {
    position: absolute;
    right: 0; top: calc(100% + 6px);
    min-width: 170px;
    background: var(--panel-bg);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: none;
    z-index: 60;
  }
  .menu-pop.open { display: block; }
  .menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--divider);
    font-size: 13px;
    color: var(--text);
    text-align: left;
    cursor: pointer;
  }
  .menu-item:last-child { border-bottom: none; }
  .menu-item:hover { background: #f5f5f0; }
  .menu-item .mi-icon { font-size: 16px; }

  /* ===== 施工进度 · 时间轴 ===== */
  .gantt-wrap { font-size: 13px; }
  .gantt-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }
  .gantt-toolbar .today-mark {
    font-size: 12px;
    color: var(--text-light);
    background: #f5f5f0;
    padding: 4px 10px;
    border-radius: 20px;
  }
  .gantt-legend { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  .gantt-legend .lg { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-light); }
  .gantt-legend .dot { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
  .phase {
    padding: 12px 0;
    border-bottom: 1px dashed var(--divider);
  }
  .phase:last-child { border-bottom: none; }
  .phase-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
  }
  .phase-name { font-weight: 600; font-size: 14px; }
  .phase-name .pct { color: var(--accent); font-weight: 700; margin-left: 8px; }
  .phase-dates { font-size: 12px; color: var(--text-light); white-space: nowrap; }
  .phase-bar {
    position: relative;
    height: 14px;
    background: #efefea;
    border-radius: 7px;
    overflow: hidden;
  }
  .phase-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    border-radius: 7px;
    transition: width 0.5s ease;
  }
  .phase-fill.done { background: #5b9bd5; }
  .phase-fill.ongoing { background: linear-gradient(90deg,#5b9bd5,#2d6cb0); }
  .phase-fill.ready { background: #d9d9d4; }
  .phase-note { margin-top: 6px; font-size: 12px; color: var(--text-light); line-height: 1.5; word-break: break-word; }
  /* ===== 已完成阶段折叠分组 ===== */
  .done-group { border-top: 1px solid var(--divider); margin-top: 4px; padding-top: 6px; }
  .done-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
  }
  .done-toggle:hover { color: var(--accent); }
  .done-toggle .toggle-left { display: flex; align-items: center; gap: 8px; }
  .done-toggle .toggle-count {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    background: #f0f0eb;
    padding: 2px 8px;
    border-radius: 12px;
  }
  .done-toggle .caret {
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--text-light);
    transition: transform 0.2s;
  }
  .done-toggle.open .caret { transform: rotate(180deg); }
  .done-list { display: none; }
  .done-list.open { display: block; }
  /* ===== 预算管理 ===== */
  .budget-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 12px; }
  .budget-card { background: #f8f8f4; border-radius: 10px; padding: 12px 14px; }
  .budget-card .bc-label { font-size: 12px; color: var(--text-light); }
  .budget-card .bc-num { font-size: 19px; font-weight: 700; margin-top: 4px; word-break: break-word; }
  .budget-card.accent { background: var(--accent); color: #fff; }
  .budget-card.accent .bc-label { color: rgba(255,255,255,.85); }
  .budget-card.warn { background: #fdecea; }
  .budget-card.warn .bc-num { color: #e74c3c; }
  .budget-cap-row {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 13px; color: var(--text-light); margin-bottom: 8px;
  }
  .budget-cap-row input {
    width: 130px; padding: 6px 8px; border: 1px solid #ddd;
    border-radius: 6px; font-size: 13px; color: var(--text);
  }
  .budget-bar { height: 14px; background: #efefea; border-radius: 7px; overflow: hidden; margin: 6px 0 12px; }
  .budget-bar-fill { height: 100%; background: linear-gradient(90deg,#5b9bd5,#2d6cb0); border-radius: 7px; transition: width .5s; }
  .budget-alert { background: #fdecea; color: #c0392b; border-radius: 8px; padding: 10px 14px; font-size: 13px; margin-bottom: 14px; }
  .budget-room-title {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 14px; font-weight: 600; margin: 16px 0 2px;
    padding-bottom: 5px; border-bottom: 1px solid var(--divider);
  }
  .budget-room-title .room-sub { font-size: 12px; color: var(--text-light); font-weight: 500; }
  .budget-row {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 9px 0; border-bottom: 1px dashed var(--divider); font-size: 13px;
  }
  .budget-row .b-name { flex: 1; word-break: break-word; }
  .budget-row .b-amt { font-weight: 600; white-space: nowrap; }
  .budget-row.pay-contract { align-items: center; }
  .budget-row .b-left { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
  .budget-row .b-contract { font-size: 12px; color: var(--text-light); word-break: break-word; }
  .budget-row .b-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
  .budget-row .b-pct { font-size: 12px; color: var(--accent); font-weight: 600; white-space: nowrap; }
  .pay-toggle {
    border: none; border-radius: 6px; padding: 5px 12px; font-size: 12px;
    cursor: pointer; white-space: nowrap;
  }
  .pay-toggle.paid { background: #e3f1e3; color: #1e8e3e; }
  .pay-toggle.unpaid { background: #fdecea; color: #c0392b; }
  .pay-toggle:hover { opacity: .85; }
  .budget-note { font-size: 12px; color: var(--text-light); margin-top: 14px; line-height: 1.6; }
  /* ===== 代办清单（原待定决策清单） ===== */
  .dec-stats { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
  .dec-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px dashed var(--divider); }
  .dec-item.solved { opacity: .45; }
  .dec-item.solved .dec-name,
  .dec-item.solved .dec-date,
  .dec-item.solved .dec-detail,
  .dec-item.solved .dec-cost { color: #999; text-decoration: line-through; }
  .dec-check { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
  .dec-date { flex-shrink: 0; font-size: 12px; color: var(--text-light); padding-top: 1px; min-width: 84px; }
  .dec-body { flex: 1; }
  .dec-body .dec-name { font-size: 13px; font-weight: 600; }
  .dec-body .dec-detail { font-size: 12px; color: var(--text-light); margin-top: 2px; }
  .dec-cost { flex-shrink: 0; font-size: 13px; font-weight: 700; color: var(--accent); padding-top: 1px; }
  .dec-empty { color: var(--text-light); font-size: 13px; padding: 24px 0; text-align: center; }
  @media (max-width: 768px) {
    .budget-summary { grid-template-columns: repeat(2, 1fr); }
  }
  /* 手机端：时间轴行改为上下排布，避免名称+金额挤一行换行错乱 */
  @media (max-width: 768px) {
    .phase-head { flex-direction: column; align-items: flex-start; gap: 4px; }
    .phase-name { line-height: 1.4; }
    .phase-dates { font-size: 12px; }
  }
  .gantt-today {
    position: relative;
    height: 2px;
    background: #e74c3c;
    margin: 10px 0;
    opacity: 0.7;
  }
  .gantt-today::after {
    content: attr(data-label);
    position: absolute;
    right: 0; top: 4px;
    font-size: 11px;
    color: #e74c3c;
  }

/* ===== 品牌调度 ===== */
.brand-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.brand-stat {
  background: #f8f8f4;
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
}
.brand-stat.accent {
  background: var(--accent);
  color: #fff;
}
.brand-stat .bs-label {
  font-size: 12px;
  color: var(--text-light);
}
.brand-stat.accent .bs-label {
  color: rgba(255,255,255,.85);
}
.brand-stat .bs-num {
  font-size: 19px;
  font-weight: 700;
  margin-top: 4px;
  word-break: break-word;
}
.brand-tip {
  font-size: 12px;
  color: var(--text-light);
  background: #f5f5f0;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.brand-group {
  margin-bottom: 16px;
  border: 1px solid var(--divider);
  border-radius: 10px;
  overflow: hidden;
}
.brand-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fafaf7;
  border-bottom: 1px solid var(--divider);
}
.brand-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.brand-meta {
  font-size: 12px;
  color: var(--text-light);
}
.brand-items {
  padding: 8px 0;
}
.brand-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px;
  padding: 8px 16px;
  font-size: 13px;
  align-items: center;
}
.brand-item:hover {
  background: #fafaf7;
}
.bi-room {
  font-size: 12px;
  color: var(--text-light);
  background: #f0f0eb;
  padding: 2px 8px;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
}
.bi-name {
  color: var(--text);
  word-break: break-word;
}
.bi-price {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  font-size: 12px;
}

/* ===== 分组选品导航 ===== */
.group-header {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.group-parent-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.group-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.group-nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.group-nav-btn:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.group-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.group-counter {
  font-size: 13px;
  color: var(--text-light);
  min-width: 50px;
  text-align: center;
}
.sub-image {
  width: 100%;
  height: 100%;;
  background: #f8f8f8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.sub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-image-empty {
  font-size: 48px;
  opacity: 0.2;
}
.group-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.group-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.2s;
}
.group-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}
.group-dot:hover {
  background: var(--accent);
}
