/** Shopify CDN: Minification failed

Line 22:4 Unexpected "{"
Line 22:5 Expected identifier but found "%"
Line 22:82 Expected identifier but found "%"
Line 25:4 Unexpected "{"
Line 25:5 Expected identifier but found "%"
Line 25:69 Expected identifier but found "%"
Line 29:4 Unexpected "{"
Line 29:5 Expected identifier but found "%"
Line 29:64 Expected identifier but found "%"
Line 34:2 Unexpected "{"
... and 2 more hidden warnings

**/
/* START_SECTION:header (INDEX:24) */
shopify-account {
    font-size: inherit;
    --shopify-account-signed-in-avatar-size: 20px;
    --shopify-account-avatar-size: 20px;

    {% comment %} Used when user had a profile picture set in their Shop account {% endcomment %}
    --shop-brand-color: #000000;

    {% comment %} Used when logged in user has no img profile photo {% endcomment %}
    --shopify-account-signed-in-avatar-color-background: var(--text);
    --shopify-account-signed-in-avatar-color-text: var(--bg);

    {% comment %} Heading is just a bold instance of body font {% endcomment %}
    --shopify-account-font-heading: var(--FONT-STACK-HEADING);
    --shopify-account-font-body: var(--FONT-STACK-BODY);
  }

  {% comment %} Reset header account button styles {% endcomment %}
  shopify-account::part(signed-out-avatar) {
    min-width: auto;
    min-height: auto;
    font-size: inherit;
  }
/* END_SECTION:header */
/* START_SECTION:lazaros-faq-accordion (INDEX:28) */
.lazaros-faq {
    display: block;
    background: var(--faq-background);
    color: var(--faq-text);
  }

  .lazaros-faq__inner {
    width: min(calc(100% - 40px), var(--faq-max-width));
    margin: 0 auto;
    padding-top: var(--faq-padding-top);
    padding-bottom: var(--faq-padding-bottom);
  }

  .lazaros-faq__heading {
    margin: 0 0 16px;
    font-family: var(--font-heading-family);
    font-size: clamp(32px, 4vw, var(--faq-heading-size));
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    line-height: 1.05;
    letter-spacing: -0.025em;
  }

  .lazaros-faq__groups {
    border-top: 1px solid var(--faq-border);
  }

  .lazaros-faq__group {
    border-bottom: 1px solid var(--faq-border);
  }

  .lazaros-faq__group-summary,
  .lazaros-faq__question-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    cursor: pointer;
    list-style: none;
  }

  .lazaros-faq__group-summary::-webkit-details-marker,
  .lazaros-faq__question-summary::-webkit-details-marker {
    display: none;
  }

  .lazaros-faq__group-summary::marker,
  .lazaros-faq__question-summary::marker {
    content: '';
  }

  .lazaros-faq__group-summary {
    min-height: 96px;
    padding: 24px 0;
    font-size: var(--faq-category-size);
    line-height: 1.25;
  }

  .lazaros-faq__group-summary:hover,
  .lazaros-faq__question-summary:hover {
    color: var(--faq-hover);
  }

  .lazaros-faq__group-summary:focus-visible,
  .lazaros-faq__question-summary:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
  }

  .lazaros-faq__icon {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
  }

  .lazaros-faq__icon::before,
  .lazaros-faq__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: currentColor;
    content: '';
    transform: translate(-50%, -50%);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .lazaros-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .lazaros-faq__group[open] > .lazaros-faq__group-summary .lazaros-faq__icon::after,
  .lazaros-faq__question[open] > .lazaros-faq__question-summary .lazaros-faq__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .lazaros-faq__questions {
    padding: 0 0 28px 24px;
  }

  .lazaros-faq__question {
    border-top: 1px solid var(--faq-light-border);
  }

  .lazaros-faq__question:first-child {
    border-top: 0;
  }

  .lazaros-faq__question-summary {
    min-height: 68px;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
  }

  .lazaros-faq__icon--small {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .lazaros-faq__answer {
    max-width: 820px;
    padding: 0 52px 24px 0;
    color: var(--faq-muted);
    font-size: 15px;
    line-height: 1.65;
  }

  .lazaros-faq__answer > :first-child {
    margin-top: 0;
  }

  .lazaros-faq__answer > :last-child {
    margin-bottom: 0;
  }

  @media screen and (max-width: 749px) {
    .lazaros-faq__inner {
      width: min(calc(100% - 32px), var(--faq-max-width));
    }

    .lazaros-faq__heading {
      margin-bottom: 12px;
    }

    .lazaros-faq__group-summary {
      min-height: 74px;
      padding: 20px 0;
      font-size: max(17px, calc(var(--faq-category-size) - 2px));
    }

    .lazaros-faq__questions {
      padding: 0 0 20px;
    }

    .lazaros-faq__question-summary {
      min-height: 62px;
      padding: 16px 0;
      font-size: 15px;
    }

    .lazaros-faq__answer {
      padding: 0 36px 22px 0;
      font-size: 14px;
    }

    .lazaros-faq__icon {
      flex-basis: 24px;
      width: 24px;
      height: 24px;
    }

    .lazaros-faq__icon--small {
      flex-basis: 18px;
      width: 18px;
      height: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .lazaros-faq__icon::before,
    .lazaros-faq__icon::after {
      transition: none;
    }
  }
/* END_SECTION:lazaros-faq-accordion */
