/* BASIC css start */
/* 기존 네 블록 (유지) */
#product-list .list_shopping2x {margin-top:20px;}
#product-list .list_shopping2x li {position: relative;}
#product-list .list_shopping2x li .ranking {position: absolute; top:-3px; left:2px; font-size: 12px;}
#product-list .list_shopping2x li .ranking .fa-bookmark {position: relative; color: rgba(241, 59, 78, 0.76);}
#product-list .list_shopping2x li .ranking .numRanking {position: absolute; top: 7px; left: 9px; color: #fff; font-size: 0.4em;}

/* 가로만 중앙, 세로(top:7px)는 그대로 */
#product-list .list_shopping2x li .ranking .fa-bookmark {
  position: relative;   /* 기준 박스 유지 */
  display: inline-block;
  line-height: 1;
}

#product-list .list_shopping2x li .ranking .numRanking {
  position: absolute;
  top: 7px;             /* 기존 세로 위치 유지 */
  left: 50%;            /* 수평 중앙 기준 */
  transform: translateX(-50%); /* 가로만 중앙 보정 */
  right: auto; bottom: auto;
  /* 크기/색상 등 기존 설정 그대로 유지 (font-size: 0.4em 등) */
  display: block;       /* 일부 테마 상속 대비 안전 */
  text-align: center;   /* 혹시 모를 정렬 상속 방지 */
}

/* BASIC css end */

