@charset "UTF-8";
/**
 * _base.scss
 * 
 * 1/ biến màu săc
 * 2/ biến kích thước font chữ
 * 3/ Cấu hình border
 * 4/ Mixin
 * 5/ Responsive
*/
#customer_details .woocommerce-billing-fields__field-wrapper,
#customer_details .woocommerce-shipping-fields__field-wrapper {
  display: flex;
  flex-flow: row wrap;
  gap: 10px 20px;
}
#customer_details .woocommerce-billing-fields__field-wrapper .form-row,
#customer_details .woocommerce-shipping-fields__field-wrapper .form-row {
  width: calc(50% - 10px);
  margin-right: 0;
}
@media (max-width: 767px) {
  #customer_details .woocommerce-billing-fields__field-wrapper .form-row,
  #customer_details .woocommerce-shipping-fields__field-wrapper .form-row {
    width: 100%;
  }
  #customer_details .woocommerce-billing-fields__field-wrapper .form-row input,
  #customer_details .woocommerce-shipping-fields__field-wrapper .form-row input {
    margin-bottom: 0;
  }
}
#customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_last_name_field,
#customer_details .woocommerce-shipping-fields__field-wrapper .form-row#billing_last_name_field {
  width: 100%;
}
#customer_details .woocommerce-billing-fields__field-wrapper .form-row#billing_last_name_field input,
#customer_details .woocommerce-shipping-fields__field-wrapper .form-row#billing_last_name_field input {
  margin-bottom: 0;
}

.woocommerce-billing-fields .optional {
  display: none;
}
.woocommerce-billing-fields .required {
  color: red;
}

.woocommerce-additional-fields .optional {
  display: none;
}

.woocommerce-form-coupon-toggle .showcoupon {
  color: var(--fs-color-primary);
}

.checkout-sidebar .product-total {
  width: 120px;
}

#payment .wc_payment_method label {
  font-weight: bold;
}

button,
.button {
  box-shadow: none !important;
}

#ship-to-different-address {
  display: none;
}

.woocommerce-mini-cart__buttons .button:not(.checkout) {
  margin-bottom: 0;
  background-color: rgba(255, 87, 34, 0.1) !important;
  border: 1px solid var(--fs-color-primary);
  color: var(--fs-color-primary);
}

.single-product .product-main .col-inner {
  background: #fff;
  padding: 15px;
}

#top-bar {
  background-color: rgba(0, 0, 0, 0.03) !important;
}

#shop-sidebar .widget_product_categories .widget-title {
  font-size: 1.2rem;
  display: block;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#shop-sidebar .widget_product_categories .widget-title::before {
  content: "\eb6b";
  font-family: "matbaows-icons";
}

.mbws-ordering-checkbox {
  display: flex;
  gap: 20px;
  background-color: rgba(0, 0, 0, 0.03);
  align-items: center;
  padding: 10px 10px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .mbws-ordering-checkbox {
    gap: 5px;
    padding: 5px;
  }
}
.mbws-ordering-checkbox input {
  display: none !important;
}
.mbws-ordering-checkbox input:checked + label {
  background-color: var(--fs-color-primary);
  color: #fff;
}
.mbws-ordering-checkbox label {
  padding: 0 20px;
  border-radius: 3px;
  display: block !important;
  margin-bottom: 0;
  background-color: #fff;
  min-height: 35px;
  line-height: 35px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .mbws-ordering-checkbox label {
    padding: 0 10px;
  }
}
.mbws-ordering-checkbox .ordering-item.menu_order {
  display: none;
}

@media (max-width: 767px) {
  .category-page-title {
    display: none;
  }
}

.page-title-inner {
  min-height: 0px !important;
}

.shop-container .products.row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}

.product-small.col {
  padding: 0 5px 10px !important;
}
.product-small.col .col-inner {
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.product-small.col .col-inner .box-image .customized-overlay-image {
  position: absolute;
  z-index: 9;
  bottom: 0;
}
.product-small.col .col-inner .box-text {
  background-color: #fff;
  padding: 10px;
}
.product-small.col .col-inner .box-text .title-wrapper {
  max-height: 43px;
  overflow: hidden;
}
.product-small.col .col-inner .box-text .title-wrapper a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-small.col .col-inner .box-text .title-wrapper .favourite {
  display: inline;
  background-color: var(--fs-color-primary);
  color: #fff;
  border-radius: 3px;
  font-size: 0.8rem;
  padding: 0 5px;
  margin-right: 3px;
}
.product-small.col .col-inner .box-text .title-wrapper .product-title {
  display: inline;
}
.product-small.col .col-inner .box-text .title-wrapper .product-title a {
  display: inline;
}
.product-small.col .col-inner .box-text .price-wrapper {
  display: flex;
  gap: 5px;
  padding: 5px 0;
}
.product-small.col .col-inner .box-text .price-wrapper .price {
  padding-top: 3px;
}
.product-small.col .col-inner .box-text .price-wrapper .price .amount {
  font-size: 1rem;
  font-weight: 400;
}
.product-small.col .col-inner .box-text .price-wrapper .price del {
  display: none;
}
.product-small.col .col-inner .box-text .price-wrapper .discount-badge {
  background-color: rgba(254, 238, 234, 0.8);
  color: var(--fs-color-primary);
  font-size: 0.7rem;
  padding: 0 6px;
  border-radius: 2px;
}
.product-small.col .col-inner .box-text .bottom-meta span {
  font-size: 0.8rem;
}
.product-small.col .col-inner .box-text .bottom-meta .rating-star {
  border-left: 1px solid rgba(0, 0, 0, 0.09);
  padding-left: 5px;
}

.product-main .cart {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
}
.product-main .product-info .star-rating span:before,
.product-main .product-info .star-rating:before,
.product-main .woocommerce-page .product-info .star-rating:before {
  color: #ee4d2d;
}
.product-main .product-gallery .image-tools {
  right: 0;
  left: unset;
}
.product-main .product-gallery .image-tools.show-on-hover {
  opacity: 1;
  width: 100%;
}
.product-main .product-gallery .customized-overlay-image {
  width: 100%;
}
.product-main .product-gallery .customized-overlay-image img {
  width: 100%;
}
.product-main .product-info ._2MH7dC {
  font-size: 14px;
  background: url(images/re.png) left center;
  padding-left: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  height: 22px;
  line-height: 22px;
}
.product-main .product-info ins span.amount {
  font-size: 1.875rem;
  font-weight: 500;
  color: #ee4d2d;
}
.product-main .product-info del span.amount {
  font-size: 1rem;
  color: #929292;
  margin-right: 10px;
}
.product-main .product-info .box-price {
  position: relative;
  display: flex;
  align-items: center;
  background: #fafafa;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.product-main .product-info .box-price .price-wrapper {
  width: fit-content;
}
.product-main .product-info .box-price .price-wrapper .price {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
}
.product-main .product-info .box-price .discount-badge {
  background-color: rgba(254, 238, 234, 0.8);
  color: var(--fs-color-primary);
  font-size: 1rem;
  padding: 0 6px;
  border-radius: 2px;
}
.product-main .product-info .single_add_to_cart_button {
  margin-bottom: 0;
  background-color: var(--fs-color-secondary) !important;
  border: 1px solid var(--fs-color-secondary);
  color: #fff;
  box-shadow: none;
}
@media (max-width: 767px) {
  .product-main .product-info .single_add_to_cart_button {
    width: 60%;
  }
}
.product-main .product-info .single_add_to_cart_button:hover {
  background-color: var(--fs-color-secondary) !important;
  color: #fff;
}
.product-main .product-info .quick-buy-button {
  background-color: var(--fs-color-primary);
  text-align: center;
  padding: 5px 30px;
  color: #fff;
  line-height: 34px;
  cursor: pointer;
  border: 1px solid var(--fs-color-primary);
}
@media (max-width: 767px) {
  .product-main .product-info .quick-buy-button {
    width: calc(40% - 15px);
    padding: 5px 0;
  }
}
.product-main .product-info .quantity {
  margin-bottom: 0;
  margin-right: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.product-main .product-info .quantity::before {
  content: "Số lượng: ";
  margin-right: 20px;
}
.product-main .product-info .webshop-item {
  width: 100%;
}
.product-main .product-info .quantity input[type=button].is-form.button,
.product-main .product-info .quantity input[type=number] {
  height: 32px;
}
.product-main .product-info .product-title {
  font-weight: 500;
  font-size: 1.3rem;
}
.product-main .product-info .button-webshop {
  background: linear-gradient(-180deg, #f53d2d, #f63);
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 5px 20px;
  width: 333px;
  gap: 10px;
  justify-content: center;
  height: 45px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .product-main .product-info .button-webshop {
    width: 100%;
  }
}
.product-main .product-info .button-webshop.lazada {
  background: linear-gradient(-180deg, #0f1768, #0316b6);
}
.product-main .product-info .button-webshop.tiki {
  background: #0368ff;
}
.product-main .product-info .button-webshop.tiktok {
  background: #000;
}
.product-main .product-info .mbws_single-meta {
  margin-bottom: 20px;
}
.product-main .product-info .mbws_single-meta .rank-star .star {
  background-image: url(/wp-content/uploads/2025/03/star-2.svg);
  background-position: center;
  background-size: cover;
  height: 13px;
  width: 13px;
  display: inline-block;
}
.product-main .product-info .mbws_single-meta .rank-star {
  border-right: 1px solid rgba(0, 0, 0, 0.09);
  padding-right: 10px;
  margin-right: 10px;
}

.sticky-add-to-cart__product .quick-buy-button {
  display: none;
}
.sticky-add-to-cart__product .webshop-item {
  display: none;
}

.page-title.shop-page-title.product-page-title .page-title-inner .flex-col {
  margin-left: 15px;
}

.single-product .related {
  margin-left: -10px;
  margin-right: -10px;
}

#mbws-recently--wrap {
  margin-left: -10px;
  margin-right: -10px;
}/*# sourceMappingURL=style.css.map */