@charset "UTF-8";
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes hide-show {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.header {
  background-color: #FEFAEB;
  border-bottom: 1px solid rgba(82, 38, 27, 0.2392156863);
}
.header-title {
  background-color: var(--header-title-background, #262626);
  color: var(--header-title-color, #D9D9D9);
  font-size: var(--header-title-size, 1.6rem);
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  height: 60px;
}
.header-title .slogan {
  color: var(--header-title-color, #D9D9D9);
}
.header-title .slogan:hover {
  color: var(--header-title-color-hover, #52261B);
}
.header-title .social-media ul > li > a {
  color: #FAFAFA;
}
.header-title .social-media ul > li > a:hover {
  color: #52261B;
}
@media (min-width: 768px) {
  .header-title {
    height: 60px;
  }
}
@media (min-width: 992px) {
  .header-title {
    --header-title-size: 1.6rem;
    text-align: left;
    padding-top: 12px;
    padding-bottom: 12px;
    height: 60px;
  }
  .header-title .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__row {
  display: flex;
  height: 60px;
  align-items: center;
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .header__row {
    height: 60px;
  }
}
.header__col {
  width: 33.3333333333%;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
@media (min-width: 992px) {
  .header__col {
    padding: 0 15px;
  }
}
.header__col--center {
  justify-content: center;
}
.header__col--right {
  justify-content: flex-end;
  color: #52261B;
}
.header__col--right a {
  color: inherit;
}
.header-menu {
  --space-item: 24px;
  position: fixed;
  top: calc(61px);
  left: -100%;
  width: 100%;
  height: calc(100% - (60px + 1px));
  background-color: #FEFAEB;
  z-index: 999;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  transition: 0.5s;
  background-image: url(/catalog/view/theme/comnhalinh/image/menu-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.header-menu.show {
  left: 0;
  visibility: visible;
}
.header-menu__nav__contents {
  display: grid;
  gap: 16px;
}
.header-menu__nav__item {
  color: #52261B;
  font-size: 2.4rem;
  font-family: "Chiron Sung HK", sans-serif;
}
.header-menu__nav__item a {
  color: inherit;
  position: relative;
  padding-bottom: 4px;
}
.header-menu__nav__item a::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: #52261B;
}
.header-menu__nav__item a.active, .header-menu__nav__item a:hover {
  color: #52261B;
}
.header-menu__nav__item a.active::before, .header-menu__nav__item a:hover::before {
  width: 100%;
  transition: width 0.3s ease;
}
.header-menu__contact {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(38, 38, 38, 0.4);
  color: rgba(82, 38, 27, 0.8);
}
.header-menu__contact a {
  color: inherit;
}
.header-menu__contact a:hover {
  color: #52261B;
}
.header-menu__cta {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
}
.header-menu__cta ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header-menu__cta ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
}
.header-menu__cta ul li .btn-contact {
  color: #52261B;
  border: 1px solid #52261B;
}
.header-menu__cta ul li .btn-contact:hover {
  background-color: #52261B;
  color: #FAFAFA;
}
@media (min-width: 992px) {
  .header-menu {
    background-image: url(/catalog/view/theme/comnhalinh/image/menu-bg-desktop.png);
    border-bottom: 1px solid rgba(82, 38, 27, 0.2392156863);
    overflow-y: inherit;
    height: -moz-fit-content;
    height: fit-content;
  }
  .header-menu > .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 64px;
    margin-top: 24px;
    margin-bottom: 48px;
  }
  .header-menu > .container .header-search {
    margin-top: 0;
    margin-bottom: 0;
  }
  .header-menu > .container .header-menu__search {
    max-width: 240px;
  }
  .header-menu > .container .header-menu__nav__contents {
    justify-content: space-between;
    grid-template-columns: repeat(3, max-content);
  }
  .header-menu > .container .header-menu__contact {
    max-width: 240px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #FEFAEB;
}
.header.sticky .header-menu {
  top: calc(61px);
}
@media (min-width: 768px) {
  .header.sticky .header-menu {
    top: calc(61px);
  }
}
@media (min-width: 992px) {
  .header.sticky .header-menu {
    top: calc(61px);
  }
}
.header.sticky .header-search {
  top: calc(61px);
}
@media (min-width: 768px) {
  .header.sticky .header-search {
    top: calc(61px);
  }
}
@media (min-width: 992px) {
  .header.sticky .header-search {
    top: calc(61px);
  }
}
.header .main-logo img {
  height: 52px;
}
.header-search {
  margin-top: 16px;
  margin-bottom: 32px;
}
.header-search #search-mobile {
  position: relative;
}
.header-search .search__form__input {
  padding-left: 40px;
  border: 1px solid rgba(38, 38, 38, 0.4);
  border-radius: 8px;
}
.header-search .search__form__input:focus {
  outline: none;
  box-shadow: none;
}
.header-search .search__form__button {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media ul {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.search-bar, .modal-search .modal-content .searchform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
}
.search-bar__input {
  position: relative;
  max-width: 460px;
  width: 100%;
}
.search-bar__input input {
  height: 40px;
  line-height: 40px;
  width: 100%;
  padding: 9.5px 12px 9.5px 40px;
  border: 1px solid #707070;
}
.search-bar__input input:focus, .search-bar__input input:active, .search-bar__input input:focus-visible {
  outline: none;
}
.search-bar__input__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.search-bar__button {
  -webkit-flex-shrink: 0;
  flex: 0 0 auto;
  flex-shrink: 0;
}
.search-bar__button .btn {
  min-width: 95px;
}

.language {
  position: relative;
  display: inline-block;
}
.language .btn {
  cursor: pointer;
  color: #52261B;
}
.language .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(0);
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  z-index: 2000;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .language .dropdown-menu {
    right: 0;
    float: unset;
    left: unset;
  }
}
.language:hover .dropdown-menu, .language:focus-within .dropdown-menu, .language.open .dropdown-menu {
  display: block !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.language .language-select {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  background: transparent;
  border: none;
  color: #262626;
}
.language .language-select img {
  width: 24px;
}

.hamburger img {
  cursor: pointer;
}

.footer {
  padding-top: 48px;
  color: var(--footer_color, rgba(38, 38, 38, 0.8));
  font-weight: 400;
  font-size: 1.4rem;
}
@media (max-width: 991.98px) {
  .footer {
    font-size: 1.4rem;
  }
}
.footer a {
  color: inherit;
}
.footer a:hover {
  color: #52261B;
}
.footer__main__top {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4d4d4;
}
.footer__main__top .wrapper {
  display: flex;
  gap: 16px;
}
.footer__main__top .logo-footer {
  width: 80px;
  height: 80px;
}
.footer__main__top .footer__title {
  font-family: "Chiron Sung HK", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 4px;
  color: #262626;
}
.footer__main__top .footer__description {
  margin-bottom: 8px;
}
.footer__main__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__main__bottom {
    flex-direction: row;
  }
  .footer__main__bottom .footer-contact {
    flex: 1;
  }
  .footer__main__bottom .footer-map {
    width: 320px;
  }
}
.footer__main__bottom .content p:last-child {
  margin-bottom: 0;
}
.footer__main__bottom p {
  margin-bottom: 12px;
}
.footer__copyright {
  position: relative;
  padding: 16px 0 16px 0;
  font-size: var(--footer-copyright-font-size, 1rem);
  color: #737373;
}
@media (max-width: 991.98px) {
  .footer__copyright {
    font-size: var(--footer-copyright-font-size, 1rem);
  }
}
.footer__copyright a {
  color: inherit;
}
.footer .footer-contact {
  margin-top: 8px;
}
.footer .footer-contact__item:last-child {
  margin-bottom: 0;
}
.footer .footer-contact__item {
  margin-bottom: 12px;
}
.footer .footer-contact .center {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}
.footer .footer-contact .center img {
  position: relative;
  top: 3px;
}
.footer .footer__socials {
  display: flex;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .footer .footer__socials {
    gap: 16px;
  }
}
.footer .footer-map {
  height: 240px;
  overflow: hidden;
}

.social-footer {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .social-footer {
    flex-direction: row;
  }
}
.social-footer .social-buttons {
  display: flex;
  align-content: center;
  gap: 6px;
}
.social-footer .social-button {
  width: 36px;
  height: 36px;
  display: flex;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
}
.social-footer .social-button:hover {
  opacity: 0.8;
}
.social-footer .facebook {
  background: #3a589d;
}
.social-footer .youtube {
  background: #c33223;
}

/*Back to top*/
.back-to-top {
  right: 12px;
  bottom: 196px;
  top: auto;
  cursor: pointer;
  height: var(--back-to-top-height, 44px);
  width: var(--back-to-top-width, 44px);
  background-color: var(--back-to-top-bg-color, #52261B);
  color: var(--back-to-top-color, #FAFAFA);
  line-height: 44px;
  border-radius: 100%;
  font-size: var(--back-to-top-font-size, 1.4rem);
  transition: all 0.3s ease-out 0s;
  transform: translateY(-120px);
  opacity: 0;
  visibility: hidden;
  text-align: center;
  margin-bottom: 5px;
  position: fixed;
}
.back-to-top:hover {
  background-color: var(--back-to-top-bg-color-hover, #52261B);
  color: var(--back-to-top-color-hover, #FAFAFA);
}
.back-to-top.show {
  z-index: 10;
  transition: transform 0.3s ease-out 0s;
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.section-parallax--single .parallax-single .thumb {
  --parallax-height: 200px;
  min-height: var(--parallax-height);
  background-image: var(--parallax-image);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  display: block;
}

@media (min-width: 768px) {
  .section-parallax--single .parallax-single .thumb {
    --parallax-height: 400px;
  }
}
@media (max-width: 575.98px) {
  .ios .section-parallax--single .parallax-single .thumb {
    background-attachment: scroll;
  }
}
/**Callnow**/
.section-callnow {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 10;
  text-align: center;
}
.section-callnow .callnow__list {
  position: relative;
  background-color: rgb(255, 120, 0);
  color: #FAFAFA;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: flex;
  box-sizing: border-box;
  transition: all 0.24s;
  justify-content: space-evenly;
  min-height: 56px;
  height: 60px;
}
@media (min-width: 576px) {
  .section-callnow .callnow__list {
    display: inline-flex;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
  }
}
.section-callnow .callnow__item {
  flex: 1 1;
}
.section-callnow .callnow__item:not(:first-child) {
  border-left: 1px solid hsla(0, 0%, 100%, 0.2);
}
.section-callnow .callnow__item__link {
  color: #FAFAFA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
@media (min-width: 576px) {
  .section-callnow .callnow__item__link {
    gap: 10px;
    align-self: stretch;
    padding: 0 10px;
    flex-direction: row;
    cursor: pointer;
    justify-content: flex-start;
    border-radius: 3px;
    height: 40px;
    margin: 10px 5px;
    background-color: hsla(0, 0%, 100%, 0.2);
  }
}
.section-callnow .callnow__item__link:hover {
  background-color: rgba(27, 27, 27, 0.2);
}
.section-callnow .callnow__item__link--label {
  font-size: 1.2rem;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 576px) {
  .section-callnow .callnow__item__link--label {
    white-space: nowrap;
    font-size: 1.4rem;
  }
}
.section-callnow .callnow__item__link span > span {
  display: inline-block;
}
@media (max-width: 767.98px) {
  .section-callnow .callnow__item__link span > span {
    display: none;
  }
}
.section-callnow .callnow__item__icon {
  animation: tada 1.2s infinite;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
}
@media (min-width: 576px) {
  .section-callnow .callnow__item {
    flex: auto;
  }
}

/**Search popup***/
.modal-search ~ .modal-backdrop {
  opacity: 0.8;
}
.modal-search .modal-content {
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  max-width: 600px;
  padding: 0;
  border: none;
}
.modal-search .modal-content .searchform {
  color: #FAFAFA;
}
.modal-search .modal-content .searchform .searchform__input {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.09);
  height: 67px;
  font-size: 24px;
}
.modal-search .modal-content .searchform .searchform__button {
  font-size: 24px;
  height: 67px;
  line-height: 67px;
  padding: 0 30px;
  border-radius: 99px;
}

/***Homepage**/
.section-category {
  background-image: url(/catalog/view/theme/comnhalinh/image/background/category.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: rgb(241, 246, 250);
}
.section-category .category__item {
  text-align: center;
}
@media (min-width: 992px) {
  .section-category .category__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.section-category .category__item__thumb img {
  border-radius: 10px;
}
.section-category .category__item__name {
  padding: 10px 10px 20px;
  text-transform: capitalize;
  color: var(--category-name-color, #4154c1);
  font-weight: 700;
  font-size: var(--category-name-font-size, 1.3rem);
  letter-spacing: 0.05em;
}

.section-product .product__list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 576px) {
  .section-product .product__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .section-product .product__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .section-product .product__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section-product .product__button {
  margin-top: 32px;
}
.section-product .product__button .btn {
  width: 100%;
  background-color: #FFC400;
  color: #262626;
  border-color: #FFC400;
}
@media (min-width: 576px) {
  .section-product .product__button .btn {
    max-width: 320px;
  }
}
.section-product .product__button .btn:hover {
  background-color: #FFDB66;
}

.product_item {
  position: relative;
  padding: 16px 16px 12px 16px;
  background-color: #F9EDC8;
  background-image: url(/catalog/view/theme/comnhalinh/image/product-item-bg.png);
  height: 100%;
}
.product_item__thumb {
  margin-bottom: 16px;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  --ratio-width: 4;
  --ratio-height: 3;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
}
.product_item__thumb:hover img {
  transform: scale(1.1);
}
.product_item__thumb img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.4s ease 0s;
}
.product_item__content .title {
  color: #52261B;
  font-family: "Chiron Sung HK", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
}
.product_item__content .price {
  color: #52261B;
  font-family: "Chiron Sung HK", sans-serif;
}
.product_item__content .price .price__old {
  text-decoration: line-through;
  opacity: 0.8;
}
.product_item__content .description {
  margin-top: 8px;
  color: rgba(82, 38, 27, 0.8);
}

.product_combo {
  position: relative;
  border-radius: 12px;
  background-color: #F9EDC8;
  background-image: url(/catalog/view/theme/comnhalinh/image/product-item-bg.png);
  height: 100%;
  overflow: hidden;
}
.product_combo__thumb {
  display: block;
  overflow: hidden;
  --ratio-width: 3;
  --ratio-height: 4;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
}
.product_combo__thumb:hover img {
  transform: scale(1.1);
}
.product_combo__thumb img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.4s ease 0s;
}
.product_combo__content {
  padding: 16px;
}
.product_combo__content .title {
  color: #52261B;
  font-family: "Chiron Sung HK", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
}
.product_combo__content .price {
  color: #52261B;
  font-family: "Chiron Sung HK", sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
}
.product_combo__content .price .price__old {
  text-decoration: line-through;
  opacity: 0.8;
  font-size: 1.6rem;
  font-weight: normal;
}
.product_combo__content .description {
  margin-top: 8px;
  color: rgba(82, 38, 27, 0.8);
}

.category__list {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}
.category__list .category-col {
  padding: 8px 12px;
  border-radius: 8px;
  background-color: rgba(82, 38, 27, 0.2392156863);
  white-space: nowrap;
  flex-shrink: 0;
}
.category__list .category-col a {
  color: inherit;
  font-family: "Chiron Sung HK", sans-serif;
}
.category__list .category-col.active, .category__list .category-col:hover {
  background-color: #52261B;
  color: #FAFAFA;
}

[class*=product-category-] .main_container,
body.product-category .main_container,
body.news-category .main_container {
  margin-top: 32px;
}
[class*=product-category-] .section-category,
body.product-category .section-category,
body.news-category .section-category {
  background: transparent;
}

.section-dat-lich {
  padding-top: 48px;
  padding-bottom: 48px;
}
.section-dat-lich > .container {
  position: relative;
  z-index: 1;
}
.section-dat-lich .heading__title {
  margin-bottom: 16px;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .section-dat-lich .heading__title {
    font-size: 2.6rem;
  }
}
.section-dat-lich__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .section-dat-lich__list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 240px));
  }
}
.section-dat-lich__list .item {
  border: 1px solid #52261B;
  font-size: 1.6rem;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #52261B;
}
.section-dat-lich__list .item:nth-child(1) {
  background-color: #52261B;
  color: #FAFAFA;
}
.section-dat-lich__list .item:nth-child(1):hover {
  opacity: 0.8;
}
.section-dat-lich__list .item:nth-child(2):hover {
  background-color: #F9EDC8;
}
.section-dat-lich__list .item__icon {
  width: 20px;
  height: 20px;
  display: contents;
}

.section-blog {
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .section-blog {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.section-news-feedback {
  color: #FAFAFA;
  background-color: #52261B;
  padding-top: 64px;
  padding-bottom: 64px;
  --swiper-theme-color: #fff;
  --swiper-pagination-color: #fff;
}
@media (min-width: 768px) {
  .section-news-feedback {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.section-news-feedback .heading__title {
  color: #FAFAFA;
}
.section-news-feedback .swiper-pagination {
  position: relative;
}

.news__item--default__thumb {
  margin-bottom: 8px;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  --ratio-width: 3;
  --ratio-height: 2;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
}
.news__item--default__thumb:hover img {
  transform: scale(1.05);
}
.news__item--default__thumb img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.4s ease 0s;
}
.news__item--default__content__title {
  font-family: "Chiron Sung HK", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 4px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__item--default__content__description {
  font-size: 1.4rem;
  color: rgba(38, 38, 38, 0.8);
  margin-bottom: 4px;
  min-height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__item--default__content__date {
  color: rgba(38, 38, 38, 0.4);
  font-size: 1.4rem;
}
.news__item--column {
  display: flex;
  gap: 10px;
}
.news__item--column .news__item--column__thumb {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  flex-shrink: 0;
}
.news__item--column .news__item--column__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease 0s;
}
.news__item--column .news__item--column__thumb:hover img {
  transform: scale(1.05);
}
.news__item--column .news__item--column__title {
  font-weight: bold;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 20px;
  display: -webkit-box;
  font-size: 24px;
}
.news__item--column .news__item--column__desc {
  font-size: 14px;
}
.news__item--column + .news__item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dotted #999;
}
.news__item--gallery__thumb {
  margin-bottom: 8px;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  --ratio-width: 3;
  --ratio-height: 2;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
}
.news__item--gallery__thumb:hover img {
  transform: scale(1.05);
}
.news__item--gallery__thumb img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.4s ease 0s;
}
.news__item--gallery__content__title {
  font-weight: bold;
  font-size: 24px;
}
.news__item--feedback__thumb {
  margin-bottom: 8px;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  --ratio-width: 3;
  --ratio-height: 2;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
}
.news__item--feedback__thumb:hover img {
  transform: scale(1.05);
}
.news__item--feedback__thumb img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.4s ease 0s;
}
.news__item--feedback__content {
  color: #FAFAFA;
}
.news__item--feedback__content__top {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.news__item--feedback__content__top__left {
  display: flex;
  gap: 8px;
}
.news__item--feedback__content__top__left img {
  border-radius: 999px;
  width: 24px;
  height: 24px;
  -o-object-fit: fill;
     object-fit: fill;
}
.news__item--feedback__content__title {
  color: rgba(250, 250, 250, 0.8);
}

.blog__list--grid {
  --row-gap: 12px;
  --column-gap: 12px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .blog__list--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .blog__list--grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .blog__list--grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  .blog__list--grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog__list--grid--gallery {
  --column-gap: 24px;
}
@media (min-width: 992px) {
  .blog__list--grid--gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog__list--grid {
  gap: var(--column-gap) var(--row-gap);
}

.news-search .title-head {
  margin-bottom: 24px;
  font-size: 24px;
}

.news-category__empty {
  width: 100%;
}

.post-related__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-wrapper .post-title {
  color: #52261B;
}

.page-news-category {
  margin-top: 32px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .page-news-category {
    margin-bottom: 80px;
  }
}

.gallery__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  grid-auto-rows: 8px;
  grid-auto-flow: dense;
}
@media (min-width: 576px) {
  .gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .gallery__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery__item {
  overflow: hidden;
  border-radius: 12px;
  /* Ẩn lúc chưa tính span để khỏi thấy vệt mỏng */
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gallery__item.is-ready {
  opacity: 1;
  transform: none;
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.section-news-thu-vien-anh {
  margin-top: 64px;
  margin-bottom: 64px;
  --swiper-theme-color: #262626;
}
@media (min-width: 768px) {
  .section-news-thu-vien-anh {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.section-news-thu-vien-anh .news__item--default__thumb {
  margin-bottom: 0;
}
.section-news-thu-vien-anh .swiper-pagination {
  position: relative;
  bottom: 0 !important;
}

.section-gallery-video {
  position: relative;
  z-index: 1;
  max-height: calc(100vh - (60px));
  overflow: hidden;
}
@media (min-width: 768px) {
  .section-gallery-video {
    max-height: calc(100vh - (60px));
  }
}
.section-gallery-video video,
.section-gallery-video .banner-media {
  max-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-gallery-video .banner-bottom {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  height: 240px;
  bottom: 0;
  width: 100%;
  left: 0;
}
.section-gallery-video .banner-content {
  position: absolute;
  bottom: 0;
  margin-bottom: 108px;
  width: 100%;
  max-width: 400px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(/catalog/view/theme/comnhalinh/image/content-video.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 16px 32px;
  text-align: center;
  color: #FAFAFA;
}
@media (min-width: 768px) {
  .section-gallery-video .banner-content {
    margin-bottom: 124px;
  }
}
.section-gallery-video .banner-content__title {
  font-size: 3.6rem;
  font-family: "Chiron Sung HK", sans-serif;
  font-weight: 700;
  color: #FAFAFA;
  margin-bottom: 0;
  line-height: 1;
}
.section-gallery-video .banner-content__description {
  font-size: 2.4rem;
  font-family: "Chiron Sung HK", sans-serif;
}
.section-gallery-video .banner-button {
  color: #F9EDC8;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 99999;
  will-change: transform;
  animation: cnl-float 3.2s ease-in-out infinite;
  cursor: pointer;
}
.section-gallery-video .banner-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150%) translateY(0);
  width: 2px;
  height: 24px;
  background: #F9EDC8;
  will-change: transform;
  animation: cnl-float-before 3.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .section-gallery-video .banner-button {
    animation: none;
  }
  .section-gallery-video .banner-button::before {
    animation: none;
  }
}
@keyframes cnl-float {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes cnl-float-before {
  0% {
    transform: translate(-50%, -150%) translateY(0);
  }
  50% {
    transform: translate(-50%, -150%) translateY(-8px);
  }
  100% {
    transform: translate(-50%, -150%) translateY(0);
  }
}

.section-html {
  padding-top: 64px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, rgba(254, 250, 235, 0) 0%, #FEFAEB 100%);
  overflow: hidden;
}
.section-html .section-content {
  max-width: 600px;
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .section-html .section-content {
    max-width: 800px;
  }
}
@media (min-width: 992px) {
  .section-html .section-title .heading__title br {
    display: none;
  }
}
.section-html__image-1 {
  position: absolute;
  right: 0;
  top: 0;
  margin-right: -20vw;
  margin-top: -35vw;
  z-index: 9;
  width: 65vw;
}
@media (min-width: 992px) {
  .section-html__image-1 {
    width: 28vw;
    margin-right: -12vw;
    margin-top: 4vw;
  }
}
.section-html__image-inner {
  display: block;
  overflow: hidden;
  --ratio-width: 3;
  --ratio-height: 2;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
}
.section-html__image-inner img {
  border-radius: 8px;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.4s ease 0s;
}
.section-html__description {
  margin-top: 24px;
  text-align: left;
}
@media (min-width: 992px) {
  .section-html__description {
    text-align: right;
  }
}
.section-html__card__image-2 {
  width: 400px;
}
.section-html__card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 32px;
}
.section-html__card__title {
  font-family: "Chiron Sung HK", sans-serif;
  font-size: 3.6rem;
  font-style: italic;
  font-weight: bold;
  color: #52261B;
}
@media (max-width: 991.98px) {
  .section-html__card {
    gap: 0;
  }
  .section-html__card__title {
    font-size: 2.8rem;
  }
  .section-html__card img {
    margin-left: -16px;
  }
}

.section-newsletter-booking .section-title {
  font-family: "Chiron Sung HK", sans-serif;
  color: #52261B;
}
.section-newsletter-booking .section-title .heading__title {
  margin-bottom: 8px;
}
@media (max-width: 991.98px) {
  .section-newsletter-booking .section-title .heading__title {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
}
.section-newsletter-booking .row {
  align-items: center;
}
.section-newsletter-booking .form-newsletter {
  border: 1px solid var(--primary-var, #FFDB66);
  padding: 16px;
  background-color: #F9EDC8;
  border-radius: 12px;
}
.section-newsletter-booking .form-newsletter .form-group label {
  font-weight: bold;
  font-family: "Chiron Sung HK", sans-serif;
}
.section-newsletter-booking select {
  max-width: 100%;
}
.section-newsletter-booking select option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-newsletter-booking .btn {
  margin-top: 32px;
  display: block;
  width: 100%;
}
.section-newsletter-booking .select2-container .select2-selection--single {
  height: auto;
  border-radius: 8px;
}
.section-newsletter-booking .select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 6px;
  padding-bottom: 6px;
}
.section-newsletter-booking .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}
.section-newsletter-booking .form-newsletter__notification-wrapper {
  display: flex;
  justify-content: center;
}
.section-newsletter-booking .form-newsletter__notification {
  max-width: 640px;
  background-color: #F9EDC8;
  border: 1px solid var(--primary-var, #FFDB66);
  padding: 16px;
  border-radius: 12px;
  margin: 32px 16px 64px 16px;
}
@media (min-width: 992px) {
  .section-newsletter-booking .form-newsletter__notification {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.section-newsletter-booking b,
.section-newsletter-booking strong {
  font-weight: 700;
}

/***Page Gioi thieu***/
.section-breadcrumb {
  background-image: url(/catalog/view/theme/comnhalinh/image/background/blog-background-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  height: 300px;
  padding: 15px 0;
}
.section-breadcrumb.dark {
  --breadcrumb-title-text-transform: ;
}
.section-breadcrumb.dark:before {
  background-color: rgba(0, 0, 0, 0.5);
}
.section-breadcrumb:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.25);
}
.section-breadcrumb .container {
  position: relative;
  z-index: 1;
}
.section-breadcrumb .breadcrumb-title {
  color: var(--breadcrumb-title-color, #FAFAFA);
  font-size: var(--breadcrumb-title-font-size, 2.5rem);
  font-weight: var(--breadcrumb-title-font-weight, 700);
  text-transform: var(--breadcrumb-title-text-transform, uppercase);
  margin-bottom: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
  text-align: center;
  background-color: transparent;
  padding: 10px 0;
}
.breadcrumb--categoryProduct {
  --breadcrumb-title-color: #707070;
  --breadcrumb-title-font-size: 2rem;
  --breadcrumb-main-title-color: #262626;
  text-transform: uppercase;
  text-align: left;
}
.breadcrumb--categoryProduct a, .breadcrumb--categoryProduct span, .breadcrumb--categoryProduct strong {
  text-transform: uppercase;
}
.breadcrumb li {
  display: inline-block;
  color: var(--breadcrumb-title-color, #FAFAFA);
}
.breadcrumb li:not(:last-child):after {
  content: "/";
  padding: 0 5px;
  color: var(--breadcrumb-title-color, #FAFAFA);
}
.breadcrumb li a, .breadcrumb li span, .breadcrumb li strong {
  color: var(--breadcrumb-title-color, #FAFAFA);
  font-size: var(--breadcrumb-title-font-size, 1.6rem);
}
.breadcrumb li:last-child a, .breadcrumb li:last-child span, .breadcrumb li:last-child strong {
  color: var(--breadcrumb-main-title-color, #FAFAFA);
}

.section-introduction .introduction__contents .row {
  row-gap: 30px;
}
.section-introduction .introduction__contents:nth-child(even) {
  padding-top: 84px;
  padding-bottom: 84px;
  background-color: rgb(241, 253, 248);
}
@media (min-width: 576px) {
  .section-introduction .introduction__contents:nth-child(even) .introduction__right {
    order: -1;
  }
}
.section-introduction .introduction__contents--feature {
  background-image: url(/catalog/view/theme/comnhalinh/image/background/decor_dot-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media (max-width: 767.98px) {
  .section-introduction .introduction__right .heading__title {
    margin-bottom: 10px;
  }
}
.section-introduction .box-padding {
  padding: 0;
}
@media (min-width: 768px) {
  .section-introduction .box-padding {
    padding: 50px 0;
  }
}
.section-introduction .divider {
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 20px auto 20px;
  width: 100%;
  max-width: 30px;
  max-width: 100px;
  height: 5px;
  background-color: var(--introduction-divider-color, #00ae4d);
  margin-left: 0;
}
.section-introduction .video-fit {
  padding-top: 56.5%;
}
.section-introduction .mask-angled {
  clip-path: polygon(0 calc(0% + 30px), 100% 0, 100% 100%, 0 100%);
}
.section-introduction .mask-angled-right {
  clip-path: polygon(0 0, 100% calc(0% + 30px), 100% 100%, 0 100%);
}
.section-introduction .mask-arrow {
  clip-path: polygon(0 0, calc(50% - 30px) 0, 50% calc(0% + 30px), calc(50% + 30px) 0, 100% 0, 100% 100%, 0 100%);
}
.section-introduction .mask-angled-large {
  clip-path: polygon(0 calc(0% + 60px), 100% 0, 100% 100%, 0 100%);
}
.section-introduction .mask-angled-right-large {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}
.section-introduction .mask-arrow-large {
  clip-path: polygon(0 0, calc(50% - 60px) 0, 50% calc(0% + 60px), calc(50% + 60px) 0, 100% 0, 100% 100%, 0 100%);
}

/**Page Blog**/
.news-search .searchform {
  position: relative;
  margin-bottom: 25px;
}
.news-search .searchform__input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--news-search-input-border, #D9D9D9);
  padding: 0 10px;
  font-size: 14px;
  color: var(--news-search-input-color, #262626);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.news-search .searchform__input:focus {
  outline: none;
}
.news-search .searchform__submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--news-search-bg, #81d742);
  color: var(--news-search-color, #FAFAFA);
}

.post-right .divider {
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 20px auto 20px;
  width: 100%;
  max-width: 30px;
  margin-left: 0;
  margin-top: 10px;
}
.post-right .aside-title {
  font-weight: 700;
}
.post-right ul {
  background-color: #F6F6F6;
  padding: 16px;
}
.post-right .aside-news-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}
.post-right .aside-news-item .title {
  margin-bottom: 5px;
  color: var(--blog-item-title-color);
  position: relative;
  padding-left: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-right .aside-news-item .title:hover {
  color: var(--blog-item-title-hover-color, #52261B);
}
.post-right .aside-news-item .title .arrow {
  position: absolute;
  top: 8px;
  left: 0px;
  overflow: hidden;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #939598;
}
.post-right .aside-news-item + li {
  border-top: 1px solid #ececec;
}

.post-related__title {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: #52261B;
  font-family: "Chiron Sung HK", sans-serif;
}
.post-related .news_item .news_item__thumb,
.post-related .news_item .news_item__content {
  transition: transform 0.3s;
}
.post-related .news_item:hover .news_item__thumb {
  transform: translateY(-5px);
}
.post-related .news_item:hover .news_item__content {
  transform: translateY(-15px);
}

/*Page Product*/
.product-info {
  padding: 0 0 80px 0;
  font-family: "Chiron Sung HK", sans-serif;
  color: #52261B;
}
.product-info .product_title {
  font-size: var(--product-heading-title-font-size, 3.6rem);
  font-weight: 700;
  color: #52261B;
}
.product-info .product_button {
  margin-bottom: 15px;
}
.product-info .product_button .btn {
  text-transform: uppercase;
  color: var(--product-button-color, #FAFAFA);
}
.product-info .product_price {
  font-size: var(--product-price-font-size, 2.4rem);
  color: var(--product-price-color, #52261B);
  margin: 12px 0;
}
.product-info .product_price .price {
  font-weight: 700;
}
.product-info .product_price .price-old {
  opacity: 0.6;
  text-decoration: line-through;
}
.product-info .product_option .title {
  color: #52261B;
  font-weight: 700;
}
.product-info .product_option ul li {
  padding-top: 10px;
}
.product-info .product_option ul li label {
  margin-bottom: 0;
  display: inline;
}
.product-info .price {
  color: #52261B;
  font-weight: 700;
}
@media (max-width: 991px) {
  .product-info .gallery-thumbs {
    margin-bottom: 20px;
  }
}
.product-info .gallery-thumbs .swiper-slide {
  position: relative;
  display: block;
  border-radius: 5px;
  border: 1px solid #eee;
  height: 67px;
  padding: 3px;
}
@media (max-width: 1024px) {
  .product-info .gallery-thumbs .swiper-slide {
    height: 60px;
  }
}
@media (max-width: 991px) {
  .product-info .gallery-thumbs .swiper-slide {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .product-info .gallery-thumbs .swiper-slide {
    height: 128px;
  }
}
@media (max-width: 668px) {
  .product-info .gallery-thumbs .swiper-slide {
    height: 128px;
  }
}
@media (max-width: 569px) {
  .product-info .gallery-thumbs .swiper-slide {
    height: 173px;
  }
}
@media (max-width: 480px) {
  .product-info .gallery-thumbs .swiper-slide {
    height: 80px;
  }
}
@media (max-width: 376px) {
  .product-info .gallery-thumbs .swiper-slide {
    height: 80px;
  }
}
@media (max-width: 321px) {
  .product-info .gallery-thumbs .swiper-slide {
    height: 65px;
  }
}
.product-info .gallery-thumbs .swiper-slide img {
  border-radius: 5px;
  width: auto !important;
  max-height: 85%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.product-info .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--main_color);
}
.product-info .gallery-top {
  position: relative;
  display: block;
  border-radius: 5px;
  height: 386px;
  margin-bottom: 10px;
  border: 1px solid #E8E8E8;
}
@media (max-width: 1024px) {
  .product-info .gallery-top {
    height: 350px;
  }
}
@media (max-width: 991px) {
  .product-info .gallery-top {
    height: 330px;
  }
}
@media (max-width: 767px) {
  .product-info .gallery-top {
    height: 350px;
  }
}
@media (max-width: 668px) {
  .product-info .gallery-top {
    height: 350px;
  }
}
@media (max-width: 569px) {
  .product-info .gallery-top {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .product-info .gallery-top {
    height: 350px;
  }
}
@media (max-width: 376px) {
  .product-info .gallery-top {
    height: 350px;
  }
}
@media (max-width: 321px) {
  .product-info .gallery-top {
    height: 280px;
  }
}
.product-info .gallery-top img {
  border-radius: 5px;
  width: auto !important;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

html.with-fancybox body.hide-scrollbar {
  margin: 0 !important;
}

.product-info__content h1,
.product-info__content h2,
.product-info__content h3,
.product-info__content h4,
.product-info__content h5,
.product-info__content h6,
.product-info__content .h1,
.product-info__content .h2,
.product-info__content .h3,
.product-info__content .h4,
.product-info__content .h5,
.product-info__content .h6 {
  color: #52261B;
}

.product-related__list {
  margin-left: -15px;
  margin-right: -15px;
}
.product-related__title {
  border-top: 1px solid #ececec;
  font-size: var(--product-heading-title-font-size, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
  padding: 15px 0;
  text-transform: uppercase;
}
.product-related .swiper-container {
  --swiper-navigation-size: 2.4rem;
  --swiper-theme-color: #262626;
  font-weight: 800;
}
@media (max-width: 767.98px) {
  .product-related .swiper-container {
    --swiper-navigation-size: 1.6rem;
  }
}
.product-related .swiper-container:hover [class*=swiper-button-] {
  opacity: 0.7;
}
.product-related .swiper-container [class*=swiper-button-] {
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
  width: 36px;
  height: 100%;
  opacity: 0;
  background-color: #FAFAFA;
  box-shadow: 0 -150px 15px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, opacity 0.3s, background 0.3s, box-shadow 0.3s;
}
@media (max-width: 767.98px) {
  .product-related .swiper-container [class*=swiper-button-] {
    width: 20px;
    box-shadow: none;
    background-color: transparent;
    opacity: 0.8;
  }
}
.product-related .swiper-container [class*=swiper-button-]:hover {
  opacity: 1;
}
.product-related .swiper-container .swiper-button-next {
  left: auto;
  right: 0;
}
.product-related .swiper-container .swiper-button-prev {
  left: 0;
  right: auto;
}
.product-related .swiper-container {
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
.product-related .product_item {
  box-shadow: none;
}

/**Style Custom **/
body.product-productall .section-category,
body[class^=product-category] .section-category {
  background-color: transparent;
  padding-bottom: 0;
}
body.product-productall .section-category .heading__title,
body[class^=product-category] .section-category .heading__title {
  display: none;
}

#tab-description .description {
  padding: 20px;
}

.section-breadcrumb_navigation {
  padding-top: 32px;
  margin-bottom: 32px;
}
.section-breadcrumb_navigation .back-to-parent a {
  color: #52261B;
  gap: 4px;
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Chiron Sung HK", sans-serif;
  padding-top: 7px;
  padding-bottom: 7px;
}

.section-html-gia-dinh-com-nha-linh {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .section-html-gia-dinh-com-nha-linh {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.section-html-gia-dinh-com-nha-linh .heading__title {
  color: #FAFAFA;
  font-size: 2.8rem;
}
.section-html-gia-dinh-com-nha-linh .section-content {
  color: rgba(250, 250, 250, 0.8);
  max-width: 800px;
}
.section-html-gia-dinh-com-nha-linh .section-html-gia-dinh-com-nha-linh__description {
  margin-top: 32px;
  max-width: 800px;
  color: rgba(250, 250, 250, 0.8);
}
.section-html-gia-dinh-com-nha-linh .section-html-gia-dinh-com-nha-linh__description p:last-child {
  margin-bottom: 0;
}

.section-html-gia-dinh-com-nha-linh__list-image__no-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.section-html-gia-dinh-com-nha-linh__image-item {
  border-radius: 8px;
  overflow: hidden;
}
.section-html-gia-dinh-com-nha-linh__image-item .section-html-gia-dinh-com-nha-linh__image-inner {
  display: block;
  overflow: hidden;
  --ratio-width: 3;
  --ratio-height: 2;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
}
.section-html-gia-dinh-com-nha-linh__image-item .section-html-gia-dinh-com-nha-linh__image {
  border-radius: 8px;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.4s ease 0s;
}

.section-moc-thoi-gian {
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .section-moc-thoi-gian {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.section-moc-thoi-gian .heading__title {
  font-size: 2.8rem;
}
.section-moc-thoi-gian__list {
  max-width: 800px;
}
.section-moc-thoi-gian__list .item {
  display: flex;
  gap: 24px;
}
.section-moc-thoi-gian__list .item__image {
  margin-bottom: 32px;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  --ratio-width: 3;
  --ratio-height: 2;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(var(--ratio-height) / var(--ratio-width) * 100%);
}
.section-moc-thoi-gian__list .item__image:hover img {
  transform: scale(1.05);
}
.section-moc-thoi-gian__list .item__image img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.4s ease 0s;
}
.section-moc-thoi-gian__list .item__icon {
  font-size: 1.4rem;
  color: rgba(38, 38, 38, 0.8);
}
.section-moc-thoi-gian__list .item__title {
  font-family: "Chiron Sung HK", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #52261B;
}
.section-moc-thoi-gian__list .item__timeline {
  background: url(/catalog/view/theme/comnhalinh/image/timeline.png) no-repeat top/cover;
  width: 10px;
}

.section-contact .wrapper-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.section-contact .left-contact,
.section-contact .right-contact {
  flex: 1 1;
}
.section-contact .contact-title {
  font-family: "Chiron Sung HK", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #52261B;
  margin-bottom: 12px;
}
.section-contact .left-contact {
  background-color: #F9EDC8;
  border-radius: 12px;
  padding: 16px 16px 24px 16px;
}
.section-contact .right-contact {
  background-color: #F9EDC8;
  border-radius: 12px;
  padding: 16px;
}
.section-contact .right-contact .title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #52261B;
}
.section-contact .right-contact label {
  display: block;
  font-family: "Chiron Sung HK", sans-serif;
  margin-bottom: 4px;
  font-weight: bold;
}
.section-contact .right-contact .button-submit {
  margin-top: 32px;
}
.section-contact .right-contact .button-submit .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0;
}
.section-contact .contact-social__item {
  margin-bottom: 16px;
}
.section-contact .contact-social .center {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}
.section-contact .contact-social .center svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.common-home .section-product {
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .common-home .section-product {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

[class^=product-product-] .category_custom {
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  [class^=product-product-] .category_custom {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.information-contact .pt-32 {
  padding-top: 32px;
}
.information-contact .section-contact {
  padding-bottom: 64px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .information-contact .section-contact {
    padding-bottom: 80px;
  }
}

.bg-custom {
  background-image: url(/catalog/view/theme/comnhalinh/image/background.png);
  background-repeat: repeat;
  background-size: 300px;
}
@media (max-width: 991.98px) {
  .bg-custom {
    background-size: 200px;
  }
}

.section-newsletter-booking {
  padding-top: 32px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .section-newsletter-booking {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}/*# sourceMappingURL=stylesheet.css.map */