/* ============================================================
   IVLEV REALTY — Sitewide font unification → Inter
   ТОЛЬКО начертание. Контент/разметка/SEO не трогаются.
   Иконочные шрифты (Houzez/FontAwesome/Linearicons/Elementor)
   НЕ затрагиваются: правила не применяются к <i>, .lnr, .fa*,
   *-icon и т.п. Загружается ПОСЛЕ main.css (каскад побеждает).
   Аддитивно и обратимо (удалить файл + 1 require_once).
   ============================================================ */

/* 1) Мастер-переключатель: переменные темы (были "Manrope") → Inter.
   Покрывает всё, что ходит через var(--sans/--serif). */
:root{
  --sans:'Inter','Helvetica Neue',Arial,sans-serif !important;
  --serif:'Inter','Helvetica Neue',Arial,sans-serif !important;
}

/* 1b) Мастер reset-правило темы: в main.css есть глобальный список с
   Manrope !important (body…nav,a,ul,li,span:not(icon),div:not(icon)…).
   Реплицируем ТОЧНО тот же селектор с Inter — побеждает по каскаду,
   иконки уже исключены в самом селекторе (<i> в список не входит). */
body, header, footer, main, section, article, aside, nav,
h1, h2, h3, h4, h5, h6, p, a, ul, ol, li, dl, dt, dd, blockquote,
button, input, select, textarea, label, table, th, td, caption,
strong, b, em, small, figcaption, time, address,
span:not([class*="icon"]):not([class*="fa-"]):not(.fa):not(.fas):not(.far):not(.fab):not(.fal),
div:not([class*="icon"]){
  font-family:'Inter','Helvetica Neue',Arial,sans-serif !important;
}

/* 2) Elementor: глобальная типографика (главная и др. на Roboto). */
:root,
.elementor-kit-6{
  --e-global-typography-primary-font-family:"Inter";
  --e-global-typography-secondary-font-family:"Inter";
  --e-global-typography-text-font-family:"Inter";
  --e-global-typography-accent-font-family:"Inter";
}
.elementor-widget-container,
.elementor-heading-title,
.elementor-button,
.elementor-button-text,
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-icon-box-title,
.elementor-icon-box-title a,
.elementor-icon-box-description,
.elementor-image-box-title,
.elementor-image-box-description,
.elementor-price-list-title,
.elementor-tab-title,
.elementor-post__title{
  font-family:'Inter','Helvetica Neue',Arial,sans-serif !important;
}

/* 3) Базовый текст и формы (наследование разносит Inter дальше).
   span/div/a/li НАМЕРЕННО не трогаем — там бывают иконки. */
body,
h1,h2,h3,h4,h5,h6,
p, blockquote, figcaption, caption,
button, input, select, textarea, optgroup,
.btn, .button{
  font-family:'Inter','Helvetica Neue',Arial,sans-serif !important;
}

/* 4) Хардкод-Manrope в кастомных компонентах (точные селекторы). */
.ivcm-cta a,
.ivcm-cta button.tg,
.ivcm-cta button.wa,
.ivcm-cta-gate,
.ivcm-lb-count,
.ivcm-modal,
.ivh-mkt-title,
.ivh-mkt-val,
.ivh-pb-num,
.ivh-pb-title,
.ivh-title{
  font-family:'Inter','Helvetica Neue',Arial,sans-serif !important;
}

/* 5) Хардкод-Playfair в кастомных компонентах (точные селекторы). */
.ivac-empty h3,
.ivac-grid .ivc-name,
.ivac-mhead h1,
.ivac-profile h2,
.ivac-uname,
.ivcm-contact h3,
.ivcm-h,
.ivcm-sb .snm,
.ivcm-sim h3,
.ivcm-spec .v,
.ivcm-st .pct,
.ivc-pop-n,
.ivc-sorth,
.ivfg-card h2,
.ivlev-account-empty h3,
.ivlev-account-section-title,
.ivlev-account-title,
.ivlev-catalog .ivc-listings-title,
.ivlev-catalog .ivc-name,
.ivlev-otp .code-box,
.ivlev-otp .ivlev-otp-panel-object-info strong,
.ivlev-otp .ivlev-otp-panel-title{
  font-family:'Inter','Helvetica Neue',Arial,sans-serif !important;
}

/* 6) Убрать НАКЛОННЫЙ (italic/oblique) шрифт по всему сайту — только прямой.
   На иконочные шрифты не влияет (у глифов наклон не используется). */
body, body *{
  font-style:normal !important;
}
