.hero--home {
  position: relative;
  color: #ffffff;
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}
.hero__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__image-wrapper {
  width: 100%;
  height: 100%;
}
.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(17, 14, 11, 0.88), rgba(17, 14, 11, 0.35));
}
.hero__layout {
  position: relative;
  max-width: 720px;
}
.hero-search {
  margin-top: var(--space-6);
}
.hero-search__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero-search__input {
  flex: 1 1 240px;
  min-width: 0;
}
.hero-search__button {
  flex: 0 0 auto;
}
.hero-search__hint {
  margin-top: 0.35rem;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.8);
}
.section-header {
  margin-bottom: var(--space-6);
}
.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-primary-strong);
}
.featured-trends-grid {
  align-items: stretch;
}
.popular-outfits-grid .card__image {
  margin-bottom: var(--space-3);
}
.seasonal-mixmatch {
  background-color: var(--color-surface-muted);
}
.essentials-grid .card:first-child h2 {
  font-size: clamp(var(--font-size-2xl), 3vw, var(--font-size-4xl));
}
.blog-latest {
  background-color: var(--gray-50);
}
.newsletter-card {
  background: linear-gradient(135deg, #fdf8f2, #f3e6d7);
}
.newsletter-form .alert {
  margin-top: var(--space-3);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-surface);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(201, 162, 125, 0.6);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  margin-top: var(--space-2);
  margin-bottom: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.contact-card .social-list {
  list-style: none;
  padding-left: 0;
  margin-top: var(--space-3);
}
.contact-card .social-list li {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}
.text-center {
  text-align: center;
}
.hide-on-desktop-only {
  display: none;
}
@media (max-width: 900px) {
  .hero--home {
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
  }
  .hero-search__row {
    flex-direction: column;
  }
  .hero-search__button {
    width: 100%;
    justify-content: center;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .hide-on-desktop-only {
    display: block;
  }
}
@media (max-width: 640px) {
  .hero__layout {
    max-width: 100%;
  }
}
