@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  src: url('/static/font/Montserrat-Regular-8.otf');
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 900;
  src: url('/static/font/Montserrat-Bold-3.otf');
}


.qodef-header--standard #qodef-page-header {
  background-color: #fff;
  height: 90px;
}

#qodef-top-area {
  background-color: #abccd8;
}


.qodef-header-navigation>ul>li {
  margin: 0 13px;
}

.qodef-header-navigation>ul>li>a {
  font-size: 16px;
  color: #000 !important;
  font-weight: 500;
}

.qodef-skin--light .widget_morkie_core_woo_dropdown_cart a.qodef-m-opener,
.qodef-skin--light .widget_morkie_core_woo_dropdown_cart>.widgettitle,
.qodef-skin--light .widget_shopping_cart a.qodef-m-opener,
.qodef-skin--light .widget_shopping_cart>.widgettitle {
  color: #333;
}

.qodef-widget-dropdown-cart-outer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qodef-header--standard #qodef-page-header-inner {
  padding-left: 15px;
  padding-right: 15px;
  border-bottom-color: rgba(255, 255, 255, 0);
  border-bottom-style: solid;
}



.dropdown-columns {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid #ececec;
  border-top: none;
}

.dropdown-col {
  min-width: 180px;
}

.img-col {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dropdown-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.dropdown-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-col ul li {
  margin-bottom: 8px;
  padding: 0 !important;
}

.dropdown-col ul li a {
  color: #878787 !important;
  text-decoration: none;
  font-size: 14px !important;
  transition: color 0.2s;
  margin: 5px 0 !important;
}


.middle-box {
  left: -20%;
  transform: translateX(-20%);
}

/* 轉換語言 */
.lang-switcher {
  position: relative;
  display: inline-block;
  font-family: inherit;
  z-index: 100;
}

.lang-selected {
  background: none;
  color: #162d56;
  font-weight: bold;
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 4px;
  user-select: none;
  display: flex;
  align-items: center;
}

.lang-selected .arrow {
  font-size: 12px;
  margin-left: 4px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 120px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
  display: block;
}

.lang-option {
  padding: 8px 18px;
  color: #888;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}

.lang-option.active {
  color: #162d56;
  font-weight: bold;
  background: #abccd8;
  cursor: default;
}

.lang-option:hover:not(.active) {
  background: #f0f0f0;
  color: #333;
}

.lang-text {
  font-size: 15px;
}

/* footer */
.checkbox-agree {
  vertical-align: middle;
  margin: 0 0 3px 0;
}

.check-label::placeholder {
  font-size: 14px;
}

.footer-grid-inner {
  --qode-columns: 6 !important;
}

.footer-grid-wrapper {
  width: 100% !important;
  padding: 0 5%;
}

.mobile-foot-logo{
  display: none !important;
}

@media screen and (max-width: 768px){
  .mobile-foot-logo{
    display: block !important;
  }
  .pc-foot-logo{
    display: none !important;
  }
}

/* 搜索彈窗 */
.search-sidebar {
  position: fixed;
  top: 0;
  right: -340px;
  /* 初始隱藏在右側 */
  width: 340px;
  height: 100vh;
  background: #fff;
  /* box-shadow: -2px 0 16px rgba(0, 0, 0, 0.12); */
  z-index: 9999;
  transition: right 0.3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}

.search-sidebar.open {
  right: 0;
}

.search-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.close-btn {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #888;
  transition: all .3s ease;
}

.close-btn:hover {
  color: #162d56;
  transform: rotate(180deg);
}

.search-sidebar-content {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-scrollbar: none
}

.search-sidebar-content::-webkit-scrollbar {
  display: none;
}

.search-sidebar-mask {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  transition: opacity 0.3s;
}

.search-sidebar.open~.search-sidebar-mask {
  display: block;
  opacity: 1;
}

.search-box {
  padding: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(129, 129, 129, .2);
}

.search-box>div {
  position: relative;
}

#searchInput {
  width: 100%;
  padding: 5px 20px 5px 20px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 14px;
  outline: none;
  margin-bottom: 0px;
}

/* 搜索按钮样式 */
.search-btn {
  position: absolute;
  right: 6%;
  top: 52%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.search-btn svg {
  fill: #999;
  /* 图标颜色 */
}

/* 热门搜索样式 */
.hot-search {
  margin-top: 8px;
  font-size: 12px;
  color: #333;
}

.hot-search a {
  color: #878787;
  text-decoration: none;
  margin: 0 2px;
}

.hot-search a:hover {
  color: #162d56;
}

.result-title {
  font-size: 15px;
  color: #222;
  font-weight: 800;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(129, 129, 129, .2);
  box-shadow: 0 3px 10px 0 rgba(129, 129, 129, .2);
}

.result-list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 20px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-item-img a {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.result-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.result-item-title {
  font-size: 14px;
  color: #222;
  font-weight: 600;
  line-height: 20px;
}

.result-item-title a:hover {
  color: #162d56;
}

.result-item-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-item-price-old {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}

.result-item-price-new {
  font-size: 14px;
  color: #162d56;
}

.result-item-discount {
  font-size: 12px;
  color: #fff;
  background-color: #162d56;
  padding: 0 5px;
  border-radius: 5px;
}

.view-all {
  margin: 0 20px;
  border-top: 1px solid rgba(129, 129, 129, .2);
  padding: 20px 0;
}

.view-all a {
  font-size: 15px;
  color: #222;
  font-weight: 600;
}

.view-all a:hover,
.view-all a:hover span svg path {
  fill: #abccd8;
  color: #abccd8;
}

.view-all a span svg {
  transition: all .3s ease;
}

.view-all a:hover span svg {
  transform: translateX(5px);
}

/* 登录弹窗-start */

/* 登入 */
.loginModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}

.loginModalOverlay.active {
  opacity: 1;
  visibility: visible;
}

.login-modal-content {
  background: #fff;
  height: 100vh;
  width: 100%;
  max-width: 400px;
  position: fixed;
  top: 0;
  right: -100%;
  /* 初始隱藏在右側 */
  transition: right 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  /* box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); */
}

.login-modal-content.open {
  right: 0;
  /* 滑入視圖 */
}

/* 響應式調整 */
@media (max-width: 480px) {
  .login-modal-content {
    max-width: 100%;
  }
}

.login-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.login-modal-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.wait-box {
  height: 100px;
}

.login-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.login-input::placeholder {
  font-size: 14px;
  color: #878787;
}

.login-btn-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.login-btn-container label {
  margin-bottom: 0;
  font-size: 13px;
}

.login-btn {
  width: 100%;
  background: #d1a05a;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 0;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}

.login-links {
  text-align: right;
  font-size: 14px;
  color: #888;
}

.forgot-link {
  color: #333;
  text-decoration: underline;
}

.register-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 0;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}

.login-banner-container {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 10px;
}

.login-banner-container a {
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
}

.login-banner {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: all .3s ease;
}

.login-banner-container a:hover .login-banner {
  transform: scale(1.05);
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register-form-row {
  display: flex;
  gap: 12px;
}

.register-form input,
.register-form select {
  width: 100%;
  padding: 4.5px 10px;
  border-bottom: 1px solid #2a2a2a;
  font-size: 15px;
  background: #fff;
  box-sizing: border-box;
}

.register-form select {
  width: 100%;
  padding: 4.5px 10px;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
  background-image: url('/static/picture/arrow-bottom.png');
  background-size: 10px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}


.register-form input::placeholder,
.register-form select::placeholder {
  font-size: 14px;
}

.register-form-row input {
  width: 50%;
}

.register-btn {
  width: 100%;
  background: #deb887;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 24px;
  padding: 10px 0;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
}

.register-note {
  font-size: 12px;
  color: #666;
  background: #f9f6f2;
  border-radius: 10px;
  padding: 12px 10px;
  margin-top: 8px;
  line-height: 1.7;
}

.register-note a {
  color: #162d56;
  text-decoration: underline;
  margin: 0 2px;
}

.register-bottom {
  text-align: left;
  font-size: 14px;
  margin-top: 8px;
  display: flex;
  align-items: center;
}

#backToLoginBtn {
  color: #162d56;
  font-size: 14px;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}






.verification-code-container input {
  flex: 1;
}

.resend-code-btn {
  background: #fff;
  border: 1px solid #162d56;
  padding: 5px 15px;
  cursor: pointer;
  white-space: nowrap;
  color: #162d56;
}

.resend-code-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.countdown-timer {
  color: #666;
  font-size: 12px;
  text-align: right;
  margin-bottom: 15px;
}

.password-requirements {
  margin-top: 15px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 12px;
}

.password-requirements ul {
  margin: 0px 0 0 20px;
  padding: 0;
}

.password-requirements li.valid {
  color: #4CAF50;
}

.password-requirements li.invalid {
  color: #F44336;
}

@media screen and (max-width: 768px) {
  .login-modal-content {
    max-width: 90%;
  }
}

/* 登录弹窗-end */

/* 通知彈窗樣式 */
.notification-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notification-modal.active {
  opacity: 1;
  visibility: visible;
}

.notification-content {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.notification-modal.active .notification-content {
  transform: translateY(0);
}

.notification-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-icon svg {
  width: 36px;
  height: 36px;
  fill: #4CAF50;
  /* 成功 */
}

.notification-icon.error svg {
  fill: #F44336;
  /* 錯誤 */
}

.notification-icon.warning svg {
  fill: #FF9800;
  /* 警告 */
}

.notification-message {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.5;
}

.notification-confirm {
  background-color: #162d56;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.notification-confirm:hover {
  background-color: #1a3a6e;
}

/* 成功圖標 */
.notification-icon.success svg {
  fill: #4CAF50;
}

.notification-icon.success svg path {
  d: path("M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z");

}

/* 錯誤圖標 */
.notification-icon.error svg {
  fill: #F44336;
}

.notification-icon.error svg path {
  d: path("M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z");
}

/* 警告圖標 */
.notification-icon.warning svg {
  fill: #FF9800;
}

.notification-icon.warning svg path {
  d: path("M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z");
}

@keyframes bounceIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.notification-content {
  animation: bounceIn 0.3s ease forwards;
}



/* 加購彈窗 */
.add-cart-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.add-cart-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.add-cart-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 32px 28px 24px 28px;
  min-width: 320px;
  max-width: 90vw;
  position: relative;
  text-align: center;

  transform: translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.add-cart-modal-overlay.active .add-cart-modal {
  transform: translateY(0);
  opacity: 1;
}

.add-cart-modal .close-btn {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #162d56;
  cursor: pointer;
}

.modal-product-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #f6f6f6;
}

.modal-product-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 0;
}

.modal-product-price {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 0;
  color: #162d56;
}

.modal-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  color: #162d56;
  font-size: 1.3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #abccd8;
}

#addCartQty,
#points-qty {
  width: 48px;
  text-align: center;
  font-size: 1.1rem;
  border: 1.5px solid #eee;
  border-radius: 6px;
  padding: 4px 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.modal-confirm-btn {
  background: #162d56;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-confirm-btn:hover {
  background: #abccd8;
}

.modal-cancel-btn {
  background: #f5f5f5;
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal-cancel-btn:hover {
  background: #ececec;
  color: #162d56;
}

@media (max-width: 768px) {
  .add-cart-modal {
    padding: 24px 16px;
    min-width: 280px;
  }

  .modal-actions {
    flex-direction: column;
    gap: 12px;
  }

  .modal-confirm-btn,
  .modal-cancel-btn {
    width: 100%;
  }

  .add-cart-modal{
    min-width: 90%;
  }
}

/* 加購彈窗 */


/* 移動端header-start */

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: none; /* Hidden by default, shown with media query */
}

.mobile-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  height: 70px;
  border-bottom: 1px solid #eee;
}

.mobile-logo img {
  height: 40px;
  width: auto;
}

.mobile-header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-header-icons button,
.mobile-header-icons a {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #162d56;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-header-logo{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 15px;
}
.mobile-header-logo img{
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Nav Sidebar */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 1002;
  overflow-y: auto;
  transition: all 0.3s ease;
}



.mobile-nav.active {
  left: 0;
}

.mobile-nav-inner {
  padding: 20px 0;
}

.mobile-main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-main-menu > li {
  border-bottom: 1px solid #eee;
}

.mobile-main-menu a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 15px;
  color: #162d56;
  text-decoration: none;
  font-size: 15px;
}

.mobile-nav svg {
  stroke: currentColor;
  stroke-width: 1; 
  fill: none;
  vertical-align: middle; 

}

.menu-item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submenu-toggle {
  background: none;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.submenu.active {
  max-height: 1000px;
}

.submenu li {
  border-bottom: 1px solid #e0e0e0;
}

.submenu li:last-child{
  border-bottom: none;
}

.submenu a {
  padding-left: 20px;
  color: #162d56;
  opacity: 0.9;
}

.submenu .submenu a {
  padding-left: 10px;
  color: #162d56;
  opacity: 0.8;
  font-size: 14px;
}

.submenu-toggle svg {
  transition: transform 0.3s ease;
}

.submenu-toggle.active svg {
  transform: rotate(180deg);
}

.language-mobile ul{
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
}

.language-mobile ul li{
  position: relative;
  width: 33.33%;
  text-align: center;
}
.language-mobile ul li::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #162d56;
}
.language-mobile ul li:last-child::after{
  display: none;
}

.language-mobile ul li a{
  color: #162d56;
  opacity: 0.8;
  font-size: 15px;
}
/* Show mobile header only on mobile */
@media (max-width: 991px) {
  .mobile-header {
      display: block;
  }
}

/* 移動端header-end */

#qodef-page-wrapper{
  overflow-x: hidden;
}

/* 回到顶部-start */
#qodef-back-to-top{
  bottom: 80px;
  right: 20px;
}
/* 回到顶部-end */

/* 移动端底部导航栏-start */
.mobile-bottom-nav {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #162d56;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: none; /* Hidden by default on desktop */
}

.mobile-bottom-nav__inner {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.mobile-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-decoration: none;
  color: #fff;
  padding: 6px 0;
}

.mobile-bottom-nav__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-bottom-nav__text {
  font-size: 13px;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  font-weight: 400;
}

/* Active state */
.mobile-bottom-nav__item.active .mobile-bottom-nav__text{
  color: #abccd8; 
  font-weight: 600;
}
.mobile-bottom-nav__item.active .mobile-bottom-nav__icon svg{
  stroke: #abccd8;
}
.mobile-bottom-nav__item.active .mobile-bottom-nav__icon svg path{
  fill: #abccd8;
}

/* Show only on mobile */
@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: block;
  }
  
  /* Adjust content padding to avoid overlap */
  body {
    padding-bottom: 60px;
  }
}
/* 移动端底部导航栏-end */


/* 固定購物車-start */
.mobile-cart-wrapper{
  display: none;
}
/* 固定購物車-end */

.mobile-top-box{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #162d56;
  color: #fff;
  font-size: 13px;
}

#qodef-woo-page .qodef-woo-ratings .qodef-m-star.qodef--active svg{
  fill: #ffb800;
  stroke: #ffb800;
}

@media screen and (max-width:768px){
  .elementor-23 .elementor-element.elementor-element-6a4dd70{
    padding: 50px 0 0 0;
  }

  .qodef-woo-product-list .qodef-woo-product-title{
    font-size: 17px;
  }

  .qodef-woo-product-list .qodef-woo-ratings{
    margin: 10px 0 5px 0;
  }

  .qodef-woo-product-list .qodef-woo-ratings .qodef-m-star svg{
    width: 12px;
  }

  .qodef-woo-shortcode .price{
    font-size: 17px;
  }

  #qodef-page-footer-top-area-inner{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1>.footer-grid-inner{
    grid-template-columns: 1fr; 
  }
  .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1>.footer-grid-inner .qodef-grid-item:nth-child(n+2){
    grid-column: auto;
  }
  .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1>.footer-grid-inner .qodef-grid-item:nth-child(1){
    grid-column: 1 / -1;
  }
  .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1>.footer-grid-inner .qodef-grid-item:nth-child(n+2) {
    grid-column: span 1;
  }
  .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1>.footer-grid-inner .qodef-grid-item:last-child{
    grid-column: 1 / -1;
  }
  .qodef-grid.qodef-responsive--custom.qodef-col-num--480--1>.footer-grid-inner{
    grid-template-columns: repeat(2, 1fr); 
  }

  #qodef-page-footer .widget a{
    font-size: 15px;
  }
  #qodef-page-footer .widget .qodef-widget-title{
    font-size: 18px;
    margin: 0 0 6px;
  }
  #qodef-page-footer .qodef-contact-form-7 label{
    font-size: 13px !important;
  }
  #qodef-page-footer .widget.widget_block p{
    font-size: 15px;
  }

  .mobile-cart-wrapper{
    display: block;
    position: fixed;
    bottom: 150px;
    right: 16px;
    z-index: 1000;
  }
  .mobile-cart-wrapper a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #162d56;
    padding: 10px;
  }
  .mobile-cart-wrapper a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* #qodef-page-wrapper{
    height: 100vh;
  } */

  .mobile-nav-inner {
    padding: 20px 0 80px 0;
  }
  
  .login-modal-body{
    padding: 20px 20px 80px 20px;
  }
  .search-sidebar-content{
    padding-bottom: 75px;
  }


}