/* AMBER new-arrivals — colored category panels, 1:1 port of Figma 2:232 */

.na { padding: 64px 0; background: var(--color-bg); }

/* "NEW ARRIVALS" — Poppins Black, uppercase, with a yellow accent swoosh */
.na__title {
  position: relative;
  display: inline-block;
  margin: 0 0 40px;
  font-family: var(--font-heading, 'Poppins'), sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}
.na__title::after {
  content: "";
  position: absolute;
  left: 6%;
  right: -6%;
  bottom: -2px;
  height: 0.32em;
  border-radius: 999px;
  background: var(--color-accent);
  transform: skewX(-12deg);
  z-index: -1;
}

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

.na-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.na-card__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card, 16px);
  aspect-ratio: 484 / 704;
}
.na-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.na-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding-top: 24px;
}
.na-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.na-card__title {
  font-family: var(--font-heading, 'Poppins'), sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
.na-card__sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.na-card__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  transition: transform 0.2s ease, color 0.2s ease;
}
.na-card__arrow svg { width: 32px; height: 24px; }
.na-card:hover .na-card__arrow { transform: translateX(4px); color: var(--color-accent); }
.na-card:hover .na-card__title { color: var(--color-accent); }

/* Tablet — 2 columns */
@media (max-width: 960px) {
  .na__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* Mobile — single column */
@media (max-width: 600px) {
  .na { padding: 44px 0; }
  .na__title { margin-bottom: 28px; }
  .na__grid { grid-template-columns: 1fr; gap: 28px; }
  .na-card__foot { padding-top: 18px; }
}
