/** Shopify CDN: Minification failed

Line 22:10 Expected identifier but found whitespace
Line 22:12 Unexpected "{"
Line 22:21 Expected ":"
Line 22:48 Unexpected "20px"
Line 22:54 Unexpected "{"
Line 22:63 Expected ":"
Line 22:92 Expected ":"
Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:24 Expected ":"
... and 15 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:infobadges (INDEX:29) */
.section-benefits-creative {
  padding: {{ section.settings.padding_top }}px 20px {{ section.settings.padding_bottom }}px;
  background: {{ section.settings.bg_color }};
  text-align: center;
}

.section-benefits-creative .container {
  margin: 0 auto;
}

/* Badge */
.section-benefits-creative .badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: {{ section.settings.badge_text }};
  margin-bottom: 10px;
  opacity: 0.7;
}

/* Heading */
.section-benefits-creative h2 {
  font-size: 34px;
  font-weight: 500;
  color: {{ section.settings.heading_color }};
  margin-bottom: 12px;
}

.section-benefits-creative .subtext {
  font-size: 15px;
  color: {{ section.settings.text_color }};
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* FLOW LAYOUT */
.benefits-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ITEM */
.benefit-item {
  flex: 1;
  position: relative;
  text-align: center;
}

/* CONNECTOR LINE */
.benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 35px;
    right: -75px;
    width: 149px;
    height: 1px;
    background: rgba(0,0,0,0.15);
}

/* ICON */
.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  opacity: 0.85;
  transition: 0.3s ease;
}

/* HOVER */
.benefit-item:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* TEXT */
.benefit-title {
  font-size: 17px;
  font-weight: 500;
  color: {{ section.settings.heading_color }};
  margin-bottom: 6px;
}

.benefit-text {
  font-size: 14px;
  color: {{ section.settings.text_color }};
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .benefits-flow {
    flex-direction: column;
    gap: 35px;
  }

  .benefit-item::after {
    display: none;
  }
}
/* END_SECTION:infobadges */

/* START_SECTION:reelslider (INDEX:60) */
.reel-slider {
  margin-top: 40px;
  padding: 0 20px;
}

.reel-slider__heading {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

/* Wrapper */
.reel-slider__wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reel-slider__wrapper::-webkit-scrollbar {
  display: none;
}

.reel-slider__item {
  flex: 0 0 250px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.reel-slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile tweak */
@media screen and (max-width: 768px) {
  .reel-slider__item {
    flex: 0 0 200px;
  }
}

/* 🔥 Hide on Desktop */
@media screen and (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}
/* END_SECTION:reelslider */