.pulldown.product_cart_select { width: 100%; }

/* 在庫切れオプションを分かりやすくグレーアウトする */
option:disabled {
  color: #aaaaaa;
  background-color: #f4f4f4;
}

/* プルダウンのオプション間の線を消す */
.pulldown.product_cart_select option {
  border: none !important;
}

/* 価格の折り返しを許可 */
.prices .price-range,
.prices .price {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.6;
}

/* SOLD OUT 行の見た目 */
.pulldown.product_cart_select option.is-soldout {
  color: #888;
}

/* セレクト自体の幅（既存） */
.pulldown.product_cart_select { width: 100%; }
