html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}*/

.cart-header {
    height: 80px;
}

.cart-logo {
    height: 60px;
    width: auto;
}
/* =========================================================
   修復 Webkit 瀏覽器自動填寫 (Autofill) 破壞暗色背景的問題
   ========================================================= */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /* 1. 利用極長的轉場時間，讓那個醜醜的淺色背景 5000 秒後才出現 */
    transition: background-color 5000s ease-in-out 0s;
    /* 2. 強制指定自動填入後的文字顏色 (避免文字變成預設的黑色) */
    /* 這裡設定為淺灰色，你可以替換成你實際 text-dark-text 的色碼，例如 #E5E7EB */
    -webkit-text-fill-color: #E5E7EB !important;
    /* 3. 確保游標顏色也是對的 */
    caret-color: #C6A664 !important;
}