/* ============================================
   TERMS PAGE
   public/css/terms.css
   ============================================ */

.terms-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.terms-page h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary, #111);
  margin-bottom: 8px;
}

.terms-meta {
  color: var(--text-light, #888);
  font-size: 0.85rem;
  margin-bottom: 24px;
}


/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.terms-lang-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border, #E0E0E0);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 32px;
  gap: 2px;
}

.terms-lang-btn {
  padding: 6px 18px;
  border-radius: 6px;
  border: none;
  background: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary, #555);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: var(--font, sans-serif);
}

.terms-lang-btn.active {
  background: var(--primary, #1A7A4A);
  color: #fff;
}

.terms-lang-btn:not(.active):hover {
  background: var(--primary-bg, #E8F5EE);
  color: var(--primary, #1A7A4A);
}


/* ============================================
   LANGUAGE BLOCKS
   ============================================ */
#termsContent[data-active="en"] .t-es { display: none; }
#termsContent[data-active="es"] .t-en { display: none; }


/* ============================================
   SPANISH SUMMARY BANNER
   ============================================ */
.terms-summary {
  background: var(--primary-bg, #E8F5EE);
  border: 1px solid rgba(26,122,74,.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.terms-summary p {
  font-size: 0.9rem;
  color: var(--text-secondary, #555);
  margin: 0;
  line-height: 1.7;
}

.terms-summary strong {
  color: var(--primary-dark, #145C38);
}


/* ============================================
   SECTIONS
   ============================================ */
.terms-section {
  margin-bottom: 36px;
}

.terms-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary, #111);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border, #E0E0E0);
}

.terms-section p {
  font-size: 0.9rem;
  color: var(--text-secondary, #555);
  line-height: 1.8;
  margin-bottom: 8px;
}

.terms-section ul {
  padding-left: 20px;
  margin-bottom: 8px;
}

.terms-section li {
  font-size: 0.9rem;
  color: var(--text-secondary, #555);
  line-height: 1.8;
  margin-bottom: 6px;
}


/* ============================================
   NO REFUND HIGHLIGHT
   ============================================ */
.terms-highlight {
  background: var(--error-bg, #FFF5F5);
  border-left: 3px solid var(--error, #E53E3E);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
}

.terms-highlight p {
  color: var(--error, #E53E3E);
  margin: 0;
  font-weight: 600;
  font-size: 0.88rem;
}
