/* Reset default bootstrap css */
.container-fluid {
  padding: 0 !important;
}

footer {
  position: relative;
}



body {
  padding-right: 0 !important;
}

html {
  scrollbar-gutter: stable;
  /* Keeps layout stable when scrollbar appears/disappears */
}

/* set site-container max-width */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sitePadding {
  padding-left: 20px;
  padding-right: 20px;
}

/* Menu */
#menu {
  border: 0;
  background: unset !important;
  border-radius: 0;
}


.headerMenu {
  border: 0;
  background: var(--header_menu_BG) !important;
  border-radius: 0;


}

.headerMenuTop {
  border: 0;
  background: var(--header_menu_BG_Top) !important;
  border-radius: 0;
}


.navbar-toggler:focus {
  box-shadow: none !important;
}


/* Header Menu Hamburger List show in mobile view */
.catedown {

  /* padding: 10px; */

}

.catedown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catedown li {
  margin: 4px 0;
}

.item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  /* padding: 8px 12px; */
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  color: #111;
  padding: 0;
}

.item-btn:hover {
  font-weight: bold;
}


.arrow {
  display: inline-block;
  transform-origin: 50% 50%;
  transition: transform .18s ease;
  color: #777;
}

li.open>.item-btn .arrow {
  transform: rotate(90deg);
  color: #00b894;
}

.children {
  display: none;
  margin-left: 16px;
  padding-left: 8px;
  border-left: 1px dashed rgba(0, 0, 0, 0.05);
}

li.open>.children {
  display: block;
}

.leaf {
  display: block;
  padding: 6px 12px;
  margin: 4px 0;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.leaf:hover {
  font-weight: bold;
}





/* Slider */
.zoomSliderImg {
  width: 100% !important;
}











.tt-titletab {
  border-bottom: 1px solid #e5e5e5;
  float: left;
  margin-bottom: 5px;
  overflow: hidden;
  width: 100%;
}

.box-heading>h3,
.title_block .ttblock-heading {
  border-bottom: 3px solid #d79b2c;
  color: #000000;
  float: left;
  font: 600 20px/34px Arial, sans-serif;
  margin: 0;
  padding: 6px 15px 6px 0;
  position: relative;
  text-transform: capitalize;
  width: auto;
}

.box-heading {
  border-bottom: 1px solid #e5e5e5;
  float: left;
  margin: 0 0 5px;
  width: 100%;
}

.TTProduct-Tab .box-heading {
  border: none;
  margin: 0;
  width: auto;
}




/* Footer Floating icon */
.float-actions {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(80px, env(safe-area-inset-bottom));
  /* moved up a bit */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fab {
  width: 45px;
  height: 45px;
  /*  border-radius: 50%; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  /* color: #fff; */
  text-decoration: none;
  /* box-shadow: 0 8px 20px rgba(0,0,0,.25); */
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  opacity: 0.96;
  overflow: hidden;
  /* in case image overflows */
}

.fab:hover,
.fab:focus-visible {
  transform: translateY(-2px);
  /* box-shadow: 0 12px 28px rgba(0,0,0,.32); */
  outline: none;
  opacity: 1;
}

.fab[data-label] {
  position: relative;
}

/* .fab[data-label]::after {
    content: attr(data-label);
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #111;
 
    padding: 6px 10px;
    border-radius: 10px;
    font: 12px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    opacity: 0;
    transform: translateX(6px);
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
  }
  .fab:hover::after, .fab:focus-visible::after { opacity: 1; transform: translateX(0); }
  */

/* image sizing inside the circular button */
.fab img {
  /* width: 24px;
    height: 24px; */
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.fab.chat {
  background: unset !important;
}

.fab.call {
  background: unset !important;
}


@media (max-width:900px) {
  .fab {
    width: 40px;
    height: 40px;
  }

  .fab[data-label]::after {
    display: none;
  }
}


@media (max-width:420px) {
  .fab {
    width: 35px;
    height: 35px;
  }

  .fab[data-label]::after {
    display: none;
  }
}


#scrollTopBtn {
  display: none;
  /* 🔹 hidden by default */
}


/* Home Page floating Prmotion alert notice */
.promo-notice {
  position: fixed;
  left: -350px;
  /* start off-screen */
  bottom: 80px;
  width: 300px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 9999;
  font-family: Arial, sans-serif;
  opacity: 0;
}

.promo-header {
  font-size: 12px;
  font-weight: bold;
  color: var(--footer_promotion_title_color);
  padding: 6px 0px;
}

.promo-content {
  display: flex;
  align-items: center;
  padding: 10px;
}

.promo-content .promoProduct {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;

  text-align: left;
}

.promo-content img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 10px;
}

.promo-text {
  font-size: 13px;
  line-height: 1.3;
  color: #333;
}

.promo-close {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 16px;
  cursor: pointer;
  color: #666;
}

.promo-close:hover {
  color: #000;
}



@media(max-width: 989px) {
  .promo-header {
    font-size: 12px;
  }

  .promo-notice .promo-content .promoProduct span {
    font-size: 11px;
  }


  .promo-notice {
    width: 50%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .promo-content {
    width: 100%;
  }

  .promo-notice {
    left: 0 !important;
  }





}

@media(max-width: 500px) {

  .promo-header {
    font-size: 11px;
  }

  .promo-notice .promo-content .promoProduct span {
    font-size: 10px;
  }

  .promo-notice {
    width: 80%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .promo-content {
    width: 100%;
  }

  .promo-notice {
    left: 0px !important;

  }


}




/* ------------------ Start TT - CMS banner block --------------------- */
#ttcmsbanner {

  position: relative;
  width: 100%;
  margin: 0 0 50px;
}

#ttcmsbanner .ttcmsbanner .ttbanner {}

#ttcmsbanner .ttbanner-img2.ttbanner {
  display: inline-block;
  vertical-align: top;
}

#ttcmsbanner .ttbanner.ttbanner-img3 {}

#ttcmsbanner .ttcmsbanner .ttbanner a img {
  max-width: 100%;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  overflow: hidden;
  padding: 1px;
}

#ttcmsbanner .ttcmsbanner .ttbanner a {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  position: relative;
}

#ttcmsbanner .ttcmsbanner .ttbanner a::after {
  bottom: 50%;
  content: "";
  left: 0;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  position: absolute;
  right: 0;
  top: 50%;
}

#ttcmsbanner .ttcmsbanner .ttbanner a::before {
  bottom: 0;
  content: "";
  left: 50%;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  position: absolute;
  right: 51%;
  top: 0;
}

#ttcmsbanner .ttcmsbanner .ttbanner:hover a::after {
  bottom: 0;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  top: 0;

}

@media (max-width: 991px) {
  #ttcmsbanner {
    margin: 0 0 30px;
  }

  #ttcmsbanner .ttcmsbanner .ttbanner {
    margin: 0;
  }
}

@media (max-width: 600px) {
  #ttcmsbanner {
    margin: 0;
  }

  #ttcmsbanner .ttcmsbanner .ttbanner {
    margin: 0 0 15px;
  }

  #ttcmsbanner .ttbanner-img1.ttbanner,
  #ttcmsbanner .ttbanner-img3.ttbanner {
    width: 50%;
    padding: 0 10px;
  }

  #ttcmsbanner .row {
    margin: 0 -10px !important;
    flex-wrap: wrap !important;
  }

  #ttcmsbanner .ttbanner-img2.ttbanner {
    padding: 0 10px;
    width: 100%;
    order: 1;
    flex-grow: 1;
  }

  #ttcmsbanner .ttbanner-img1.ttbanner {
    order: 2;
  }

  #ttcmsbanner .ttbanner-img3.ttbanner {
    order: 3;
  }
}





.defaultBtnStyle {
  border-radius: 50px !important;
  background: var(--main_btn_theme_Color);

  margin-bottom: 10px !important;
}

.defaultBtnStyle:disabled, .defaultBtnStyle.disabled
{
  background: var(--main_btn_theme_hover_Color);
}

.defaultBtnStyle:hover {
  background: var(--main_btn_theme_hover_Color);
}


/* Login Page =========================================== */

.loginFormTitle {
  margin-bottom: 20px;
}

.forgetBtn {

  display: block;

  color: var(--loginPage_forgotten_password_text);

  margin-bottom: 10px !important;

  cursor: pointer;

}

.loginPage_registerHere_text {
  color: var(--loginPage_registerHere_text);
  font-weight: normal;
  text-decoration: underline;
}

.RegisterLinkSection {
  margin-bottom: 10px;
}

/* Login Page End========================================== */




/* Register page ============ */

.loginLink > a
{
  color: var(--register_not_member_login_text);
  text-decoration: underline;
}


.agreeCheckbox input[type=checkbox]
{
  accent-color: var(--register_agreement_checked);
}

/* End Register */







#content, #column-left, #column-right
{
  padding-bottom: 0px !important;
}





/* For TextField 'eye' toggle  */
.toggle-password {
  /* float: right; */
  cursor: pointer;
  /* margin-right: 10px; */
  margin-top: -25px;

  position: absolute;
  right: 20px;
}


.toggle-password2 {
  /*  float: right; */
  cursor: pointer;
  /* margin-right: 10px; */
  margin-top: -25px;

  position: absolute;
  right: 20px;
}



#account-login .toggle-password {

  /* right: 40px !important; */
}







/* OUT OF STOCK Label */
.OFSL {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
}


.OFSL div {
  position: absolute !important;
  width: 100% !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #333 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
  text-align: center !important;
  opacity: 0.9 !important;
  z-index: 5 !important;

  font-size: 10px;
}











/* This is use for all the product show, like campaign show products.... the product block */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 0px;
  /* padding: 12px; */
  background: #fff;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
  max-width: 100%;
  /*  height: 150px;  */
  object-fit: contain;
}

.product-info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 5px 10px 10px 10px;
}

.product-info h4 {
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.3em;
}

.product-grid .priceSection {
  margin-top: auto;
  /* stick to bottom */
}



.product-grid .product-price {
  display: block;
  font-weight: bold;
  color: var(--product_price);
}


.product-grid .product-price.normalPrice {
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: var(--product_price_with_no_discount);
}


.product-grid .product-old-price {
  font-size: 11px;
  color: var(--product_discount_price);
  text-decoration: line-through;

}

.product-grid .product-discount {
  background: var(--product_discountTag_BG);
  color: var(--product_discountTag_text);
  font-size: 10px;
  border-radius: 10px;
  padding: 2px 10px;
  margin-left: 6px;
}




/* My order info */

   .download_order_detail_text
   {
    font-size: 12px;
    color: var(--download_order_detail_text);

    text-decoration: underline;
   }

   /* end */




/* MY ACCOUNT */
  .account-page {
  display: flex;
  gap: 20px;
}

/* 左边菜单 */
.account-sidebar {
  width: 200px;
  border: 1px solid #ddd;
  padding: 15px;
  
}

.account-sidebar h3 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.account-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.account-sidebar ul li {
  margin-bottom: 10px;
}

.account-sidebar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
}

.account-sidebar ul li a.active {
  font-weight: bold;
}

/* 右边内容 */
.account-content {
  flex: 1;
}

.account-content h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

.account-content .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.account-content .form-group label {
  width: 150px;
  font-weight: normal;
}

.account-content .form-group input {
  flex: 1;
  padding: 6px 8px;
  border: none;
  background: #e5e6e8;
}

/* Mobile view 隐藏左边菜单 */
@media (max-width: 991px) {

  .account-sidebar h3
  {
    display: none;
  }

  .account-sidebar {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
}

  .account-page {
    flex-direction: column;
  }
}





.disabledBtn
{
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}




.breadcrumb
{
  border: 0 !important;
  background: transparent !important;
  margin-bottom: 0px !important;
}



.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  right: 0px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
}

.breadcrumb > li.breadcrumb-item:last-child:after {
  content: none; /* remove chevron for last item */
}

.breadcrumb-item > a 
{
  color: #000;
}


.navbar-toggler.navbar-toggler.text-white {
  display: none;
}

@media (max-width: 991px) {


  .breadcrumb
{
  display: flex;
  justify-content: center;
}

  .navbar-toggler.navbar-toggler.text-white {
    display: block;
  }


  .sitePadding
  {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

}

@media (min-width: 991px) {


  .headerMenuStick {
    border: 0;
    background: var(--header_menu_BG) !important;
    border-radius: 0;

    position: sticky;
    top: 0;
    /* stick to the top */
    background: #111;
    /* background so content doesn’t overlap */
    color: #fff;
    padding: 15px;
    z-index: 1000;
    /* keep above other content */
  }


  
}