/* ──────────────────────────────────────────────
   Mants — Color Cards (Block 3)
   ────────────────────────────────────────────── */

.colors-section {
  padding: 80px 0;
}

.colors-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.colors-section__eyebrow {
  margin-bottom: 16px;
}

.colors-section__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.colors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.color-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.color-card__image img {
  transition: transform 0.4s ease;
}

.color-card:hover .color-card__image img {
  transform: scale(1.03);
}

.color-card__name {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.color-card__image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.color-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.color-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 260px;
}

.color-card__price {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ── Responsive ─────────────────────────────── */

@media (max-width: 991px) { /* lg and down */
  .colors-section {
    padding: 64px 0;
  }

  .colors-section__header {
    margin-bottom: 40px;
  }

  .colors-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) { /* sm and down */
  .colors-section {
    padding: 48px 0;
  }
}
