/** Shopify CDN: Minification failed

Line 60:0 Unexpected "<"
Line 95:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.custom-categories-wrapper {
    padding: 60px 20px 40px; /* ↑↑ MÁS espacio arriba */
    max-width: 1200px;
    margin: 0 auto;
  }

  .custom-categories-wrapper h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 35px;
    letter-spacing: 1px;
  }

  .custom-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    justify-items: center;
    text-align: center;
  }

  .custom-categories-grid img {
    object-fit: cover;
    width: 100%;
    height: 160px;
    border-radius: 12px;
  }

  .custom-categories-grid h3 {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
  }

  @media screen and (min-width: 768px) {
    .custom-categories-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .custom-categories-wrapper {
      padding: 80px 40px 60px; /* más espacio en PC */
    }
  }

  @media screen and (max-width: 767px) {
    .custom-categories-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
<style>
  .custom-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    justify-items: center;
    padding: 20px;
  }
  @media screen and (min-width: 768px) {
    .custom-categories-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media screen and (max-width: 767px) {
    .custom-categories-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .custom-categories-grid a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
  }
  .custom-categories-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
  }
  .custom-categories-grid h3 {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
  }
  </style>