/** Shopify CDN: Minification failed

Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 23:8 Expected identifier but found whitespace
Line 23:10 Unexpected "{"
Line 23:19 Expected ":"
Line 24:14 Expected identifier but found whitespace
Line 24:16 Unexpected "{"
Line 24:25 Expected ":"
Line 24:51 Expected ":"
... and 12 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:benefits-carousel (INDEX:12) */
.benefits-carousel {
  background-color: {{ section.settings.bg_color }};
  color: {{ section.settings.text_color }};
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.section-content-responsive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.section-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  width: 100%;
  max-width: 800px;
}

.section-cta-container {
  margin-top: 20px;
}

.section-cta-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.section-cta-link:hover {
  opacity: 0.7;
}

.icon-arrow {
  margin-left: 8px;
  display: flex;
  align-items: center;
}

.benefits-gallery-container {
  position: relative;
  margin: 0 -20px;
}

.benefits-gallery {
  position: relative;
  overflow: hidden;
}

.scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.item-container {
  padding: 0 20px;
}

.benefits-card-set {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery-item {
  flex: 0 0 auto;
  width: 280px;
  margin-right: 20px;
  scroll-snap-align: start;
}

.benefit-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card {
  height: 100%;
}

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.icon-container {
  margin-bottom: 20px;
}

.icon-image-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.copy-container {
  flex-grow: 1;
}

.card-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 10px;
}

.card-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: rgba(29, 29, 31, 0.8);
}

.card-cta-button {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.2s ease;
}

.card-cta-button:hover {
  opacity: 0.7;
}

.card-cta-icon {
  margin-left: 8px;
  display: flex;
  align-items: center;
}

.gallery-pagination {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.pagination-nav {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  max-width: 1280px;
  margin: 0 auto;
}

.pagination-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.pagination-arrow svg {
  width: 20px;
  height: 20px;
  fill: #1d1d1f;
}

.pagination-arrow:hover {
  background-color: white;
}

.pagination-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media screen and (min-width: 768px) {
  .section-header {
    flex-wrap: nowrap;
    align-items: center;
  }
  
  .section-cta-container {
    margin-top: 0;
    margin-left: 30px;
  }
  
  .section-title {
    width: auto;
    font-size: 40px;
  }
  
  .gallery-item {
    width: 300px;
    margin-right: 30px;
  }
  
  .card-content {
    padding: 36px;
  }
}

@media screen and (min-width: 1024px) {
  .gallery-item {
    width: 320px;
  }
  
  .benefits-card-set {
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 1200px) {
  .benefits-gallery-container {
    margin: 0;
  }
  
  .item-container {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pagination-arrow {
    width: 52px;
    height: 52px;
  }
  
  .pagination-arrow svg {
    width: 24px;
    height: 24px;
  }
}
/* END_SECTION:benefits-carousel */

/* START_SECTION:video-gallery-carousel (INDEX:100) */
.video-gallery-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  position: relative;
}

.video-gallery-header {
  text-align: center;
  margin-bottom: 30px;
}

.video-gallery-heading {
  margin: 0 0 10px 0;
  font-size: 28px;
}

.video-gallery-subheading {
  margin: 0;
  font-size: 16px;
}

.video-gallery-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.video-gallery-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.video-gallery-item {
  flex: 0 0 100%;
  padding: 0 calc({{ section.settings.gap }}px / 2);
  box-sizing: border-box;
}

.video-gallery-wrapper[data-videos-per-view="1"] .video-gallery-item {
  flex: 0 0 100%;
}

.video-gallery-wrapper[data-videos-per-view="2"] .video-gallery-item {
  flex: 0 0 50%;
}

.video-gallery-wrapper[data-videos-per-view="3"] .video-gallery-item {
  flex: 0 0 33.333%;
}

.video-gallery-wrapper[data-videos-per-view="4"] .video-gallery-item {
  flex: 0 0 25%;
}

.video-gallery-item-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-gallery-video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f5f5f5;
  aspect-ratio: 9 / 16;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

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

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

.video-gallery-empty-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
}

.video-gallery-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}

.video-gallery-mute-toggle {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.video-gallery-mute-toggle svg {
  fill: white;
  width: 20px;
  height: 20px;
}

.video-gallery-item-caption {
  padding: 12px 0;
}

.video-gallery-item-title {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
}

.video-gallery-item-description {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}

.video-gallery-navigation {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.video-gallery-prev,
.video-gallery-next {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.video-gallery-prev svg,
.video-gallery-next svg {
  width: 24px;
  height: 24px;
  fill: #333;
}

.video-gallery-prev:disabled,
.video-gallery-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.video-gallery-empty {
  text-align: center;
  padding: 40px 0;
  color: #666;
}

@media screen and (max-width: 767px) {
  .video-gallery-wrapper[data-videos-per-view] .video-gallery-item {
    flex: 0 0 85%;
  }
  
  .video-gallery-heading {
    font-size: 24px;
  }
  
  .video-gallery-navigation {
    margin-top: 15px;
  }
  
  .video-gallery-prev,
  .video-gallery-next {
    width: 38px;
    height: 38px;
  }
}
/* END_SECTION:video-gallery-carousel */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:noody-bestie-offer (INDEX:239) */
.noody-bestie-offer { margin: 12px 0; padding: 12px 14px; border: 1px solid #e3daef; border-radius: 12px; background: #faf8fc; color: inherit; font-size: 13px; line-height: 1.5; }
  .noody-bestie-offer strong { display: block; font-size: 14px; font-weight: 600; }
  .noody-bestie-offer p { margin: 4px 0 0; }
/* END_SNIPPET:noody-bestie-offer */