/* Fonts */
@font-face {
  font-family: "SVN-Diamonda";
  src: url("../fonts/SVN-Diamonda-Regular.woff2") format("woff2"), url("../fonts/SVN-Diamonda-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Poppins";
  src: url("../fonts/SVNPoppinsRegular.woff") format("woff2"), url("../fonts/SVNPoppinsRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Poppins";
  src: url("../fonts/SVN-PoppinsMedium.woff") format("woff2"), url("../fonts/SVN-PoppinsMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Poppins";
  src: url("../fonts/SVN-PoppinsSemiBold.woff") format("woff2"), url("../fonts/SVN-PoppinsSemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Poppins";
  src: url("../fonts/SVN-PoppinsBold.woff") format("woff2"), url("../fonts/SVN-PoppinsBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-main: #FDD97D;
  --color-hover: linear-gradient(90deg, #DE9E3E 1.75%, #FDD97D 32.46%, #DE9E3E 79.86%, #FDD97D 100%);
  --color-btn: linear-gradient(90deg, #DE9E3E 1.75%, #FDD97D 32.46%, #DE9E3E 79.86%, #FDD97D 100%);
  --color-text: #fff;
  --color-content: #fff;
  --color-background: #131313;
  --font-svndiamonda: "SVN-Diamonda", sans-serif;
}

body {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.5;
  font-family: "SVN-Poppins", sans-serif;
  background: var(--color-background);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "SVN-Poppins", sans-serif;
}

.body-container {
  position: relative;
  overflow: hidden;
}

.wrap-content {
  max-width: 1200px;
  width: calc(100% - 20px);
  margin: 0px auto;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}
img.lazy {
  display: block;
  opacity: 0;
}
img:not(.initial) {
  transition: opacity 1s;
}
img:not([src]) {
  visibility: hidden;
}
img:is(.loaded, .error) {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

ol,
ul {
  list-style: unset;
}

.content-text a {
  color: #0d6efd;
  text-decoration: underline;
}

.social-plugin {
  display: flex;
  gap: 2px;
  margin: 12px 0;
}

.scale-img {
  display: block;
  overflow: hidden;
}
.scale-img img {
  transform: scale(1, 1);
  transition: all 0.3s ease;
}
.scale-img:hover img {
  transform: scale(1.1, 1.1);
  transition: all 0.3s ease;
}

.text-split {
  --line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 3);
}

/* Transition All */
.transition, .btn-frame .kenit-alo-circle-fill {
  transition: 0.3s all;
}

/* Menu */
.fixed-menu {
  position: fixed !important;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.fixed-menu .menu {
  padding: 4px 0;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}
.fixed-menu .menu-logo {
  margin-bottom: 0 !important;
}
.fixed-menu .menu-logo img {
  max-height: 60px;
}

.menu {
  position: relative;
  z-index: 100;
  background: var(--color-background);
  padding: 10px 0 0;
}
.menu .menu-logo {
  display: block;
  margin-bottom: -47px;
}
.menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.menu ul li {
  position: relative;
  z-index: 99;
  text-align: center;
}
.menu ul li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 24px;
  padding: 13px 0 24px;
}
.menu ul li a::before {
  content: "";
  position: absolute;
  background: url(../images/main/before-menu.png) no-repeat center center/100% 100%;
  width: 0;
  height: 7px;
  left: 0;
  bottom: 16px;
  transition: all 0.3s ease;
}
.menu ul li a.active {
  background: var(--color-hover);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu ul li a.active::before {
  width: 100%;
}
.menu ul li a .menu-category-list-btn {
  position: absolute;
  right: -12px;
  top: calc(50% - 7px);
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease-out;
}
.menu ul li:hover > a {
  background: var(--color-hover);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu ul li:hover > a::before {
  width: 100%;
}
.menu ul li:hover > a .menu-category-list-btn {
  transform: rotate(90deg);
}
.menu ul li:hover > ul {
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.menu ul li ul {
  position: absolute;
  min-width: 220px;
  background-color: #fafafa;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
}
.menu ul li ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.menu ul li ul li:hover > a {
  background: var(--color-main);
  -webkit-text-fill-color: #333;
}
.menu ul li ul li:hover > a .menu-category-list-btn {
  transform: rotate(180deg);
}
.menu ul li ul li a {
  text-align: left;
  font-size: 14px;
  color: #333;
  text-transform: capitalize;
  padding: 10px 10px;
  -webkit-text-fill-color: #333;
}
.menu ul li ul li a::before {
  display: none;
}
.menu ul li ul li a .menu-category-list-btn {
  right: 10px;
}
.menu ul li ul li ul {
  top: 0;
  left: 100%;
  margin-top: 0px;
}

/* Search */
.search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 45px;
  width: 220px;
  height: 40px;
  background: #fff;
  border-radius: 25px;
}

/* Mmenu */
.menu-res {
  display: none;
  position: relative;
  z-index: 100;
}
.menu-res .mmenu-hotline {
  color: var(--color-main);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  transition: all 0.3s ease;
}
.menu-res .mmenu-hotline:hover {
  color: var(--color-hover);
}

#hamburger {
  width: 45px;
  height: 45px;
  position: relative;
  border: 2px solid var(--color-main);
  border-radius: 6px;
  display: grid;
  place-items: center;
}
#hamburger span {
  font-size: 25px;
  color: var(--color-main);
  line-height: 1;
}

.mm-wrapper_opening #hamburger:before, .mm-wrapper_opening #hamburger:after {
  top: 10px;
}
.mm-wrapper_opening #hamburger span {
  left: -50px;
  opacity: 0;
}
.mm-wrapper_opening #hamburger:before {
  transform: rotate(45deg);
}
.mm-wrapper_opening #hamburger:after {
  transform: rotate(-45deg);
}

.mm-menu_opened {
  display: block !important;
}

.mm-slideout {
  z-index: unset;
}

/* Search */
.search-res {
  position: relative;
}
.search-res .icon-search {
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #222;
  font-size: 18px;
  line-height: 1;
  margin: 0px;
  display: grid;
  place-items: center;
}
.search-res .icon-search.active {
  color: #fff;
  background: var(--color-main);
  border-radius: 50%;
}
.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-main);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
}
.search-res .search-grid button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.search-res .search-grid input {
  font-size: 13px;
  width: 100%;
  height: 38px;
  text-indent: 10px;
  outline: none;
  border: none;
  box-shadow: none;
}

/* Main */
.title-main {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-main h2 {
  color: var(--color-main);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}

.title-detail {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-detail h1 {
  color: var(--color-main);
  font-size: 35px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.title-related {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-related h2 {
  color: var(--color-main);
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Embla */
.embla__button {
  cursor: pointer;
  outline: none;
  border: 0px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 18px;
  background: var(--color-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.embla__button:hover {
  background: var(--color-hover);
}
.embla__button.embla__button--prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.embla__button.embla__button--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* breadCrumbs */
.breadCrumbs {
  padding: 10px 0px;
  background: #ddd;
}
.breadCrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadCrumbs ol li a {
  color: #333;
}
.breadCrumbs ol li.active a, .breadCrumbs ol li:hover a {
  color: #000;
}

/* About */
.section-about {
  position: relative;
}
.section-about .about-photo-container .about-photo:nth-child(1) {
  position: relative;
  padding-left: 85px;
}
.section-about .about-photo-container .about-photo:nth-child(1) .about-photo-decor {
  position: absolute;
  width: 384px;
  height: 280px;
  background: #343434;
  left: 0;
  bottom: -70px;
  z-index: -1;
  pointer-events: none;
}
.section-about .about-photo-container .about-photo:nth-child(1) .about-photo-decor span {
  position: absolute;
  top: 38px;
  left: 20px;
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.section-about .about-photo-container .about-photo:nth-child(2) {
  position: relative;
  padding-right: 100px;
}
.section-about .about-photo-container .about-photo:nth-child(2) .about-photo-decor {
  position: absolute;
  width: 482px;
  height: 456px;
  border: 10px solid #AF0000;
  right: 0;
  bottom: -66px;
  z-index: -1;
  pointer-events: none;
}
.section-about .about-photo-container .about-photo:nth-child(2) .about-photo-decor span {
  position: absolute;
  bottom: -40px;
  right: 30px;
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.section-about .about-content {
  text-align: center;
  border: 1px solid #FFF;
  max-width: 630px;
  padding: 50px 85px 40px 30px;
  margin: -202px auto 0 40px;
}
.section-about .about-content .about-name {
  color: #FFF;
  font-family: var(--font-svndiamonda);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0;
}
.section-about .about-content .about-desc {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 1.25rem;
}
.section-about .about-content .about-viewmore {
  width: 142px;
  height: 40px;
  background: var(--color-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.section-about .about-content .about-viewmore:hover {
  box-shadow: 0 0 10px 0 #fff;
}

/* Menu List */
.section-menu-list {
  background: #272727;
}
.section-menu-list .embla__container .embla__slide {
  position: relative;
}
.section-menu-list .embla__container .embla__slide::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #D9D9D9;
  right: -27px;
  top: 0;
}

.menu-list-item .menu-list-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  background: var(--color-hover);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.menu-list-item .menu-list-content-list {
  max-height: 230px;
  overflow-y: auto;
  padding-right: 10px;
}
.menu-list-item .menu-list-content-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.menu-list-item .menu-list-content-item:not(:last-child) {
  border-bottom: 1px dashed #fff;
  padding-bottom: 15px;
  margin-bottom: 18px;
}
.menu-list-item .menu-list-content-item-name {
  color: var(--color-text);
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.menu-list-item .menu-list-content-item-name:hover {
  color: var(--color-main);
}
.menu-list-item .menu-list-content-item-price {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.custom-scroll {
  overflow-y: auto;
  height: 100%;
}
.custom-scroll::-webkit-scrollbar {
  width: 3px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: rgba(255, 176, 1, 0.4);
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: #FFB001;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--color-main);
}

/* Menu Noi Bat */
.product-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.product-item figcaption {
  background: #fff;
  padding: 10px 0;
}
.product-item figcaption .product-name {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.product-item figcaption .product-name:hover {
  color: var(--color-main);
}
.product-item figcaption .product-price-new {
  color: #333;
  font-size: 20px;
  font-weight: 400;
}

/* Album */
.section-album .album-container {
  position: relative;
  display: grid;
  grid-template-columns: 25.67% repeat(2, minmax(0, 1fr)) 32.67%;
  align-items: flex-end;
  gap: 10px;
}
.section-album .album-container .album-item:nth-child(1) {
  position: relative;
  margin: 0 0 auto auto;
}
.section-album .album-container .album-item:nth-child(1) .album-item-decor-1 {
  position: absolute;
  top: 25px;
  left: -85px;
  color: #FFF;
  font-family: var(--font-svndiamonda);
  font-size: 45px;
  font-weight: 400;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.section-album .album-container .album-item:nth-child(1) .album-item-decor-2 {
  position: absolute;
  top: calc(100% + 15px);
  left: -73px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.section-album .album-container .album-item:nth-child(1) .album-item-decor-2 span {
  color: #AF0000;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.section-album .album-container .album-item:nth-child(3) .album-viewmore {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #D9D9D9;
  height: 50px;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.section-album .album-container .album-item:nth-child(3) .album-viewmore:hover {
  color: var(--color-main);
}

/* Menu Ban Chay */
.menu-banchay-cols:nth-child(1) .menu-banchay-item {
  position: relative;
  padding: 12px 0;
}
.menu-banchay-cols:nth-child(1) .menu-banchay-item::before {
  content: "";
  position: absolute;
  background: url(../images/main/before-pic-bestseller.png) no-repeat center center/100% 100%;
  inset: 0;
  left: 12px;
  z-index: -1;
  pointer-events: none;
}

.menu-banchay-item .scale-img {
  border-radius: 210px;
}
.menu-banchay-item .menu-banchay-title {
  color: #FFF;
  font-family: var(--font-svndiamonda);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0;
}
.menu-banchay-item .menu-banchay-name {
  color: #AF0000;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.menu-banchay-item .menu-banchay-desc {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}

/* News */
.news-hot-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.news-hot-title h2 {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}
.news-hot-title a {
  width: 142px;
  height: 40px;
  background: var(--color-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.news-hot-title a:hover {
  box-shadow: 0 0 10px 0 #fff;
}

.news-item {
  position: relative;
  padding: 20px 12px;
}
.news-item::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 166px;
  border: 1px solid #AF0000;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.news-item::after {
  content: "";
  position: absolute;
  width: 195px;
  height: 118px;
  background: rgba(255, 255, 255, 0.1);
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.news-item figcaption {
  background: #fff;
  padding: 20px;
}
.news-item figcaption .news-name {
  color: #282828;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.news-item figcaption .news-name:hover {
  color: #000;
}
.news-item figcaption .news-desc {
  color: #4D4D4D;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

/* Sort */
.sort-select {
  display: flex;
  justify-content: end;
  margin: 20px 0px;
  position: relative;
}
.sort-select .click-sort {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  margin: 0px;
}
.sort-select .sort-select-main {
  display: grid;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  padding: 0 7px;
  top: 30px;
  right: 0;
  width: 160px;
  z-index: 2;
}
.sort-select .sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0px;
  order: 2;
}
.sort-select .sort-select-main p:has(.check) {
  order: 1;
}
.sort-select .sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}
.sort-select .sort a.check i {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 100px;
  vertical-align: middle;
}
.sort-select .sort a.check i:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -4px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.sort-select .sort-show {
  padding-right: 12px;
  position: relative;
}
.sort-select .sort-show:before {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  right: 0;
  width: 0;
}

/* Category list */
.left-product {
  position: sticky;
  top: 60px;
}

.category-title {
  background: var(--color-main);
  padding: 10px 15px;
  color: white;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
  display: grid;
  place-items: center;
}

.category-product-list {
  background: #fff;
  box-shadow: 0 0 10px 0 #e0e0e0;
  border: 1px solid #e0e0e0;
  border-top: 0;
  padding: 10px;
}
.category-product-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-product-list ul li {
  position: relative;
  padding: 10px 0;
}
.category-product-list ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.category-product-list ul li a {
  position: relative;
  display: block;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.category-product-list ul li a .btn-toggle {
  border: 0;
  outline: 0;
  box-shadow: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  right: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  color: #333;
}
.category-product-list ul li a .btn-toggle:hover {
  color: var(--color-main);
}
.category-product-list ul li a:hover, .category-product-list ul li a.active {
  color: var(--color-main);
}
.category-product-list ul li ul {
  display: none;
  padding: 0 20px !important;
}
.category-product-list ul li ul li a {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

/* Product Detail */
.grid-properties {
  display: flex;
  gap: 10px;
  margin: 10px 0px;
}
.grid-properties span {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  cursor: pointer;
}
.grid-properties span:hover, .grid-properties span.active {
  border: 1px solid #f00;
  color: #f00;
}
.grid-properties span:hover:after, .grid-properties span.active:after {
  content: "";
  border: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
  bottom: 0;
  position: absolute;
  right: -0.9375rem;
}
.grid-properties span.outstock {
  pointer-events: none;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.26);
  cursor: not-allowed;
}

.filter {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid #ddd;
  display: none;
}

.attr-pro-detail {
  list-style: none;
  padding: 0px;
}
.attr-pro-detail li {
  margin-bottom: 0.5rem;
}
.attr-pro-detail li .attr-label-pro-detail {
  font-weight: 700;
  margin-bottom: 0;
}
.attr-pro-detail li .attr-content-pro-detail {
  font-weight: 400;
}
.attr-pro-detail li .price-new-pro-detail {
  font-size: 20px;
  color: #e30613;
  font-weight: 700;
}
.attr-pro-detail li .price-old-pro-detail {
  font-size: 17px;
  color: #666666;
  font-weight: 400;
  text-decoration: line-through;
}

/* Detail */
.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quantity-pro-detail span {
  line-height: 25px;
  padding: 0px;
  width: 30px;
  height: 30px;
  color: #5f5f5f;
  cursor: pointer;
  font-size: 22px;
  border: 1px solid #cccccc;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0px;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0px;
}
.quantity-pro-detail input {
  height: 30px;
  border: 1px solid #cccccc;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 14px;
  padding: 5px;
  padding-left: 20px;
}

.attr-pro-detail .cart-pro-detail a {
  width: auto;
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  border-radius: 3px;
}
.attr-pro-detail .cart-pro-detail a.addnow {
  display: block;
  margin-right: 10px;
  background: #f9c320;
  cursor: pointer;
  color: #000;
}
.attr-pro-detail .cart-pro-detail a.addnow:hover {
  background-color: var(--color-main);
  color: #fff;
}
.attr-pro-detail .cart-pro-detail a.buynow {
  cursor: pointer;
  background-color: #482807;
}
.attr-pro-detail .cart-pro-detail a.buynow:hover {
  background-color: var(--color-main);
  color: #fff;
}
.attr-pro-detail .cart-pro-detail a i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}

.tabs-pro-detail .nav-tabs {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.tabs-pro-detail .nav-tabs .nav-link.active {
  border-top-color: #9d9d9d;
  color: #000;
}
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  border-top-color: #9d9d9d;
}

/* Pagination */
.pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.pagination .page-item .page-link {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 14px !important;
  line-height: 1;
  font-weight: 600;
  border: 1px solid #ABABAB;
  border-radius: 0 !important;
  color: #333;
  background: rgb(255, 255, 255);
  transition: all 0.3s ease;
}
.pagination .page-item .page-link:hover {
  color: #fff;
  background: var(--color-hover);
  border-color: var(--color-hover);
}
.pagination .page-item.active .page-link {
  color: #fff;
  background: var(--color-hover);
  border-color: var(--color-hover);
}
.pagination .page-item.disabled .page-link {
  pointer-events: none;
}
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  font-size: 0 !important;
}
.pagination .page-item:first-child .page-link::before, .pagination .page-item:last-child .page-link::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 14px;
}
.pagination .page-item:first-child .page-link::before {
  content: "\f053";
}
.pagination .page-item:last-child .page-link::before {
  content: "\f054";
}

/* Footer */
.section-footer {
  position: relative;
}
.section-footer::before {
  content: "";
  position: absolute;
  background: url(../images/main/bg-footer.png) no-repeat center center/cover;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.footer-article {
  position: relative;
  padding-top: 105px;
  color: #fff;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
}
.footer-article .footer-title {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-article .footer-policy a {
  display: block;
}
.footer-article .footer-policy a:not(:last-child) {
  margin-bottom: 15px;
}
.footer-article .footer-policy a h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.footer-article .footer-policy a h3:hover {
  color: var(--color-main);
}
.footer-article .footer-social .social-item a {
  border-radius: 20px;
  border: 1px solid #DE9E3E;
  padding: 5px;
  transition: all 0.3s ease;
}
.footer-article .footer-social .social-item a h3 {
  font-size: 14px;
  font-weight: 400;
  background: linear-gradient(90deg, #DE9E3E 1.75%, #FDD97D 32.46%, #DE9E3E 79.86%, #FDD97D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.footer-article .footer-social .social-item:hover a {
  border-color: #fff;
}
.footer-article .footer-social .social-item:hover a h3 {
  -webkit-text-fill-color: #fff;
}

.footer-powered {
  text-align: center;
  padding: 30px 0;
}

.footer-map {
  padding-bottom: 60px;
}

.footer-maps-iframe {
  position: relative;
  border: 1px solid #fff;
  padding: 10px;
  height: 525px;
}
.footer-maps-iframe iframe {
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}

/* Contact */
.contact-form .contact-input {
  color: #333;
}

.contact-map {
  position: relative;
  height: 500px;
  margin-top: 30px;
}
.contact-map iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

/* Card fixed */
.cart-fixed {
  position: fixed;
  right: 20px;
  bottom: 400px;
  z-index: 10;
  display: none;
}

/* Btn Frame */
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}
.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  animation-name: pulse;
}

/* scrollToTop */
.scrollToTop {
  cursor: pointer;
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: bold;
  color: #444;
  position: fixed;
  bottom: 65px;
  right: 25px;
  display: none;
  z-index: 10;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  overflow: hidden;
}

/* Hvr Float Shadow */
.hvr-float-shadow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 1px transparent;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-float-shadow:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 5%;
  z-index: -1;
  width: 90%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0, transparent 80%);
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  pointer-events: none;
}
.hvr-float-shadow:active {
  transform: translateY(-5px);
}
.hvr-float-shadow:active:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:focus {
  transform: translateY(-5px);
}
.hvr-float-shadow:focus:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:hover {
  transform: translateY(-5px);
}
.hvr-float-shadow:hover:before {
  opacity: 1;
  transform: translateY(5px);
}

.duongcheosang3 {
  position: relative;
  overflow: hidden;
}
.duongcheosang3::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 1;
}
.duongcheosang3::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 2;
}
.duongcheosang3:hover::before, .duongcheosang3:hover::after {
  transform: rotateY(180deg);
  transition-duration: 1.3s;
  opacity: 0;
  height: 100%;
  width: 100%;
}

/* Toc */
.box-readmore {
  padding: 8px 15px;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}
.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0;
  padding-left: 0 !important;
  margin-top: 8px;
}
.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}
.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}
.box-readmore ul li a {
  color: #333333;
  cursor: pointer;
  font-weight: 600;
}
.box-readmore ul li a:hover {
  color: #767676;
}
.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}
.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}

/* Neon Blink */
@keyframes neon-blink {
  0% {
    text-shadow: 0 0 5px #2CFFFF, 0 0 10px #2CFFFF, 0 0 15px #2CFFFF, 0 0 20px #2CFFFF, 0 0 25px #2CFFFF, 0 0 30px #2CFFFF;
  }
  100% {
    text-shadow: 0 0 20px #2CFFFF, 0 0 30px #2CFFFF, 0 0 40px #2CFFFF, 0 0 50px #2CFFFF, 0 0 60px #2CFFFF, 0 0 70px #2CFFFF;
  }
}
@keyframes neon-blink-img {
  0% {
    filter: drop-shadow(0 0 5px #2CFFFF) drop-shadow(0 0 10px #2CFFFF);
  }
  100% {
    filter: drop-shadow(0 0 20px #2CFFFF) drop-shadow(0 0 30px #2CFFFF);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%, 30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%, 50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-animation {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  10% {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.6, 1.6, 1.6);
    opacity: 0;
  }
}
@keyframes border-animation {
  0% {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0;
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.4, 1.4, 1.4);
    opacity: 0;
  }
}