/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 28 2025 | 07:00:51 */
/* ここにCSSコードを追加

/* WooCommerceの「お買い物カゴに追加」ボタンが
  無効（disabled属性 または disabledクラス）の時にグレーアウトさせる
*/
.woocommerce div.product form.cart .single_add_to_cart_button[disabled],
.woocommerce div.product form.cart .single_add_to_cart_button.disabled {
    background-color: #cccccc !important; /* 背景をグレーに */
    color: #808080 !important;           /* 文字をダークグレー（ご指定の色）に */
    cursor: not-allowed !important;      /* マウスカーソルを禁止マークに */
    opacity: 0.7 !important;             /* 少し透明にする */
}