/**
 * 見積WooCommerce連携ブリッジ - カート表示スタイル
 */

/* カート内の見積明細表示 */
.woocommerce-cart table.cart td.product-name dl.variation {
    margin: 0;
    padding: 0;
}

.woocommerce-cart table.cart td.product-name dl.variation dt {
    float: none;
    display: block;
    font-weight: 700;
    margin-top: 8px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-left: 3px solid #4f46e5;
    font-size: 0.85em;
    color: #333;
}

.woocommerce-cart table.cart td.product-name dl.variation dd {
    margin: 0;
    padding: 4px 8px 4px 16px;
    font-size: 0.8em;
    line-height: 1.6;
    color: #555;
}

.woocommerce-cart table.cart td.product-name dl.variation dd p {
    margin: 0;
}

/* 見積番号 */
.woocommerce-cart table.cart td.product-name dl.variation dt:first-child {
    margin-top: 12px;
    background: #eef2ff;
    border-left-color: #4f46e5;
    color: #4338ca;
}

/* 送料ラベル */
.woocommerce-cart table.cart td.product-name dl.variation dt:last-of-type {
    background: #fef3c7;
    border-left-color: #f59e0b;
    color: #92400e;
}

/* 割引表示（マイナス値） */
.woocommerce-cart table.cart td.product-name dl.variation dd .qwb-discount {
    color: #dc2626;
    font-weight: 600;
}

/* 数量フィールドの非表示（見積アイテムは数量固定） */
.woocommerce-cart table.cart .qwb-quote-item .quantity {
    display: none;
}

/* チェックアウトページの見積明細 */
.woocommerce-checkout table.shop_table td.product-name dl.variation {
    margin: 5px 0 0;
}

.woocommerce-checkout table.shop_table td.product-name dl.variation dt {
    font-weight: 600;
    font-size: 0.8em;
    margin-top: 5px;
    color: #333;
}

.woocommerce-checkout table.shop_table td.product-name dl.variation dd {
    font-size: 0.78em;
    margin: 0 0 0 8px;
    color: #666;
    line-height: 1.5;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .woocommerce-cart table.cart td.product-name dl.variation dt,
    .woocommerce-cart table.cart td.product-name dl.variation dd {
        font-size: 0.75em;
        padding: 3px 6px;
    }

    .woocommerce-cart table.cart td.product-name dl.variation dd {
        padding-left: 12px;
    }
}
