/** Shopify CDN: Minification failed

Line 26:12 Unterminated string token
Line 26:27 Unterminated string token

**/
/* ============================================================
   Swatch King 価格表示への (税込) 追加

   Swatch King が介入したカードには [swatch-generated] 属性が付く。
   バリエーションなし商品はテーマの price.liquid がそのまま出力され、
   すでに <small class="price-item__tax"> が含まれるため二重表示を防ぐ。
   :has(.price-item__tax) で <small> 済みの要素は除外する。
   ============================================================ */

/* セール価格に (税込) を追加 */
[swatch-generated] .price-item--sale:not(:has(.price-item__tax))::after {
  content: "（税込）";
  font-size: 0.75em;
  font-weight: normal;
  letter-spacing: 0;
}

/* 通常価格に (税込) を追加（display:none のものと <small> 済みは除外） */
[swatch-generated] .price-item--regular:not([style*="display:none"]):not(:has(.price-item__tax))::after {
  content: "f08税込）";
  font-size: 0.75em;
  font-weight: normal;
  letter-spacing: 0;
}

/* ============================================================
   商品カードの金額数字部分を強調
   ============================================================ */

.product-card-wrapper .price-item--sale,
.product-card-wrapper .price-item--regular {
  font-size: 1.8rem;
  font-weight: var(--font-body-weight-bold);
}

/* (税込) の <small> は親の 1.8rem を継承するため、
   元のサイズ感に揃えるよう 1.2rem 固定で上書き */
.product-card-wrapper .price-item__tax {
  font-size: 1.2rem;
  font-weight: normal;
}

/* ============================================================
   Wiser アプリの商品カード価格の強調 + (税込) 表示
   .ws_orig_price に金額と税込を付加する
   ============================================================ */

.ws_orig_price {
  font-size: 1.8rem !important;
  font-weight: var(--font-body-weight-bold);
}

.ws_orig_price::after {
  content: "（税込）";
  font-size: 0.75em;
  font-weight: normal;
  letter-spacing: 0;
}
