/** Shopify CDN: Minification failed

Line 22:12 Unexpected "{"
Line 22:21 Expected ":"
Line 23:16 Expected identifier but found whitespace
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 23:53 Expected ":"
Line 24:19 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
Line 24:30 Expected ":"
Line 24:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.what-sets-us-apart {
    padding: 60px 0;
  }

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .what-sets-us-apart .title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
  }

  /* Desktop Grid */
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  @media screen and (min-width: 750px) {
    .desktop-only {
      display: grid !important;
    }
    .mobile-only {
      display: none !important;
    }
  }

  @media screen and (max-width: 749px) {
    .desktop-only {
      display: none !important;
    }
    .mobile-only {
      display: block !important;
    }
  }

  .features-grid {
    gap: 1.5rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  @media screen and (min-width: 990px) {
    .features-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }

  /* Mobile Carousel Styles */
  .features-carousel {
    margin-bottom: 2rem;
    padding: 0;
    max-width: 100%;
  }

  .featuresSwiper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .feature-card-mobile {
    background: white;
    border-radius: 30px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-height: 280px;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 90%;
  }

  .feature-icon {
    margin-bottom: 1.25rem;
    flex-shrink: 0;
  }

  .feature-icon svg {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: block;
    stroke-width: 2.5;
  }

  .feature-title {
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
    line-height: 1.3;
    color: #1a1a1a;
  }

  .feature-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
  }

  /* Swiper Pagination */
  .swiper-pagination {
    bottom: 0 !important;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d8a7c5;
    opacity: 0.4;
  }

  .swiper-pagination-bullet-active {
    background: #1a1a1a;
    opacity: 1;
  }

  /* Swiper Navigation */
  .swiper-button-next,
  .swiper-button-prev {
    color: #4a5568;
    width: 40px;
    height: 40px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 24px;
    font-weight: 800;
  }

  .subtitle-wrapper,
  .tagline-wrapper {
    text-align: center;
  }

  .subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 1.5rem 0 0.5rem;
    color: #1a1a1a;
  }

  .tagline {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0.5rem 0 0;
  }

  @media screen and (max-width: 749px) {
    .what-sets-us-apart .title {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      font-weight: 800;
      line-height: 1.2;
    }

    .subtitle {
      font-size: 1.25rem;
      margin-top: 1rem;
    }

    .tagline {
      font-size: 1.125rem;
    }

    .feature-icon svg {
      width: 60px;
      height: 60px;
    }

    .feature-title {
      font-size: 1.25rem;
      margin-bottom: 0.625rem;
    }

    .feature-description {
      font-size: 0.875rem;
      line-height: 1.4;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .feature-card {
      min-height: 280px;
    }
  }