  /* ── FABRIC / COLOR ── */
  .fabric-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
  }
  .fabric-tab {
    flex: 1;
    padding: 10px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
  }
  .fabric-tab:hover { border-color: var(--border-hover); background: #FAFAF8; }
  .fabric-tab.active { background: var(--accent); color: white; border-color: var(--accent); }
  .fabric-tab small { display: block; font-size: 10px; font-weight: 300; margin-top: 2px; opacity: 0.7; }

  .color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .color-swatch {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .color-swatch:hover { transform: scale(1.08); box-shadow: var(--shadow-md); }
  .color-swatch.active { border-color: var(--accent); transform: scale(1.05); box-shadow: 0 0 0 2px var(--accent); }
  .color-swatch .swatch-name {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 3px 4px;
    font-size: 9px;
    text-align: center;
    background: rgba(0,0,0,0.45);
    color: white;
    backdrop-filter: blur(4px);
  }

