/* [project]/app/(storefront)/faqs/faqs.module.css [app-client] (css) */
.faqs-module__d0uOEG__page {
  background: var(--gs-white, #fff);
  min-height: 100vh;
  font-family: Open Sans, sans-serif;
}

html:has([data-faqs-page]) {
  scroll-behavior: smooth;
}

.faqs-module__d0uOEG__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faqs-module__d0uOEG__introZone {
  background: var(--gs-white, #fff);
  border-bottom: 1px solid #eee;
}

.faqs-module__d0uOEG__breadcrumb {
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 0 0;
  display: flex;
}

.faqs-module__d0uOEG__crumbSegment {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.faqs-module__d0uOEG__crumbLink {
  color: #6b7280;
  font-size: .8125rem;
  text-decoration: none;
}

.faqs-module__d0uOEG__crumbText {
  color: #6b7280;
  font-size: .8125rem;
}

.faqs-module__d0uOEG__crumbCurrent {
  color: var(--gs-charcoal, #54585a);
  font-size: .8125rem;
  font-weight: 500;
}

.faqs-module__d0uOEG__crumbSep {
  color: #d1d5db;
}

.faqs-module__d0uOEG__h1 {
  color: #54585a;
  margin: 1.75rem 0 .875rem;
  font-family: Open Sans, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
}

.faqs-module__d0uOEG__intro {
  color: #6b7280;
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.75;
}

.faqs-module__d0uOEG__searchWrap {
  max-width: 640px;
  margin-bottom: 2.5rem;
  position: relative;
}

.faqs-module__d0uOEG__searchShell {
  background: var(--gs-white, #fff);
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000000d;
}

.faqs-module__d0uOEG__searchIcon {
  color: #6b7280;
  align-items: center;
  padding-left: 1rem;
  display: flex;
}

.faqs-module__d0uOEG__searchInput {
  color: var(--gs-charcoal, #54585a);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: .9rem 1rem;
  font-family: Open Sans, sans-serif;
  font-size: .9375rem;
}

.faqs-module__d0uOEG__clearBtn {
  cursor: pointer;
  color: #6b7280;
  background: none;
  border: none;
  align-items: center;
  padding: 0 1rem;
  display: flex;
}

.faqs-module__d0uOEG__dropdown {
  background: var(--gs-white, #fff);
  z-index: 20;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px #0000001a;
}

.faqs-module__d0uOEG__noResults {
  color: #6b7280;
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: .9rem;
}

.faqs-module__d0uOEG__resultRow {
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid #f6f6f6;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .875rem 1.25rem;
  font-family: inherit;
  display: flex;
}

.faqs-module__d0uOEG__resultQuestion {
  color: var(--gs-charcoal, #54585a);
  font-size: .9rem;
}

.faqs-module__d0uOEG__resultCategory {
  color: #6b7280;
  white-space: nowrap;
  font-size: .75rem;
}

.faqs-module__d0uOEG__greyZone {
  background: #f6f6f6;
}

.faqs-module__d0uOEG__popularContainer {
  padding: 2.5rem 2rem 0;
}

.faqs-module__d0uOEG__popularSection {
  margin-bottom: 2.5rem;
}

.faqs-module__d0uOEG__eyebrowRow {
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.faqs-module__d0uOEG__redDash {
  background: #ea1c2d;
  flex-shrink: 0;
  width: 24px;
  height: 2px;
  display: block;
}

.faqs-module__d0uOEG__eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: .75rem;
  font-weight: 700;
}

.faqs-module__d0uOEG__popularGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  display: grid;
}

.faqs-module__d0uOEG__popularCard {
  background: var(--gs-white, #fff);
  border: 1px solid #e5e7eb;
  border-top: 3px solid var(--gs-charcoal, #54585a);
  cursor: pointer;
  text-align: left;
  border-radius: 0 0 6px 6px;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100px;
  padding: 1.5rem 1.5rem 1.25rem;
  font-family: Open Sans, sans-serif;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 1px 4px #0000000a;
}

.faqs-module__d0uOEG__popularCard:hover {
  border-color: #ea1c2d #c8c8c8 #c8c8c8;
  box-shadow: 0 6px 24px #00000017;
}

.faqs-module__d0uOEG__cardNumber {
  letter-spacing: .1em;
  color: #bbb;
  margin-bottom: .75rem;
  font-family: Open Sans, sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  transition: color .2s;
  display: block;
}

.faqs-module__d0uOEG__popularCard:hover .faqs-module__d0uOEG__cardNumber {
  color: #ea1c2d;
}

.faqs-module__d0uOEG__cardQuestion {
  color: var(--gs-charcoal, #54585a);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.55;
  display: block;
}

.faqs-module__d0uOEG__faqContainer {
  padding: 2.5rem 2rem 3rem;
}

.faqs-module__d0uOEG__categorySection {
  margin-bottom: 2.5rem;
  scroll-margin-top: 130px;
}

.faqs-module__d0uOEG__categoryHeading {
  color: var(--gs-charcoal, #54585a);
  border-bottom: 1px solid #e5e7eb;
  margin: 0 0 .875rem;
  padding-bottom: .75rem;
  font-family: Open Sans, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
}

.faqs-module__d0uOEG__itemStack {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.faqs-module__d0uOEG__itemShell {
  background: var(--gs-white, #fff);
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  scroll-margin-top: 130px;
  overflow: hidden;
}

.faqs-module__d0uOEG__itemHeader {
  background: var(--gs-white, #fff);
  cursor: pointer;
  text-align: left;
  border: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.375rem;
  font-family: inherit;
  transition: background .15s;
  display: flex;
}

.faqs-module__d0uOEG__itemHeader:hover {
  background: #fafafa;
}

.faqs-module__d0uOEG__itemHeaderOpen, .faqs-module__d0uOEG__itemHeaderOpen:hover {
  background: #f6f6f6;
}

.faqs-module__d0uOEG__itemQuestion {
  color: var(--gs-charcoal, #54585a);
  font-family: Open Sans, sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.faqs-module__d0uOEG__itemQuestionOpen {
  font-weight: 600;
}

.faqs-module__d0uOEG__chevron {
  color: var(--gs-charcoal, #54585a);
  opacity: .5;
  flex-shrink: 0;
  transition: transform .25s;
  display: flex;
  transform: rotate(0);
}

.faqs-module__d0uOEG__chevronOpen {
  transform: rotate(180deg);
}

.faqs-module__d0uOEG__answerOuter {
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.faqs-module__d0uOEG__answerBody {
  color: #6b7280;
  padding: 0 1.375rem 1.5rem;
  font-family: Open Sans, sans-serif;
  font-size: .9375rem;
  line-height: 1.75;
}

.faqs-module__d0uOEG__leadIn {
  margin-bottom: .75rem;
}

.faqs-module__d0uOEG__trailing {
  margin-top: .875rem;
}

.faqs-module__d0uOEG__answerList {
  flex-direction: column;
  gap: .375rem;
  padding-left: 1.25rem;
  list-style-type: disc;
  display: flex;
}

.faqs-module__d0uOEG__answerLink {
  color: #ea1c2d;
  text-decoration: none;
}

@media (max-width: 900px) {
  .faqs-module__d0uOEG__popularGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .faqs-module__d0uOEG__popularGrid {
    grid-template-columns: 1fr;
  }

  .faqs-module__d0uOEG__container {
    padding: 0 1rem;
  }

  .faqs-module__d0uOEG__popularContainer {
    padding: 2.5rem 1rem 0;
  }

  .faqs-module__d0uOEG__faqContainer {
    padding: 2.5rem 1rem 3rem;
  }
}

/*# sourceMappingURL=app_%28storefront%29_faqs_faqs_module_02v36ay.css.map*/