/* ── Products: editorial grid (store landing) ── */
.home-products {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.products-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.products-editorial__slot {
  min-width: 0;
}

.products-strip-label {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

/* ── Store landing: split promo grid ── */
.store-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.store-promo-grid__aside {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-secondary);
}

.store-promo-grid__stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.store-promo-grid__stat-item {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  border: 1px solid var(--color-border);
}

.store-promo-grid__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent);
}

.store-promo-grid > div:last-child {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  min-width: 0;
}

.store-promo-grid .section-header {
  margin-bottom: 0;
}

.store-promo-grid .products-editorial {
  margin-top: 0;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .products-editorial {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    row-gap: var(--space-xl);
  }

  .store-promo-grid {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .products-editorial {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    row-gap: var(--space-xl);
  }

  .products-editorial__slot--hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .products-editorial__slot--hero .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .products-editorial__slot--hero .product-card__media {
    aspect-ratio: 4 / 5;
    flex: 1;
  }

  .products-editorial__slot--hero .product-card__body {
    justify-content: center;
    padding: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .home-products {
    gap: var(--space-xl);
  }
}
