/** Shopify CDN: Minification failed

Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:32 Expected ":"
Line 23:16 Expected identifier but found whitespace
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 23:68 Expected ":"
Line 24:19 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
Line 24:30 Expected ":"
... and 219 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:caffeine-free-section (INDEX:4) */
.caffeine-free-section {
    background-color: {{ section.settings.section_bg_color }};
    padding-top: {{ section.settings.section_padding_top_mobile }}px;
    padding-bottom: {{ section.settings.section_padding_bottom_mobile }}px;
  }

  @media (min-width: 768px) {
    .caffeine-free-section {
      padding-top: {{ section.settings.section_padding_top_desktop }}px;
      padding-bottom: {{ section.settings.section_padding_bottom_desktop }}px;
    }
  }

  .caffeine-free-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 {{ section.settings.container_padding_mobile }}px;
  }

  @media (min-width: 768px) {
    .caffeine-free-container {
      padding: 0 {{ section.settings.container_padding_desktop }}px;
    }
  }

  /* Main Title - Above Image */
  .caffeine-free-main-title {
    text-align: center;
    font-size: {{ section.settings.main_title_font_size_mobile }}px;
    font-weight: {{ section.settings.main_title_font_weight }};
    color: {{ section.settings.main_title_color }};
    margin: 0 0 {{ section.settings.main_title_margin_bottom_mobile }}px 0;
    line-height: {{ section.settings.main_title_line_height }};
    letter-spacing: {{ section.settings.main_title_letter_spacing }}px;
  }

  @media (min-width: 768px) {
    .caffeine-free-main-title {
      font-size: {{ section.settings.main_title_font_size_desktop }}px;
      margin-bottom: {{ section.settings.main_title_margin_bottom_desktop }}px;
    }
  }

  /* Main content wrapper - Title + Benefits Grid + Text Below */
  .caffeine-free-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: {{ section.settings.main_content_gap_mobile }}px;
  }

  @media (min-width: 768px) {
    .caffeine-free-content-wrapper {
      gap: {{ section.settings.main_content_gap_desktop }}px;
    }
  }

  /* Top subtitle/text above image */
  .caffeine-free-top-text {
    text-align: center;
    font-size: {{ section.settings.top_text_font_size_mobile }}px;
    font-weight: {{ section.settings.top_text_font_weight }};
    color: {{ section.settings.top_text_color }};
    line-height: {{ section.settings.top_text_line_height }};
    letter-spacing: {{ section.settings.top_text_letter_spacing }}px;
    margin: 0 0 {{ section.settings.top_text_margin_bottom_mobile }}px 0;
  }

  @media (min-width: 768px) {
    .caffeine-free-top-text {
      font-size: {{ section.settings.top_text_font_size_desktop }}px;
      margin-bottom: {{ section.settings.top_text_margin_bottom_desktop }}px;
    }
  }

  /* Benefits Grid - Left | Center Image | Right */
  .caffeine-free-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: {{ section.settings.mobile_grid_gap }}px;
    align-items: flex-start;
  }

  @media (min-width: 768px) {
    .caffeine-free-benefits-grid {
      grid-template-columns: 1fr auto 1fr;
      gap: {{ section.settings.desktop_grid_gap }}px;
    }
  }

  /* Left and Right Benefit Columns */
  .caffeine-free-left,
  .caffeine-free-right {
    display: flex;
    flex-direction: column;
    gap: {{ section.settings.benefit_items_gap_mobile }}px;
  }

  @media (min-width: 768px) {
    .caffeine-free-left,
    .caffeine-free-right {
      gap: {{ section.settings.benefit_items_gap_desktop }}px;
      width: {{ section.settings.column_width_desktop }}px;
    }
  }

  .caffeine-free-left {
    text-align: center;
  }

  @media (min-width: 768px) {
    .caffeine-free-left {
      text-align: center;
    }
  }

  .caffeine-free-right {
    text-align: left;
  }

  @media (min-width: 768px) {
    .caffeine-free-right {
      text-align: left;
    }
  }

  /* Mobile: Half up, Half down layout */
  @media (max-width: 767px) {
    .caffeine-free-left {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: {{ section.settings.benefit_items_gap_mobile }}px;
    }

    .caffeine-free-right {
      display: none;
    }

    .caffeine-free-left .benefit-item:nth-child(3) {
      grid-column: 1 / -1;
    }

    .caffeine-free-left .benefit-item:nth-child(4),
    .caffeine-free-left .benefit-item:nth-child(5),
    .caffeine-free-left .benefit-item:nth-child(6) {
      display: none;
    }
  }

  /* Benefit item container */
  .benefit-item {
    display: flex;
    flex-direction: column;
    gap: {{ section.settings.benefit_title_desc_gap }}px;
  }

  /* Benefit title */
  .benefit-title {
    font-size: {{ section.settings.benefit_title_font_size_mobile }}px;
    font-weight: {{ section.settings.benefit_title_font_weight }};
    color: {{ section.settings.benefit_title_color }};
    margin: 0;
    line-height: {{ section.settings.benefit_title_line_height }};
    letter-spacing: {{ section.settings.benefit_title_letter_spacing }}px;
  }

  @media (min-width: 768px) {
    .benefit-title {
      font-size: {{ section.settings.benefit_title_font_size_desktop }}px;
    }
  }

  /* Benefit description */
  .benefit-description {
    font-size: {{ section.settings.benefit_description_font_size_mobile }}px;
    font-weight: {{ section.settings.benefit_description_font_weight }};
    color: {{ section.settings.benefit_description_color }};
    line-height: {{ section.settings.benefit_description_line_height }};
    letter-spacing: {{ section.settings.benefit_description_letter_spacing }}px;
    margin: 0;
  }

  @media (min-width: 768px) {
    .benefit-description {
      font-size: {{ section.settings.benefit_description_font_size_desktop }}px;
    }
  }

  /* Center image */
  .caffeine-free-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
  }

  .caffeine-free-center img {
    max-width: 100%;
    height: auto;
    width: {{ section.settings.center_image_width_mobile }}px;
    display: block;
  }

  @media (min-width: 768px) {
    .caffeine-free-center img {
      width: {{ section.settings.center_image_width_desktop }}px;
    }
  }

  /* Bottom text - Below Image */
  .caffeine-free-bottom-text {
    text-align: center;
    font-size: {{ section.settings.bottom_text_font_size_mobile }}px;
    font-weight: {{ section.settings.bottom_text_font_weight }};
    color: {{ section.settings.bottom_text_color }};
    line-height: {{ section.settings.bottom_text_line_height }};
    letter-spacing: {{ section.settings.bottom_text_letter_spacing }}px;
    margin: {{ section.settings.bottom_text_margin_top_mobile }}px 0 0 0;
  }

  @media (min-width: 768px) {
    .caffeine-free-bottom-text {
      font-size: {{ section.settings.bottom_text_font_size_desktop }}px;
      margin-top: {{ section.settings.bottom_text_margin_top_desktop }}px;
    }
  }

  .bottom-text-subtext {
    font-size: {{ section.settings.bottom_text_subtext_font_size_mobile }}px;
    font-weight: {{ section.settings.bottom_text_subtext_font_weight }};
    color: {{ section.settings.bottom_text_subtext_color }};
    line-height: {{ section.settings.bottom_text_subtext_line_height }};
    letter-spacing: {{ section.settings.bottom_text_subtext_letter_spacing }}px;
    margin: {{ section.settings.bottom_text_gap }}px 0 0 0;
  }

  @media (min-width: 768px) {
    .bottom-text-subtext {
      font-size: {{ section.settings.bottom_text_subtext_font_size_desktop }}px;
    }
  }
/* END_SECTION:caffeine-free-section */

/* START_SECTION:cus-image-grid (INDEX:12) */
/* Wrapper to center and constrain width */
.image-grid-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
   position: relative;
}

.image-grid-section {
  padding: 30px 20px;
}
.image-grid-heading {
  font-size: 48px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
}
.image-grid-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  /* font-weight: 700; */
}

.image-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  scrollbar-width: none;

  /* New: use CSS variable --columns to track number of columns dynamically */
  --columns: 4; /* default fallback */
}

.image-grid::-webkit-scrollbar {
  display: none;
}
.image-grid .grid-item {
  scroll-snap-align: center;
  flex: 0 0 100%;
}
.image-grid .grid-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .image-grid .grid-item {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

/* Desktop */
@media screen and (min-width: 1024px) {
  .image-grid {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .image-grid .grid-item {
    /* flex-basis calculated dynamically based on --columns variable and gap */
    flex: 0 0 calc((100% - (var(--columns) - 1) * 20px) / var(--columns));
  }
}
@media (min-width: 768px) {
  .image-grid-arrow {
    display: none;
  }
}
/* Mobile adjustments */
@media screen and (max-width: 767px) {
  .column-4_mobile{
    flex-wrap: wrap;
    gap: 0;
  }
  .image-grid-arrow{
    display: none !important;
  }
   .column-4_mobile .grid-item{
    flex: 0 0 50% !important;
  }
  .image-grid-text {
    margin: 0;
  }
  .image-grid-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    border-radius: 50%;
    user-select: none;
    display: block;
  }
  .left-arrow {
    left: 10px;
    color: #fdba12;
    background: #00000080;
   
  }
  .right-arrow {
    right: 10px;
    color: #fdba12;
   background: #00000080;
    
  }
}

.image-grid-button {
  padding: 15px 28px;
  border-radius: 54px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid;
}
/* END_SECTION:cus-image-grid */

/* START_SECTION:cus-multi-video (INDEX:15) */
.video-carousel-container {
  padding: 0px 20px;
  text-align: center;
  background: #fff;
  overflow: hidden;
  padding-bottom: 30px;
}
.video-carousel-heading h2 {
  font-size: 56px;
  font-weight: bold;
}
.video-carousel-heading p {
  font-size: 20px;
  color: #613E21;
  margin-bottom: 20px;
}
.video-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
  position: relative;
}
.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
  user-select: none;
}
.carousel-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  position: relative;
}
.carousel-item-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3 !important; 
  overflow: hidden;
}
.carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 1; /* below play button */
}
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 64px;
  height: 64px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><circle cx="32" cy="32" fill="rgba(0, 0, 0, 0.13)" r="32"/><polygon fill="%23fff" points="26,20 48,32 26,44" /></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 5; /* above video but below arrows */
  transition: opacity 0.3s ease;
  opacity: 1;
}
.play-overlay:hover,
.play-overlay:focus {
  background-color: transparent !important;
  outline: none;
  box-shadow: none;
}
.left-arrow, .right-arrow {
  position: relative;
  bottom: auto;
  margin: 0;
  background:#dfdfdf80;
  border: none;
  color: #9a9a9a;
  font-size: 20px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  transition: background 0.3s ease;
  align-items: center;
  justify-content: center;
  z-index: 10; /* above play button */
}
.left-arrow {
  margin-right: 10px;
  font-size: 17px;
}
.right-arrow {
  margin-left: 10px;
  font-size: 17px;
}
.carousel-arrow:hover,
.carousel-arrow:focus {
  background: rgba(0,0,0,0.5) !important;
  outline: none;
}
/* Popup overlay */
.video-popup {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 50px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
/* Popup content */
.video-popup-content {
  position: relative;
  background: #000;
  padding: 0;
  border-radius: 8px;
  max-width: 80%;
  max-height: 80%;
}
.video-popup-content video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 8px;
}
/* Close button inside top-right */
.video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 32px;
  font-weight: bold;
  color: white;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  padding: 4px 10px;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
}
.video-popup-close:hover {
  background: rgba(0,0,0,0.6);
}

.video-caption-wrapper {
  min-height: 48px;
  margin-top: 8px;
  padding-inline: 10px;
  text-align: center;
  overflow-wrap: break-word;
}
.video-caption {
  font-size: 20px;
  color: #613E21;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .carousel-item {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .video-carousel-heading h2 {
    font-size: 56px !important;
    font-weight: bold;
  }
}
@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .video-carousel-heading h2 {
    font-size: 28px !important;
    font-weight: bold;
  }
  .video-carousel-heading p {
    font-size: 20px;
    color: #613E21;
    margin-bottom: 20px;
  }
  .video-caption {
    margin-top: 8px;
    font-size: 20px;
    color: #613E21;
    text-align: center;
    padding-inline: 0px;
  }
}
/* END_SECTION:cus-multi-video */