/* =========================================================
   KANJI TOKYO | Shortcode product grid adjustments
   目的：Saleの欠け防止 + バッジを「スタッフおすすめ」風に寄せる
   ※ レイアウト（列数）には干渉しない
========================================================= */

/* カード側の「切り抜き」を無効化して Sale が欠けないように */
.madara-product-grid ul.products li.product{
  overflow: visible !important;
}

/* 画像リンク周りが overflow:hidden / 角丸だと Sale が欠けるので解除 */
.madara-product-grid ul.products li.product a,
.madara-product-grid ul.products li.product .woocommerce-LoopProduct-link,
.madara-product-grid ul.products li.product img{
  overflow: visible !important;
  border-radius: 0 !important;
}

/* Saleバッジを四角枠に（スタッフおすすめ寄せ） */
.madara-product-grid ul.products li.product .onsale{
  background: #fff !important;
  color: #111 !important;
  border: 1px solid #111 !important;
  border-radius: 2px !important;

  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;

  padding: 2px 8px !important;
  line-height: 1.2 !important;

  top: 10px !important;
  right: 10px !important;
  box-shadow: none !important;
}
