/* ============================================
   Go Top 回頂按鈕（共用元件）
   ============================================
   HTML（放在 <body> 開頭附近即可）：
     <button class="go-top" type="button" aria-label="回到頁首">↑</button>

   JS（原生寫法，不依賴 jQuery）：
     (function () {
         var goTop = document.querySelector('.go-top');
         if (!goTop) return;
         window.addEventListener('scroll', function () {
             goTop.classList.toggle('is-visible', window.scrollY > 500);
         });
         goTop.addEventListener('click', function (e) {
             e.preventDefault();
             window.scrollTo({ top: 0, behavior: 'smooth' });
         });
     }());

   若該頁面有自訂 --ciot-blue 變數（如 2026_ciot_clm.css），
   會自動套用該頁的品牌色；沒有的話則 fallback 用 #0192ff。
   ============================================ */

.go-top {
    display: none;
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--ciot-blue, #0192ff);
    font-size: 22px;
    cursor: pointer;
}

.go-top.is-visible {
    display: block;
}
