/** Shopify CDN: Minification failed

Line 121:20 Unexpected "{"
Line 121:29 Expected ":"
Line 122:20 Unexpected "{"
Line 122:29 Expected ":"
Line 125:20 Unexpected "{"
Line 125:29 Expected ":"
Line 134:20 Unexpected "{"
Line 134:29 Expected ":"
Line 142:20 Unexpected "{"
Line 142:29 Expected ":"
... and 12 more hidden warnings

**/
.section-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom:20px;
}

.section-wrapper .category-block {
    flex: 1 0 0%;
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
    padding-top: 14px;
    padding-bottom: 13px;
    box-shadow: 0 2px 5px rgba(0,0,0,.25);
    text-decoration: none;
    color: #1a1a1a;
    margin:0 0 0 10px;
}

.section-wrapper .category-block:first-child {
    margin: 0;
}

.section-wrapper .category-block .item-inner {
    transform: skewX(10deg);
    -webkit-transform: skewX(10deg);
    padding-left: 20px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-wrapper .category-block .item-inner .thumb-wrapper {
    margin-right: 20px;
    min-width: 45px;
    width: 45px;
}

.section-wrapper .category-block .item-inner .thumb-wrapper img {
    width: 100%;
}

.section-wrapper .category-block .item-inner .info-wrapper > h5 {
    font-size: 1.2rem;
    font-family: 'Montserrat','Helvetica Neue',Helvetica,Arial,sans-serif;
    font-weight: 600;
    letter-spacing: .75px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.section-wrapper .category-block .item-inner .info-wrapper .caption {
    letter-spacing: .25px;
    color: rgba(26,26,26,.45);
    margin:0;
    padding:0;
}

.section-text-wrapper {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-text-wrapper li {
    font-size: 1.1rem;
    display:block;
    padding: 5px 0;
    font-family: 'Montserrat','Helvetica Neue',Helvetica,Arial,sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.27px;
    font-weight: 400;
}

@media screen and (max-width: 1200px) {
    .section-category-suggestions {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        margin-bottom: 20px;
    }
    
    .section-category-suggestions .section-wrapper {
        margin-bottom: 0;
        padding: 10px;
    }

    .section-category-suggestions .category-block {
        min-width: 220px;
    }
}

@media screen and (max-width: 768px) {
    .section-text-wrapper {
        align-items: center;
        flex-direction: column;
    }
}
/* -----------------------------------------
   Mobile: 3 per row grid (compact, no overflow)
   ----------------------------------------- */
@media (max-width: 749px){
  #shopify-section-{{ section.id }} .cs-desktop{ display:none !important; }
  #shopify-section-{{ section.id }} .cs-mobile{ display:block !important; }

  /* True 3-up grid that fits */
  #shopify-section-{{ section.id }} .cs-mobile.section-wrapper{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 0 12px !important;
    margin: 0 !important;
    width: 100% !important;
  }

  #shopify-section-{{ section.id }} .cs-mobile.section-wrapper > .category-block{
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    flex: none !important;
  }

  /* Compact tile sizing */
  #shopify-section-{{ section.id }} .cs-mobile .item-inner{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    padding: 10px 6px !important;
    gap: 6px !important;

    border-radius: var(--cat-tile-radius) !important;
  }

  #shopify-section-{{ section.id }} .cs-mobile .thumb-wrapper{
    width: 30px !important;
    height: 30px !important;
  }

  #shopify-section-{{ section.id }} .cs-mobile .thumb-wrapper img{
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  #shopify-section-{{ section.id }} .cs-mobile h5{
    font-size: 10px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
  }

  #shopify-section-{{ section.id }} .cs-mobile .caption{
    font-size: 10px !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    opacity: .65 !important;
  }

  /* Hide slider dots/arrows on mobile grid */
  #shopify-section-{{ section.id }} .slick-dots,
  #shopify-section-{{ section.id }} .slick-arrow{
    display: none !important;
  }
}