@charset "UTF-8";
@font-face {
  font-family: 'Roboto';
  src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

.table td {
  color: #606266;
}

.lct-primary-button {
  height: 36px;
  font-size: 14px;
  color: #fff;
  background-color: var(--wc-red);
}

.lct-quantity-input {
  display: flex;
  border: 1px solid #eee;
  border-radius: 4px;
}

.lct-quantity-input button {
  border: none !important;
  border-radius: 0px;
  flex-shrink: 0;
  background-color: #32C671;
}

.lct-quantity-input button:hover {
  background-color: #32C671;
  color: #FFF;
}

.lct-quantity-input input {
  border: none !important;
  border-radius: 0 !important;
  text-align: center;
  flex: 1;
}

.custom-language-switcher {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.custom-language-switcher a {
  color: #333;
  text-decoration: none;
}

/* 移除Chrome和Safari中的上下箭头 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 移除Firefox中的上下箭头 */
input[type="number"] {
  -moz-appearance: textfield;
}

/* 修改滚动条的整体宽度 */
::-webkit-scrollbar {
  width: 12px;
  /* 水平滚动条的宽度 */
  height: 12px;
  /* 垂直滚动条的高度 */
}

/* 修改滚动条轨道的样式 */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* 轨道背景颜色 */
  border-radius: 10px;
  /* 轨道圆角 */
}

/* 修改滚动条滑块的样式 */
::-webkit-scrollbar-thumb {
  background: #e4e4e7;
  /* 滑块颜色 */
  border-radius: 10px;
  /* 滑块圆角 */
}

/* 修改滚动条滑块在悬停状态下的样式 */
::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* 悬停时的滑块颜色 */
}

.lct-search {
  position: relative;
  width: auto;
  display: inline-block;
  border-radius: 10px;
  
   /* add shadow all around */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.lct-search > input {
  border: 1px solid #ffffff;
  height: 42px;
  border-radius: 10px;
  font-size: 16px;
  width: 420px;
  text-indent: 20px;
  transition: all 0.2s ease-in-out;
  background-color: #ffffff;
  color: #818182;
  font-weight: 300;
}

.lct-search > input:focus {
  outline: none;
  border-color: #32C671;
  width: 478px;
}

.lct-search > input::placeholder {
  font-size: 16px;
}

.lct-search .search-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: #32C671;
  border-radius: 30%;
  position: absolute;
  right: 1px;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lct-search .search-btn svg {
  width: 25px;
  height: 25px;
}

.lct-search .lct-search-tip {
  position: absolute;
  top: 48px;
  left: 0px;
  width: 100%;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 4px;
  z-index: 1000;
  overflow: hidden;
}

.lct-search .lct-search-tip .lct-search-tip-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lct-search .lct-search-tip .lct-search-tip-sku {
  display: flex;
}

.lct-search .lct-search-tip .lct-search-tip-sku .lct-search-tip-sku-left {
  color: #404040;
  padding: 10px;
  width: 90px;
  flex-shrink: 0;
  font-weight: bold;
  flex-shrink: 0;
}

.lct-search .lct-search-tip .lct-search-tip-sku .lct-search-tip-sku-right {
  padding: 10px;
  margin: 0;
  flex: 1;
}

.lct-search .lct-search-tip .lct-search-tip-sku .lct-search-tip-sku-right li {
  padding: 0 10px;
}

.lct-search .lct-search-tip .lct-search-tip-sku .lct-search-tip-sku-right li:hover {
  background-color: #f4f4f5;
}

.lct-search .lct-search-tip .lct-search-tip-sku .lct-search-tip-sku-right li a {
  width: 100%;
  display: block;
  text-decoration: none;
  color: #606060;
  font-size: 14px;
}

.lct-search .lct-search-tip .lct-search-tip-product {
  display: flex;
}

.lct-search .lct-search-tip .lct-search-tip-product .lct-search-tip-product-left {
  color: #404040;
  font-weight: bold;
  padding: 10px;
  width: 90px;
  flex-shrink: 0;
}

.lct-search .lct-search-tip .lct-search-tip-product .lct-search-tip-product-right {
  padding: 10px;
  margin: 0;
  flex: 1;
}

.lct-search .lct-search-tip .lct-search-tip-product .lct-search-tip-product-right li {
  padding: 0 10px;
  width: 100%;
  overflow: hidden;
}

.lct-search .lct-search-tip .lct-search-tip-product .lct-search-tip-product-right li:hover {
  background-color: #f4f4f5;
}

.lct-search .lct-search-tip .lct-search-tip-product .lct-search-tip-product-right li a {
  width: 100%;
  max-width: 308px;
  display: block;
  white-space: nowrap;
  /* 禁止换行 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 超出用省略号表示 */
  text-decoration: none;
  color: #606060;
  font-size: 14px;
}

.pc-user-button {
  border: 0px solid #eee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
}

.pc-user-button > i {
  color: #fff;
  height: 100%;
  width: 38px;
  background-color: #32C671;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-user-button > p {
  font-size: 1rem;
  margin: 0;
  position: relative;
  left: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: #252525;
  background-color: #fff;
  height: 100%;
  padding: 0 10px;
  font-size: 14px;
}

.cart-contents {
  border: 1px solid #252525;
  border-radius: 6px;
  display: flex;
  align-items: center;
  height: 38px;
  padding-right: 10px;
}

.cart-contents > i {
  height: 100%;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-contents .amount-cart {
  position: relative;
  top: 2px;
}

.lct-product-details .lct-product-details-right {
  max-height: 560px;
  overflow: auto;
}

.lct-product-details .lct-tags a {
  background-color: #E8F5FB;
  padding: 4px 7px;
  font-size: 14px;
  font-weight: bold;
  color: #1c9bd4;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}

.lct-product-details .sku-item {
  background-color: #E8F5FB;
  padding: 4px 7px;
  color: #1c9bd4;
  display: inline-block;
  font-size: 14px;
}

.lct-product-details .sku-item span {
  font-weight: bold;
}

.lct-product-details .tag-item {
  background-color: #E8F5FB;
  padding: 4px 7px;
  font-size: 14px;
  font-weight: bold;
  color: #1c9bd4;
  display: inline-block;
}

.lct-product-details .outofstock {
  background-color: #32C671;
  color: #FFF;
}

.lct-product-details .product-title {
  color: #444;
  line-height: 44px;
  font-size: 25px;
  font-weight: bold;
}

.lct-product-details .other-box {
  background-color: #FAFAFA;
}

.lct-product-details .other-box h3 {
  font-weight: 600;
  background: transparent;
  color: #4F4F4F;
  font-size: 18px;
  line-height: 28px;
  position: relative;
  display: inline-block;
  border-bottom: 3px solid #00b9f2;
  padding-bottom: 3px;
}

.lct-product-details .other-box > ul {
  list-style: disc;
}

.lct-product-details .other-box > ul li {
  font-size: 13px;
  line-height: 28px;
  margin-bottom: 5px;
}

.lct-product-details .other-box > ul li::marker {
  color: #00b9f2;
}

.lct-product-details .other-box > ul li a {
  color: inherit;
  text-decoration: none;
  color: #2B2B2B;
  font-weight: bold;
}

.lct-product-details .quantity-to-cart {
  background-color: #FAFAFA;
}

.lct-product-details .quantity-to-cart > .cart {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.lct-product-details .quantity-to-cart > .cart .minus {
  height: 58px !important;
  width: 50px;
  background-color: rgba(0, 0, 0, 0.05);
  color: #252525 !important;
  border-left: 1px solid #e2e2e2 !important;
  border-top: 1px solid #e2e2e2 !important;
  border-bottom: 1px solid #e2e2e2 !important;
  border-right: none !important;
}

.lct-product-details .quantity-to-cart > .cart .minus:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.lct-product-details .quantity-to-cart > .cart .minus:hover {
  background-color: #32C671 !important;
  color: #FFF !important;
}

.lct-product-details .quantity-to-cart > .cart .quantity {
  height: 58px;
  width: 80px;
  display: flex;
}

.lct-product-details .quantity-to-cart > .cart .quantity input {
  height: 58px !important;
  flex: 1;
}

.lct-product-details .quantity-to-cart > .cart .plus {
  height: 58px !important;
  width: 50px;
  background-color: rgba(0, 0, 0, 0.05);
  color: #252525 !important;
  border-right: 1px solid #e2e2e2 !important;
  border-top: 1px solid #e2e2e2 !important;
  border-bottom: 1px solid #e2e2e2 !important;
  border-left: none !important;
}

.lct-product-details .quantity-to-cart > .cart .plus:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.lct-product-details .quantity-to-cart > .cart .plus:hover {
  background-color: #32C671 !important;
  color: #FFF !important;
}

.lct-product-details .quantity-to-cart > .cart .single_add_to_cart_button {
  width: calc(50%);
  background-color: #32C671 !important;
  color: #FFF;
  height: 58px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: bold;
  font-size: 20px;
}

.lct-product-details .quantity-to-cart > .cart .single_add_to_cart_button:hover {
  color: #fff;
  background-color: rgba(244, 66, 80, 0.7) !important;
}

.product-add-input {
  width: 170px;
  margin: 0 auto;
  display: flex;
  border: 1px solid #eee;
  justify-content: space-between;
  font-size: 12px;
  border-radius: 4px;
}

.product-add-input button {
  border: none;
  width: 30px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  overflow: hidden;
}

.product-add-input button:hover {
  background-color: #32C671;
  color: #FFF;
}

.product-add-input .min-btn {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.product-add-input .add-btn {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.product-add-input .input-text.qty.text {
  border: none !important;
  height: auto !important;
}

.product-add-input input {
  border: none;
  width: 85px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.product-add-input input:focus {
  outline: none;
}

.quality_remarker {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  width: 5rem !important;
  height: 5rem;
}

.woocommerce-Reviews-hide .commentlist {
  height: 0;
  overflow: hidden;
}

.woocommerce-Reviews-hide #review_form_wrapper {
  overflow: hidden;
}

.woocommerce-Reviews-hide .woocommerce-noreviews {
  color: #606266;
}

.woocommerce-Reviews-hide .woocommerce-verification-required {
  color: #606266;
}

#review_form_wrapper #wp-comment-cookies-consent {
  position: relative;
  top: 7px;
}

.stars a {
  color: #fecc1b;
}

.stars:active {
  color: #fecc1b;
}

.stars:focus {
  color: #fecc1b;
}

.stars:hover {
  color: #fecc1b;
}

.stars.selected a::before {
  color: #fecc1b;
}

.woocommerce-product-gallery {
  width: 100% !important;
}

.woocommerce-form-login {
  background-image: url(/wp-content/themes/lct-theme/assets/lct-static/login-bg.webp);
}

.woocommerce-form-login .password-input {
  margin-bottom: 10px;
}

.woocommerce-form-login .required-filed-tip {
  font-size: 12px;
  margin-top: 40px;
}

.woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: 4px;
}

.woocommerce-form-login .woocommerce-form-login__rememberme > span {
  position: relative;
  top: -1px;
}

.woocommerce-form-register {
  background-image: url(/wp-content/themes/lct-theme/assets/lct-static/register-bg.png);
}

.woocommerce-form-register p {
  font-size: 14px;
}

.woocommerce-form-register .woocommerce-privacy-policy-text {
  font-size: 14px;
}

.woocommerce-form-register .woocommerce-privacy-policy-text a {
  color: #32C671;
}

.woocommerce-form-login, .woocommerce-form-register {
  min-height: 456px;
  border-radius: 30px !important;
  background-repeat: cover;
  color: #fff !important;
  padding: 30px 30px !important;
}

.woocommerce-form-login label, .woocommerce-form-register label {
  font-size: 14px !important;
  margin-bottom: 10px;
}

.woocommerce-form-login .show-password-input, .woocommerce-form-register .show-password-input {
  color: #606266;
}

.woocommerce-form-login .lost_password a, .woocommerce-form-register .lost_password a {
  color: #fff;
  font-size: 14px;
}

.woocommerce-form-login .woocommerce-form-login__submit, .woocommerce-form-login .woocommerce-form-register__submit, .woocommerce-form-register .woocommerce-form-login__submit, .woocommerce-form-register .woocommerce-form-register__submit {
  font-size: 14px !important;
  background-color: #32C671 !important;
  color: #FFF !important;
  border: none !important;
}

.woocommerce-form-login .woocommerce-form-login__submit:hover, .woocommerce-form-login .woocommerce-form-register__submit:hover, .woocommerce-form-register .woocommerce-form-login__submit:hover, .woocommerce-form-register .woocommerce-form-register__submit:hover {
  opacity: .8;
  cursor: pointer;
}

.woocommerce-MyAccount-content {
  width: calc(100% - 200px) !important;
}

.woocommerce-MyAccount-content strong {
  font-weight: bold;
}

.woocommerce-MyAccount-content > p > a {
  color: #32C671;
}

.lct-dashboard {
  display: flex;
  flex-direction: column;
}

.lct-dashboard .table thead {
  background-color: #f8fafc;
}

.lct-dashboard .table thead tr th {
  background-color: transparent;
}

.lct-dashboard .wallet-balance {
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  font-size: 24px;
  margin-bottom: 30px;
  color: #606266;
}

.lct-dashboard .wallet-balance > svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  position: relative;
  top: -2px;
  flex-shrink: 0;
}

.lct-dashboard .lct-dashboard-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.lct-dashboard .lct-dashboard-title > .button {
  height: 34px;
}

.lct-dashboard .buyback-table, .lct-dashboard .returns-table {
  border: 1px solid var(--lct-border-color);
  font-size: .85em;
  max-width: 100%;
}

.lct-dashboard #buyback-detail-form > h2, .lct-dashboard #returns-detail-form > h2 {
  display: flex;
  align-items: center;
}

.lct-dashboard #buyback-detail-form > h2 > svg, .lct-dashboard #returns-detail-form > h2 > svg {
  width: 80px;
  height: 30px;
  display: block;
  cursor: pointer;
}

.lct-dashboard .account-buyback-detail-table, .lct-dashboard .account-returns-detail-table {
  border: 1px solid var(--lct-border-color);
  font-size: .85em;
}

.my_account_orders {
  border-collapse: collapse;
  /* 合并边框 */
  border-spacing: 0;
}

.my_account_orders thead {
  background-color: #f8fafc;
}

.my_account_orders thead tr th, .my_account_orders thead tr td {
  height: 42px;
}

.my_account_orders tbody tr th, .my_account_orders tbody tr td {
  height: 42px;
}

.woocommerce-orders-table__cell .woocommerce-button {
  margin-right: 10px;
  word-wrap: wrap;
}

.woocommerce-MyAccount-navigation-link--payment-methods {
  display: none !important;
}

.woocommerce-MyAccount-navigation {
  width: 170px !important;
  box-shadow: 0 0 6.51613px 0 rgba(133, 133, 133, 0.22);
  border-radius: 25px;
  overflow: hidden;
  padding: 20px 0;
}

.woocommerce-MyAccount-navigation li {
  border: none !important;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-MyAccount-navigation li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.woocommerce-MyAccount-navigation li a svg {
  width: 28px;
  height: 28px;
}

.woocommerce-MyAccount-navigation .is-active {
  background-color: #fff !important;
}

.woocommerce-MyAccount-navigation .is-active a {
  color: #32C671;
}

.dsabafw_table_bill .billing_address, .dsabafw_table_bill .shipping_address, .dsabafw_table_ship .billing_address, .dsabafw_table_ship .shipping_address {
  border: 1px solid var(--lct-border-color);
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.price-html {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.price-html .inquiry-price-btn {
  font-size: 16px !important;
  background-color: #32C671 !important;
  color: #fff !important;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 4px;
  margin-top: 100px;
  margin-bottom: 10px;
}

.price-html .inquiry-price-btn:hover {
  opacity: .8;
  cursor: pointer;
}

.price-html .woocommerce-Price-amount {
  font-size: 28px;
  font-weight: bold;
  color: rgba(67, 67, 67, 0.8);
  text-underline-offset: 2px;
}

.price-html > .woocommerce-Price-amount:first-of-type {
  color: #000000;
}

.price-html > ins {
  text-decoration: none;
}

.price-html > ins .woocommerce-Price-amount:first-of-type {
  color: #32C671;
}

.price-html > del {
  text-decoration: none;
  position: relative;
}

.price-html > del::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #434343;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
}

.price-html .notify_me_button {
  font-size: 14px !important;
  background-color: #32C671 !important;
  color: #fff !important;
  display: inline-block;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 3px;
  margin-bottom: 10px;
  align-self: flex-start;
  margin-top: 55px;
}

.price-html .notify_me_button:hover {
  opacity: .8;
  cursor: pointer;
}

.no-price .notify_me_button {
  display: none !important;
}

.price-html-in-detail {
  justify-content: flex-start;
}

.woocommerce-Reviews {
  margin-top: 30px;
}

.woocommerce-Reviews #comments .woocommerce-Reviews-title {
  display: inline-block;
  background-color: #32C671;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 24px;
  transition: all .2s linear;
}

.woocommerce-Reviews #comments .woocommerce-Reviews-title:hover {
  opacity: .8;
  cursor: pointer;
}

.comment-text .star-rating::before {
  color: #fecc1b;
}

.comment-text .star-rating span::before {
  font-family: WooCommerce;
  color: #fecc1b;
  content: "\e020\e020\e020\e020\e020";
  letter-spacing: 1px;
  left: 1px;
}

.comment-form .form-submit .submit {
  background-color: #8ecdff !important;
  border: none !important;
  color: #fff !important;
  font-weight: bold !important;
  padding: 10px !important;
  transition: all .2s linear;
}

.comment-form .form-submit .submit:hover {
  opacity: .8;
  cursor: pointer;
}

.related.products {
  margin-top: 30px;
}

.product-box {
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
  box-shadow: 0 0 8.51613px 0 rgba(133, 133, 133, 0.32);
  position: relative;
  height: 100%;
}
.product-box {
  background-color: #fff;         /* <- key line */
  border-radius: 10px;            /* optional: nicer corners */
  overflow: hidden;               /* clips the image on hover */
}

/* (optional) keep the image area white too */
.product-box .product-img {
  background-color: #fff;
}

.product-box .product-img {
  height: 294.5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-box .product-img img {
  max-height: 100%;
  width: auto !important;
  transition: all 0.5s ease;
  padding: 10px;
  margin: 0 !important;
}

.product-box .product-img:hover img {
  transform-origin: center;
  transform: scale(1.3);
}

.product-box .add_to_cart_inline {
  text-align: center;
  border: none !important;
}

.product-box .add_to_cart_inline .inquiry-price-btn {
  display: none;
}

.product-box .add_to_cart_inline .woocommerce-Price-amount {
  display: none;
}

.product-box .add_to_cart_inline span {
  margin: 0 auto;
}

.product-box .add_to_cart_inline > .ajax_add_to_cart {
  position: relative;
  padding: 0;
  width: 120px;
  color: #fff !important;
  font-weight: 700;
  background: #32C671;
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  background-color: #32C671 !important;
  color: #fff !important;
  font-weight: 700;
  padding: 5 18px;
  border-radius: 4px;
  box-sizing: border-box;
  height: 38px;
  line-height: 35px;
}
/* Recenter the + / - symbols inside WooCommerce qty buttons */
.woocommerce .quantity .plus,
.woocommerce .quantity .minus {
  display: flex !important;            /* use flexbox inside button */
  align-items: center !important;      /* vertical centering */
  justify-content: center !important;  /* horizontal centering */
  font-size: 18px !important;          /* adjust size as needed */
  line-height: 1 !important;           /* neutralize weird line-heights */
}

.product-box .add_to_cart_inline > .ajax_add_to_cart:hover {
  background-color: #32C671;
  opacity: 0.8;
}

.product-box .add_to_cart_inline .product_type_simple {
  color: #fff !important;
  font-weight: 700;
  background: #32C671;
}

.product-box .add_to_cart_inline .product_type_simple:hover {
  background-color: #32C671;
  opacity: 0.8;
}

.product-box .add_to_cart_inline .loading {
  opacity: .5;
  cursor: not-allowed;
  /* 鼠标指针显示为“禁止”图标 */
  pointer-events: none;
  /* 禁用所有鼠标交互 */
}

.product-box .add_to_cart_inline .loading::after {
  font-family: WooCommerce;
  content: "\e01c";
  top: 0 !important;
  vertical-align: top;
  font-weight: 400;
  margin-left: 4px;
  animation: spin 2s linear infinite;
}

.product-box .products-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 68px;
  font-size: 14px;
  padding: 0 10px;
}

.products {
  display: flex;
  flex-wrap: wrap;
}

.products .product {
  align-items: stretch;
}

.products .product::after {
  display: none;
}

.products .product:hover {
  box-shadow: none !important;
}

.woocommerce a.added_to_cart {
  font-size: 14px;
  color: #606266;
}

.lct-products.products {
  width: 100%;
  list-style: none;
}

.lct-products.products > li {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.new-in-store-list {
  list-style: none;
}

.new-in-store-list li {
  max-width: 314px;
}

.wc-block-components-formatted-money-amount {
  color: #32C671;
}

.wc-block-cart__submit-container {
  background-color: #32C671;
  color: #fff;
  font-weight: bold;
  transition: all .2s linear;
}

.wc-block-cart__submit-container a span {
  color: #fff;
}

.wc-block-cart__submit-container:hover {
  opacity: .8;
}

.wc-block-components-product-metadata .wc-block-components-product-metadata__description {
  display: none;
}

.example-fields .billing-address-dropdown {
  width: auto !important;
}

.example-fields .addButton {
  background-color: #32C671 !important;
  color: #fff;
  font-weight: bold;
  transition: all .2s linear;
}

.example-fields .addButton:hover {
  opacity: .8 !important;
}

.sixe-inquiry-form-box button[type="submit"] {
  background-color: #32C671 !important;
  color: #fff;
  font-weight: bold;
  transition: all .2s linear;
}

.sixe-inquiry-form-box button[type="submit"]:hover {
  opacity: .8 !important;
}

.woocommerce-column--shipping-address > address, .woocommerce-column--billing-address > address {
  min-height: 175px !important;
}

.lct-login-popup {
  display: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.05);
  display: none;
}

.woocommerce-EditAccountForm .woocommerce-form-row label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

.woocommerce-EditAccountForm .woocommerce-form-row span em {
  color: #606266;
}

.woocommerce-EditAccountForm .woocommerce-form-row input {
  border: 1px solid #eee !important;
}

.woocommerce-EditAccountForm fieldset {
  border: 1px solid #eee !important;
  margin-top: 20px;
}

.dsabafw_modal-content .dsabafw_close {
  background-color: #32C671;
}

.dsabafw_modal-content .form-row label {
  font-weight: bold;
  margin-bottom: 10px;
}

.dsabafw_modal-content .form-row label b {
  font-weight: bold;
}

.dsabafw_modal-content .form-row label abbr[title=required] {
  color: #32C671
  text-decoration: none;
}

.dsabafw_modal-content .form-row select {
  border: 1px solid #bbb;
  border-radius: 4px;
  width: 100%;
  height: 40px;
}

.dsabafw_modal-content .form-row .input-text {
  height: 40px;
  border: 1px solid #bbb;
  border-radius: 4px;
  width: 100%;
}

.dsabafw_modal-content button[type=submit] {
  background-color: #32C671;
  border: none;
  color: #fff;
}

.dsabafw_modal-content button[type=submit]:hover {
  opacity: .8;
}

.woocommerce-mini-cart__buttons a.button {
  border-color: #eee;
  color: #32C671;
  cursor: pointer;
}

.woocommerce-mini-cart__buttons a.button:hover {
  background-color: ##32C671;
  border-color: ##32C671;
  color: #32C671;
}

a.woocommerce-button.button {
  border-color: #eee;
  color: #32C671;
  cursor: pointer;
}

a.woocommerce-button.button:hover {
  background-color: #32C671;
  border-color: #32C671;
  color: #fff;
}

.wc-block-components-checkout-place-order-button--full-width {
  border-color: #32C671;
  color: #32C671;
  cursor: pointer;
}

.wc-block-components-checkout-place-order-button--full-width:hover {
  background-color: #32C671;
  border-color: #32C671;
  color: #fff;
}

.shipping-address-dropdown {
  min-width: 240px !important;
}

@media screen and (max-width: 799px) {
  .quantity-to-cart .single_add_to_cart_button {
    margin-top: 10px !important;
  }
  .lct-product-details .lct-product-details-right {
    max-height: unset !important;
  }
  .woocommerce-MyAccount-navigation {
    width: 100% !important;
    overflow-x: auto;
    margin-bottom: 20px;
  }
  .woocommerce-MyAccount-navigation > ul {
    display: flex;
  }
  .woocommerce-MyAccount-navigation > ul li {
    flex-shrink: 0;
  }
  .woocommerce-MyAccount-content {
    width: 100% !important;
  }
}

.woocommerce-ordering {
  color: #767676;
  border-color: #767676;
  border-radius: 4px;
}

/* Desktop only: move search bar left, closer to logo */
@media (min-width: 1024px){
  .lct-search{
    margin-left: -100px;   /* adjust this value, try 0–20px */
    margin-right: auto;  /* lets other icons push out to the right */
  }
}

/* Mobile: keep it centered & full width */
@media (max-width: 1023.98px){
  .lct-search{
    margin: 8px auto 0;  /* center it under the logo */
    display: block;
    max-width: 100%;
  }
}