/** Shopify CDN: Minification failed

Line 16:18 Unexpected "{"
Line 16:27 Expected ":"
Line 16:34 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-nav (INDEX:25) */
html {
  scroll-behavior: smooth;
}
.page-navigation-{{ section.id }} {
  max-width: 1521px;
  margin: 0 auto;
}
.navigation-container {
  width: 100%;
  height: 90px;
  padding: 0 40px;
  margin: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
  z-index: 4001;
  opacity: 1;
  visibility: visible;
}

.navigation-container.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

.navigation-container.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
}

.navigation-container a {
  text-decoration: underline;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  user-select: none;
}

.nav-toggle .toggle-icon {
  font-weight: bold;
  margin-left: 0.5rem;
}

/* Nav links container */
.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* MOBILE styles */
@media screen and (max-width: 768px) {
  /* Dropdown enabled container flex to column */
  .navigation-container.dropdown-enabled {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    height: auto;
  }

  /* Fixed nav dropdown enabled height */
  .navigation-container.dropdown-enabled.is-fixed {
    height: 60px;
  }

  .nav-toggle {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }

  /* Dropdown enabled nav-links styles (hidden by default) */
  .navigation-container.dropdown-enabled .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 0 25px 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  /* Show nav-links when open */
  .navigation-container.dropdown-enabled .nav-links.open {
    display: flex;
  }

  .navigation-container.dropdown-enabled .nav-links a {
    padding: 0.25rem 0;
    width: 100%;
    white-space: normal;
    text-decoration: none;
  }

  /* For non-dropdown (Sweats Guide) nav-links: force row display */
  .navigation-container:not(.dropdown-enabled) .nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .navigation-container:not(.dropdown-enabled) .nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;  /* prevent wrapping */
    gap: 1rem;
    overflow-x: auto;             /* allow horizontal scroll if needed */
    -webkit-overflow-scrolling: touch;
  }

  .navigation-container:not(.dropdown-enabled) .nav-links a {
    white-space: nowrap; /* prevent link text wrapping */
  }

}
/* END_SECTION:custom-nav */

/* START_SECTION:instagram-feed (INDEX:99) */
.instagram-feed-section {
  margin: 0 auto;
  max-width: 1521px;
}
.instagram-feed-section {
  padding: 40px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-title-insta {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 0 20px;
  color: #000;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media screen and (min-width: 1600px) {
  .instagram-feed-section {
      padding: 40px 64px;
  }
  
  .image-container,
  .video-container {
      height: 100% !important;
      aspect-ratio: 3/4;
  }

  .instagram-video {
    height: 100% !important;
  }
}

/* Tablet styles - 3 columns from 768px to 1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .video-controls {
    opacity: 1 !important;
  }
}

/* Desktop */
@media screen and (min-width: 1300px) and (max-width: 1599px) {
  .instagram-video{
    height: 450px !important;
  }

  .image-container,
  .video-container {
    height: 450px;
    aspect-ratio: 2/4 !important;
  }

  .section-title-insta{
    margin: 0;
  }
  
  .video-controls {
    opacity: 1 !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1299px) {
  .instagram-video{
    height: 450px !important;
  }

  .image-container,
  .video-container {
    height: 350px;
    aspect-ratio: 1/4 !important;
  }

  .section-title-insta{
    margin: 0;
  }
  
  .video-controls {
    opacity: 1 !important;
  }
}

/* Desktop styles - ensure 4 columns from 1024px up */
@media screen and (min-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }


  .video-container{
    padding-top: 0px !important;
  }

  .section-header {
      margin-bottom: 2rem;
  }
  
  .video-controls {
    opacity: 1 !important;
  }
}

.instagram-post {
  position: relative;
}

.instagram-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.post-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.image-container,
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.placeholder-image {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  z-index: 10;
}

.sound-toggle,
.play-pause {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
}

.sound-toggle svg,
.play-pause svg {
  color: white;
  fill: white;
}

.sound-toggle:hover,
.play-pause:hover {
  background: rgba(0, 0, 0, 0.9);
}

.account-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px 15px 15px;
}

.account-name {
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.no-posts {
  text-align: center;
  padding: 40px;
  color: #666;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .instagram-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    margin: 0 16px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .instagram-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .instagram-post {
    flex: 0 0 325px;
    width: 325px;
    height: 450px;
    scroll-snap-align: start;
    margin-right: 0;
    padding-right: 0;
  }
  
  .instagram-post:not(:last-child) {
    margin-right: 20px; 
  }
  
  .post-container {
    width: 325px;
    height: 450px;
  }
  
  .image-container,
  .video-container {
    width: 325px;
    height: 450px;
    aspect-ratio: auto;
  }
  
  .instagram-image,
  .instagram-video {
    width: 325px;
    height: 450px;
    object-fit: cover;
  }
  
  .section-title-insta {
    font-size: 24px;
    padding: 0px 16px;
    margin: 0;
  }
  
  .video-controls {
    opacity: 1 !important;
  }
  
  .instagram-feed-section {
    padding: 10px 0 40px 0;
    overflow: hidden;
  }

  .section-header {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .instagram-post {
    flex: 0 0 325px;
    width: 325px;
    height: 450px;
  }
  
  .post-container {
    width: 325px;
    height: 450px;
  }
  
  .image-container,
  .video-container {
    width: 325px;
    height: 450px;
  }
  
  .instagram-image,
  .instagram-video {
    width: 325px;
    height: 450px;
  }
}
/* END_SECTION:instagram-feed */

/* START_SECTION:lookbook-section (INDEX:104) */
.gap-lookbook {
  padding: 20px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 99px;
  margin-bottom: 10px;
  margin-left: 60px;
  margin-top: 0;
}

.section-subtitle {
  font-size: 65px;
  margin-bottom: 79px;
  margin-left: 60px;
  margin-top: 0;
  line-height: 0.5em;;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  margin: 0 20px;
}

.creator-card {
  display: grid;
  grid-template-columns: 300px minmax(300px, 1fr);
  gap: 0px;
  align-items: start;
}

.creator-info {
  padding-top: 20px;
}

.creator-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.creator-handle {
  color: #000;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.4;
}

.instagram-embed {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 3.5/5;
  overflow: hidden;
}


.instagram-embed iframe {
  border: none !important;
  margin: -54px 0 -48px 0 !important;
  max-height: none !important;
}

/* Remove all Instagram UI elements */
.instagram-embed .instagram-media {
  min-width: unset !important;
  max-width: unset !important;
  width: 100% !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Hide all text and UI elements */
.instagram-embed header,
.instagram-embed footer,
.instagram-embed p,
.instagram-embed span:not(.instagram-media) {
  display: none !important;
}

.cta-card {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.cta-heading {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}

/* Mobile styles */
@media screen and (max-width: 1024px) {
  .creators-grid {
    grid-template-columns: 1fr;
    gap: 17px 40px;
  }

  .creator-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .creator-info {
    order: 2;
  }

  .instagram-embed {
    order: 1;
    /* aspect-ratio: 9/16; */
    min-height: 460px;
  }
  
  .cta-card {
    padding-left: 0;
    text-align: center;
  }
  
  .cta-heading {
    font-size: 27px;
    text-align: left;
  }

  .section-title {
    font-size: 30px;
    margin-left: 20px;
  }

  .section-subtitle {
    font-size: 23px;
    margin-left: 20px;
    margin-bottom: 24px;
    line-height: 1;
  }

  .creator-info {
    padding-top: 0px;
  }
  
  .instagram-embed iframe {
    min-height: 460px !important;
  }
}
/* END_SECTION:lookbook-section */

/* START_SECTION:multicardslider-banner (INDEX:111) */
.multicard-slider-section {
    padding: 0 40px;
    max-width: 100%;
    overflow: hidden;
    max-width:1521px;
    margin: 0 auto;
  }
  .multicard-slider-title {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .multicard-slider-container {
    margin: 0 auto;
    position: relative;
  }
  .multicard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .multicard-header a {
    padding: 10px;
    color: #fff;
    background: #000;
  }
  .multicard-slider-wrapper {
    display: flex;
    /* gap: 20px; */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 20px;
    height: 100%;
    max-height: 480px;
  }
  .multicard-slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .multicard-item {
    /* flex: 0 0 22%; Shows roughly 4 multicards on desktop */
    scroll-snap-align: start;
    /* background: #fff;
    border: 1px solid #eee; */
  }
  .multicard-image {
    width: 200px;
  }
  .multicard-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  /* @media (max-width: 1024px) {
    .multicard-item {
      flex: 0 0 45%;  2 multicards on tablets 
    }
  } */

  @media (max-width: 767px) {
    .multicard-slider-section {
      padding: 0 20px;
    }
    /* .multicard-item {
      flex: 0 0 85%; 1.2 multicards on mobile for peek effect 
    } */
    .multicard-image {
      width: 150px;
    }
    .multicard-slider-title {
      font-size: 2rem;
    }
  }
/* END_SECTION:multicardslider-banner */

/* START_SECTION:switcher-category (INDEX:165) */
.header-title-container {
        display:flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .category-switcher {
        max-width: 1521px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 40px;
    }
    .category-switcher-header {
        width: 100%;
    }
    .category-switcher-title {
        text-align: left;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .category-switcher__thumbnails {
        display: flex;
        gap: 1rem;
        flex-wrap: nowrap;
    }
    .category-tab {
        text-align: center;
        width: 6.5rem;
        background: none;
        border: 2px solid transparent;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        cursor: pointer;
        border-color: #000;
        transition: border-color 0.3s ease, color 0.3s ease;
        white-space: nowrap;
    }
    .category-tab.active {
        border-color: #000;
        color: #fff;
        font-weight: bold;
        background-color: #000;
    }
    .category-switcher__banner {
        width: 100%;
    }
    .category-switcher__banner-pair {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
    .category-switcher__banner-pair.is-active {
        display: block;
        opacity: 1;
    }
    .category-banners-grid {
        display: grid;
        /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
        grid-template-columns: repeat(3, 1fr);
        /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
        gap: 1.5rem;
        width: 100%;
    }
    .category-banner-item {
        display: flex;
        flex-direction: column;
        /* border-radius: 8px; */
        /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
        overflow: hidden;
        background: #fff;
        justify-content: space-between;
        height: 100%;
    }
    .category-banner-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }
    .category-banner-text {
        padding: 1rem 0;
        background: #fff;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;       
    }
    .banner-title {
        font-size: 1.25rem;
        margin: 0 0 0.5rem;
        font-weight: bold;
        line-height: 1.2;
    }
    .banner-description {
        font-size: 1rem;
        margin: 0;
        line-height: 1.5;
    }
    .category-banner-link {
        display: inline-block;
        color: #000000;
        text-decoration: underline;
        margin-top: 0.5rem;
    }
    /* @media (max-width: 767px) {
        .category-switcher {
            padding: 0 20px;
        }

        .category-switcher-title {
            font-size: 1.5rem;
        }

        .category-banners-grid {
            display: flex;
            overflow-x: auto;
            gap: 1rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 1rem;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .category-banners-grid::-webkit-scrollbar {
            display: none;
        }

        .category-banner-item {
            flex: 0 0 80%;
            max-width: 80%;
            scroll-snap-align: start;
        }        

        .category-switcher__thumbnails {
            gap: 0.5rem;
        }

        .category-tab {
            font-size: 0.9rem;
            padding: 0.4rem 0.8rem;
        }
        .header-title-container {
            flex-direction: column;
            align-items: unset;
            margin-bottom: 1rem;
        }
    } */
    @media (max-width: 767px) {
        .category-switcher {
            padding: 0 20px;
        }
        .category-switcher__thumbnails {
            width: 100%;
        }

        /* DEFAULT SLIDER STYLES */
        .mobile-layout-slider .category-banners-grid {
            display: flex;
            overflow-x: auto;
            gap: 1rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 1rem;
        }
        .mobile-layout-slider .category-banner-item {
            flex: 0 0 80%;
            max-width: 80%;
            scroll-snap-align: start;
        }

        /* TOGGLED GRID STYLES */
        .mobile-layout-grid .category-banners-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 1.5rem 1rem; /* row-gap column-gap */
        }
        .mobile-layout-grid .category-banner-item {
            width: 100%;
        }

        /* Clean up Scrollbars for Slider */
        .category-banners-grid::-webkit-scrollbar {
            display: none;
        }
        
        .header-title-container {
            flex-direction: column;
            margin-bottom: 1rem;
        }
    }
/* END_SECTION:switcher-category */

/* START_SECTION:switcher-image (INDEX:166) */
.image-switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  max-width: 1521px;
  margin: 0 auto;
}

.image-switcher-header {
  width: 100%;
}

.image-switcher-title {
  text-align: left;
  font-size: 2rem;
}

.image-switcher__thumbnails {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.image-switcher__thumbnails img {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.image-switcher__thumbnails img.active {
  border-color: #000;
}

.image-switcher__banner {
  position: relative;
  width: 100%;
}

.image-switcher__banner-pair {
  display: none; /* hidden by default */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-switcher__banner-pair.is-active {
  display: block;
  opacity: 1;
}

/* hide both device banners by default */
.image-switcher__banner img[data-device] {
  display: none;
  width: 100%;
  height: auto;
}

/* Desktop */
@media (min-width: 768px) {
  .image-switcher__banner-pair.is-active img[data-device="desktop"] {
    display: block;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .image-switcher {
    padding: 0 20px;
  }
  .image-switcher__thumbnails img {
    max-width: 200px;
  }
  .image-switcher__banner-pair.is-active img[data-device="mobile"] {
    display: block;
  }
  .image-switcher__thumbnails {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }
  /* NEW STYLES UPDATE */
  .image-switcher__banner-group {
    /* display: grid;
    grid-template-columns: 1fr;
    gap: 1rem; */
    display: flex !important;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
  }
  .image-switcher__banner-item {
    /* min-width: 100%; */
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

.image-switcher__banner-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* If more than 1 banner → 2 columns on desktop */
@media (min-width: 768px) {
  .image-switcher__banner-group:has(.image-switcher__banner-item:nth-child(2)) {
    grid-template-columns: 1fr 1fr;
  }
}

/* Banner item */
.image-switcher__banner-item {
  position: relative;
  width: 100%;
}
/* END_SECTION:switcher-image */