/** Shopify CDN: Minification failed

Line 1494:1 Unexpected ">"

**/
/* assets/faq-page.css */

:root {
  --faq-page-bg: #ffffff;
  --faq-page-soft: var(--ui-color-surface-secondary);
  --faq-page-ink: #0d0d0d;
  --faq-page-muted: #4d5156;
  --faq-page-border: #4d5156;
  --faq-page-green: #08271f;
  --faq-page-green-2: #263733;
}

.faq-page,
.faq-page *,
.faq-page *::before,
.faq-page *::after {
  box-sizing: border-box;
}

.faq-page {
  background: var(--faq-page-bg);
  color: var(--faq-page-ink);
}

.faq-page button,
.faq-page input,
.faq-page textarea,
.faq-page a {
  font: inherit;
}

body.faq-mobile-filter-open {
  overflow: hidden !important;
}

.faq-page .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.faq-page__container {
  width: min(1392px, calc(100% - 48px));
  margin-inline: auto;
}

/* FAQ hero — same logic/visual as Events hero, scoped to FAQ page. */
.faq-hero {
  position: relative;
  width: 100%;
  height: 392px;
  min-height: 392px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--faq-page-green);
}

.faq-hero__picture,
.faq-hero__image,
.faq-hero__overlay {
  position: absolute;
  inset: 0;
}

.faq-hero__picture {
  display: block;
}

.faq-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: bottom center; */
}

.faq-hero__overlay {
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    rgba(0, 0, 0, 0.46) 100%
  );
}

.faq-hero__content {
  position: relative;
  z-index: 2;
  width: min(1392px, calc(100% - 48px));
  max-width: 1392px;
  margin-inline: auto;
  padding: 0 0 64px;
}

.faq-hero__content > * {
  max-width: 720px;
}

.faq-hero h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.03em;
}

.faq-hero p {
  margin: 0;
  max-width: 660px;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.faq-page__main {
  position: relative;
  z-index: 2;
  padding: 36px 0 100px;
  background: #ffffff;
}

.faq-page__layout {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.faq-page__sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.faq-page__sidebar-card {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  background: var(--ui-color-surface-secondary40);
}

.faq-page__search,
.faq-page__mobile-search {
  position: relative;
  width: 100%;
  height: 44px;
  display: grid;
  align-items: center;
  border: 1px solid var(--ui-color-stroke-primary);
  border-radius: 12px;
  background: var(--ui-color-surface-primary);
  color: var(--ui-color-text-secondary);
}

.faq-page__search {
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 8px;
  padding: 0 6px 0 12px;
}

.faq-page__mobile-search {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  padding: 0 12px;
}

.faq-page__search-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.faq-page__search-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.faq-page__search-input {
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #4d5156;
  font-weight: 400;
  font-size: 16px !important;
  leading-trim: NONE;
  line-height: 20px !important;
  letter-spacing: 0%;
}

.faq-page__search-input::placeholder {
  color: #606973;
  opacity: 1;
}

.faq-page__search-submit {
  min-width: 56px;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: var(--ui-color-surface-accent);
  color: var(--ui-color-text-primary-inverted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px !important;
  leading-trim: NONE;
  line-height: 20px !important;
  letter-spacing: 0px;
  vertical-align: middle;
}

.faq-page__suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  max-height: 300px;
  overflow: auto;
  padding: 4px;
  border: 1px solid var(--faq-page-border);
  border-radius: 8px;
  background: var(--faq-page-soft);
}

.faq-page__suggestions[hidden] {
  display: none !important;
}

.faq-page__suggestion {
  width: 100%;
  min-height: 32px;
  padding: 6px 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #0d0d0d;
  display: block;
  text-align: left;
  cursor: pointer;
  font-family: Onest;
  font-weight: 600 !important;
  font-style: SemiBold;
  font-size: 14px !important;
  leading-trim: NONE;
  line-height: 20px !important;
  letter-spacing: 0px;
}

.faq-page__suggestion:hover,
.faq-page__suggestion:focus-visible {
  background: rgba(var(--ui-color-surface-tertiary-rgb), 0.8);
  outline: none;
}

.faq-page__categories {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--faq-page-green) transparent;
}

.faq-page__category-button,
.faq-page__mobile-category-button {
  width: 100%;
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ui-color-text-primary);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  cursor: pointer;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 20px !important;
}

.faq-page__category-button:hover,
.faq-page__mobile-category-button:hover,
.faq-page__category-button.is-active,
.faq-page__mobile-category-button.is-active {
  background: var(--ui-color-surface-tertiary);
}

.faq-page__support-card--mobile {
  display: none !important;
}

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

.faq-page__mobile-tools {
  display: none;
}

.faq-page__results {
  margin: 0 0 12px;
  color: var(--faq-page-muted);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.faq-page__results[hidden] {
  display: none !important;
}

.faq-page__items[hidden] {
  display: none !important;
}

.faq-page__group {
  display: grid;
  gap: 12px;
}

.faq-page__group + .faq-page__group {
  margin-top: 36px;
}

.faq-page__group-title {
  margin: 0;
  color: #0d0d0d;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.03em;
}

.faq-page__empty {
  min-height: 120px;
  padding: 36px 0;
  color: var(--faq-page-muted);
  display: grid;
  gap: 4px;
  justify-items: start;
  font-size: 16px;
  line-height: 20px;
}

.faq-page__empty[hidden] {
  display: none !important;
}

.faq-page__empty strong {
  color: #0d0d0d;
  font-weight: 500;
}

.faq-page__pagination {
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.faq-page__pagination[hidden] {
  display: none !important;
}

.faq-page__pagination-button,
.faq-page__pagination-arrow,
.faq-page__pagination-ellipsis {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.faq-page__pagination-button:hover,
.faq-page__pagination-arrow:hover:not(:disabled) {
  background: #ddddd3;
}

.faq-page__pagination-button.is-active {
  background: #000000;
  color: #ffffff;
}

.faq-page__pagination-arrow:disabled {
  color: #78828c;
  cursor: default;
  pointer-events: none;
}

.faq-page__pagination-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.faq-page__mobile-filter[hidden] {
  display: none !important;
}

.faq-page__mobile-filter {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f0efe9;
}

.faq-page__mobile-filter-panel {
  width: 100%;
  height: 100dvh;
  padding: 24px 24px 128px;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.faq-page__mobile-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.faq-page__mobile-filter-head h2 {
  margin: 0;
  color: #0d0d0d;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.03em;
}

.faq-page__mobile-filter-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.faq-page__mobile-category-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-page__mobile-category-button {
  min-height: 48px;
  padding: 0 12px;
  font-size: 18px;
  line-height: 22px;
}

.faq-page__mobile-filter-footer {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-page__mobile-filter-apply,
.faq-page__mobile-filter-cancel {
  width: 100%;
  height: 48px;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.faq-page__mobile-filter-apply {
  background: var(--faq-page-green-2);
  color: #ffffff;
}

.faq-page__mobile-filter-cancel {
  background: #ffffff;
  color: #0d0d0d;
}

@media screen and (max-width: 1140px) and (min-width: 750px) {
  .faq-page__container {
    width: min(800px, calc(100% - 96px));
  }

  .faq-page__main {
    padding: 24px 0 72px;
  }

  .faq-page__layout {
    grid-template-columns: 244px minmax(0, 1fr);
    gap: 24px;
  }

  .faq-page__sidebar {
    top: 20px;
  }

  .faq-page__group-title {
    font-size: 20px;
    line-height: 24px;
  }

  .faq-page__results {
    font-size: 14px;
    line-height: 18px;
  }

  .faq-page__suggestion {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

@media screen and (max-width: 749px) {
  .faq-page__container {
    width: calc(100% - 32px);
    max-width: none;
  }

  .faq-page__main {
    padding: 16px 0 24px;
  }

  .faq-page__layout {
    display: block;
  }

  .faq-page__sidebar {
    display: none;
  }

  .faq-page__mobile-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }

  .faq-page__mobile-filter-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .faq-page__mobile-filter-toggle svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .faq-page__mobile-search {
    height: 48px;
  }

  .faq-page__results {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 16px;
  }

  .faq-page__group {
    gap: 12px;
  }

  .faq-page__group + .faq-page__group {
    margin-top: 24px;
  }

  .faq-page__group-title {
    font-size: 20px;
    line-height: 24px;
  }

  .faq-page__pagination {
    margin-top: 32px;
    gap: 8px;
  }

  .faq-page__pagination-button,
  .faq-page__pagination-arrow,
  .faq-page__pagination-ellipsis {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .faq-page__support-card--mobile {
    display: flex !important;
    margin-top: 24px;
  }

  .faq-page__mobile-filter-panel {
    padding: 80px 24px 128px;
  }

  .faq-page__suggestion {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

/* Pagination is intentionally disabled for the FAQ page. */
.faq-page__pagination {
  display: none !important;
}

/* Mobile filtration overlay — matches Figma: header stays visible, no close button. */
@media screen and (max-width: 749px) {
  body.faq-mobile-filter-open .site-header,
  body.faq-mobile-filter-open .site-header.full-width {
    position: sticky !important;
    top: 0 !important;
    z-index: 10001 !important;
  }

  body.faq-mobile-filter-open .site-header__shell {
    position: relative !important;
    z-index: 10002 !important;
  }

  .faq-page__mobile-filter {
    inset: var(--faq-mobile-header-height, 68px) 0 0 !important;
    z-index: 9998 !important;
    background: #f0efe9 !important;
  }

  .faq-page__mobile-filter-panel {
    width: 100% !important;
    height: calc(100dvh - var(--faq-mobile-header-height, 68px)) !important;
    min-height: 0 !important;
    padding: 28px 24px 24px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .faq-page__mobile-filter-head {
    display: block !important;
    margin: 0 0 24px !important;
  }

  .faq-page__mobile-filter-head h2 {
    margin: 0 !important;
    color: #0d0d0d !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 24px !important;
    letter-spacing: -0.03em !important;
  }

  .faq-page__mobile-filter-close {
    display: none !important;
  }

  .faq-page__mobile-category-list {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .faq-page__mobile-category-button {
    width: 100% !important;
    min-height: 36px !important;
    padding: 0 16px !important;
    border-radius: 6px !important;
    color: #0d0d0d !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    background: transparent !important;
  }

  .faq-page__mobile-category-button.is-active,
  .faq-page__mobile-category-button:hover,
  .faq-page__mobile-category-button:focus-visible {
    background: #ddddd3 !important;
    outline: none !important;
  }

  .faq-page__mobile-filter-footer {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 24px !important;
    padding: 0 !important;
  }

  .faq-page__mobile-filter-apply,
  .faq-page__mobile-filter-cancel {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    border: 0 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .faq-page__mobile-filter-apply {
    background: #263733 !important;
    color: #ffffff !important;
  }

  .faq-page__mobile-filter-cancel {
    background: #ffffff !important;
    color: #0d0d0d !important;
  }
}

/* Sidebar/category scroll thumb from Figma. */
/* Sidebar/category scrollbar.
   Real scrollbar only appears when the category list is higher than max-height.
   No fake ::after thumb. */
.faq-page__sidebar-card {
  position: relative;
  padding-right: 12px;
}

.faq-page__sidebar-card::after {
  display: none !important;
  content: none !important;
}

.faq-page__categories {
  max-height: min(528px, calc(100dvh - 360px));
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: #263733 transparent;
}

.faq-page__categories::-webkit-scrollbar {
  width: 7px;
}

.faq-page__categories::-webkit-scrollbar-track {
  background: transparent;
}

.faq-page__categories::-webkit-scrollbar-thumb {
  min-height: 44px;
  border-radius: 100px;
  background: #263733;
}

.faq-page__suggestions::-webkit-scrollbar {
  width: 7px;
}

.faq-page__suggestions::-webkit-scrollbar-track {
  background: transparent;
}

.faq-page__suggestions::-webkit-scrollbar-thumb {
  min-height: 44px;
  border-radius: 100px;
  background: #263733;
}

@media screen and (max-width: 749px) {
  .faq-page__sidebar-card {
    padding-right: 12px;
  }

  .faq-page__categories {
    max-height: none;
  }
}

/* FAQ hero responsive — copied from the Events hero behavior. */
@media screen and (max-width: 989px) {
  .faq-hero {
    height: 308px;
    min-height: 308px;
  }

  .faq-hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .faq-hero p {
    font-size: 14px;
    line-height: 18px;
  }
}

@media screen and (max-width: 749px) {
  .faq-hero {
    height: 308px;
    min-height: 308px;
  }

  .faq-hero__content {
    padding: 0 0 48px;
    width: min(1392px, calc(100% - 32px));
  }

  .faq-hero h1 {
    font-size: 26px;
    line-height: 30px;
  }
}

/* ==========================================================
   FAQ PAGE — standalone copy of faq-section.css styles
   Scoped with .faq-page so this page can be styled independently
   from the FAQ section on the home page.
   ========================================================== */

.faq-page {
  --faq-page-card-bg: var(--faq-page-soft);
  --faq-page-support-dark-bg: var(--faq-page-green);
  --faq-page-support-light-bg: var(--faq-page-soft);
  --faq-page-text-inverted: #ffffff;
  --faq-page-text-inverted-muted: rgba(255, 255, 255, 0.84);
  --faq-page-button-bg: #ffffff;
  --faq-page-button-hover-bg: var(--ui-color-surface-tertiary);
  --faq-page-button-text: #0d0d0d;
  --faq-page-accordion-toggle-bg: rgba(255, 255, 255, 0.7);
  --faq-page-button-font-size: 14px;
  --faq-page-button-line-height: 20px;
  --faq-page-button-font-weight: 600;
}

/* Optional wrapper styles if faq-section classes are used inside FAQ page. */
.faq-page .faq-section {
  width: 100%;
  padding-top: var(--faq-section-padding-top, 0px);
  padding-bottom: var(--faq-section-padding-bottom, 0px);
}

.faq-page .faq-section__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.faq-page .faq-section__header {
  margin-bottom: 36px;
}

.faq-page .faq-section__heading {
  margin: 0;
  color: var(--faq-page-ink);
  font-family: inherit;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.faq-page .faq-section__layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.faq-page .faq-section__layout--no-support {
  grid-template-columns: minmax(0, 1fr);
}

/* Support cards: Still have questions / consultation cards. */
.faq-page .faq-section__support-grid {
  display: grid;
  gap: 12px;
  align-content: start;
}

.faq-page .faq-section__support-card {
  min-height: 170px;
  padding: 36px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.faq-page .faq-section__support-card--dark {
  background: var(--ui-color-surface-brand);
  color: var(--ui-color-text-secondary-inverted);
}

.faq-page .faq-section__support-card--light {
  background: var(--faq-page-support-light-bg);
  color: var(--faq-page-ink);
}

.faq-page .faq-section__support-card-content {
  display: grid;
  gap: 16px;
}

.faq-page .faq-section__support-card-title {
  color: inherit;
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.faq-page .faq-section__support-card-text {
  color: var(--faq-page-muted);
  font-size: 16px;
  line-height: 1.3;
}

.faq-page .faq-section__support-card--dark .faq-section__support-card-text {
  color: var(--faq-page-text-inverted-muted);
}

.faq-page .faq-section__support-card-text p {
  margin: 0;
}

.faq-page .faq-section__support-card-button,
.faq-page .faq-section__footer-button {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: var(--faq-page-button-font-size);
  line-height: var(--faq-page-button-line-height);
  font-weight: var(--faq-page-button-font-weight);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.faq-page .faq-section__support-card-button {
  width: 100%;
  background: var(--faq-page-button-bg);
  color: var(--faq-page-button-text);
}

.faq-page .faq-section__footer-button {
  background: var(--faq-page-support-dark-bg);
  color: var(--faq-page-text-inverted);
}

@media (hover: hover) and (pointer: fine) {
  .faq-page .faq-section__support-card-button:hover:not(.is-disabled) {
    background: var(--faq-page-button-hover-bg);
  }

  .faq-page .faq-section__footer-button:hover:not(.is-disabled) {
    background: #000000;
  }
}

.faq-page .faq-section__support-card-button svg,
.faq-page .faq-section__footer-button svg {
  flex-shrink: 0;
}

.faq-page .faq-section__support-card-button.is-disabled,
.faq-page .faq-section__support-card-button[aria-disabled="true"],
.faq-page .faq-section__footer-button.is-disabled,
.faq-page .faq-section__footer-button[aria-disabled="true"] {
  opacity: 0.56;
  pointer-events: none;
  cursor: default;
}

/* Accordion items copied from faq-section.css, but scoped to FAQ page. */
.faq-page .faq-section__main {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.faq-page .faq-section__list {
  display: grid;
  gap: 12px;
}

.faq-page .faq-section__item {
  border-radius: 16px;
  background: var(--ui-color-surface-secondary);
  overflow: hidden;
}

.faq-page .faq-section__summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px;
  padding: 28px;
  cursor: pointer;
}

.faq-page .faq-section__summary::-webkit-details-marker {
  display: none;
}

.faq-page .faq-section__question {
  margin: 0;
  color: var(--ui-color-text-primary);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.faq-page .faq-section__toggle {
  position: relative;
  width: 36px;
  height: 36px;
  margin-top: -2px;
  border-radius: 8px;
  background: var(--faq-page-accordion-toggle-bg);
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.faq-page .faq-section__toggle::before,
.faq-page .faq-section__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.6px;
  border-radius: 999px;
  background: var(--faq-page-ink);
  transform: translate(-50%, -50%);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.faq-page .faq-section__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-page .faq-section__item[open] .faq-section__toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-page .faq-section__item[open] .faq-section__toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-page .faq-section__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

.faq-page .faq-section__item[open] .faq-section__answer {
  height: auto;
}

.faq-page .faq-section__answer-inner {
  padding: 0 28px 28px;
  color: var(--ui-color-text-secondary);
  font-size: 16px;
  line-height: 1.35;
}

.faq-page .faq-section__answer-inner p {
  margin: 0;
  font: inherit;
}

.faq-page .faq-section__answer-inner p + p {
  margin-top: 12px;
}

.faq-page .faq-section__answer-inner a {
  color: currentColor;
  text-decoration: underline;
}

.faq-page .faq-section__footer {
  padding-top: 4px;
}

/* Tablet styles for FAQ page accordion/support blocks. */
@media (max-width: 1024px) and (min-width: 768px) {
  .faq-page .faq-section {
    --faq-section-padding-top: 64px;
    --faq-section-padding-bottom: 64px;
    padding-top: min(var(--faq-section-padding-top), 64px);
    padding-bottom: min(var(--faq-section-padding-bottom), 64px);
  }

  .faq-page .faq-section__inner {
    padding: 0 24px;
  }

  .faq-page .faq-section__header {
    margin-bottom: 28px;
  }

  .faq-page .faq-section__layout,
  .faq-page .faq-section__layout--no-support {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .faq-page .faq-section__support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

  .faq-page .faq-section__support-card {
    height: 100%;
    min-height: 184px;
  }

  .faq-page .faq-section__support-card-title {
    font-size: 16px;
  }

  .faq-page .faq-section__support-card-text {
    font-size: 14px;
  }

  .faq-page .faq-section__summary {
    padding: 24px 28px;
  }

  .faq-page .faq-section__answer-inner {
    padding: 0 28px 24px;
    font-size: 14px;
  }

  .faq-page .faq-section__footer {
    display: flex;
    justify-content: center;
    padding-top: 8px;
  }
}

/* Mobile styles for FAQ page accordion/support blocks. */
@media (max-width: 767px) {
  .faq-page .faq-section {
    --faq-section-padding-top: 42px;
    --faq-section-padding-bottom: 42px;
    padding-top: var(--faq-section-padding-top);
    padding-bottom: var(--faq-section-padding-bottom);
  }

  .faq-page .faq-section__inner {
    padding: 0 12px;
  }

  .faq-page .faq-section__header {
    margin-bottom: 28px;
  }

  .faq-page .faq-section__heading {
    font-size: 24px;
    line-height: 1.02;
  }

  .faq-page .faq-section__layout,
  .faq-page .faq-section__layout--no-support {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .faq-page .faq-section__support-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-page .faq-section__support-card {
    min-height: auto;
    padding: 16px;
    gap: 16px;
  }

  .faq-page .faq-section__support-card-content {
    gap: 14px;
  }

  .faq-page .faq-section__support-card-title {
    font-size: 16px;
    line-height: 1.14;
  }

  .faq-page .faq-section__support-card-text {
    font-size: 14px;
    line-height: 1.25;
  }

  .faq-page .faq-section__support-card-button,
  .faq-page .faq-section__footer-button {
    width: 100%;
  }

  .faq-page .faq-section__summary {
    gap: 12px;
    padding: 16px;
  }

  .faq-page .faq-section__question {
    font-size: 18px;
    line-height: 1.2;
  }

  .faq-page .faq-section__toggle {
    margin-top: 0;
  }

  .faq-page .faq-section__toggle::before,
  .faq-page .faq-section__toggle::after {
    width: 14px;
  }

  .faq-page .faq-section__answer-inner {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.32;
  }

  .faq-page .faq-section__footer {
    display: flex;
    justify-content: center;
    padding-top: 4px;
  }

  .faq-page .faq-section__footer-button {
    width: auto;
    min-width: 150px;
  }
}

/* Search result state fix: hide count when there are 0 results and keep empty message in one line. */
.faq-page__results.is-empty,
.faq-page__results[data-count="0"] {
  display: none !important;
}

.faq-page__empty {
  min-height: 0 !important;
  padding: 0 !important;
  display: block !important;
  color: var(--faq-page-muted) !important;
  font-size: 16px !important;
  line-height: 20px !important;
}

.faq-page__empty[hidden] {
  display: none !important;
}

.faq-page__empty strong,
.faq-page__empty span {
  display: inline !important;
  color: var(--faq-page-muted) !important;
  font-weight: 400 !important;
}

.faq-page__empty strong::after {
  content: " ";
}

/* ==========================================================
   Mobile interaction fixes: tap highlight, search clear button,
   and real scroll inside mobile filtration.
   ========================================================== */

.faq-page,
.faq-page * {
  -webkit-tap-highlight-color: transparent;
}

.faq-page .faq-section__item,
.faq-page .faq-section__summary,
.faq-page .faq-section__question,
.faq-page__category-button,
.faq-page__mobile-category-button,
.faq-page__suggestion,
.faq-page__mobile-filter-toggle {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.faq-page .faq-section__summary {
  border-radius: inherit;
  outline: none;
}

@media (hover: none) and (pointer: coarse) {
  .faq-page .faq-section__summary:hover,
  .faq-page .faq-section__summary:active,
  .faq-page .faq-section__item:active {
    background: transparent !important;
    outline: none !important;
  }

  .faq-page__suggestion:hover,
  .faq-page__suggestion:active {
    background: transparent !important;
  }
}

.faq-page__search-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 32px;
}

.faq-page__search-input::-webkit-search-decoration,
.faq-page__search-input::-webkit-search-cancel-button,
.faq-page__search-input::-webkit-search-results-button,
.faq-page__search-input::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

.faq-page__search-clear {
  position: absolute;
  top: 50%;
  right: 72px;
  z-index: 3;
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4d5156;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-tap-highlight-color: transparent;
}

.faq-page__search-clear[hidden] {
  display: none !important;
}

.faq-page__search-clear svg {
  width: 18px;
  height: 18px;
  display: block;
}

.faq-page__search-clear:hover,
.faq-page__search-clear:focus-visible {
  color: #0d0d0d;
  background: transparent;
  outline: none;
}

@media screen and (max-width: 749px) {
  .faq-page__mobile-search .faq-page__search-clear {
    right: 12px;
  }

  .faq-page__mobile-search .faq-page__search-input {
    padding-right: 36px;
  }

  body.faq-mobile-filter-open .faq-page__mobile-filter-panel {
    overflow: hidden !important;
  }

  body.faq-mobile-filter-open .faq-page__mobile-category-list {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin;
    scrollbar-color: #263733 transparent;
  }

  body.faq-mobile-filter-open
    .faq-page__mobile-category-list::-webkit-scrollbar {
    width: 7px;
  }

  body.faq-mobile-filter-open
    .faq-page__mobile-category-list::-webkit-scrollbar-track {
    background: transparent;
  }

  body.faq-mobile-filter-open
    .faq-page__mobile-category-list::-webkit-scrollbar-thumb {
    min-height: 44px;
    border-radius: 100px;
    background: #263733;
  }

  body.faq-mobile-filter-open .faq-page__mobile-filter-footer {
    flex: 0 0 auto !important;
    margin-top: 16px !important;
  }
}

>>>>>>> d8ea796 (fix bugs)
/* Mobile FAQ tap/hover fix: remove native white/gray tap highlight on accordion items. */
@media (hover: none) and (pointer: coarse), screen and (max-width: 767px) {
  .faq-page .faq-section__item,
  .faq-page .faq-section__summary,
  .faq-page .faq-section__summary *,
  .faq-page .faq-section__question,
  .faq-page .faq-section__toggle {
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
  }

  .faq-page .faq-section__summary,
  .faq-page .faq-section__summary:hover,
  .faq-page .faq-section__summary:active,
  .faq-page .faq-section__summary:focus,
  .faq-page .faq-section__summary:focus-visible {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .faq-page .faq-section__item:hover,
  .faq-page .faq-section__item:active,
  .faq-page .faq-section__item:focus,
  .faq-page .faq-section__item:focus-visible,
  .faq-page .faq-section__item:focus-within {
    background: var(--faq-page-card-bg) !important;
    outline: none !important;
    box-shadow: none !important;
  }
}
