.dress-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.color-wheel {
  width: min(220px, 70%);
  height: min(220px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto;

  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    hsl(0 95% 52%),
    hsl(30 95% 52%),
    hsl(50 95% 52%),
    hsl(80 80% 46%),
    hsl(140 70% 42%),
    hsl(180 75% 42%),
    hsl(210 85% 48%),
    hsl(250 75% 52%),
    hsl(290 75% 52%),
    hsl(330 85% 52%),
    hsl(0 95% 52%)
  );
  box-shadow:
    0 0 0 10px #fff;
  position: relative;
}

.color-wheel::after {
  content: "";
  position: absolute;
  inset: 89%;
  background: var(--cream);
  border-radius: 50%;
}

.dress-note {
  font-family: var(--font-body);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
  margin: 0 0 10px;
}

@media (max-width: 760px) {
  .dress-layout { grid-template-columns: 1fr; text-align: center; }
  .color-wheel {
    width: 160px;
    height: 160px;
  }
}
