/* 产品分类图片对齐修复 - 最高优先级 */

/* ========== Faux Fur 分类 - 强制显示图片顶部 ========== */
/* 使用 ID 选择器提高优先级 */
#root a[href*="faux-fur"] img,
#root [class*="faux"] img,

/* 使用多层嵌套提高优先级 */
html body div#root [class*="categories"] a[href*="faux-fur"] img,
html body div#root [class*="Categories"] a[href*="faux-fur"] img,

/* 直接针对图片 */
img[style*="faux-fur"],
img[src*="faux-fur"],

/* 所有可能匹配的选择器 */
a[href*="faux-fur"] img,
[class*="faux-fur"] img,
[class*="fauxfur"] img,
[class*="FauxFur"] img,
img[alt*="Faux Fur" i],
img[alt*="faux fur" i] {
  object-fit: cover !important;
  object-position: top center !important; /* 显示图片最顶部 */
  transform: scale(1.35) translateY(-15%) !important; /* 放大1.35倍，向下移动15%，与两侧对齐 */
  transform-origin: top center !important; /* 从顶部中心放大 */
}

/* 针对图片容器 */
a[href*="faux-fur"] [class*="image"],
a[href*="faux-fur"] [class*="Image"],
[class*="faux-fur"] [class*="image"] {
  overflow: hidden !important;
}

/* ========== 其他分类保持默认 ========== */
[class*="category"] img,
[class*="Category"] img {
  object-fit: cover !important;
  object-position: center 20% !important;
}
