/* ============================================================
   Station 27 Designs — SEO Visible Elements
   - Etsy social-proof badge (top of right column)
   - Frequently Asked Questions section (bottom of right column)
   ============================================================ */

/* ---------- Etsy Social-Proof Badge ---------- */
.etsy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  text-decoration: none;
  color: #e2e8f0;
  font-size: 13px;
  font-family: var(--font-body, system-ui, sans-serif);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.etsy-badge:hover {
  background: rgba(0, 180, 255, 0.08);
  border-color: rgba(0, 180, 255, 0.4);
}

.etsy-badge__stars {
  /* Color exception: Etsy-style review stars are visually recognized as gold.
     Keep #ffb000 — not a brand-system violation. */
  color: #ffb000;
  letter-spacing: 1px;
  font-size: 14px;
}

.etsy-badge__text {
  font-weight: 500;
}

.etsy-badge__arrow {
  color: #00b4ff;
  font-weight: 700;
  margin-left: 4px;
}

/* ---------- Frequently Asked Questions Section ---------- */
.product-faq {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-faq .product-detail__section-title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 20px;
  color: #fff;
}

.product-faq__list {
  margin: 0;
  padding: 0;
}

.product-faq__q {
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 16px 0 6px;
  line-height: 1.4;
}

.product-faq__q:first-child {
  margin-top: 0;
}

.product-faq__a {
  margin: 0 0 8px;
  padding: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Mobile (< 600px) ---------- */
@media (max-width: 600px) {
  .etsy-badge {
    width: 100%;
    justify-content: center;
  }
  .product-faq .product-detail__section-title {
    font-size: 24px;
  }
}
