/* ==========================================================================
   LAVUMALL - 商品推薦按鈕共用 CSS
   檔案：/assets/css/product-recommend.css

   用途：
   1. index/category 商品卡片「推薦」按鈕
   2. product 商品詳情頁追蹤 + 推薦按鈕
   ========================================================================== */

.recommend-btn {
    border: 1px solid #d9e6f6;
    background: #ffffff;
    color: #6e6e73;
    cursor: pointer;
    transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}

.action-group .recommend-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.recommend-btn:hover {
    color: #0071e3;
    border-color: #0071e3;
    transform: translateY(-2px);
}

.recommend-btn.active {
    color: #ffffff;
    background: #0071e3;
    border-color: #0071e3;
}

.product-detail-action-btn {
    height: 38px;
    min-width: 38px;
    padding: 0 10px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
}

.product-detail-wishlist-btn {
    border: 1px solid #f0d4dc;
    background: #ffffff;
    color: #ff2d55;
    cursor: pointer;
}

.product-detail-wishlist-btn.active,
.product-detail-wishlist-btn.is-tracked {
    background: #fff1f5;
    border-color: #ff2d55;
}

.product-social-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.recommend-btn-count {
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .product-detail-action-btn .action-text {
        display: none;
    }

    .product-detail-action-btn {
        min-width: 38px;
        width: 38px;
        padding: 0;
    }
}