/** Shopify CDN: Minification failed

Line 808:1 Expected "}" to go with "{"

**/
/* FAQ page redesign */

.faq-page,
.pdp-top-questions {
  --faq-navy: #0f1e43;
  --faq-gold: #c8a157;
  --faq-grey-bg: #f2f0f0;
  --faq-border: #e0e0e0;
  --faq-header-size: 22px;
  --faq-text-size: 16px;
  --faq-text-weight: normal;
  --faq-text-line-height: 24px;
  --faq-question-weight: 600;
  --faq-nav-size: 14px;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  color: var(--faq-navy);
}

.faq-page {
  color: var(--faq-navy);
}

/* Smooth cross-document transition between FAQ pages (fallback when JS is disabled) */
@view-transition {
  navigation: auto;
}

::view-transition-old(faq-content),
::view-transition-new(faq-content) {
  animation-duration: 320ms;
  animation-timing-function: ease-in-out;
  mix-blend-mode: normal;
}

::view-transition-old(faq-content) {
  animation-name: faq-fade-out;
}

::view-transition-new(faq-content) {
  animation-name: faq-fade-in;
}

@keyframes faq-fade-out {
  to {
    opacity: 0;
  }
}

@keyframes faq-fade-in {
  from {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(faq-content),
  ::view-transition-new(faq-content) {
    animation: none;
  }
}

.faq-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  view-transition-name: faq-hero;
}

.faq-hero__visual {
  position: relative;
  background: var(--faq-grey-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 990px) {
  .faq-hero {
    max-height: 450px;
    overflow: hidden;
  }

  .faq-hero__visual {
    height: 450px; /* match your max-height */
  }

  .faq-hero__search-panel {
    height: 450px; /* match your max-height */
  }
}

.faq-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-hero__intro {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 6.5rem 4rem;
  max-width: 500px;
  width: calc(100% - 3rem);

  box-shadow: 0 4px 24px rgba(15, 30, 67, 0.08);
}

.faq-hero__title,
.pdp-top-questions__title {
  font-size: var(--faq-header-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  color: var(--faq-navy);
  line-height: 1.25;
}

.faq-hero__title {
  white-space: nowrap;
  font-weight: 500;
  font-size: 24px;
}

.faq-hero__title::after,
.pdp-top-questions__title::after {
  content: '';
  width: 100px;
  border-top: 3px solid var(--faq-gold);
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.faq-hero__description {
  font-size: var(--faq-text-size);
  font-weight: var(--faq-text-weight);
  line-height: var(--faq-text-line-height);
  margin: 0;
  color: var(--faq-navy);
}

.faq-hero__description--mobile {
  display: none;
}

@media screen and (max-width: 990px) {
  .faq-hero__description--desktop {
    display: none;
  }

  .faq-hero__description--mobile {
    display: block;
  }

  .faq-hero__description--mobile + .faq-hero__description--mobile {
    margin-top: 1.25rem;
  }
}

.faq-hero__search-panel {
  background: var(--faq-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  text-align: center;
}

.faq-search-form {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-bottom: 2.25rem;
  margin-top: 2.25rem;
}

.faq-search-input {
  width: 100%;
  padding: 0.9rem 3rem 0.9rem 1.25rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body-family);
  font-size: var(--faq-text-size);
  color: var(--faq-navy);
  background: #fff;
}

.faq-search-input::placeholder {
  color: #888;
  text-transform: none;
}

.faq-search-input:focus {
  outline: 2px solid var(--faq-gold);
  outline-offset: 2px;
}

.faq-search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--faq-navy);
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  padding: 0.25rem;
}

.faq-search-icon:focus-visible {
  outline: 2px solid var(--faq-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-hero__contact {
  color: #fff;
  font-size: var(--faq-text-size);
  font-weight: var(--faq-text-weight);
  margin: 0;
  max-width: 420px;
  line-height: var(--faq-text-line-height);
  margin-bottom:1.25rem;
}

.faq-hero__contact-prompt {
  font-size: 2.2rem;
}

@media screen and (max-width: 749px) {
  .faq-hero__contact-prompt {
    font-size: 1.4rem;
  }
}

.faq-hero__contact a {
  color: #fff;
  text-decoration: underline;
}

.faq-hero__contact a:hover {
  color: var(--faq-gold);
}

.faq-primary-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  padding: 1.75rem 1.5rem 0;
  border-bottom: 1px dashed var(--faq-border);
  scroll-margin-top: 24px; /* bump to your sticky header height if you have one */
  view-transition-name: faq-primary-tabs;
}

@media screen and (max-width: 749px) {
  .faq-primary-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem 0.5rem;
    padding: 1rem 0.75rem 0;
  }

  .faq-primary-tab {
    flex: 1 1 0;
    padding: 0.75rem 0.15rem 0.6rem;
    font-size: 10px;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }
}

.faq-primary-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 2.5rem 0 1rem;
  font-family: var(--font-body-family);
  font-size: var(--faq-nav-size);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faq-navy);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.faq-primary-tab.is-active {
  color: var(--faq-gold);
  border-bottom-color: var(--faq-gold);
}

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

.faq-sub-tabs {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.75rem;
  padding: 1rem 1.5rem 1.25rem;
  border-bottom: 1px dashed var(--faq-border);
  view-transition-name: faq-sub-tabs;
}

.faq-sub-tabs.is-visible {
  display: flex;
}

.faq-sub-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.35rem 14px;
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #484b4c;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.faq-sub-tab:not(.is-active):hover {
  color: var(--faq-navy);
}

.faq-sub-tab.is-active {
  font-weight: 700;
  border-bottom-color: var(--faq-navy);
}

.faq-content {
  padding: 2.5rem 1.5rem 4rem;
  view-transition-name: faq-content;
  transition: opacity 0.32s ease-in-out;
}

.faq-content.is-swapping {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .faq-content {
    transition: none;
  }

  .faq-content.is-swapping {
    opacity: 1;
  }
}

.acc_faq {
  display: none;
  margin-bottom: 2.5rem;
}

.acc_faq.is-visible {
  display: block;
}

.acc_faq.is-visible + .acc_faq.is-visible .faq-content__title {
  display: none;
}

.faq-content__title {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0rem;
  color: var(--faq-navy);
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.faq-columns--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.faq-column {
  min-width: 0;
}

.faq-subheading {
  font-size: var(--faq-header-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  color: var(--faq-navy);
}

.faq-subgroup:not(:first-child) {
  margin-top: 4rem;
}

.faq-item {
  margin-bottom: 0.25rem;
}

.faq-page .faq_block_heading {
  font-weight: var(--faq-question-weight);
  font-size: var(--faq-text-size);
  border-bottom: 1px solid var(--faq-border);
  padding: 1.75rem 0 0.75rem 1.75rem;
  margin: 0;
  color: var(--faq-navy);
  cursor: pointer;
  position: relative;
  display: block;
}

.faq-page .faq_block_heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: 3px;
  border-right: 2px solid var(--faq-navy);
  border-bottom: 2px solid var(--faq-navy);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s;
}

.faq-page .faq_block_heading.active::before {
  transform: translateY(-25%) rotate(225deg);
}

.faq-page .faq_block_body {
  font-size: var(--faq-text-size);
  font-weight: var(--faq-text-weight);
  line-height: var(--faq-text-line-height);
  padding: 0 0 1rem 1.75rem;
  margin: 0;
  color: #505050;
}

.faq-page .faq_block_body.hidden {
  display: none;
}

.faq-page .faq_block_body p,
.faq-page .faq_block_body li,
.faq-page .faq_block_body ul,
.faq-page .faq_block_body ol {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
}

.faq-page .faq_block_body p {
  margin-top: 0.5rem;
}

.faq-no-results {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  font-size: var(--faq-text-size);
  font-weight: var(--faq-text-weight);
}

.faq-no-results.hidden {
  display: none;
}

/* ==========================================================================
   Mobile hero (consolidated — was previously split across 3 competing
   max-width: 990px blocks, the last of which hid the hero image entirely)
   ========================================================================== */
@media screen and (max-width: 990px) {
  .faq-hero {
    position: relative;
    display: block;
    grid-template-columns: 1fr;
    overflow: hidden; /* contains the background image so margins below don't collapse out past the hero and reveal plain white page background instead of the photo */
  }

  /* Background image now spans the FULL hero (behind both the intro
     card and the search panel), so margin/padding on those two
     elements reveals the image around them instead of hiding it. */
  .faq-hero__image {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* sits behind all normal-flow content within .faq-hero */
  }

  .faq-hero__visual {
    /* Override the base (desktop) "position: relative" rule above —
       otherwise .faq-hero__image (its child) sizes itself against this
       box instead of the full .faq-hero, and stops before the search
       panel, leaving no image behind it. */
    position: static;
    background: transparent;
    min-height: 0;
    height: auto;
    padding-top: 14rem; /* more background visible above the card */
  }

    .faq-hero__intro {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 2.75rem;
    width: auto;
    max-width: none;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 24px rgba(15, 30, 67, 0.12);
  }

  .faq-hero__search-panel {
    margin: 0rem 2.75rem 2.5rem; /* more background visible underneath the panel */
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
  }

  .faq-columns {
    grid-template-columns: 1fr;
  }

  .faq-columns--split {
    grid-template-columns: 1fr;
  }

  .faq-hero__title {
    white-space: normal;
    font-size: 20px;
    overflow-wrap: break-word;
  }
}



.faq-page .faq_block_heading:before {
  left: 0px;
}

.faq-page .faq_block_heading {
  padding-left: 2.25rem !important;
}

.faq-page .faq_block_body {
  padding-left: 2.25rem !important; /* change independently of the heading if needed */
}

@media screen and (max-width: 749px) {
  .faq-primary-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem 0.5rem;
    padding: 1rem 0.75rem 0;
    border-bottom: 1px dashed var(--faq-border);
  }

  .faq-primary-tab {
    flex: 1 1 0;
    padding: 0.75rem 0.15rem 0.6rem;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .faq-primary-tab.is-active {
    color: var(--faq-gold);
    border-bottom-color: var(--faq-gold);
  }

  .faq-sub-tabs {
    gap: 0.75rem 0.5rem;
  }

    .faq-sub-tab {
    flex: 0 0 calc((100% - 1rem) / 3);
    box-sizing: border-box;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 10.5px;
    letter-spacing: 0.03em;
  }

  .faq-content {
    padding: 1.5rem 1rem 3rem;
  }

  .faq-page .faq_block_heading {
    padding-left: 1.25rem;
  }

  .faq-page .faq_block_body {
    padding-left: 1.25rem; /* change independently of the heading if needed */
  }
}

/* Override legacy FAQ styles when new layout is active */
.faq-page .faq_top,
.faq-page .faq_top_blocks,
.faq-page .faq_header_block {
  display: none !important;
}

/* PDP Top 5 Questions */
.pdp-top-questions {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pdp-top-questions__title {
  text-align: center;
  margin: 0 0 2rem;
}

.pdp-top-questions__list {
  margin-bottom: 2rem;
}

.pdp-top-questions .faq_block_heading {
  font-weight: var(--faq-question-weight);
  font-size: var(--faq-text-size);
  border-bottom: 1px solid var(--faq-border);
  padding: 0.75rem 0 0.75rem 1.75rem;
  margin: 0;
  color: var(--faq-navy);
  cursor: pointer;
  position: relative;
  display: block;
}

.pdp-top-questions .faq_block_heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -2px;
  border-right: 2px solid var(--faq-navy);
  border-bottom: 2px solid var(--faq-navy);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s;
}

.pdp-top-questions .faq_block_heading.active::before {
  transform: translateY(-25%) rotate(225deg);
}

.pdp-top-questions .faq_block_body {
  font-size: var(--faq-text-size);
  font-weight: var(--faq-text-weight);
  line-height: 34px;
  padding: 0 0 1rem 1.75rem;
  margin: 0;
  color: #505050;
}

.pdp-top-questions .faq_block_body.rte p,
.pdp-top-questions .faq_block_body.rte li,
.pdp-top-questions .faq_block_body.rte ul,
.pdp-top-questions .faq_block_body.rte ol {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
}

.pdp-top-questions .faq_block_body.hidden {
  display: none;
}

.pdp-top-questions__cta {
  text-align: center;
}

.pdp-top-questions__button {
  text-transform: uppercase;
  color: rgb(var(--color-base-text));
  border: 1px solid #000;
  background-color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width: 749px) {
  .pdp-top-questions__button {
    width: 90%;
  }

  .faq_block_heading:before {
    margin-left: 0px;
  }

  .pdp-top-questions .faq_block_heading {
    padding-left: 1.25rem;
  }

  .pdp-top-questions .faq_block_body {
    padding-left: 1.25rem;
  }

  .faq-content {
    padding: 1.5rem 1rem 3rem;
  }
  .faq-page .faq_block_heading:before {
    left: 16px !important;
  }
  .faq-page .faq_block_heading {
    padding-left: 4.25rem !important;
  }

  .faq-page .faq_block_body {
    padding-left: 0rem !important; /* change independently of the heading if needed */
  }
.pdp-top-questions .faq_block_heading::before {
  
  width: 11px;
  height: 11px;
}
}
@media screen and (max-width: 749px) {
  .faq-hero__contact-prompt {
    font-size: 16px;
    font-weight: 600;

  }

  .faq-hero__contact-link {
    font-size: 14px;
  }

  .faq-hero__contact-suffix {
    font-size: 14px;
  }

  .faq-page .faq_block_heading {
  padding: 1.75rem 0 1.75rem 1.75rem;
  font-size: 14px;
  padding-right: 1.95rem;
  }

  .faq-content__title {
    padding-bottom: 2px;
    padding-left: 14px;
}
.faq-page .faq_block_body p {
  font-size: 12px;
}

.faq-hero__title {
  font-size: 20px !important;
}

.faq-subheading {
padding-left: 14px;
}

.faq-hero__description {
  font-size: 14px;

}
}

@media screen and (max-width: 749px) {
  .faq-page .faq_block_body p,
  .faq-page .faq_block_body li {
    font-size: 14px;
    text-align: left;
  }
  .faq-page .faq_block_heading::before {
  margin-top: 0px;
}