/* Add custom CSS styles below */ 
/* ===============================================================
   Fonte de TÍTULOS — Alexandria (árabe + latino)
   ---------------------------------------------------------------
   1) Importa do Google Fonts
   2) Define variável --font-heading
   3) Força nos heading tags & classes comuns
   =============================================================== */

/* 1. Importa pesos 400–700 */
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;700&display=swap");

/* 2. Sobrescreve a variável global de heading (usada pelos temas) */
:root {
  --font-heading: "Alexandria", sans-serif !important;
}

/* 3. Fallback direto nas tags + classes de título */
h1, h2, h3, h4, h5, h6,
.section-title, .title, .heading, .product-title {
  font-family: "Alexandria", sans-serif !important;
}
/*  =====  DESCRIÇÃO  =====  */

.feature-desc {
  font-size: 10px;          /* padrão mobile */
  line-height: 1.7;
}

@media (min-width: 768px) { /* tablets / desktop */
  .feature-desc {
    font-size: 12px;
  }
}