/** Shopify CDN: Minification failed

Line 22:15 Expected identifier but found whitespace
Line 22:17 Unexpected "{"
Line 22:26 Expected ":"
Line 35:10 Expected identifier but found whitespace
Line 35:12 Unexpected "{"
Line 35:21 Expected ":"
Line 45:10 Expected identifier but found whitespace
Line 45:12 Unexpected "{"
Line 45:21 Expected ":"
Line 51:15 Expected identifier but found whitespace
... and 33 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:premium-faq (INDEX:49) */
.premium-faq-section {
    background: {{ section.settings.bg_color }};
    padding: 72px 20px;
  }

  .premium-faq-wrapper {
    max-width: 980px;
    margin: 0 auto;
  }

  .premium-faq-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: {{ section.settings.eyebrow_color }};
    margin-bottom: 14px;
    line-height: 1.4;
  }

  .premium-faq-heading {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: {{ section.settings.heading_color }};
    margin: 0 0 34px;
    max-width: 760px;
  }

  .premium-faq-list {
    border-top: 1px solid {{ section.settings.line_color }};
  }

  .premium-faq-item {
    border-bottom: 1px solid {{ section.settings.line_color }};
  }

  .premium-faq-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 34px 1fr 26px;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
  }

  .premium-faq-trigger:focus-visible {
    outline: 2px solid {{ section.settings.accent_color }};
    outline-offset: 4px;
    border-radius: 10px;
  }

  .premium-faq-check {
    width: 22px;
    height: 22px;
    border: 1.5px solid {{ section.settings.icon_border }};
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: {{ section.settings.accent_color }};
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  .premium-faq-question {
    font-size: clamp(18px, 2.1vw, 22px);
    line-height: 1.35;
    font-weight: 600;
    color: {{ section.settings.question_color }};
  }

  .premium-faq-arrow {
    width: 20px;
    height: 20px;
    color: {{ section.settings.arrow_color }};
    transition: transform 0.28s ease;
    flex-shrink: 0;
  }

  .premium-faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s ease;
  }

  .premium-faq-content-inner {
    overflow: hidden;
  }

  .premium-faq-answer-wrap {
    padding: 0 0 24px 48px;
    max-width: 760px;
  }

  .premium-faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: {{ section.settings.answer_color }};
    opacity: 0.92;
  }

  .premium-faq-item.is-open .premium-faq-content {
    grid-template-rows: 1fr;
  }

  .premium-faq-item.is-open .premium-faq-arrow {
    transform: rotate(180deg);
  }

  .premium-faq-item.is-open .premium-faq-check {
    background: rgba(30, 90, 54, 0.06);
    border-color: {{ section.settings.accent_color }};
    transform: scale(1.03);
  }

  .premium-faq-trigger:hover .premium-faq-question {
    color: {{ section.settings.accent_color }};
  }

  @media screen and (max-width: 749px) {
    .premium-faq-section {
      padding: 48px 16px;
    }

    .premium-faq-heading {
      margin-bottom: 24px;
    }

    .premium-faq-trigger {
      grid-template-columns: 28px 1fr 20px;
      gap: 12px;
      padding: 18px 0;
    }

    .premium-faq-check {
      width: 20px;
      height: 20px;
    }

    .premium-faq-answer-wrap {
      padding: 0 0 18px 40px;
    }

    .premium-faq-answer {
      font-size: 15px;
      line-height: 1.65;
    }
  }
/* END_SECTION:premium-faq */