/* 電腦版 手機版共用 */
.header-mobile,
.mobile-siteTopInfo {
  display: none;
}
@media (max-width: 991px) { 
  .header-desktop,
  .desktop-siteTopInfo {
    display: none;
  }
  .header-mobile,
  .mobile-siteTopInfo {
    display: block;
  }
}


/* -----icon----- */
.navbar-icon {
  display: flex;
  margin-bottom: 0;
}
.navbar-icon li {
  margin-left: 5px;
}
.navbar-icon li span {
  letter-spacing: 1px;
}
.navbar-icon li > a {
  display: block;
  padding: 8px;
  font-size: 15px;
  text-decoration: none;
  color: #000;
}
.iconSearch{
  color: var(--icon-search-color) !important;
  font-size: var(--icon-search-size) !important;
}
.iconWish{
  color: var(--icon-wish-color) !important;
  font-size: var(--icon-wish-size) !important;
}
.iconMember{
  color: var(--icon-member-color) !important;
  font-size: var(--icon-member-size) !important;
}
.iconCart{
  color: var(--icon-cart-color) !important;
  font-size: var(--icon-cart-size) !important;
}
.navbar-icon li > a:hover {
  /* color: #C9C3C0; */
  opacity: 0.5;
}
/* -----icon End----- */


/* 購物車 */
.cartAmount {
  position: relative;
}
.amount {
  padding: 2px;
  position: absolute;
  top: 3px;
  right: 4px;
  display: inline-block;
  min-width: 17px;
  background-color: #E6C08D;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px !important;
  font-size: 12px;
}
/* 購物車 End */


/* -----漢堡選單關閉按鈕----- */
.menu-close {
  text-align: end;
}
.menu-close a {
  padding: 15px 20px;
  display: inline-block;
  color: #000;
}
.menu-close a:hover {
  color: #545454;
}
/* -----漢堡選單關閉按鈕----- */


/* ----------搜尋框樣式---------- */
  .burger-search {
    padding: 15px 20px;
    background-color: #eee;
  }
  .burger-search input {
    background-color: #eee;
    outline: none;
    border: none;
  }
  .burger-search button {
    padding-left: 5px;
    color: #000;
    background-color: #eee;
    border: none;
  }
  @media (max-width: 991px) {
    .burger-search {
      padding: 10px 15px;
    }
  }
/* ----------搜尋框樣式 End---------- */


/* ----------電腦版選單---------- */
.desktop-menu-right {
  padding: 15px;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  background-color: #fff;
}
.desktop-menu-right .menu {
  margin-bottom: 0;
  padding-left: 50px;
  display: flex;
  flex-wrap: wrap;
  text-wrap: nowrap;
}
.desktop-menu-right .second-menu > li > .menu-arrow::after {
  right: 50%;
}
.desktop-menu-right .menu > li {
  margin-bottom: 15px;
  padding-right: 2%;
  width: 31%;
}
.desktop-menu-right .menu > li > a {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  color: #CEB391;
  cursor: default;
}
.desktop-menu-right .second-menu  li  a {
  display: inline-block;
  padding: 12px 35px 12px 15px;
  color: #999999;
  font-size: 14px;
  text-decoration: none;
}
.desktop-menu-right .second-menu li:hover > a {
  color: #000;
}
.desktop-menu-right .second-menu li {
  position: relative;
} 
.desktop-menu-right .second-menu ul {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #f2f2f2;
  z-index: 10;
  text-wrap: nowrap;
}
.desktop-menu-right .second-menu .third-menu {
  left: 60%;
}
.desktop-menu-right .menu > li:nth-child(3n) > .second-menu ul {
  left: auto;
  right: 100%;
}
.desktop-menu-right .second-menu > li:last-child ul {
  top: auto;
  bottom: 0;
}
.desktop-menu-right .second-menu li:hover > ul {
  display: block;
}
/* ----------電腦版選單 End---------- */


/* -----手機版選單----- */
.header-mobile-menu {
  font-family: "Roboto Condensed", sans-serif, "微軟正黑體";
  display: none;
  overflow-y: auto;
  z-index: 10;
  letter-spacing: 2px;
}
.mobile-menu {
  margin-bottom: 0;
}
.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}
.mobile-menu .menu-title {
  padding: 12px 25px;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  color: #747474;
}
.mobile-menu .arrow i::before {
  font-family: "Font Awesome 6 Free";
  content: '\f0d7';
  font-weight: bold;
}
.mobile-menu .open > .arrow i::before {
  font-family: "Font Awesome 6 Free";
  content: '\f0d8';
}
.mobile-menu .open .menu-title {
  color: #CEB391;
}
.mobile-menu .open ul {
  background-color: #F7F7F6;
}
.mobile-menu .second-menu > li > a {
  padding: 12px 32px;
  font-size: 14px;
  color: #141414;
}
.mobile-menu .second-menu .open > a {
  font-weight: bold;
  color: #000;
}
.mobile-menu .third-menu > li > a {
  padding: 12px 40px;
  font-size: 14px;
  color: #8D6B6B;
}
.mobile-menu .fourth-menu > li > a {
  padding: 12px 48px;
  font-size: 14px;
  color: #999999;
}
.mobile-menu .open ul li a:hover {
  background-color: #D9D8D4;
  color: #484745;
}
.mobile-menu-full {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 20;
}
/* -----手機版選單 End----- */


/* nav.layout7 {
  height: 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
} */
nav.layout7 .logo {
  display:block;
  height:80px;
  text-align:center;
}
nav.layout7 .logo img {
  height:100%;
}
.layout7 .navbar-icon {
  position: fixed;
  top: 15px;
  right: 30px;
  z-index: 10;
}
.layout7 .navbar-icon > li > a {
  margin-left: 10px;
  /* padding: 15px 17px;
  display: inline-block; */
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #DCD5D2;
  color: #545454;
}
@media (max-width: 768px) {
  /* nav.layout7 {
    height: 60px;
  } */
  nav.layout7 .logo {
    height:60px;
    text-align:left;
  }
  .layout7 .navbar-icon {
    top: 10px;
    right: 15px;
  }
  .layout7 .navbar-icon a {
    margin-left: 5px;
    /* padding: 10px 12px; */
    width: 40px;
    height: 40px;
  }
}


/* ----------置頂廣告---------- */
.siteTopInfo {
  position: sticky;
  top: 0;
  z-index: 10;
}

.top-banner-text {
    padding: 10px 15px;
    position: relative;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.top-banner-text > div p {
  margin-bottom: 5px;
}

.top-banner-text > div p:last-child {
  margin-bottom: 0;
}

.top-banner-close {
    padding: 0;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .top-banner-text {
        padding: 8px 10px;
        font-size: 14px;
    }
}
/* ----------置頂廣告_End---------- */