.xb-list-style__stock {
  display: none;
}

.xb-wishlist-modal__header {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 40px 0px 0px 0px;
    position: relative;
    width: 100%;
}

.xb-list-style__thead th, .xb-list-style__thead tr {
    padding-left: 30px; /* ここを px で固定するのが最も確実です */
}

/* XB Wishlist モバイル用カートボタンの完全修正 */
.xb-list-style__action-mobile {
  /* 縦長になるのを防ぎ、横幅を確保する */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  /* サイズ固定を解除して適切な横幅にする */
  width: 140px !important; /* ボタンの横幅を数値で固定するのが最も確実です */
  height: 44px !important;  /* 押しやすい高さ */
  aspect-ratio: auto !important;
  
  /* テキストを横一行に並べる */
  white-space: nowrap !important; 
  font-size: 14px !important;
  color: #ffffff !important;
  
  /* 余白と角丸 */
  padding: 0 10px !important;
  margin: 10px 0 !important;
  border-radius: 4px !important; /* 角丸を4pxに（お好みで25pxにすれば丸くなります） */
  
  /* 回転や変な挙動をリセット */
  writing-mode: horizontal-tb !important;
  transform: none !important;
}

/* PCで二つ出る問題を解決：PC（769px以上）ではモバイル用を隠す */
@media screen and (min-width: 769px) {
  .xb-list-style__action-mobile {
    display: none !important;
  }
}

.xb-wishlist-products__no-product {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    /* justify-content: center; */
    justify-content: flex-start;
    padding-top: 10px;
}

.xb-wishlist-products__no-product-desc {
    font-size: 12px;
    line-height: 1.5;
    max-width: 450px;
    text-align: center;
}

.xb-wishlist-modal__title {
    color: var(--xb-wishlist-modal-text-color);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    padding: 20px 0 10px;
    text-align: center;
    text-transform: capitalize;
}