/** Shopify CDN: Minification failed

Line 19:20 Unexpected "{"
Line 19:29 Expected ":"
Line 20:16 Expected identifier but found whitespace
Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 20:53 Expected ":"
Line 21:19 Expected identifier but found whitespace
Line 21:21 Unexpected "{"
Line 21:30 Expected ":"
Line 21:59 Expected ":"
... and 33 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-template--{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .image-wrapper-jam {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    margin: auto;
    padding: 0 1rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }

  .image-box-jam {
    position: relative;
    flex: 1 1 calc(50% - 20px);
    padding-top: calc(50% - 20px);
    max-width: calc(50% - 20px);
    border-radius: 16px;
    overflow: hidden;
  }

  .image-box-jam::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
    z-index: 1;
    pointer-events: none;
  }

  .responsive-image-jam {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .centered-text-jam {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 4vw;
    font-weight: bold;
    text-align: left;
    line-height: 1.2;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .image-box-jam a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    z-index: 3;
  }

  .image-box-jam .placeholder-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
  }

  /* Tablet & Mobile */
  @media (max-width: 750px) {
    .image-box-jam {
      flex: 1 1 100%;
      padding-top: 100%;
      max-width: 100%;
    }
    .centered-text-jam {
      font-size: 10vw;
    }
  }
.image-with-link-wrapper {
  /* This makes the section take up 100% of the screen width */
  width: 100%;
  line-height: 0; /* Removes any extra space below the image */
}

.image-with-link__image {
  /* This makes the image scale to fit the container while maintaining its aspect ratio */
  width: 100%;
  height: auto;
  display: block; /* Ensures it behaves like a block element */
}
.section-template--{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .page-width {
    max-width: 120rem;
    padding: 0 1.5rem;
    margin: 0 auto;
  }
  @media screen and (min-width: 750px) {
    .page-width { padding: 0 5rem; }
  }

  .footer__blocks-wrapper {
    display: grid;
    gap: 4rem;
  }
  .grid--1-col { grid-template-columns: 1fr; }
  @media screen and (min-width: 750px) {
    .grid--2-col { grid-template-columns: 1fr 1fr; }
  }
  @media screen and (min-width: 990px) {
    .grid--4-col-tablet { grid-template-columns: repeat(4, 1fr); }
  }

  .footer-block__heading {
    margin: 0 0 1rem;
    font-size: 1.6rem;
  }
  .footer-block__details-content { margin: 0; padding: 0; list-style: none; }
  .footer-block__details-content li { margin-bottom: 0.5rem; }
  .footer-block__details-content a { text-decoration: none; }
  .footer-block__brand-info .rte p { margin: 0; }

  /* Newsletter Styles */
  .newsletter-form__field-wrapper { position: relative; }
  .field { display: flex; align-items: center; border: 1px solid currentColor; }
  .field__input { flex-grow: 1; border: none; background: transparent; padding: 1rem; }
  .field__input:focus { outline: none; }
  .field__label { display: none; }
  .newsletter-form__button { background: none; border: none; cursor: pointer; padding: 1rem; }
  .icon-arrow { width: 1.4rem; height: 1rem; }

  /* Social Icons Styles */
  .list-social { display: flex; gap: 1.5rem; }
  .list-social .icon { width: 2rem; height: 2rem; }
  .visually-hidden { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; }
.section-template--{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.video-wrapper-overlay {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; /* Space between videos */
}

.video-box {
  position: relative;
  flex: 1 1 calc(33.33% - 20px); /* Flex basis for 3 items per row minus gap */
  max-width: calc(33.33% - 20px); /* Maximum width for each video box */
  border-radius: 16px;
  overflow: hidden;
  background-color: #f0f0f0; /* Placeholder background */
  /* The padding-top is now handled by the aspect ratio classes below */
}

/* Aspect Ratio Calculations */
.aspect-ratio--square .video-box {
  padding-top: calc(33.33% - 20px); /* 1:1 Ratio */
}
.aspect-ratio--landscape .video-box {
  padding-top: calc((33.33% - 20px) * 0.5625); /* 16:9 Ratio */
}
.aspect-ratio--portrait .video-box {
  padding-top: calc((33.33% - 20px) * 1.25); /* 4:5 Ratio */
}
.aspect-ratio--reels .video-box {
  padding-top: calc((33.33% - 20px) * 1.7778); /* 9:16 Ratio */
}

.responsive-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0); /* Transparent overlay */
}

@media (max-width: 800px) {
  .video-box {
    flex: 1 1 90vw; /* Full width on smaller screens */
    max-width: 90vw;
  }
  
  /* Mobile Aspect Ratio Calculations */
  .aspect-ratio--square .video-box {
    padding-top: 90vw; /* 1:1 Ratio */
  }
  .aspect-ratio--landscape .video-box {
    padding-top: calc(90vw * 0.5625); /* 16:9 Ratio */
  }
  .aspect-ratio--portrait .video-box {
    padding-top: calc(90vw * 1.25); /* 4:5 Ratio */
  }
  .aspect-ratio--reels .video-box {
    padding-top: calc(90vw * 1.7778); /* 9:16 Ratio */
  }
}
.slider-container[id="slider-{{ section.id }}"] {
  --slides-per-view: {{ section.settings.slides_per_view }};
  --slide-gap: 16px;
}

.section-template--{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px; /* Or your theme's max width */
  padding: 0 40px; /* Space for buttons */
  box-sizing: border-box;
}

.slider-track-wrapper {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.slider-track-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.slider-track {
  display: flex;
  gap: var(--slide-gap);
}

.slider-slide {
  flex: 0 0 calc((100% / var(--slides-per-view)) - (var(--slide-gap) * (var(--slides-per-view) - 1) / var(--slides-per-view)));
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.video-box {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  border-radius: 16px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.responsive-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-main-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.3s;
  opacity: 0;
  visibility: hidden; /* Hide buttons until JS initializes */
}

.slider-container.slider-initialized .slider-btn {
  visibility: visible;
}

.slider-container:hover .slider-btn:not(:disabled) {
  opacity: 1;
}

.slider-btn:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.05);
}

.slider-btn--prev {
  left: 0px;
}

.slider-btn--next {
  right: 0px;
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .slider-container {
    padding: 0 30px;
  }
  .slider-slide {
    flex-basis: calc(50% - (var(--slide-gap) / 2));
  }
}

@media (max-width: 767px) {
  .slider-container {
    padding: 0 20px;
  }
  .slider-slide {
    flex-basis: 100%;
  }
  .slider-container.slider-initialized .slider-btn:not(:disabled) {
    opacity: 1; /* Always visible on mobile if initialized */
  }
}