/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 135:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.custom-tees-section h1::after{
  content: "";
    display: block;
    width: 98px;
    height: 1px;
    background-color: #8b4513;
    margin: 20px auto;
}
  
<style>
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 90%;
    justify-content: center;
    margin: auto;
  }

  .custom-tees-section {
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
  }

  .custom-tees-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }

  .collection-box {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }

  .collection-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background 0.4s ease;
    z-index: 1;
  }

  .collection-box:hover::before {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .collection-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1);
    transition: transform 0.5s ease;
  }

  .collection-box:hover .collection-image {
    transform: scale(1.08);
  }

  .collection-image-link {
    position: absolute;
    inset: 0;
    z-index: 3;
  }

  .collection-text {
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    z-index: 4;
    color: white;
  }

  .collection-text a {
    display: block;
    color: white;
    text-decoration: none;
  }

  .collection-text h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .collection-text p {
    font-size: 0.9em;
    letter-spacing: 1px;
  }

  @media (max-width: 768px) {
    .collection-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .collection-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .collection-text h3 {
      font-size: 0.8em;
    }

    .custom-tees-section h1 {
      font-size: 1.7rem;
    }
  }
</style>