@charset "UTF-8";
* {
  font-family: NotoRegular;
}

html {
  /* Font size mặc định cho mobile */
  font-size: 14px;
  /* Tablet nhỏ */
  /* Tablet lớn */
  /* Desktop nhỏ */
  /* Desktop lớn */
  /* Desktop rất lớn */
  /* Màn hình siêu lớn */
}
@media (min-width: 480px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 11px;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 13px;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }
}

a {
  color: #333;
  text-decoration: none;
}

body {
  position: relative;
}

header {
  height: 90px;
}

.item-disabled {
  opacity: 0.2;
}

.label_error {
  color: red !important;
}

.label_error_email {
  color: red !important;
  font-weight: 500 !important;
}

.disabled {
  pointer-events: none;
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.376);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, opacity 0.2s ease, -webkit-backdrop-filter 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, backdrop-filter 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, backdrop-filter 0.3s ease, opacity 0.2s ease, -webkit-backdrop-filter 0.3s ease;
  transform: translateY(0);
  opacity: 1;
  will-change: transform, opacity;
}

.header.change {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px 1.5%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Tối ưu cho mobile */
@media (max-width: 768px) {
  .header {
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.25s ease, opacity 0.15s ease, -webkit-backdrop-filter 0.25s ease;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.25s ease, backdrop-filter 0.25s ease, opacity 0.15s ease;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.25s ease, backdrop-filter 0.25s ease, opacity 0.15s ease, -webkit-backdrop-filter 0.25s ease;
  }
}
main {
  border-radius: 0 0 50px 50px;
  bottom: 0px;
  position: relative;
  background: #fff;
  z-index: 2;
  display: block;
}

.logo {
  align-items: center;
  display: flex;
}

.tools {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.tools span {
  color: #fff;
}
.tools span:hover {
  cursor: pointer;
}

.NtSm-Bold {
  font-family: "NotoSemiBold";
}

.Nt-Bold {
  font-family: "NotoBold";
}

.Nt-Medium {
  font-family: "NotoMedium";
}

.Nt-Regular {
  font-family: "NotoRegular";
}

.Nt-MoRegular {
  font-family: "MontserratRegular";
}

.Nt-MoMedium {
  font-family: "MontserratMedium";
}

.Nt-MoBold {
  font-family: "MontserratBold";
}

.Nt-MoSemiBold {
  font-family: "MontserratSemiBold";
}

.EACD75 {
  color: #eacd75 !important;
}

.cl-764D2A {
  color: #764d2a !important;
}

.cl-333333 {
  color: #333333 !important;
}

.color-white {
  color: #fff !important;
}

.lang--a {
  color: #fff;
}

.fs-2rem {
  font-size: 2rem;
}

.fs-1rem {
  font-size: 1rem;
}

.font-14 {
  font-size: 0.875rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #764d2a;
  font-family: "MontserratBold";
}
h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  color: #764d2a;
  font-family: "MontserratBold";
}

p,
span {
  color: #333333;
}
p *,
span * {
  color: #333333;
  font-family: inherit;
}

.my-container {
  max-width: 1680px;
  width: calc(100% - 48px);
  margin: auto;
}

.breadcrumbs-catgory_name::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50%;
  width: 100%;
  max-width: 70px;
  height: 2px;
  margin: auto;
  background-color: #eacd75;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.layout-border {
  position: relative;
  margin: -50px 0;
  border-radius: 50px;
  padding: 50px 0;
  z-index: 5;
  background: #fff;
}

.product-item .product-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-self: stretch;
  overflow: hidden;
  color: var(--Alias-Primary---On-Theme, #27272a);
  text-overflow: ellipsis;
  font-weight: 300;
  line-height: 150%;
  margin-top: 10px;
  word-break: break-word;
}
.product-item .thumbnail-image {
  position: relative;
  overflow: hidden;
}
.product-item .thumbnail-image img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-item .hover {
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.product-item:hover .hover {
  opacity: 1;
  cursor: pointer;
}
.product-item:hover .buy-now {
  opacity: 1;
  bottom: 20px;
}
.product-item .old-price {
  color: #999;
  text-decoration: line-through;
}
.product-item .color {
  gap: 5px;
}
.product-item .color .color-item {
  width: 25px;
  height: 25px;
  border: 1px solid #cdcdcd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-item .color .color-item.active {
  border: 1px solid #333;
}

.breadcrumb {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  text-align: left;
  padding: 24px 0;
  color: rgb(117, 117, 117);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}
.breadcrumb a {
  text-decoration: none;
  color: rgb(117, 117, 117);
  font-size: 12px;
}
.breadcrumb p {
  margin-bottom: 0;
}
.breadcrumb a:last-child {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

footer {
  background-color: #000000;
  padding: 60px 124px;
}
footer .active-language {
  color: white;
  background-color: #1c1c1c;
}
footer .language {
  padding: 10px;
}
footer .footer--bold {
  font-size: 1.375rem;
  font-family: "NotoSemiBold";
}

.btn-footer-contact {
  padding: 15px 35px;
  background: white;
  align-self: start;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  color: black;
  margin-top: 30px;
}
.btn-footer-contact:hover {
  opacity: 0.9;
}

.icon-size {
  width: 20px;
}

.gch_footer .title-menu-0,
.gch_footer h6 {
  padding: 15px 0px;
  color: #eacd75;
  font-weight: 500;
  display: block;
}
.gch_footer .title-menu-1 {
  padding: 10px 0px;
  color: #ffffff;
  display: block;
}
.gch_footer .footer-icon {
  transition: all 0.75s ease;
}
.gch_footer .footer-icon img {
  transition: all 0.75s ease;
}
.gch_footer .footer-icon:hover img {
  transform: translateY(-5px);
}
.gch_footer .config_menu p,
.gch_footer .config_menu span,
.gch_footer .config_menu div {
  color: #fff;
}

.gch_footer .main-menu {
  flex-direction: column;
}

.gch_footer .main-menu li a {
  text-transform: unset;
  padding: 0;
}

.title-contact {
  color: white;
}

.footer-wrap {
  display: flex;
  -moz-column-count: 3;
       column-count: 3;
  font-size: 0.9375rem;
  gap: 1.5rem;
  max-width: 100%;
  justify-content: space-around;
  align-items: stretch;
}
.footer-wrap .config_menu {
  width: 25%;
}
.footer-wrap .render_menu {
  width: 50%;
  -moz-column-count: 3;
       column-count: 3;
  margin: 0 auto;
}
.footer-wrap ul {
  padding-left: 0px;
  list-style-type: none;
}
.footer-wrap ul li {
  padding-top: 10px;
}
.footer-wrap ul li a {
  color: white;
}

#modalToggle .modal-dialog .modal-content {
  border: none;
}
#modalToggle .modal-dialog .modal-content .modal-header {
  border-bottom: none;
}
#modalToggle .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.modal_login {
  width: 100%;
}
.modal_login .modal-content {
  padding: 0 48px 48px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal_login .modal-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.modal_login .modal-content .close:hover {
  cursor: pointer;
}
.modal_login .modal-content .component1 .modal_name {
  font-size: 24px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  color: #000000;
}
.modal_login .modal-content .component1 p {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: left;
  color: rgb(117, 117, 117);
}
.modal_login .modal-content .component2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal_login .modal-content .component2 .username,
.modal_login .modal-content .component2 .password {
  padding: 1rem;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  line-height: 15px;
  text-align: left;
  background-color: rgb(245, 245, 245);
  border-radius: 2px;
}
.modal_login .modal-content .component2 .password {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal_login .modal-content .component2 .password input {
  width: 90%;
  background-color: inherit;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  line-height: 15px;
  text-align: left;
}
.modal_login .modal-content .component2 .password .reveal_hidden:hover {
  cursor: pointer;
}
.modal_login .modal-content .component2 button {
  background-color: #333;
  padding: 1rem;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  color: rgb(255, 255, 255);
  border: none;
  text-transform: uppercase;
  outline: none;
}
.modal_login .modal-content .component2 .break_line {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: rgb(245, 245, 245);
}
.modal_login .modal-content .component2 .break_line .or {
  position: absolute;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: center;
  width: 60px;
  height: 20px;
  background-color: #fff;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  color: rgb(117, 117, 117);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal_login .modal-content .component2 .break_line .or p {
  margin-bottom: 0;
}
.modal_login .modal-content .component2 .list_option_login_orther {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal_login .modal-content .component2 .list_option_login_orther .option_login {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgb(245, 245, 245);
  padding: 1rem 0;
}
.modal_login .modal-content .component2 .list_option_login_orther .option_login p {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: center;
  margin-bottom: 0;
}
.modal_login .modal-content .component3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal_login .modal-content .component3 .gr_text1 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.modal_login .modal-content .component3 .gr_text1 p {
  margin-bottom: 0;
  color: rgb(117, 117, 117);
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
}
.modal_login .modal-content .component3 .gr_text1 a {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #000000;
  text-decoration: none;
}
.modal_login .modal-content .component3 .gr_text2 a {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-decoration: none;
  color: rgb(36, 118, 255);
}

.header_mobile {
  display: none !important;
  background-color: rgba(255, 255, 255, 0.88);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header_mobile .my-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_mobile .my-container .menu_mobile {
  display: flex;
}
.header_mobile .my-container .search_mobile {
  display: flex;
}
.header_mobile .my-container a {
  display: flex;
}

#searchForm {
  width: 0px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  cursor: pointer;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
  position: absolute;
  right: 100%;
  top: 50%;
  z-index: 1;
  transform: translate(0px, -50%);
}
#searchForm input {
  position: absolute;
  right: 0;
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  width: 100%;
  height: 36px;
  border-radius: 100px 20px 20px 100px;
  background: rgba(255, 255, 255, 0.21);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px;
  color: rgb(255, 255, 255);
  font-size: 12px;
}
#searchForm input:focus {
  outline: none;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}

.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #333;
  animation: prixClipFix 2s linear infinite;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.pagination .page-item.active .page-link {
  background-color: #eacd75;
  border: unset;
  color: #fff;
}
.pagination .page-item .page-link {
  width: 40px;
  height: 40px;
  border-radius: 100px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  background: #fbf5e3;
  border: unset;
}
.pagination .page-item.disabled .page-link {
  color: #d1d1d6;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
            clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.banner_v2 .layout_banner {
  z-index: 1;
}
.banner_v2 .layout_banner .banner_item::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, #764d2a 100%);
  opacity: 0.6;
  width: 100%;
  height: 100%;
}

.color-item-outside.disabled {
  opacity: 0.2;
}

#searchForm.show {
  width: 250px;
  border-radius: 100px 20px 20px 100px;
  background: rgb(255, 255, 255);
  margin-right: 10px;
}
#searchForm.show input {
  opacity: 1;
  width: 100%;
  pointer-events: auto;
  padding-left: 20px;
  color: rgb(0, 0, 0);
}

.close-main-menu {
  width: 100%;
  height: 10px;
  background-color: transparent;
}

.main-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.main-menu .title-level-0 {
  padding: 1rem 1.25rem;
  position: relative;
}
.main-menu .title-level-0 a.title-menu-0 {
  font-family: "NotoMedium";
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  line-height: 18px;
  text-transform: uppercase;
}
.main-menu .evel-0.over-arow .title-level-0 a.title-menu-0:after {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}
.main-menu .evel-0 {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.main-menu .evel-0:hover .title-level-0 a.title-menu-0 {
  color: #eacd75;
}
.main-menu .evel-0:hover .title-level-0 a.title-menu-0:after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23EACD75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.main-menu .evel-0:hover .expand {
  visibility: visible;
  opacity: 1;
  transform: translateX(-40%) translateY(0);
}
.main-menu .evel-0 .expand {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-40%) translateY(-10px);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  padding: 20px;
  min-width: 290px;
  z-index: 1000;
  margin-top: 10px;
  list-style: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.main-menu .evel-0 .expand .box-service.evel-1 {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
.main-menu .evel-0 .expand .box-service.evel-1 .title-level-1 a.title-menu-1 {
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  padding: 5px 12px;
  display: block;
  transition: all 0.3s ease;
  border-radius: 4px;
  position: relative;
}
.main-menu .evel-0 .expand .box-service.evel-1 .title-level-1 a.title-menu-1:hover {
  color: #764d2a;
  padding-left: 1rem;
}
.main-menu .evel-0 .expand .box-service.evel-1 .title-level-1 a.title-menu-1:hover:after {
  width: 100%;
}
.main-menu .evel-0 .expand .box-service.evel-1 .title-level-1 a.title-menu-1:hover:before {
  width: 0%;
}
.main-menu .evel-0 .expand .box-service.evel-1 .title-level-1 a.title-menu-1:after {
  content: "";
  width: 0px;
  left: 0px;
  height: 2px;
  background-color: #eacd75;
  bottom: 50%;
  transition: 0.3s;
  position: absolute;
  max-width: 10px;
  transition: all 0.3s ease;
}
.main-menu .evel-0 .expand .box-service.evel-1 .title-level-1 a.title-menu-1:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  width: 0%;
  height: 0px;
  bottom: 50%;
  background-color: #eacd75;
  transition: all 0.8s ease;
}
@media (max-width: 768px) {
  .main-menu .evel-0 .expand {
    left: 0;
    right: 0;
    transform: none;
    min-width: auto;
    margin: 8px;
    width: calc(100vw - 32px);
  }
}

#expand-content {
  width: 100%;
  position: absolute;
  background: white;
  top: 72px;
  left: 0;
  display: flex;
  justify-content: center;
}
#expand-content .title-menu-1,
#expand-content .title-menu-2 {
  position: relative;
}
#expand-content .title-menu-1:after,
#expand-content .title-menu-2:after {
  content: "";
  width: 0px;
  left: 0px;
  height: 1px;
  background-color: #333;
  bottom: -5px;
  transition: 0.3s;
  position: absolute;
}
#expand-content .title-menu-1:hover:after,
#expand-content .title-menu-2:hover:after {
  width: 100%;
}
#expand-content .wrapper {
  width: 55%;
  -moz-column-gap: 15px;
       column-gap: 15px;
  -moz-column-count: 5;
       column-count: 5;
}
#expand-content .wrapper .image-level-1 {
  display: block;
}
#expand-content .wrapper .image-level-1 img {
  width: 250px;
}
#expand-content ul {
  padding-left: 0px;
}
#expand-content .box-service {
  padding: 5px 0px;
}

.image-category-hot {
  display: flex;
  gap: 15px;
}
.image-category-hot .image-level-1 {
  width: 200px;
  height: 300px;
}
.image-category-hot .image-level-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.floatLeft {
  float: left;
  padding-top: 2px;
}

.floatLeft:after,
.floatLeft:before {
  display: table;
  content: " ";
}

.floatLeft:after {
  clear: both;
}

.avatar {
  margin-top: 7px;
  background: rgba(0, 0, 0, 0.05);
  float: left;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.line {
  display: inline-block;
  height: 10px;
  margin-top: 7px;
  margin-bottom: 7px;
  width: 400px;
  background-color: #f6f7f9;
  float: left;
  clear: both;
}

.line--trunc {
  width: 240px;
}

.shimmer {
  background-image: linear-gradient(90deg, #f6f7f9 0, #e9ebee 20%, #f6f7f9 40%, #f6f7f9);
  background-size: 99% 100%;
  background-repeat: no-repeat;
  animation: shimmer 1s linear 1ms infinite backwards;
}

@keyframes shimmer {
  0% {
    background-position: 500% 100%;
  }
  100% {
    background-position: 10000% 100%;
  }
}
.right_side_collection_block {
  padding: 0px 30px;
}

.product-slide-wrap-modal {
  min-height: 400px;
}

.modal_register {
  width: 100%;
}
.modal_register .modal-content {
  padding: 0 48px 48px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal_register .modal-content input[type=date] {
  -webkit-appearance: none;
  height: 54px;
}
.modal_register .modal-content input {
  padding: 1rem;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  line-height: 15px;
  text-align: left;
  background-color: rgb(245, 245, 245);
  border-radius: 2px;
}
.modal_register .modal-content .register-btn-step {
  display: block;
  margin-top: 30px;
  background-color: #333;
  padding: 1rem;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: rgb(255, 255, 255);
  border: none;
  text-transform: uppercase;
  outline: none;
}
.modal_register .modal-content .register-btn-step a {
  color: white;
}
.modal_register .modal-content .register-btn-step {
  font-weight: 400;
}
.modal_register .modal-content input {
  width: 100%;
}
.modal_register .modal-content p,
.modal_register .modal-content span {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  text-align: left;
  color: rgb(117, 117, 117);
}

.wrap {
  width: 300px;
}

.otpCode {
  display: flex;
  margin-left: -0.5rem;
}

.otpCode__digit {
  border: 2px solid #ddd;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  margin-left: 0.5rem;
  font-family: monospace;
  font-size: 3em;
  line-height: 1.5;
  padding: 0;
}
.otpCode__digit:focus {
  outline: none;
  border-color: blue;
}

.main-menu-header-mobile {
  display: none;
}

.main-menu-header-mobile-level-1 {
  display: none;
}

.btn_buy_now_mobile {
  display: none;
}

.gch_footer {
  background-position: center;
  padding: 80px 0 0px 0;
  color: #fff;
  position: relative;
  margin-top: -40px;
  z-index: 0;
  display: block;
  background: #764d2a;
  background-image: url(/images/icon/vector_thuonghieu.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
  padding-bottom: 2.5rem;
}
.gch_footer .main-menu {
  flex-direction: column;
}
.gch_footer .main-menu li a {
  text-transform: unset;
  padding: 0;
}

.loading {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  transition: 0.5s;
  background: rgb(0, 0, 0);
  z-index: 9999;
  pointer-events: none;
}
.loading .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: 2s ease-out 0s infinite normal none running loaderLogoPulse;
  transition: 3s;
}
.loading.hide {
  opacity: 0;
  z-index: 0;
}

@keyframes loaderLogoPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
  }
}
#modalSearch .modal-dialog-centered .search-modal-content {
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(60, 60, 60, 0.15);
  background: #fff;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-header {
  background: transparent;
  border-bottom: none;
  padding: 1.5rem 2rem 0.5rem 2rem;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-header .modal-title {
  color: #764d2a;
  letter-spacing: 1px;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-header .btn-close {
  background: none;
  opacity: 0.7;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-header .btn-close:hover {
  opacity: 1;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-body {
  padding: 0 2rem 2rem 2rem;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-body .modern-search-box {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border: 1.5px solid #eacd75;
  border-radius: 12px;
  background: #f9f7f3;
  box-shadow: 0 2px 8px rgba(234, 205, 117, 0.1254901961);
  justify-content: space-between;
  transition: border 0.2s;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-body .modern-search-box:focus-within {
  border-color: #764d2a;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-body .modern-search-box .input_search_mobile {
  width: 90%;
  border: none;
  outline: none;
  font-size: 1.1rem;
  background: transparent;
  color: #333;
  padding: 0 8px;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-body .modern-search-box .input_search_mobile::-moz-placeholder {
  color: #b9b9b9;
  font-size: 1.1rem;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-body .modern-search-box .input_search_mobile::placeholder {
  color: #b9b9b9;
  font-size: 1.1rem;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-body .modern-search-box .btn-search-mobile {
  background: #eacd75;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-body .modern-search-box .btn-search-mobile:hover {
  background: #764d2a;
}
#modalSearch .modal-dialog-centered .search-modal-content .modal-body .modern-search-box .btn-search-mobile img {
  width: 22px;
  height: 22px;
  filter: brightness(0.7);
}

@media (max-width: 600px) {
  #modalSearch .modal-dialog-centered .search-modal-content {
    padding: 0;
  }
  #modalSearch .modal-dialog-centered .search-modal-content .modal-header,
  #modalSearch .modal-dialog-centered .search-modal-content .modal-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #modalSearch .modal-dialog-centered .search-modal-content .modal-header {
    padding-top: 1rem;
  }
  #modalSearch .modal-dialog-centered .search-modal-content .modal-body {
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 200px) and (max-width: 768px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .logo-container .logo img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tools .hotline span {
    font-size: 0.75rem;
    display: none;
  }
  .main-menu,
  .tools {
    gap: 1rem;
  }
  .main-menu .title-level-0 a.title-menu-0,
  .main-menu .evel-0 .expand .box-service.evel-1 .title-level-1 a.title-menu-1 {
    font-size: 0.815rem;
  }
}
@media screen and (min-width: 1120px) and (max-width: 1570px) {
  .main-menu,
  .tools {
    gap: 0.875rem;
  }
  .main-menu .evel-0 .expand {
    margin-top: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .btn_buy_now_mobile {
    display: none;
  }
  .buy-now {
    background-color: white;
    width: 95%;
    display: flex;
    justify-content: center;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .fs-2rem {
    font-size: 1.5rem;
  }
  .my-container {
    width: calc(100% - 1rem) !important;
  }
  .layout-border {
    border-radius: 2rem;
    padding: 1.5rem 0;
  }
  .banner_v2 .layout_banner .banner_item {
    width: 100%;
    height: 60vh !important;
  }
  .banner_v2 .layout_banner .banner_item img {
    height: 60vh !important;
  }
  .project-home .hero-section {
    width: 100%;
    height: 60vh !important;
  }
  main {
    border-radius: 0 0 20px 20px;
  }
  .footer-wrap {
    -moz-column-count: unset;
         column-count: unset;
  }
  .gch_contact .logo-container .logo {
    max-width: 100%;
    display: flex;
    width: 100%;
  }
  .gch_contact .logo-container .logo img {
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .component3 {
    flex-direction: column;
  }
  .header {
    display: none;
  }
  .header_mobile {
    position: fixed;
    top: 0px;
    left: 50%;
    z-index: 99;
    width: 90%;
    transition: 0.15s;
    transform: translate(-50%, 0px);
    display: flex !important;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 65px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    border-bottom: none;
    padding: 0px 0.5rem !important;
  }
  .header_mobile.change {
    background-color: rgba(255, 255, 255, 0.88);
  }
  .header_mobile .my-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 8px);
    padding: 8px 4px;
    padding: 0;
    margin: 0;
  }
  .header_mobile .my-container .header_tool {
    padding: 12px;
  }
  .header_mobile .my-container a {
    display: flex;
  }
  .header_mobile .my-container .logo-mobile {
    max-width: 100%;
    width: 60%;
    flex: 0 0 auto;
    max-width: 188px;
    min-width: 60px;
    overflow: hidden;
  }
  .header_mobile .my-container .logo-mobile a.logo-mobile {
    max-width: 100%;
    width: 100%;
    gap: 0.5rem !important;
  }
  .header_mobile .my-container .layout-menu-mobile {
    gap: 1rem !important;
  }
  .header_mobile .my-container .layout-menu-mobile .header_tool {
    width: 30%;
    max-width: 24px;
  }
  .header_mobile .my-container .layout-menu-mobile .Language {
    width: 40%;
  }
  .header_mobile .my-container .layout-menu-mobile .Language .dropdown-toggle::after {
    margin-left: unset;
  }
  .header_mobile .my-container .layout-menu-mobile .header_tool {
    width: 30%;
    max-width: 32px;
  }
  .mt-3 {
    margin-top: 0;
  }
  .gch_footer {
    padding-top: 30px;
  }
  .gch_footer .footer-wrap {
    display: block;
  }
  .gch_footer .footer-wrap .config_menu {
    padding-top: 2rem;
    width: 100%;
  }
  .gch_footer .footer-wrap .render_menu {
    width: 100%;
    -moz-column-count: unset;
         column-count: unset;
  }
  .btn-footer-contact {
    margin-bottom: 30px;
  }
  .footer-wrap {
    -moz-column-count: unset;
         column-count: unset;
  }
  .banner-hot-sell {
    display: none;
  }
  .btn_buy_now_mobile {
    margin-top: 12px;
    display: block;
    background: rgba(0, 0, 0, 0.06);
    padding: 12px;
    text-align: center;
    color: #000;
    font-weight: 700;
  }
  .main-menu-header-mobile-level-1 {
    display: block;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: white;
    position: fixed;
    top: 0;
    left: -1000px;
    z-index: 1001;
    overflow-x: hidden;
    transition: 0.5s;
  }
  .main-menu-header-mobile-level-1 .title-level-1 {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .main-menu-header-mobile-level-1 .main-menu.level-1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .main-menu-header-mobile-level-1 .main-menu.level-1,
  .main-menu-header-mobile-level-1 .main-menu.level-2 {
    flex-direction: column;
    padding: 0px;
    list-style: none;
  }
  .main-menu-header-mobile-level-1 .main-menu.level-2 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .main-menu-header-mobile-level-1 .main-menu.level-2 li {
    padding: 10px;
    width: 50%;
  }
  .main-menu-header-mobile-level-1 .back-menu-level-1 {
    padding: 10px;
    position: absolute;
    left: 10px;
    top: 0px;
  }
  .child-indicator {
    width: 40px;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: #fff;
    border-radius: 0 0 1rem 0;
  }
  .main-menu-header-mobile {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -1000px;
    background-color: white;
    color: #333;
    z-index: 1000;
    overflow-x: hidden;
    transition: 0.5s;
    padding: 10px 10px;
    background-image: url(/images/icon/Vector-background-aboutus-content.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
  }
  .main-menu-header-mobile .title-level-1 {
    display: none;
  }
  .main-menu-header-mobile .menu-wrapper-1 {
    display: none;
  }
  .main-menu-header-mobile .main-menu.level-0 {
    padding-top: 20px;
    padding-left: 0px;
    display: grid;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
  }
  .main-menu-header-mobile .main-menu.level-0 li {
    padding-left: 10px;
    min-height: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #fff;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
  }
  .main-menu-header-mobile .main-menu.level-0 li a {
    padding: 0px;
    width: 80%;
    font-size: 1.5rem;
  }
  .main-menu-header-mobile-level-1 .main-menu.level-1,
  .main-menu-header-mobile-level-1 .main-menu.level-2 {
    gap: 1rem;
    margin-top: 2rem;
    font-size: 1.2rem;
  }
  .main-menu-header-mobile-level-1 .main-menu.level-1 li a,
  .main-menu-header-mobile-level-1 .main-menu.level-2 li a {
    font-size: 1.2rem;
  }
  .title-menu-level-0.d-flex.align-items-center.text-uppercase.mt-3.mb-3 {
    font-size: 1.5rem;
  }
  footer {
    padding: 0px 0px 20px 0px;
  }
  footer .footer-wrap {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  .gch_footer .footer-wrap .render_menu {
    margin-top: 2rem;
  }
  .gch_footer .title-menu-0,
  .gch_footer h6 {
    font-size: 1.675rem;
    padding: 1rem 0 1rem 0;
  }
  .gch_footer .title-menu-1 {
    padding: 0.5rem 0;
    font-size: 1.25rem;
  }
  .breadcrumbs {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 1rem;
  }
  .breadcrumbs a {
    font-size: 1rem;
  }
  .breadcrumbs span {
    font-size: 1rem;
  }
  .control_wide_modal {
    margin: 48px auto;
  }
  .control_wide_modal .modal-content {
    padding: 14px;
  }
  .control_wide_modal .modal-content .product-slide-wrap {
    flex-direction: column;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right {
    gap: 8px;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right .logo_hotsale {
    width: 30% !important;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right .title_select_sizes {
    flex-direction: row;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right .color_select {
    flex-direction: row;
    display: flex;
  }
  .control_wide_modal .modal-content .product-slide-wrap .right .list_sizes_select {
    flex-direction: row;
  }
  .copyright_license {
    display: flex;
    flex-direction: column;
  }
  #prd_buynow .control_wide_modal {
    max-width: 90%;
  }
  #prd_buynow .control_wide_modal .modal-content .btn_close {
    z-index: 2;
  }
  #prd_buynow .control_wide_modal .modal-content .left .prd_carousel_wrapper {
    width: 100% !important;
  }
  #prd_buynow .control_wide_modal .modal-content .right .d-flex.justify-content-between {
    gap: 12px;
  }
  #prd_buynow .control_wide_modal .modal-content .right .d-flex.justify-content-between .change-quantity {
    width: 50%;
  }
  #prd_buynow .control_wide_modal .modal-content .right .d-flex.justify-content-between .change-quantity .number-only {
    width: 100%;
    font-size: 1.125rem;
  }
  #prd_buynow .control_wide_modal .modal-content .right .d-flex.justify-content-between .add_to_cart_wrapper {
    width: 50% !important;
  }
  #prd_buynow .control_wide_modal .modal-content .right .link_to_detail {
    display: flex;
    justify-content: flex-end;
  }
  .right_side_collection_block {
    padding: 0;
  }
}
@media screen and (max-width: 350px) {
  .header_mobile .my-container .layout-menu-mobile {
    gap: 0.4rem !important;
  }
}
.chat-ai-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: "NotoRegular";
}
.chat-ai-container .chat-ai-status-top {
  transition: all 0.3s ease;
}
.chat-ai-container:hover .chat-ai-status-top {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
.chat-ai-container .chat-ai-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
  background: linear-gradient(to right, #eacd75, #ddb359);
  width: 48px;
  height: 48px;
  margin: auto;
  align-items: center;
}
.chat-ai-container .chat-ai-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.chat-ai-container .chat-ai-button .chat-ai-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-ai-container .chat-ai-button .chat-ai-icon img {
  width: 20px;
  height: 20px;
}
.chat-ai-container .chat-ai-button .chat-ai-text {
  font-weight: 600;
  color: #333;
}
.chat-ai-container .chat-ai-box {
  position: fixed;
  bottom: 85px;
  right: 20px;
  max-width: 370px;
  height: 600px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px dashed #2196f3;
}
.chat-ai-container .chat-ai-box.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.chat-ai-container .chat-ai-box .chat-ai-header {
  padding: 15px;
  border-bottom: 1px dashed #2196f3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-ai-container .chat-ai-box .chat-ai-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.chat-ai-container .chat-ai-box .chat-ai-body .chat-message {
  max-width: 80%;
  padding: 12px 15px;
  border-radius: 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
.chat-ai-container .chat-ai-box .chat-ai-body .chat-message.chat-ai-message {
  align-self: flex-start;
  background-color: white;
  border-radius: 18px 18px 18px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.chat-ai-container .chat-ai-box .chat-ai-body .chat-message.chat-user-message {
  align-self: flex-end;
  background-color: #f0f7ff;
  border-radius: 18px 18px 0 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.chat-ai-container .chat-ai-box .chat-ai-body .chat-message .chat-message-time {
  font-size: 11px;
  color: #888;
  margin-top: 5px;
  white-space: nowrap;
}
.chat-ai-container .chat-ai-box .chat-ai-footer {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
}
.chat-ai-container .chat-ai-box .chat-ai-footer .chat-ai-input {
  flex: 1;
  border: none;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 10px 15px;
  outline: none;
  font-size: 14px;
}
.chat-ai-container .chat-ai-box .chat-ai-footer .chat-ai-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chat-ai-container .chat-ai-box .chat-ai-footer .chat-ai-send:hover {
  background-color: #555;
  transform: scale(1.05);
}
.chat-ai-container .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-ai-container .avatar img {
  width: 20px;
  height: 20px;
}
