/* ============================================================
   CONLUXS GLOBAL PRODUCT FAQ CONTRAST FIX V1
   product-faq-v1.css — Product Detail FAQ visual contrast / typography
   Scope: .geo-faq (Product Detail FAQ component ONLY)
   ------------------------------------------------------------
   ROOT CAUSE: FAQ question/answer elements inherited body color
   var(--ink) #090d10 on dark section bg-[#11161b] -> unreadable.
   This file is loaded ONLY on product pages that contain FAQ.
   ============================================================ */

.geo-faq {
  color: #d5dadd;
}

.geo-faq details {
  margin-bottom: 1.25rem;
}

.geo-faq summary {
  color: #f3f6f7;
  font-weight: 600;
  font-size: 1.125rem;        /* 18px desktop */
  line-height: 1.6;
  margin-bottom: 0.375rem;
  cursor: pointer;
}

.geo-faq p {
  color: #d5dadd;
  font-size: 1rem;            /* 16px */
  line-height: 1.65;
  margin: 0.25rem 0 0;
}

.geo-faq a {
  color: #d7ff3f;
  text-decoration: underline;
}

.geo-faq a:hover,
.geo-faq a:focus {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .geo-faq summary {
    font-size: 1.0625rem;     /* 17px mobile */
  }
  .geo-faq p {
    font-size: 1rem;          /* >= 16px mobile */
  }
  .geo-faq details {
    margin-bottom: 1.125rem;
  }
}
