/* 4×4 circle mosaic on mobile homepage */

@media (max-width: 1023px) {
  body.zs-home-on section:has(a[href="/collections/deals"]):has(a[href="/collections/hair-care-picks"]),
  body.zs-home-on section.pt-4.pb-8 {
    display: none !important;
  }

  .zs-home-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 4px;
    padding: 10px 6px 18px;
    margin: 0;
    background: #fff;
    font-family: "Noto Sans", Inter, sans-serif;
  }

  .zs-home-cell a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #111;
  }

  .zs-home-dot {
    width: 78%;
    max-width: 86px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f3e6d8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .zs-home-cell.is-best .zs-home-dot {
    background: #2f6f4e;
  }

  .zs-home-dot img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center;
    flex-shrink: 0;
  }

  .zs-home-picks {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
    text-align: center;
    padding: 0 6px;
  }

  .zs-home-picks b {
    display: block;
    font-size: 9px;
    font-style: normal;
    font-family: "Noto Sans", Inter, sans-serif;
    letter-spacing: 0.08em;
    color: #f4d35e;
  }

  .zs-home-cell span {
    display: block;
    margin-top: 8px;
    padding: 0 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #111;
  }
}

@media (min-width: 1024px) {
  .zs-home-mosaic {
    display: none !important;
  }
}
