.its-faq-shortcode {
  --its-faq-accent: var(--accent, #d4af37);
  --its-faq-muted: var(--muted, rgba(255,255,255,0.68));
  --its-faq-shadow: var(--shadow, 0 18px 50px rgba(0,0,0,0.35));
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 0;
  color: #fff;
}

.its-faq-shortcode .its-faq-title {
  font-family: Oswald, Impact, sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: #fff;
}

.its-faq-shortcode .its-faq-intro {
  margin: 0 0 22px;
  color: var(--its-faq-muted);
}

.its-faq-shortcode .faq-list {
  display: grid;
  gap: 14px;
}

.its-faq-shortcode .faq-item {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: var(--its-faq-shadow);
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.its-faq-shortcode .faq-item:hover,
.its-faq-shortcode .faq-item.active {
  border-color: rgba(212,175,55,0.38);
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.035));
}

.its-faq-shortcode .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.its-faq-shortcode .faq-question:focus-visible {
  outline: 2px solid var(--its-faq-accent);
  outline-offset: -4px;
}

.its-faq-shortcode .faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.38);
  background: rgba(212,175,55,0.10);
  color: var(--its-faq-accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.its-faq-shortcode .faq-answer {
  padding: 0 24px 24px;
  color: var(--its-faq-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.its-faq-shortcode .faq-answer[hidden] {
  display: none;
}

.its-faq-shortcode .faq-answer p:first-child {
  margin-top: 0;
}

.its-faq-shortcode .faq-answer p:last-child {
  margin-bottom: 0;
}

.its-faq-shortcode .faq-item.active .faq-icon {
  background: var(--its-faq-accent);
  color: #070707;
  border-color: var(--its-faq-accent);
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.10), 0 12px 30px rgba(0,0,0,0.36);
}

.its-faq-shortcode .its-faq-empty {
  color: var(--its-faq-muted);
}

@media (max-width: 640px) {
  .its-faq-shortcode {
    padding: 12px 0;
  }

  .its-faq-shortcode .faq-question {
    padding: 18px;
    gap: 14px;
  }

  .its-faq-shortcode .faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 26px;
  }

  .its-faq-shortcode .faq-answer {
    padding: 0 18px 18px;
  }
}
