/* ═══════════════════════════════════════════════════════════════
   2026-08-26  评价区星级修复

   问题：.lh-av__star 是空 <span>，lh-0821.css 里只给了 color 和 font-size，
         没有任何绘制规则（既无 content 也无 background），所以星级不显示。
   做法：参照 /promo/scenekit/ 的 .rv-sq 样式，用 ::before 补上星形字符，
         方块底色取 scenekit 的 --lh-av (#ff5e4d)，熄灭态取 #f3d5cf。
   范围：仅 /promo/fr/index.html 与 /promo/it/index.html 引入本文件。
   回滚：删掉这两个页面里的 <link> 即可，本文件可以保留。
   ═══════════════════════════════════════════════════════════════ */

.lh-av__stars,
.lh-av__rate{
  display:inline-flex;
  align-items:center;
  gap:2px;
  letter-spacing:0;
}

.lh-av__star{
  width:17px;
  height:17px;
  flex:none;
  background:#ff5e4d;
  display:inline-grid;
  place-items:center;
  font-size:12px;
  line-height:1;
  color:#fff;
}

.lh-av__star::before{content:"\2605"}

.lh-av__star.is-off{background:#f3d5cf}

.lh-av__rate b{margin-left:6px}

@media (max-width:640px){
  .lh-av__star{width:15px;height:15px;font-size:11px}
}
