﻿/* ----------------------------------------------------
   Inter 字体本地加载 (使用高性能 WOFF2 格式)
   ---------------------------------------------------- */

/* Regular (400) - 适用于普通文本 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap; 
  src: url('/fonts/inter/Inter-Regular.woff2') format('woff2'); 
}

/* Medium (500) - 适用于强调和菜单 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter/Inter-Medium.woff2') format('woff2'); 
}

/* SemiBold (600) - 适用于标题和重要元素 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter/Inter-SemiBold.woff2') format('woff2'); 
}

/* Bold (700) - 适用于粗体标题 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter/Inter-Bold.woff2') format('woff2'); 
}


/* ----------------------------------------------------
   全站强制应用 Inter 字体 (高优先级)
   ---------------------------------------------------- */
/* 覆盖所有常见的文本和表单元素 */
html, 
body, 
h1, h2, h3, h4, h5, h6, 
p, 
a, 
span, 
label,
select,
input,
textarea,
button {
    font-family: 'Inter', sans-serif !important;
}

/* 确保您的自定义筛选器区域也被覆盖 */
.sticky-wrapper,
.sticky-wrapper * {
    font-family: 'Inter', sans-serif !important;
}