/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 89:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .tabs-container {
    display: flex;
    margin-bottom: 20px;
  }

  .tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: normal;
    font-size: 25px;
    text-transform: uppercase;
  }
  .tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: solid .25px grey;
}

.tab.active {
    font-weight: bold;
    text-decoration: none; /* Remove default underline */
    border-bottom: 2px solid black; /* Add custom underline */
    padding-bottom: 4px; 
}

  .tab-content {
    display: none;
    margin-bottom: 60px;
  }

  .tab-content.active {
    display: block;
  }

  .images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin:auto;
  }

  .image-block {
    text-align: center;
    position: relative;
  }

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

  .image-block p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin:0;
    line-height: 1;
}
  @media screen and (max-width: 749px){
   .images-grid {
      grid-template-columns: repeat(2, 1fr);
      max-width: 85vw;
    }
    .image-block p {
      font-size: 25px;
    }
    .tab {
      font-size: 16px;
    }
  }
</style>