html {
  scroll-behavior: smooth;
}

.nav-link {
  border: 1px solid transparent;
  border-radius: 0.5rem;
  padding: 0.65rem 0.75rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-link:hover {
  border-color: rgb(231 229 228);
  background: rgb(250 250 249);
  color: rgb(28 25 23);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: rgb(180 83 9);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel {
  border: 1px solid rgb(231 229 228);
  border-radius: 0.5rem;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(28, 25, 23, 0.06);
}

.btn-primary,
.btn-secondary,
.small-btn,
.category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-primary {
  min-height: 3rem;
  border: 1px solid rgb(28 25 23);
  background: rgb(28 25 23);
  padding: 0.75rem 1.15rem;
  color: white;
}

.btn-primary:hover,
.small-btn:hover {
  transform: translateY(-2px);
  background: rgb(245 158 11);
  border-color: rgb(245 158 11);
  color: rgb(28 25 23);
}

.btn-primary.invert {
  background: rgb(28 25 23);
  color: white;
}

.btn-secondary,
.small-btn,
.category-link {
  border: 1px solid rgb(231 229 228);
  background: white;
  color: rgb(28 25 23);
}

.btn-secondary.dark {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.btn-secondary {
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
}

.small-btn {
  min-height: 2.5rem;
  padding: 0.5rem 0.8rem;
}

.category-link {
  min-height: 2.5rem;
  padding: 0.55rem 0.75rem;
  color: rgb(87 83 78);
}

.category-link:hover,
.category-link.active {
  color: rgb(28 25 23);
  background: rgb(254 243 199);
  border-color: rgb(245 158 11);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(231 229 228);
  padding: 0.8rem 0;
  color: rgb(87 83 78);
}

.field-label {
  display: grid;
  gap: 0.5rem;
  color: rgb(28 25 23);
  font-weight: 900;
}

.field-label input,
.field-label textarea,
.field-label select {
  width: 100%;
  border: 1px solid rgb(231 229 228);
  border-radius: 0.5rem;
  background: white;
  padding: 0.85rem 0.9rem;
  color: rgb(28 25 23);
  font: inherit;
  font-weight: 400;
}

.hero-carousel .carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 5000ms ease;
}

.hero-carousel .carousel-image.active {
  opacity: 1;
  transform: scale(1);
}

.image-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgb(28 25 23);
  box-shadow: 0 22px 50px rgba(28, 25, 23, 0.16);
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.image-tile:hover img {
  transform: scale(1.06);
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.9), transparent 62%);
}

.image-tile div {
  position: absolute;
  z-index: 1;
  inset: auto 1.25rem 1.25rem;
  color: white;
}

.image-tile span {
  color: rgb(252 211 77);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-tile h2 {
  margin-top: 0.35rem;
  font-size: 1.6rem;
  font-weight: 900;
}

.product-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(28, 25, 23, 0.12);
}

.mini-stat {
  border: 1px solid rgb(231 229 228);
  border-radius: 0.5rem;
  background: white;
  padding: 1rem;
}

.mini-stat strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  color: rgb(28 25 23);
}

.mini-stat span {
  color: rgb(87 83 78);
}

.fashion-shot {
  width: 100%;
  min-height: 220px;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(28, 25, 23, 0.12);
}

.fashion-shot.tall {
  grid-row: span 2;
  height: 100%;
}

.category-card {
  display: flex;
  min-height: 150px;
  align-items: end;
  border: 1px solid rgb(68 64 60);
  border-radius: 0.5rem;
  padding: 1.25rem;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.26), transparent),
    rgb(41 37 36);
  transition: transform 220ms ease, background 220ms ease;
}

.category-card:hover {
  transform: translateY(-5px);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.45), transparent),
    rgb(28 25 23);
}

.footer-title {
  color: white;
  font-weight: 900;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-links a {
  color: rgb(214 211 209);
}

.footer-links a:hover {
  color: rgb(252 211 77);
}

.policy-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  padding-left: 1.25rem;
  color: rgb(87 83 78);
  line-height: 1.75;
  list-style: disc;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}
.nav-link {
  @apply rounded-lg px-3 py-2 transition hover:bg-stone-100;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


