.trends-hero {
  background: radial-gradient(circle at top left, rgba(209, 213, 219, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(17, 24, 39, 0.08), transparent 55%);
}

.trends-hero__inner {
  max-width: 48rem;
  margin-inline: auto;
}

.trends-hero__actions {
  margin-top: var(--space-6);
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.trends-subnav {
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  background-color: var(--color-bg-elevated);
}

.trends-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-3);
}

.trends-subnav__toggle {
  display: none;
  font-size: var(--font-size-xs);
}

.trends-subnav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--font-size-xs);
}

.trends-subnav__list a {
  padding-inline: var(--space-2);
  padding-block: 0.35rem;
  border-radius: var(--radius-xl);
  background-color: var(--color-gray-100);
  color: var(--color-gray-700);
}

.trends-subnav__list a:hover {
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
}

.trends-section {
  background-color: var(--color-bg);
}

.trends-section--alt {
  background-color: var(--color-bg-elevated);
}

.trends-section__grid {
  align-items: center;
  gap: var(--space-8);
}

.trends-section__grid--reverse {
  direction: rtl;
}

.trends-section__grid--reverse > * {
  direction: ltr;
}

.trends-section__content {
  max-width: 32rem;
}

.trends-section__header {
  max-width: 38rem;
  margin-bottom: var(--space-6);
}

.trends-section__header--inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
}

.trends-section__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.trends-section__cta-group--center {
  justify-content: center;
}

.trends-section__cta-group--stack {
  flex-direction: column;
  align-items: center;
}

.trends-section__media {
  max-width: 32rem;
  margin-inline: auto;
}

.trends-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--color-bg-elevated);
}

.trends-figure img {
  width: 100%;
  height: auto;
}

.trends-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.trends-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.trends-list {
  display: grid;
  gap: var(--space-2);
  padding-left: 1.1rem;
  margin-top: var(--space-3);
}

.trends-list li {
  position: relative;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.trends-list li::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background-color: var(--color-gray-400);
}

.trends-color-grid {
  gap: var(--space-6);
}

.trends-card__footer {
  display: flex;
  justify-content: flex-start;
}

.trends-look-card__hint,
.trends-influencer-card__tip {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  margin-top: var(--space-2);
}

.trends-review-card__meta {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  margin-top: var(--space-2);
}

.trends-reviews-grid,
.trends-influencer-grid,
.trends-looks-grid {
  gap: var(--space-6);
}

.trends-review-card,
.trends-look-card,
.trends-influencer-card {
  height: 100%;
}

@media (max-width: 900px) {
  .trends-section__header--inline {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-block: var(--space-12);
  }

  .trends-subnav__toggle {
    display: inline-flex;
  }

  .trends-subnav__list {
    display: none;
    width: 100%;
    margin-top: var(--space-2);
  }

  .trends-subnav__list.is-open {
    display: flex;
  }

  .trends-subnav__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .trends-section__grid--reverse {
    direction: ltr;
  }

  .trends-section__content,
  .trends-section__media {
    max-width: 100%;
  }

  .trends-section__cta-group--stack {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trends-figure,
  .card {
    scroll-margin-top: 5rem;
  }
}
