/* ============================================================
   wc-under-negotiation — フロントエンドスタイル
   ============================================================ */

/* ---------- 商品詳細 h1：タイトル内バッジ ---------- */
.title_in_biz_mtg {
    display: inline-block;
    padding: 2px 10px;
    margin-right: 8px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 3px;
    vertical-align: middle;
    line-height: 1.8;
    white-space: nowrap;
}

/* ---------- 商品一覧：画像上バッジ ---------- */
.list_in_biz_mtg {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    padding: 4px 10px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 3px;
    line-height: 1.4;
    pointer-events: none;
}

/* li.product に position:relative が当たっていない場合の保険 */
li.product {
    position: relative;
}

/* ---------- 商品一覧：無効化されたカートボタン ---------- */
.wc-nego-disabled-btn.button,
a.wc-nego-disabled-btn {
    background-color: #e0e0e0 !important;
    color: #888 !important;
    border-color: #ccc !important;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.75;
}

/* ---------- 商品一覧：「商談中」バッジ（ボタンと共存） ---------- */
.wc-nego-disabled-btn::before {
    content: "🔒 ";
}

/* ---------- 商品詳細：「商談中」通知バナー ---------- */
.wc-nego-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    margin: 20px 0;
    background-color: #fce9aa;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
}
