/** Shopify CDN: Minification failed

Line 14:14 Expected identifier but found whitespace
Line 14:16 Unexpected "{"
Line 14:25 Expected ":"
Line 14:51 Expected ":"
Line 15:17 Expected identifier but found whitespace
Line 15:19 Unexpected "{"
Line 15:28 Expected ":"
Line 15:57 Expected ":"

**/
.faq-section {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section__heading {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: var(--font-heading-family, inherit);
}

/* ── FAQ Item ── */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-child {
  border-top: 1px solid #e5e5e5;
}

/* ── Question (summary) ── */
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 16px;
}

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

.faq-item__question::marker {
  content: '';
}

.faq-item__question-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-foreground, #1a1a1a);
}

/* ── Icon ── */
.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
  color: var(--color-foreground, #1a1a1a);
  transition: transform 0.3s ease;
}

.faq-item__icon-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Rotate vertical line to 0 when open (forms a minus) */
.faq-item[open] .faq-item__icon-line--vertical {
  opacity: 0;
  transform: rotate(90deg);
}

/* ── Answer ── */
.faq-item__answer {
  overflow: hidden;
}

.faq-item__answer-inner {
  padding: 0 8px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-foreground, #444);
}

.faq-item__answer-inner p {
  margin: 0;
}

/* ── Hover states ── */
@media (hover: hover) {
  .faq-item__question:hover .faq-item__icon {
    border-color: var(--color-foreground, #1a1a1a);
  }
}
