/**
 * Sen Computer — dedicated "Nouveautés" page. Reuses .sc-product-grid
 * (homepage-redesign.css) and .cp-empty/.cp-pagination (category-page.css).
 */

.na-hero {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(120deg, var(--sc-lilac) 0%, #b6a9ff 100%);
  border-radius: 20px;
  padding: 32px 30px;
  margin-bottom: 8px;
  color: #151515;
  overflow: hidden;
  position: relative;
}
.na-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, hsla(0, 0%, 100%, 0.4), transparent 55%);
  pointer-events: none;
}

.na-hero-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.3);
  flex-shrink: 0;
  font-size: 28px;
  animation: na-sparkle-pulse 2.4s ease-in-out infinite;
}
@keyframes na-sparkle-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.12) rotate(8deg); opacity: 0.85; }
}

.na-hero-eyebrow {
  font-size: var(--fs-9);
  font-weight: var(--weight-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-bottom: 4px;
}
.na-hero h1 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: var(--weight-800); margin-bottom: 6px; line-height: 1.1; }
.na-hero-desc { font-size: var(--fs-8); max-width: 62ch; line-height: 1.6; opacity: 0.9; }

@media (prefers-reduced-motion: reduce) {
  .na-hero-icon { animation: none; }
}
