/** Shopify CDN: Minification failed

Line 20:20 Expected identifier but found whitespace
Line 20:22 Unexpected "{"
Line 20:31 Expected ":"
Line 21:22 Expected identifier but found whitespace
Line 21:24 Unexpected "{"
Line 21:33 Expected ":"
Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 23:17 Expected identifier but found whitespace
... and 11 more hidden warnings

**/


/* CSS from section stylesheet tags */
:root {
    --primary-color: {{ section.settings.primary_color }};
    --secondary-color: {{ section.settings.secondary_color }};
    --accent-color: {{ section.settings.accent_color }};
    --text-color: {{ section.settings.text_color }};
    --border-color: {{ section.settings.border_color }};
    --background-color: {{ section.settings.background_color }};
    --title-color: {{ section.settings.title_color }};
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }

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

  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    opacity: 1 !important;
    margin-bottom: 20px;
  }

  .section-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color) !important;
    opacity: 1 !important;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  .tabs-container {
    width: 100%;
  }

  .tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .tab-title {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    top: 2px;
    white-space: normal;
    flex: 1;
    min-width: 150px;
    text-align: center;
  }

  .tab-title:hover {
    color: var(--primary-color);
  }

  .tab-title.active {
    color: #f5f5f5;
    border-bottom-color:#E0F15A;
    background-color: #000000;
  }

  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }

  .faq-block {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
  }

  .faq-question {
    padding: 20px;
    background-color:#f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    transition: background-color 0.2s ease;
  }

  .faq-question:hover {
    background-color:rgb(237, 237, 237);
    color: #000000;
  }

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
  }

  .faq-block.active .faq-answer {
    padding: 20px;
    max-height: 600px;
  }

  .faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
  }

  .faq-block.active .faq-toggle {
    transform: rotate(45deg);
  }

  @media (max-width: 768px) {
    .tab-section {
      padding: 40px 15px;
    }

    .section-title {
      font-size: 28px;
    }

    .section-description {
      font-size: 16px;
    }

    .tabs-header {
      flex-direction: column;
      border-bottom: none;
      margin-bottom: 20px;
    }

    .tab-title {
      padding: 15px 20px;
      font-size: 16px;
      border-bottom: 1px solid var(--border-color);
      border-left: 3px solid transparent;
      top: 0;
      white-space: normal;
    }

    .tab-title.active {
      border-left-color: var(--primary-color);
      border-bottom-color: var(--border-color);
    }

    .faq-question {
      font-size: 16px;
      padding: 15px;
    }

    .faq-toggle {
      margin-left: 15px;
    }

    .faq-answer {
      font-size: 14px;
    }

    .faq-block.active .faq-answer {
      max-height: 700px;
    }
  }
.feature-tabs { width: 100%; }
.feature-tabs__container {
  max-width: 1200px;
  margin: auto;
  padding: var(--section-padding) 16px;
}
.feature-tabs__tab-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.feature-tabs__tab-btn {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 16px;
}
.feature-tabs__tab-btn.active {
  border-bottom: 2px solid currentColor;
}

.feature-tabs__content { display: none; }
.feature-tabs__content.active { display: block; }

.feature-tabs__images {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.feature-tabs__image-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 80%;
  max-width: 380px;
}
.feature-tabs__image-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
.feature-tabs__image-item h4 {
  font-size: 16px;
  margin: 6px 0 2px;
}
.feature-tabs__image-item p {
  font-size: 14px;
  opacity: .7;
}

.feature-tabs__title { font-size: 36px; }
.feature-tabs__desc { font-size: 18px; }