*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.panel {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(18, 18, 18, 0.12);
}

.panel-muted {
  background: #f8f8f8;
  border-radius: 28px;
  border: 1px solid rgba(18, 18, 18, 0.12);
}

.badge-neutral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  padding: 4px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.soft-shadow {
  box-shadow: 0 14px 40px rgba(12, 12, 12, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.rating-wreath::before {
  content: "★★★★★";
  letter-spacing: 0.25em;
  font-size: 0.95rem;
  color: #111111;
}

