.color-option {
  display: flex;
  align-items: center;
  gap: 12px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;   /* ⬅ THIS prevents collapse */
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.4);
}

.hidden {
    display: none;
}

.color-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .color-selector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}