/* ============================================================
   TREZZON STORE — TYPOGRAPHY (per-language fonts)
   ============================================================ */

/* English / Latin */
html[lang^="en"] body,
html[lang="en-US"] body,
html:not([lang]) body {
  font-family: var(--font-base);
}

/* Arabic */
html[lang="ar"] body,
html[lang^="ar-"] body,
html[dir="rtl"] body {
  font-family: var(--font-arabic);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--txt-primary);
}

h1 { font-size: clamp(2rem, 5vw, var(--font-size-4xl)); }
h2 { font-size: clamp(1.5rem, 3vw, var(--font-size-3xl)); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
p  { color: var(--txt-secondary); }

.section-title {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--txt-primary);
  margin-bottom: var(--sp-2);
}
.section-subtitle {
  color: var(--txt-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--sp-6);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}
