/* Color Swatches CSS */

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #e2e8f0;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-swatch.selected {
  border: 2px solid var(--brand-accent);
}

.color-swatch.selected::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--brand-accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.color-swatch.out-of-stock {
  opacity: 0.5;
  cursor: not-allowed;
  position: relative;
}

.color-swatch.out-of-stock::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #e53e3e;
  top: 50%;
  left: 0;
  transform: rotate(45deg);
}

/* Color variants */
.color-swatch-black {
  background-color: #000000;
}

.color-swatch-white {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
}

.color-swatch-red {
  background-color: #e53e3e;
}

.color-swatch-blue {
  background-color: #3b82f6;
}

.color-swatch-green {
  background-color: #10b981;
}

.color-swatch-yellow {
  background-color: #f59e0b;
}

.color-swatch-purple {
  background-color: #8b5cf6;
}

.color-swatch-pink {
  background-color: #ec4899;
}

.color-swatch-orange {
  background-color: #f97316;
}

.color-swatch-teal {
  background-color: #14b8a6;
}

.color-swatch-grey {
  background-color: #6b7280;
}

.color-swatch-sky-blue {
  background-color: #0ea5e9;
}

/* Selected color name display */
#selected-color-name {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 0.5rem;
  font-style: italic;
}