:root {
  --color-gold: #d4a84b;
}

.product {
  text-align: center;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.product__emblem {
  margin-bottom: 2rem;
}

.product__emblem img {
  width: 120px;
  height: auto;
}

.product__name {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.product__tagline {
  font-size: 1.125rem;
  color: #6a6a6a;
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.product__description {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.product__specs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.product__spec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product__spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a9a9a;
}

.product__spec-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
}

.product__colorway {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product__swatch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product__swatch-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.product__swatch-label {
  font-size: 0.875rem;
  color: #4a4a4a;
}

.product__cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product__cta:hover {
  background: #333333;
}
