/* WMCA 商品分类手风琴修正（v1.0.14）
 *
 * 背景：Elementor 为模板生成的 post-1595.css / post-1602.css 中，短码小部件
 * （archive=elementor-element-306b15a、single=elementor-element-10e2906）带有
 * margin-top:-20px。源站编译产物中不存在该负边距，compat.css 最终段的 margin:0
 * 即源站有效值；目标站上 Elementor post CSS 在 compat.css 之后加载，同特异性下
 * 胜出，导致手风琴区整体上移 20px，"Product Categories" 标题条压住首行（Melt Shop）。
 *
 * 修法：以 4 个 class 级选择器 + !important 中和该负边距 —— 特异性高于 Elementor
 * 的 3 个 class 级规则，且 !important 使其与样式表加载顺序无关，稳定胜出。
 *
 * 本文件只做"补丁"，不含任何皮肤规则：手风琴外观完全交由 compat.css 的最终段
 * （"frozen HANI desktop geometry"）governing，与源站级联结果一致。
 */

.lf-theme-location--archive[data-template-id="1595"] .elementor-element.elementor-element-306b15a {
  margin-top: 0 !important;
}

.lf-theme-location--single[data-template-id="1602"] .elementor-element.elementor-element-10e2906 {
  margin-top: 0 !important;
}
