#customerGuideOverlay.customer-faq-shell {
  width: 100%;
  margin: 12px 0 18px;
  color: var(--text, #1e2722);
}

.customer-faq-panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #bccfc5;
  border-radius: 18px;
  background: #fffdf8;
}

.customer-faq-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 18px;
  padding: 22px 22px 14px;
}

.customer-faq-heading { min-width: 0; }

.customer-faq-eyebrow {
  margin: 0 0 6px;
  color: #236b55;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.customer-faq-panel h2 {
  margin: 0;
  color: #1c3028;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.customer-faq-lead {
  max-width: 72ch;
  margin: 9px 0 0;
  color: #43574e;
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.customer-faq-close {
  display: grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid #d8e1dc;
  border-radius: 50%;
  background: #ffffff;
  color: #3a4d45;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.customer-faq-close:hover {
  border-color: #a8c4b7;
  background: #f1f7f4;
  color: #185842;
}

.customer-faq-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0 22px 18px;
  list-style: none;
}

.customer-faq-facts li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  gap: 7px;
  padding: 5px 10px;
  border: 1px solid #cfe2d8;
  border-radius: 8px;
  background: #eef6f2;
  color: #24523e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.customer-faq-facts li span {
  color: #236b55;
  font-size: 13px;
}

.customer-faq-list { border-top: 1px solid #e1e7e3; }

.customer-faq-extra[hidden],
.customer-faq-answer[hidden] { display: none; }

.customer-faq-item { border-bottom: 1px solid #e5e9e6; }

.customer-faq-question-heading {
  margin: 0;
  font: inherit;
}

.customer-faq-question {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  align-items: center;
  width: 100%;
  min-height: 52px;
  gap: 10px;
  padding: 11px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #263a32;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.customer-faq-question:hover {
  background: #f7faf8;
  color: #174f3b;
}

.customer-faq-question:active { background: #edf4f0; }

.customer-faq-number {
  color: #52675d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.customer-faq-question-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.customer-faq-toggle {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  justify-self: end;
  color: #236b55;
}

.customer-faq-toggle::before,
.customer-faq-toggle::after {
  position: absolute;
  top: 9px;
  left: 4px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.customer-faq-toggle::after { transform: rotate(90deg); }
.customer-faq-question[aria-expanded="true"] .customer-faq-toggle::after { transform: rotate(0deg); }

.customer-faq-answer {
  max-width: 78ch;
  padding: 0 56px 17px 62px;
  color: #465a51;
  font-size: 14px;
  line-height: 1.68;
}

.customer-faq-answer-copy { margin: 0; }
.customer-faq-answer-copy + .customer-faq-answer-copy { margin-top: 9px; }

.customer-faq-address {
  padding: 10px 12px;
  border: 1px solid #d8c7a7;
  border-radius: 7px;
  background: #faf7ef;
  color: #34473f;
  overflow-wrap: anywhere;
  font-style: normal;
}

.customer-faq-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 22px 18px;
  background: #fbfcfa;
}

.customer-faq-more,
.customer-faq-whatsapp,
.customer-faq-primary {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.customer-faq-more,
.customer-faq-primary {
  cursor: pointer;
}

.customer-faq-more {
  border: 1px solid #b8c9c0;
  background: #ffffff;
  color: #285642;
}

.customer-faq-whatsapp {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #9dbdae;
  background: #eef6f2;
  color: #185842;
  text-align: center;
  text-decoration: none;
}

.customer-faq-whatsapp-mark {
  display: grid;
  width: 24px;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #236b55;
  color: #ffffff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.customer-faq-whatsapp-label { min-width: 0; }

.customer-faq-primary {
  border: 1px solid #236b55;
  background: #236b55;
  color: #ffffff;
}

.customer-faq-more:hover {
  border-color: #7da28f;
  background: #f3f8f5;
}

.customer-faq-whatsapp:hover {
  border-color: #6f9c87;
  background: #e4f0ea;
  color: #104d3a;
}

.customer-faq-primary:hover {
  border-color: #185842;
  background: #185842;
}

.customer-faq-more:active { background: #e8f1ec; }
.customer-faq-whatsapp:active { background: #d9e9e1; }
.customer-faq-primary:active { background: #104d3a; }

.customer-faq-question:focus-visible {
  outline: 3px solid #0d6b50;
  outline-offset: -3px;
}

.customer-faq-close:focus-visible,
.customer-faq-more:focus-visible,
.customer-faq-whatsapp:focus-visible,
.customer-faq-primary:focus-visible {
  outline: 3px solid #0d6b50;
  outline-offset: 2px;
}

@media (max-width: 720px) {
  #customerGuideOverlay.customer-faq-shell { margin: 8px 0 14px; }
  .customer-faq-panel { border-radius: 14px; }

  .customer-faq-header {
    gap: 10px;
    padding: 14px 14px 9px;
  }

  .customer-faq-panel h2 { font-size: 19px; }

  .customer-faq-lead {
    display: none;
  }

  .customer-faq-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 0 14px 10px;
  }

  .customer-faq-facts li {
    width: 100%;
    min-height: 0;
    box-sizing: border-box;
    padding: 4px 9px;
  }

  .customer-faq-question {
    grid-template-columns: 26px minmax(0, 1fr) 22px;
    gap: 8px;
    min-height: 48px;
    padding: 8px 14px;
  }

  .customer-faq-question-text { font-size: 14px; }

  .customer-faq-answer {
    max-width: none;
    padding: 0 18px 15px 48px;
    font-size: 14px;
    line-height: 1.65;
  }

  .customer-faq-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 7px;
    padding: 10px 14px 12px;
  }

  .customer-faq-more,
  .customer-faq-whatsapp,
  .customer-faq-primary {
    width: 100%;
    min-width: 0;
    padding-inline: 7px;
    white-space: normal;
  }
}

@media (max-width: 360px) {
  .customer-faq-header {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .customer-faq-question {
    grid-template-columns: 22px minmax(0, 1fr) 20px;
  }

  .customer-faq-answer {
    padding-right: 15px;
    padding-left: 45px;
  }

  .customer-faq-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding-inline: 10px;
  }

  .customer-faq-more,
  .customer-faq-whatsapp,
  .customer-faq-primary {
    padding-inline: 4px;
    font-size: 13px;
  }

  .customer-faq-whatsapp { gap: 4px; }

  .customer-faq-whatsapp-mark {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-faq-toggle::before,
  .customer-faq-toggle::after { transition: none; }
}
