/* 產品列表裡 */
.w-tabs-item.active {
    background: #ffffff !important;
}

/*隱藏按鈕add-to-cart color*/
.woocommerce-variation-add-to-cart {
  display: none !important;
}



.variation-section .us-btn {
  margin-top: 0 !important;
}


/* 產品列表裡 Where to buy*/

/* ▼ 主按鈕 Where to buy（黑底白字，不變色） */
.custom_wheretobuy{
  width: 350px;
}

.buy-dropdown .w-dropdown-current .w-dropdown-item {
  dropdown-icon:font Awesome Solid;
  background-color: #333333;
  color: #ffffff;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  pointer-events: none; /* 防止點擊展開的動作 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
}

/* 確保 span 內文字也為白色 */
.buy-dropdown .w-dropdown-current .w-dropdown-item-title {
  color: #ffffff;
}

/* ▼ 下拉選單本體 */
.buy-dropdown .w-dropdown-list {
  margin-top: 50px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 0;
}

/* ▼ 字的上下間距強制0 */
#w-dropdown-linehight{
    line-height: 0px;
}
/* ▼ 字的上下e高度強制 */
#w-dropdown-item-linehight{
   margin:25px;
}



/* ▼ 下拉清單項目：預設白底黑字 */
.buy-dropdown .w-dropdown-item.smooth-scroll {
  background-color: #ffffff;
  color: #000000;
  display: block;
  padding: 0px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-weight: 400;
  display: flex;
}


/* ▼ 滑過／點選下拉項目 → 淺灰背景 */
.buy-dropdown .w-dropdown-item.smooth-scroll:hover,
.buy-dropdown .w-dropdown-item.smooth-scroll:active {
  background-color: #f2f2f2;
  color: #000000;
}

/* ▼ 避免 span 裡文字繼承錯誤 */
.w-dropdown-item-title {
  color: inherit;
}


/*-------------------------------------------------------------------*/