/**
 * v38 — SHOP BY CATEGORY full width (no Loved by Thousands split)
 */
.page-home .home-cat-full {
  padding: 16px 10px 20px;
  background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}
.page-home .home-cat-full .home-cat-full-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 4px;
  box-sizing: border-box;
}
.page-home .home-cat-full .duo-card-categories {
  width: 100%;
  padding: 18px 14px 16px;
  border-radius: 20px;
}
.page-home .home-cat-full .duo-head {
  justify-content: center;
  margin-bottom: 16px;
}
.page-home .home-cat-full .duo-cat-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  padding: 0;
}
@media (max-width: 767px) {
  .page-home .home-cat-full .duo-cat-matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
}
@media (max-width: 420px) {
  .page-home .home-cat-full .duo-cat-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.page-home .home-cat-full .duo-cat-tile {
  flex: unset;
  min-width: 0;
  max-width: none;
  width: 100%;
  aspect-ratio: 1;
}
