/* Maison Silk — luxury accents */
html {
  scroll-behavior: smooth;
}
::selection {
  background: rgba(201, 169, 110, 0.35);
  color: #0f0f0f;
}
.text-balance {
  text-wrap: balance;
}
.hero-gradient {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 169, 110, 0.12), transparent 70%);
}
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}
.btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: #f5ebdd;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn-lux:hover {
  background: #c9a96e;
  color: #0f0f0f;
  border-color: #c9a96e;
}
.card-product {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}
.card-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  ring: 2px;
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.5);
}
