/** Shopify CDN: Minification failed

Line 104:12 Unexpected "{"
Line 104:21 Expected ":"
Line 104:28 Unexpected "{"
Line 109:12 Unexpected "{"
Line 109:21 Expected ":"
Line 114:12 Unexpected "{"
Line 114:21 Expected ":"
Line 122:12 Unexpected "{"
Line 122:21 Expected ":"
Line 130:14 Unexpected "{"
... and 29 more hidden warnings

**/


/* CSS from section stylesheet tags */
.custom-slider { position: relative; max-width: 100%; overflow: hidden; margin-bottom: 30px; }
.custom-slider .slides { display: flex; transition: transform 0.5s ease; }
.custom-slider .slide { min-width: 100%; box-sizing: border-box; }
.custom-slider .slide img { width: 100%; display: block; border-radius: 20px; }

/* Classic Prev/Next buttons */
.custom-slider .prev, .custom-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #f31010;
    border: none;
    padding: 32px 13px;
    cursor: pointer;
    z-index: 2;
    font-size: 2rem;
    transition: background 0.3s, color 0.3s;
}
.custom-slider .prev:hover, .custom-slider .next:hover {
    background: #f31010;
    color: #fff;
}
.custom-slider .prev { left: 0; }
.custom-slider .next { right: 0; }

/* Mobile adjustments */
@media screen and (max-width: 767px) {
        .custom-slider .prev, .custom-slider .next {
        font-size: 1.5rem;
        padding: 21px 3px;
    }
}

/* Thumbnail nav using mobile images */
.custom-slider .slider-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  width: 100%;
  margin-top: 10px;
  gap: 5px;
}
.custom-slider .slider-nav img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  opacity: 0.7;
  border: 2px solid transparent;
  border-radius: 10px;
}
.custom-slider .slider-nav img.active { 
  opacity: 1; 
  border-color: #000; 
}
@media screen and (max-width: 767px) {
  .custom-slider .slider-nav { display: none; }
.template-index .t4s-custom-liquid {
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
}

}

/* Mobile dot navigation */
.custom-slider .dots { display: none; }
@media screen and (max-width: 767px) {
  .custom-slider .dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 5px;
  }
  .custom-slider .dots span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }
  .custom-slider .dots span.active { background: #f31010; }
}
/* Namespace everything to this section instance */
.mix-match-{{ section.id }} {
  --mm-gap: 12px;   /* mobile gap between cards */
  --mm-radius: 12px;
}

.mix-match-{{ section.id }} .mm-wrap {
  margin: 40px auto;
  text-align: left;
}

.mix-match-{{ section.id }} .mm-title {

  margin-bottom: 8px;
       font-size: 32px;
        font-weight: 700;
        color: #293341;
}

.mix-match-{{ section.id }} .mm-text {
  margin-bottom: 18px;
   color: #000; 
   font-weight: 300;
}

/* Desktop & tablet: show all items (no scrolling) */
@media (min-width: 768px) {
  .mix-match-{{ section.id }} .mm-scroll {
    overflow: visible;
  }
  .mix-match-{{ section.id }} .mm-track {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
  }
  .mix-match-{{ section.id }} .mm-card {
    flex: 1 1 22%;
    max-width: 22%;
    min-width: 200px;
  }
}

/* Mobile: horizontal scroll with .5 1 1 .5 initial view */
@media (max-width: 767px) {
  .mix-match-{{ section.id }} .mm-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; /* nice snapping while staying "normal scroll" */
    scroll-padding-left: 0;        /* set dynamically via JS */
    scroll-padding-right: 0;       /* set dynamically via JS */
  }
  .mix-match-{{ section.id }} .mm-track {
    display: flex;
    align-items: stretch;
    gap: var(--mm-gap);
    padding: 0;                    /* right padding set dynamically for last half-peek */
    box-sizing: border-box;
    gap: 10px;
  }
  .mix-match-{{ section.id }} .mm-card {
    flex: 0 0 var(--mm-cardW, 150px); /* width set by JS to 1/3 of viewport minus gaps */
    scroll-snap-align: start;         /* frames snap so two full cards remain centered with peeks */
  }

.mix-match-{{ section.id }} .mm-title {

  margin-bottom: 8px;
       font-size: 20px;
        font-weight: 700;
        color: #293341;
}

}

/* Card visuals */
.mix-match-{{ section.id }} .mm-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.mix-match-{{ section.id }} .mm-card-text {
  margin-top: 8px;
  text-align: center;
  color: #000;
  font-weight: 300;
}


.mix-match-{{ section.id }} article.mm-card:hover  .mm-card-text {
  color: #db291d;
}



/* Hide toggles */
.mix-match-{{ section.id }}.hide-desktop { display: none !important; }
@media (max-width: 1024px) {
  .mix-match-{{ section.id }}.hide-tablet { display: none !important; }
}
@media (max-width: 767px) {
  .mix-match-{{ section.id }}.hide-mobile { display: none !important; }
}

/* optional: hide scrollbar on WebKit (still scrollable) */
@media (max-width: 767px) {
  .mix-match-{{ section.id }} .mm-scroll::-webkit-scrollbar { display: none; }
}

div#shopify-section-template--17064843411612__mix_and_match_arHVqe {
    max-width: 1400px;
    margin: auto;
}

section.mix-match-template--17064843411612__mix_and_match_arHVqe {
    padding: 0 15px;
}

.mix-match-{{ section.id }} h2 {
          font-size: 32px;
        font-weight: 700;
        color: #293341;
}