.elementor-49 .elementor-element.elementor-element-f7e0ce2{--display:flex;}.pp-tooltip.pp-tooltip-{{ID}} .pp-tooltip-content{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}/* Start custom CSS for container, class: .elementor-element-f7e0ce2 */<script>
document.addEventListener("DOMContentLoaded", function () {
  // 更改 Dashboard 標題
  const dashboardHeading = document.querySelector('.woocommerce-MyAccount-content h2');
  if (dashboardHeading && dashboardHeading.textContent.trim() === "Dashboard") {
    dashboardHeading.textContent = "帳戶首頁";
  }

  // 更改歡迎語句（Hello, xxx...）
  const greeting = document.querySelector('.woocommerce-MyAccount-content p');
  if (greeting && greeting.textContent.includes('Hello,')) {
    greeting.textContent = greeting.textContent
      .replace("Hello,", "你好，")
      .replace("From your account dashboard you can", "你可以在帳戶首頁")
      .replace("view your recent orders,", "查看最近的訂單，")
      .replace("manage your shipping and billing addresses,", "管理送貨及帳單地址，")
      .replace("and edit your password and account details.", "以及更新密碼與帳戶資料。");
  }
});
</script>/* End custom CSS */