/**
 * NukeViet Content Management System
 * @version 4.x
 * @author VINADES.,JSC <contact@vinades.vn>
 * @copyright (C) 2009-2021 VINADES.,JSC. All rights reserved
 * @license GNU/GPL version 2 or any later version
 * @see https://github.com/nukeviet The NukeViet CMS GitHub project
 */

/* Các tùy chỉnh CSS của giao diện nên để vào đây */


/**
 * NukeViet Content Management System
 * @version 4.x
 * @author VINADES.,JSC <contact@vinades.vn>
 * @copyright (C) 2009-2021 VINADES.,JSC. All rights reserved
 * @license GNU/GPL version 2 or any later version
 * @see https://github.com/nukeviet The NukeViet CMS GitHub project
 */

/* Các tùy chỉnh CSS của giao diện nên để vào đây */
/* Header Extended Styles */
.main-header {}


.box_nhom_footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}



.bg-white {
  background-color: white;
}

.logo img {
  max-height: 100px;
  width: auto;
}

@media (min-width: 1200px) {
  .container_custom {
    width: 1500px;
    font-size: 16px;
  }
}

/* Menu chính */
.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.main-menu>li {
  display: inline-block;
  margin: 0;
  position: relative;
  padding: 20px 12px;
  text-align: left;
}

.metismenu .sidebar-nav ul li {
  position: relative;
}

.metismenu .sidebar-nav ul li .arrow {
  position: absolute;
  top: 8px;
  right: 6px;
  margin-top: 0;
  margin-right: 0;
  color: #1a3f5e;
}

#main_header_id nav>ul>li>ul>li {
  -ms-transform: translateY(13px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -ms-transition: transform .65s cubic-bezier(.2, .8, .25, 1), opacity .65s cubic-bezier(.2, .8, .25, 1);
  transition: transform .65s cubic-bezier(.2, .8, .25, 1), opacity .65s cubic-bezier(.2, .8, .25, 1);
  -webkit-transition: transform .65s cubic-bezier(.2, .8, .25, 1), opacity .65s cubic-bezier(.2, .8, .25, 1);
}

.main-menu>li>a {
  display: block;
  font-weight: 500;
  text-decoration: none;
  line-height: 20px;
  padding: 0px 0px;
  color: #1f1c17;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.main-menu>li.active>a,
.main-menu>li:hover>a {
  color: #1f1c17;
  border-bottom: 3px solid #1f1c17;
}

/* Dropdown thường */
.main-menu>li>.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 0;
  z-index: 999;
  margin: 0
}

.main-menu>li:hover>.dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.dropdown-menu li a div {
  display: flex;
  flex-direction: column;
}

.dropdown-menu li a strong {
  font-size: 13px;
}

.dropdown-menu li a span {
  font-size: 11px;
  color: #777;
}

.dropdown-menu li a:hover strong,
.dropdown-menu li a:hover span {
  color: #E48312;
}

/* Mega menu */
.main-menu>li.has-mega {
  position: static;
}

.main-menu>li.has-mega>.mega-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: -16%;
  background: #fff;
  padding: 20px 30px;
  z-index: 999;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  min-width: 900px;
  /* giới hạn nhỏ nhất để không bị gãy */
  max-width: 1100px;
  /* tối đa nếu nhiều cột */
}

.hidden-md {
  display: none;
}

.main-menu>li.has-mega:hover>.mega-menu {
  display: block !important;
  animation: fadeIn 0.2s ease;
}

/* Cột bên trong mega menu */
.mega-col {
  flex: 1 1 calc(25% - 20px);
  /* 4 cột chia đều, trừ khoảng gap */
  min-width: 250px;
  /* đảm bảo không gãy dòng sớm */
  box-sizing: border-box;
}



.mega-col:last-child {
  border-right: none;
}

.mega-col h4 {
  font-size: 14px;
  font-weight: bold;
  color: #1b4a7a;
  margin-bottom: 5px;
}

.mega-col .desc {
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}

.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-col ul li {
  margin-bottom: 10px;
}

.mega-col ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  color: #333;
}

.mega-col ul li a img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.mega-col ul li a div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mega-col ul li a strong {
  font-weight: 600;
}

.mega-col ul li a span {
  font-size: 11px;
  color: #777;
}

.mega-col ul li a:hover strong,
.mega-col ul li a:hover span {
  color: #E48312;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu .row {
  display: flex;
  margin: 0;
}

.mega-col {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .mega-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}



/* Hotline */
.hotline {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 12px
}

.logo_xs {
  display: none;
}

.hotline-icon {
  background: #E48312;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
}

.pulse-phone::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #E48312;
  border-radius: 50%;
  animation: pulse-ring 1.2s infinite;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hotline-text small {
  color: #1b4a7a;
  font-size: 12px;
}

.hotline-text a {
  color: #1b4a7a;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
}

.hotline-text a {
  letter-spacing: 1px;
}

.blog-header {
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 10px auto;
  /* tăng padding */
  box-sizing: border-box;
}

.blog-header h1 {
  font-size: 5rem;
  /* TO hơn */
  font-weight: bold;
  margin: 0;
  /*color: #222;*/
  color: #E48312;
}

.blog-header p {
  font-size: 1.8rem;
  /* TO hơn */
  color: #555;
  line-height: 1.6;
}

/* Danh mục category TO rõ hơn */
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.categories a {
  text-decoration: none;
  font-size: 1.8rem;
  /* tăng size chữ */
  color: #333;
}

.categories a.active {
  /*color: #E48312;*/
  color: #467569;
  font-weight: 700;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .blog-header {
    padding: 60px 15px;
  }

  .blog-header h1 {
    font-size: 2.8rem;
  }

  .blog-header p {
    font-size: 1.4rem;
  }



  .categories a {
    font-size: 1.2rem;
  }
}







/*tin tức*/
.latest-articles {
  max-width: 1320px;
  margin: 30px auto;
  padding: 0 20px;
}

.latest-articles h2 {
  font-size: 2.6rem;
  font-weight: bold;
  color: #111;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.article-card {
  display: flex;
  flex-direction: column;
  margin: 20px 5px;
  min-height: 365px;
  transition: 0.3s;
  border-radius: 10px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgb(0 0 0 / 40%);
}

/* Ảnh cân đẹp như mẫu */
.article-card .img-box {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f6f6;
}

.article-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-card .img-box img:hover {
  transform: scale(1.05);
}

/* Category */
.article-card .category {
  font-size: 1.05rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  /*margin-top: 15px;*/
  margin-bottom: 8px;
  display: block;
}

/* Tiêu đề 2 dòng max */
.article-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Chỉ 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-card a {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .article-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .article-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .latest-articles h2 {
    font-size: 2rem;
  }
}


.section-block {
  max-width: 1320px;
  margin: 30px auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header h2 {
  font-weight: bold;
  margin: 0;
  color: #E48312;
}

.section-header .view-all {
  font-size: 1rem;
  color: #6c2eb9;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.section-header .view-all span {
  margin-left: 5px;
  font-size: 1.3rem;
}

/* Card list */
.card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card .img-box {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f6f6;
}

.card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card .img-box img:hover {
  transform: scale(1.05);
}

.card .heading-title2 {
  font-weight: 600;
  color: #111;
  margin-top: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* cắt 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 45px;
}

/* Responsive */
@media (max-width: 992px) {
  .card-list {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .card-list {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: linear-gradient(135deg, #f9f9ff, #e7f8ff);
  padding: 80px;
  border-radius: 20px;
  max-width: 1400px;
  margin: 50px auto;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

/* LEFT */
.left-info h2 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.steps .icon {
  font-size: 1.6rem;
  margin-right: 15px;
}

.steps strong {
  display: block;
  font-weight: 600;
}

.steps p {
  margin: 5px 0 0;
  font-size: 1.25rem;
  color: #555;
}

.stats {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stats div strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
}

.stats div span {
  font-size: 1.25rem;
  color: #555;
}

.trusted-by p {
  font-weight: 600;
  margin-bottom: 10px;
}

.trusted-by .logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trusted-by img {
  object-fit: cover;
}

/* RIGHT FORM */
.right-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.right-form h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.right-form p {
  color: #666;
  margin-bottom: 30px;
}

form label {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
}

.close-menu {
  display: none;
}

form input,
form textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  font-size: 1.5rem;
  outline: none;
}

form textarea {
  resize: none;
}

.reason-contact {
  margin-top: 20px;
}

.reason-contact label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #666;
}

.reason-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Ẩn radio gốc */
.reason-options input[type="radio"] {
  display: none;
}

/* Style label như button */
.reason-options label {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 1.35rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reason-options label:hover {
  border-color: #aaa;
}

.reason-options input[type="radio"]:checked+label {
  background: #555;
  color: #fff;
  border-color: #555;
}

.btn-submit {
  background: #6c2eb9;
  color: #fff;
  padding: 12px;
  margin-top: 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Arial, sans-serif;
  padding: 10px 20px;
  gap: 20px;
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  padding: 8px 12px;
  background: transparent;
}


.search-box i {
  color: #333;
}

.hotline,
.zalo {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-size: 13px;
}

.hotline strong,
.zalo strong {
  color: #2196F3;
  font-size: 14px;
}

.icons i {
  /*margin-left: 22px;*/
  font-size: 18px;
  position: relative;
}

/* Ẩn mục Zalo */
.zalo.hidden {
  display: none !important;
}

.dropdown-box .dd-list .ico i {
  margin-left: 0px !important;
  font-size: 14px;
}


/* RESPONSIVE */

@media (max-width: 1024px) {
  .contact-section {
    display: block;
    padding: 50px 30px;
  }

  .left-info h2 {
    font-size: 2rem;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }

  .trusted-by {
    text-align: center;
  }

  .trusted-by .logos {
    justify-content: center;
  }
}


@media (max-width: 600px) {
  .contact-section {
    display: block;
    padding: 30px 15px;
    border-radius: 10px;
  }

  .left-info h2 {
    font-size: 1.6rem;
  }

  .right-form {
    padding: 25px 20px;
  }

  .reason-options label {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  form input,
  form textarea {
    font-size: 0.9rem;
  }
}

.article-card .img-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.article-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card .card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
}

/* Ô thời gian góc trên trái */
.article-card .date-box,
.card-img .date-box,
.card .img-box .date-box {
  position: absolute;
  z-index: 99;
  top: 8px;
  left: 8px;
  background: #00000075;
  color: #fff;
  font-size: 1.25rem;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-img .view_icon,
.article-card .view_icon,
.section-block .view_icon {
  position: absolute;
  z-index: 99;
  top: 8px;
  right: 8px;
  background: #00000075;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  /*border: 1px solid #ddd;*/
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.section-block {
  max-width: 1320px;
  margin: 30px auto;
  padding: 0 20px;
}


.section-header .view-all2 {
  font-size: 1.5rem;
  text-decoration: none;
}

.card-list .card {
  display: flex;
  flex-direction: column;
}

.card .img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
}

.card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ô thời gian */



.metismenu .sidebar {
  position: relative;
}

.mobile-menu-toggle-btn {
  cursor: pointer;
  background: none;
  text-align: center;
  font-size: 30px;
  display: none;
  z-index: 999;
  color: #000;
}

.mobile-menu-toggle-btn .fa {
  font-size: 22px;
}

.mobile-menu-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.mobile-menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  visibility: hidden;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
}

.mobile-menu-wrap .menu {
  background-color: #fefbf4;
  min-height: 100vh;
  overflow: auto;
  position: relative;
}

.header-menu {
  background: #fefbf4;
  color: #000;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-wrap .logo {
  text-align: center;
  padding: 0 10px;
}

.logo {
  display: block;
}

.mobile-menu-wrap .logo img {
  height: 100px;
  width: auto;
}

.header-top .dropdown {
  display: inline-block;
}

.header-menu .dropdown {
  flex-basis: 30px;
}

.mobile-menu-wrap.animate {
  transition: all 0.35s ease;
}

.header-right {
  display: inline-block;
  align-items: center;
  justify-content: flex-end;
  gap: 45px;
}

.logo {
  width: 100% !important;
}

.nav_menu_chinh {
  text-align: left;
}

.nav_menu_right {
  text-align: right;
}

/*.header-right .icons>a, .header-right .icons>.user-dropdown, .header-right .icons>.header_language {
  padding: 15px 0 0;
}*/

.header-right .icons .header_language {
  margin-left: -15px;
}

.hotline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotline-icon i {
  font-size: 18px;
}

.hotline-text small {
  font-size: 11px;
  color: #555;
}

.hotline-text a {
  color: #2196F3;
  text-decoration: none;
  font-weight: bold;
}

.hotline-text span {
  color: #2196F3;
  text-decoration: none;
  font-weight: bold;
}

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

.icons .ico i {
  color: #E48312;
}

.icons i {
  font-size: 18px;
  position: relative;
  color: #1f1c17;
}

.search-trigger i {
  font-size: 16px;
  position: relative;
  color: #1f1c17;
  padding: 0 15px;
}

.text-white {
  color: #fff
}

.icons a {
  padding: 20px 12px;
}

.icons .badge {
  display: block;
  font-weight: 500;
  text-decoration: none;
  line-height: 20px;
  padding: 0px 0px;
  color: #1f1c17;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.icons .show_cart .badge {
  color: #9b0c2c;
  font-family: Clarendon, serif;
  font-size: 22px;
  cursor: pointer;
}

.owl-slider .img-slide {
  position: relative;
  width: 100%;
  height: 500px;
}

.owl-slider .img-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.owl-carousel .owl-item a {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}*/

.owl-slider .info {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.owl-slider .info-box {
  position: relative;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.owl-slider .title1 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  width: 70%;
  text-transform: capitalize;
  text-shadow:
  1px 0 0 #000, -1px 0 0 #000,
  0 1px 0 #000, 0 -1px 0 #000,
  1px 1px 0 #000, -1px 1px 0 #000,
  1px -1px 0 #000, -1px -1px 0 #000;
}

.owl-slider .title1 {
  width: 100%;
  text-align: center;
  font-weight: 400;
}

.owl-slider .des {
  font-size: 16px;
  color: #fff;
  width: 50%;
}

.scroll-box {
  max-height: 540px !important;
}

/* ========= RESPONSIVE CONTACT-SECTION ========= */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 25px;
    height: auto !important;
    min-height: auto !important;
  }

  .left-info {
    text-align: center;
  }

  .left-info h2 {
    font-size: 1.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  /* Steps căn giữa, icon và text thẳng hàng */
  .steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px !important;
  }

  .steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    text-align: left;
  }

  .steps li img.icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    object-fit: contain;
  }

  .steps li strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .steps li p {
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0;
  }

  /* Stats căn giữa */
  .stats {
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin: 20px 0 !important;
  }

  .stats div strong {
    font-size: 2rem;
  }

  .stats div span {
    display: block;
    font-size: 1rem;
  }

  /* Trusted by */
  .trusted-by {
    text-align: center;
    margin-bottom: 10px !important;
  }

  .trusted-by .logos {
    justify-content: center;
    gap: 10px;
    height: auto !important;
  }

  .trusted-by .logos img {
    height: auto !important;
    max-height: 60px;
    object-fit: contain;
  }

  /* Right form full width */
  .right-form {
    padding: 25px 20px;
    margin-top: 10px;
  }

  .right-form h3 {
    font-size: 2rem;
    text-align: center;
  }

  .right-form p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
  }

  form input,
  form textarea {
    font-size: 1.1rem;
  }

  .btn-submit {
    font-size: 1.2rem;
    padding: 12px;
    width: 100%;
  }
}

/* Mobile nhỏ hơn 480px */
@media (max-width: 480px) {
  .contact-section {
    padding: 25px 15px;
    gap: 20px;
  }

  .left-info h2 {
    font-size: 1.6rem;
  }

  .steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .steps li img.icon {
    width: 40px;
    height: 40px;
  }

  .steps li strong {
    font-size: 1.2rem;
  }

  .steps li p {
    font-size: 0.95rem;
  }

  .stats div strong {
    font-size: 1.6rem;
  }

  .stats div span {
    font-size: 0.95rem;
  }

  .right-form h3 {
    font-size: 1.8rem;
  }

  .btn-submit {
    font-size: 1.1rem;
    padding: 10px;
  }
}

.mo_menu_mobile {
  display: none;
}

.safety-container .section-title {
  justify-content: flex-start !important;
}

#download {
  min-height: 500px;
}

.btn-banner-top {
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 25px;
}

.box_iframe {
  padding: 10px;
  border-radius: 5px;
  border: solid 1px #007378;
  margin: 10px 0px;
  height: auto;
  position: relative;
}

.ten_iframe {
  /*margin-bottom: 10px;*/
  font-weight: 600;
}

@media (max-width: 991.98px) {

  .box_nhom_footer {
    gap: 15px;
  }

  .car-item-detail {
    height: 240px !important;
  }

  #icon_user_top {
    cursor: none;
  }

  .hero-title {
    width: 300px;
  }

  .agile-metrics {
    display: flex !important;
  }



  .mo_menu_mobile {
    display: block;
  }

  .title_header_banner {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-right .icons>a,
  .header-right .icons>.user-dropdown,
  .header-right .icons>.header_language {
    padding: 0;
  }

  .mobile-menu-wrap .metismenu {
    margin-top: 15px;
  }

  .ps-hero__inner {
    font-size: 30px !important;
  }

  .product-detail-section .tabs {
    flex-wrap: wrap;
    gap: 10px !important;
  }

  .owl-slider .img-slide img {
    object-fit: fill;
  }

  .btn-banner-top {
    color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .p-txs-30 {
    padding-top: 30px !important;
  }

  .p-bxs-30 {
    padding-bottom: 30px !important;
  }

  .p-txs-40 {
    padding-top: 40px !important;
  }

  .p-bxs-40 {
    padding-bottom: 40px !important;
  }

  .contact_right_form {
    padding: 40px 20px !important;
  }

  .feature-item .icon {
    width: 75px !important;
    height: 56px !important;
  }

  .section-tag {
    margin-bottom: 6px !important;
  }

  .tab-content {
    max-height: 100% !important;
  }

  .tag-red {
    margin-bottom: 6px !important;
  }

  .features {
    grid-template-columns: repeat(1, 1fr) !important;
    padding: 0 10px 10px !important;
    margin: 0 !important;
    gap: 5px !important;
  }

  .feature-item2 img {
    width: 24px !important;
    height: 24px !important;
  }

  .safety-section {
    padding-bottom: 0 !important
  }

  .contact-text h3 {
    font-size: 24px !important;
  }

  .section-header2 h2 {
    font-size: 24px !important;
  }

  .section-header2 p {
    margin-bottom: 20px !important;
  }

  .tabs-left>li>a {
    border-radius: 10px !important;
  }

  .stats-grid {
    gap: 0 !important;
  }

  .stats-section {
    padding: 30px 0 !important;
  }

  .stat-item h3 {
    font-size: 22px !important;
  }

  .section-wrapper .flex_gap_20px {
    flex-direction: column;
    gap: 0 !important;
  }

  .section-wrapper .section-title2 {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .hero-inner {
    top: 20px !important;
  }

  .intro-section {
    padding-bottom: 20px !important;
  }

  /*.product-section, .services-section, .testimonial-section, .news-section, .team-section, #main_header_id {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }*/
  .intro-left {
    padding-left: 0 !important;
  }

  .owl-slider .title1 {
    font-size: 24px;
  }

  .video-thumb {
    margin-top: 0 !important;
  }

  .features-right .feature-item {
    padding: 10px 20px 0 0 !important;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
  }

  .checklist {
    margin-bottom: 0 !important;
  }

  .features-right {
    gap: 0 !important;
    padding-bottom: 0px !important;
  }

  .owl-slider .img-slide {
    height: 200px;
  }

  .contact-form {
    width: 100%;
  }

  .intro_left_about {
    margin-bottom: 65px;
  }

  .safety-content .flex_gap_20px {
    flex-direction: column;
  }

  .safety-container {
    border-radius: 0 !important;
  }

  .self-intro-pic-block {
    display: none;
    left: 20px !important;
    max-width: 125px !important;
    padding: 10px !important;
  }

  .icon-content h3 {
    font-size: 15px !important;
  }

  .img-bottom {
    width: 275px !important;
    height: 275px !important;
    margin-left: 125px !important;
  }

  .nav.open {
    left: 0;
  }

  .stats-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-wrapper {
    display: flex !important;
    flex-direction: column;
  }

  .contact_right_form {
    margin-left: 0 !important;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .close-menu {
    display: block;
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000;
    z-index: 1201;
  }

  .logo_xs {
    display: flex;
    align-items: center;
    font-weight: bold;
    justify-content: center;
    flex-direction: column;
  }

  #mobileMenu .logo_xs .actions {
    display: block;
    margin: 20px;
  }

  .desktop-hotline {
    display: none;
    ;
  }

  .main-menu>li {
    border-bottom: 1px solid #eee;
  }

  .main-menu>li>a {
    padding: 15px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-menu>li>.dropdown-menu,
  .main-menu>li>.mega-menu {
    display: none !important;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .main-menu>li.active_collaspe>.dropdown-menu,
  .main-menu>li.active_collaspe>.mega-menu {
    display: block !important;
  }

  .mega-col {
    border: none;
    padding: 10px 15px;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .mega-menu .row {
    display: block;
  }

  .mega-col h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 767px) {
  .hidden-md {
    display: block;
  }

  .hidden-xs {
    display: none !important;
  }

  .mobile-menu-toggle-btn {
    display: inline-block;
    width: 100
  }

  .open-menu .mobile-menu-bg {
    display: block;
  }

  .mobile-menu-wrap {
    max-width: 100%;
    overflow-y: auto;
  }

  .open-menu .mobile-menu-wrap {
    visibility: visible;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }

  .years {
    display: none;
  }
}

.intro-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 100px 0 20px;
  font-family: Arial, sans-serif;
  background-color: white;
}

.product-section {
  /*background: linear-gradient(180deg, #FFFDE7 0%, #fcdcdd 100%);*/
  /*background: linear-gradient(180deg, #FFFDE7 0%, #FFFFFF 100%);*/

}

.services-section {
  background-color: white;
  /*background: linear-gradient(180deg, #FFFDE7 0%, #FFFFFF 100%);*/
}

.product-section,
.services-section,
.safety-section,
.team-section {
  padding: 20px 0 20px;
}

.intro-left {
  position: relative;
  width: 100%;
  padding-left: 100px;
}

.years {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: sideways-lr;
  text-align: center;
}

.years strong {
  font-size: 48px;
  color: #E48312;
  font-weight: bold;
  line-height: 1;
}

.years span {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  letter-spacing: 1px;
}

.images {
  position: relative;
}

.img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
  ;
  border-radius: 12px;
  z-index: 2;
  position: relative;
}

.img-bottom {
  width: 350px;
  height: 310px;
  object-fit: cover;
  margin-top: -100px;
  margin-left: 98px;
  border-radius: 12px;
  z-index: 1;
  position: relative;
}

.intro-right {
  max-width: 600px;
}





.intro-right p {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 15px 0;
  gap: 10px;
}

.features li {
  font-size: 14px;
}

.features i {
  color: #e02020;
  margin-right: 6px;
}

.action {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-red {
  background: #e02020;
  color: #fff !important;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-red:hover {
  background: #E48312;
}

.hotline-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-icon {
  background: #e02020;
  color: white;
  border-radius: 50%;
  padding: 10px;
  font-size: 16px;
}

.hotline-text small {
  font-size: 12px;
  color: #888;
}

.hotline-text strong {
  color: #333;
  font-size: 15px;
}


.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.services-header-left {
  max-width: 45%;
}

.services-header-right {
  max-width: 50%;
}

.section-tag {
  display: inline-block;
  background: red;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}


.section-title {
  font-weight: bold;
  color: #222;
  line-height: 1.4;
  display: flex;
  align-items: center;
  /*padding-bottom: 5px;*/
  justify-content: center;
}

.product-section .home-h2-title {
  margin-bottom: 20px;
}

.product-section .home-h2-title:after,
.section-header3 h2:after,
.doi_tac h2:after,
.success-stories h2:after {
  content: "";
  display: table;
  clear: both;
  background: url(https://websango.vidoweb.vn/wp-content/uploads/2019/08/line-1.png);
  width: 100%;
  height: 20px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  padding-top: 0;
}

.section-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.custom-next,
.custom-prev {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.1;
}

.new_caro_2:hover .custom-prev,
.new_caro_2:hover .custom-next,
.container_banner:hover .custom-next,
.container_banner:hover .custom-prev {
  opacity: 0.7;
}

.new_caro_2 .custom-prev:hover,
.new_caro_2 .custom-next:hover,
.container_banner .custom-prev:hover,
.container_banner .custom-next:hover {
  /*background: rgb(194 173 173 / 60%);*/
  opacity: 1;
}

.arrow-btn-alt {
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.arrow-btn-alt:hover {
  background: #eee;
}

.card {
  background: transparent;
  border-radius: 2px;
  overflow: hidden;
  /*box-shadow: 0px 5px 5px -2px rgba(0, 0, 0, 0.3);
  border: 2px solid #F2F2F2;*/
  /*border: 1px solid #c3c0c0;*/
  /*margin-bottom: 20px;*/
  transition: 0.3s;
}

.card:hover .card-img img {
  transform: scale(1.2);
  /*transform: translateY(-5px);
  box-shadow: 0 0 10px rgb(0 0 0 / 40%);*/
}

.card-img img {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: transform .45s ease;
  will-change: transform;
}

.agile-metric-num,
.agile-right-num {

  color: #E48312 !important;
}

.card-content {
  padding: 5px 0;
  text-align: left;
  /*background: #f6f6f6;*/
}

.card-label {
  font-size: 10px;
  color: #E48312;
  /*font-weight: bold;*/
  background: rgb(247 222 222);
  padding: 5px;
  border-radius: 5px;
  text-transform: uppercase;
}

.card-time {
  font-size: 14px;
  color: #02603d;
  /*font-weight: bold;*/
  /*background: rgb(247 222 222);*/
  /*padding: 5px 12px;*/
  border-radius: 5px;
  text-transform: uppercase;
  margin: 10px 0;
}

.card-content h3 {
  margin: 5px 0 15px;
  color: #222;
}

.card-content h3 a {
  margin: 10px 0;
  color: #999 !important;
}

.card-content:hover h3 a {
  color: #E48312 !important;
}

.card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.owl-carousel .owl-item .owl-lazy {
  transition: opacity .4s ease, transform .45s ease !important;
}

.btn-link {
  color: #111;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

/* Owl nav default style */

/* Responsive */
@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
  }

  .services-header-left,
  .services-header-right {
    max-width: 100%;
  }

  .section-title {
    font-size: 24px;
  }

  .section-desc {
    font-size: 14px;
  }
}


.section-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 10px 0 20px;
}

.section-left {
  flex: 1;
  min-width: 300px;
}

.tag-red {
  background: red;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}



.section-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.heading-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.nav-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.arrow-btn-alt {
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.arrow-btn-alt:hover {
  background: #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading {
    gap: 20px !important;
  }

  .thanh_tuu_section h2,
  .lien_he_section h2,
  .intro-right h2 {
    font-size: 30px !important;
  }

  .section-heading {
    flex-direction: column;
  }

  .heading-title {
    font-size: 24px;
  }

  .heading-desc {
    font-size: 14px;
  }
}





/*brecum*/
.mz-breadcrumb-section {
  background: #fff;
  font-size: 13px;
  line-height: 19px;
  position: relative;
  z-index: 10;
}



.mz-breadcrumb-block {
  padding: 16px 0;
}

.mz-breadcrumb-block__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
  padding-left: 0px;
}

.mz-breadcrumb-block__item {
  align-items: center;
  display: flex;
  margin-right: 8px;
  position: relative;
}

.mz-breadcrumb-block__item:first-child .mz-breadcrumb-block__item-inner {
  padding-left: 0;
}

.cart-fragment form {
  flex-direction: column;
}

.mz-breadcrumb-block__item-inner {
  color: #999 !important;
  max-width: 500px;
  padding: 0 8px;
}

.mz-breadcrumb-block__item {
  align-items: center;
  display: flex;
  margin-right: 8px;
  position: relative;
}

.mz-breadcrumb-block__item-inner {
  color: #2e2e2e;
  max-width: 500px;
  padding: 0 8px;
}



.mz-breadcrumb-block__item:after {
  border-right: 1px solid #cfd5de;
  content: "";
  height: 20px;
  margin-top: -10px;
  position: absolute;
  right: -4px;
  top: 50%;
  transform: rotate(20deg);
  width: 1px;
  z-index: 2;
}

.mz-breadcrumb-block__item {
  align-items: center;
  display: flex;
  margin-right: 8px;
  position: relative;
}

.mz-breadcrumb-block__item:last-child .mz-breadcrumb-block__item-inner {
  color: #000;
  max-width: 700px;
}

.mz-breadcrumb-block__item-inner {
  color: #2e2e2e;
  max-width: 500px;
  padding: 0 8px;
}

.mz-breadcrumb-block__item-title {
  overflow: hidden;
  text-overflow: ellipsis;
}


.item_title_page_title:after {
  border-right: none !important;
}





/*--*/



.product-info {
  /*display: flex;
  gap: 30px;*/
  font-family: Arial, sans-serif;
}




.product-detail-info-row {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
  justify-content: space-between;
}

.product-detail-sale-at {
  background: #000;
  border-radius: 15px 10px 10px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  padding: 5px 12px;
}

.product-detail-rating {
  color: #333;
  font-size: 16px;
  margin-left: auto;
}



.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}




.quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.quantity input {
  width: 40px;
  text-align: center;
  padding: 4px;
}

.quantity button {
  padding: 6px 10px;
}



.seller {
  font-size: 14px;
  margin-bottom: 20px;
}

.support-box {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
}

.support-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-box ul li {
  margin: 6px 0;
}

.rating-box {
  font-size: 14px;
}

.main-score {
  font-size: 18px;
  margin-bottom: 10px;
}

.score {
  font-size: 32px;
  font-weight: bold;
  margin-right: 5px;
}

.rating-detail div {
  background: #f3f3f3;
  margin: 5px 0;
  padding: 6px 10px;
  border-radius: 4px;
}




















.product-detail-section .product-detail-container {
  padding: 15px;
  width: 50%;
  position: relative;
  background-color: white;
}



.product-detail-section .gallery-nav {
  display: flex;
  justify-content: center;
}


.product-detail-brand {
  font-size: 12px;
  line-height: 18px;
}


.product-detail-section .product-detail-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 0;
}



.product-detail-section .benefit-box {
  background: #f3f5f7;
  border-radius: 10px;
  font-size: 12px;
  line-height: 18px;
  width: 100%;
}

.product-detail-section .benefit-segment {
  padding: 12px 8px;
  position: relative;
}

.product-detail-section .benefit-row {
  color: #000;
  display: block;
  padding: 4px 4px 4px 24px;
  position: relative;
  transition: .3s;
}



.product-detail-section .benefit-row:before {
  background: #505f77;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 12px;
  position: absolute;
  top: 12px;
  width: 4px;
}

.mz-font-bold {
  font-weight: 700 !important;
}

.product-detail-section .f23-product-detail-info-row {
  align-items: baseline;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-detail-section .f23-product-detail-price-tab {
  grid-gap: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-detail-section .f23-product-detail-price-tab-item {
  align-items: center;
  border-radius: 10px;
  display: flex;
  font-weight: 700;
  padding: 10px 24px;
}

.product-detail-section .f23-product-detail-price-tab-input {
  accent-color: #000;
  margin-right: 8px;
  pointer-events: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

.product-detail-section .f23-product-detail-price-tab-item.is-active {
  background: #f3f5f7;
  opacity: 1;
}


.product-detail-section .price-segment.is-show {
  display: block;
}

.product-detail-section .f23-product-detail-price-info {
  width: 100%;
}

.product-detail-section .price-segment__current-price-inner {
  align-items: flex-end;
  display: flex;
  width: 100%;
}

.product-detail-section .price-segment__old-price-panel {
  align-items: center;
  color: #454545;
  display: flex;
  margin-top: 4px;
}

.product-detail-section .price-segment .old-price {
  font-family: Roboto, Helvetica Neue, sans-serif;
  text-decoration: line-through;
}

.mz-mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.product-detail-section .price-segment .current-price-and-membership {
  align-items: flex-end;
  display: flex;
}

.product-detail-section .price-segment .current-price {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-right: 12px;
}



.product-detail-section .cart-segment {
  align-items: center;
  display: flex;
  margin-bottom: 16px;
}

.product-detail-section .cart-segment .mz-btn,
.product-detail-section .cart-segment .mz-grd-btn,
.product-detail-section .cart-segment .quantity-control-group {
  margin-right: 8px;
}

.product-detail-section .quantity-control-group {
  display: flex;
  height: 40px;
  width: 120px;
}

.product-detail-section .quantity-control-group .down-btn.is-disabled,
.product-detail-section .quantity-control-group .up-btn.is-disabled {
  background: rgba(234, 237, 241, .5);
  color: #ccd2dc;
  cursor: not-allowed;
  pointer-events: none;
}

.product-detail-section .quantity-control-group .down-btn,
.product-detail-section .quantity-control-group .up-btn {
  align-items: center;
  background: rgba(46, 46, 46, .1);
  border: 0;
  border-radius: 50%;
  color: #2e2e2e;
  cursor: pointer;
  display: flex;
  font-size: 22px;
  height: 40px;
  justify-content: center;
  line-height: 33px;
  line-height: 1;
  transition: .3s;
  width: 40px;
}

.product-detail-section .quantity-control-group .quantity-input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ccd2dc;
  font-size: 16px;
  height: 40px;
  margin: 0 4px;
  text-align: center !important;
  width: 32px;
}

.product-detail-section .quantity-control-group .down-btn,
.product-detail-section .quantity-control-group .up-btn {
  align-items: center;
  background: rgba(46, 46, 46, .1);
  border: 0;
  border-radius: 50%;
  color: #2e2e2e;
  cursor: pointer;
  display: flex;
  font-size: 22px;
  height: 40px;
  justify-content: center;
  line-height: 33px;
  line-height: 1;
  transition: .3s;
  width: 40px;
}


.css_addcard {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.css_addcard .btn-order-buy {
  width: 100%;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.product-detail-section .css_addcard .add-cart-btn {
  background: #000;
  border: unset;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  outline: unset !important;
  padding: 10px 0;
  text-align: center;
  transition: .3s;
  width: 100%;
}






.product-detail-section .f23-product-detail-shipping-time.is-not-special {
  background: unset;
  margin-bottom: 8px;
  padding: unset;
}

.product-detail-section .f23-product-detail-shipping-time.is-active {
  color: #000;
}

.product-detail-section .f23-product-detail-shipping-time {
  align-items: center;
  background: #f3f5f7;
  border-radius: 10px;
  color: #ccd2dc;
  cursor: pointer;
  display: flex;
  padding: 10px;
}

.product-detail-section .f23-product-detail-shipping-time.is-not-special .f23-product-detail-shipping-time-input {
  background: unset;
  color: #000;
  display: none;
}

.product-detail-section .f23-product-detail-shipping-time-input {
  accent-color: #000;
  margin-right: 8px;
  opacity: .5;
  pointer-events: none;
  transform: translateY(2px);
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

.product-detail-section .f23-product-detail-shipping-time-text {
  font-weight: 700;
}

.product-detail-section .f23-product-detail-shipping-benefit {
  color: #000;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  line-height: 18px;
  margin-top: 10px;
}

.product-detail-section .f23-product-detail-shipping-benefit a {
  text-decoration: underline;
}


.our-feature-segment {
  position: relative;
  margin-bottom: 16px;
  padding-top: 40px;
  border-bottom: 1px solid #ccd2dc;
}

.ds_sp .our-feature-segment {
  margin-bottom: unset !important;
  padding-top: unset !important;
}


.our-feature-segment img {
  background-color: #f3f5f7;
}



.our-feature-segment .feature-list {
  background: #f3f5f7;
  border: unset;
  border: 1px solid #eaedf1;
  border-bottom: unset;
  border-top: unset;
  display: flex;
}



.our-feature-segment .feature-item {
  box-shadow: inset -1px 0 0 0 #eaedf1;
  color: #000;
  flex: 1 1;
  position: relative;
}


.our-feature-segment .feature-item:after {
  bottom: -2px;
  color: #ccd2dc;
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 10px;
  font-weight: 300;
  position: absolute;
  right: 4px;
  transform: rotate(45deg);
}


.our-feature-segment .feature-item-inner {
  align-items: center;
  border-radius: 8px;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  padding: 10px 12px;
}

.our-feature-segment .feature-item-icon {
  color: #2e2e2e;
  flex: 0 0 45px;
  margin-right: 8px;
}

.our-feature-segment .feature-item-content {
  font-size: 12px;
  line-height: 18px;
}







.product-specification-section .specification-item-table td,
.product-specification-section .specification-item-table th {
  border: none !important;
}


.product-info-wrap-extend-button {
  background: #fff;
  background: linear-gradient(0deg, #fff, #fff 50%, hsla(0, 0%, 100%, 0));
  cursor: pointer;
  font-style: italic;
  padding: 5px 0;
  text-align: center;
  transform: translateY(-15px);
}





.merchant-info-section .section-head {
  font-size: 13px;
  line-height: 19px;
}

.merchant-info-section.has-box {
  padding: 0;
}

.mz-basic-sidebox.has-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.merchant-info-section {
  overflow: hidden;
  position: relative;
}






.mz-rating--primary .mz-rating__rating-star-field,
.mz-rating--warning .mz-rating__rating-star-field {
  color: #2e2e2e;
}

.mz-rating--sm .mz-rating__rating-star-field {
  font-size: 12px;
}

.mz-rating__rating-star-field {
  color: #2e2e2e;
  font-size: 16px;
  line-height: 1;
}







.guide-side-section .mz-basic-sidebox__head {
  margin-bottom: 0;
}

.mz-basic-sidebox__head {
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  line-height: 24px;
  margin-bottom: 12px;
}

.mz-basic-sidebox__title {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.guide-side-section .guide-item {
  align-items: center;
  display: flex;
  padding: 4px 0;
  color: #000;
}

.guide-side-section .guide-item-icon {
  font-size: 6px;
  margin-right: 12px;
  transform: translateY(2px);
}

.product-detail-page .mz-layout__sticky.sticky-at-0 {
  top: 16px;
}

.product-detail-page .mz-layout__sticky {
  top: 96px;
}

.mz-layout__sticky.sticky-at-0 {
  top: 16px;
}

.mz-layout__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 160px;
}

.our-feature-side-section.has-box {
  margin: 0;
  max-height: 0;
  opacity: 0;
  padding: 0 16px;
}


.our-feature-side-section {
  transition: .3s;
}

.mz-basic-sidebox {
  margin-bottom: 10px;
  position: relative;
}

.our-feature-side-section .feature-list {
  margin: -8px 0;
}

.our-feature-side-section .feature-item-inner {
  align-items: center;
  color: #505f77;
  cursor: pointer;
  display: flex;
  padding: 8px 0;
  position: relative;
}

.our-feature-side-section .feature-item-des {
  background: #f3f5f7;
  color: #505f77;
  font-size: 12px;
  line-height: 18px;
  margin: 0 -16px;
  max-height: 0;
  opacity: 0;
  padding: 0 16px;
  transition: .3s;
}

.our-feature-side-section .feature-item-icon {
  font-size: 20px;
  margin-right: 12px;
}

.our-feature-side-section .feature-item-content {
  font-size: 12px;
  line-height: 18px;
}

.our-feature-side-section .feature-item-dropdown-icon {
  align-items: center;
  color: #000;
  display: flex;
  font-size: 10px;
  height: 16px;
  justify-content: center;
  margin-left: 8px;
  width: 16px;
}




.rating-side-section .mz-basic-sidebox__head {
  font-weight: 700;
}

.mz-basic-sidebox__head {
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  line-height: 24px;
  margin-bottom: 12px;
}

.rating-side-section .mz-rating-panel {
  min-width: unset;
}

.feedback-summary-rating-star-segment .mz-rating {
  cursor: pointer;
}

.mz-rating--md .mz-rating__rating-number-col {
  line-height: 1;
  margin-right: 8px;
}

.mz-rating__rating-number-col {
  margin-right: 8px;
}

.rating-side-section .mz-rating__rating-number {
  font-size: 50px;
}

.mz-rating-panel .mz-rating__rating-number {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 56px;
  top: 0;
}

.mz-rating__rating-number {
  color: #303846;
  font-weight: 600;
  line-height: 1;
  position: relative;
  top: 1px;
}

.rating-side-section .mz-rating__rating-star-field {
  font-size: 16px;
}

.guide-side-list ul {
  list-style: disc !important;
  padding-left: 16px !important;
}







.product-info-seo {
  background-color: white;
  padding: 15px;
  margin: 20px auto;
  border-radius: 8px;
}






.product-detail .gallery-nav .item.active {
  border: 3px solid black;
}

.heading-title2 {
  font-weight: bold;
  color: #222;
  line-height: 1.4;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* 👈 chỉ 1 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.heading-desc2 {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 👈 tối đa 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-img {
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-img img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  /* 👈 giúp ảnh tự căn đều, không méo */
  display: block;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}


/*.wraper_home .stats-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}*/


.stat-item img {
  width: 60px;
  margin-bottom: 15px;
}

.stat-item h3 {
  font-size: 32px;
  margin: 0;
  font-weight: bold;
  color: #fff;
  /*text-shadow: 4px 7px 3px rgb(215 160 160 / 30%);*/
}

.stat-item p {
  margin-top: 8px;
  font-size: 16px;
}

.safety-section {
  background: #fff;
  font-family: Arial, sans-serif;
}

.safety-container {
  display: flex;
  flex-wrap: wrap;
  /*background: url('https://i.imgur.com/CHMFZyc.png') no-repeat center right;*/
  background-size: contain;
  /*border-radius: 10px;*/
  overflow: hidden;
  position: relative;
}

.safety-image {
  flex: 1 1 50%;
  min-width: 300px;
  border-radius: 2px;
}

.safety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.safety-content {
  flex: 1 1 50%;
  padding: 40px 0 40px 40px;
  background: #fff;
  position: relative;
}

.safety-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: #ddd;
}

.section-tag {
  background: red;
  color: #fff;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 24px;
  display: inline-block;
  margin-bottom: 20px;
}


.section-desc {
  font-size: 15px;
  margin-bottom: 25px;
  max-width: 95%;
}

.video-thumb {
  position: relative;
  width: 280px;
  height: 160px;
  margin: 25px 0;
}

.video-thumb img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 100%
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  background: red;
  color: #fff;
  padding: 9px 15px;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  opacity: 0.6;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.checklist li {
  margin-bottom: 10px;
  font-size: 15px;
}

.checklist i {
  color: #dcf0fc;
  margin-right: 8px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-red {
  background: red;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.hotline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotline .icon {
  background: #fff0f0;
  color: red;
  font-size: 18px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid red;
}

.hotline .info .label {
  font-size: 13px;
  color: #fff !important;
}

.hotline .info .phone {
  font-weight: bold;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .safety-container {
    flex-direction: column;
  }

  .safety-content::before {
    display: none;
  }

  .safety-content {
    padding: 30px 0;
  }

  .video-thumb {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}

.flex_gap_20px {
  display: flex;
  gap: 20px;
}

.safety-content .flex_gap_20px {
  border-left: 5px solid #dcf0fc;
  align-items: flex-end;
  padding-left: 20px;
}


.container2 {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.features-left {
  flex: 1 1 35%;
  min-width: 300px;
}

.features-tag {
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.features-title {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}

.features-desc {
  font-size: 15px;
  /*color: #ccc;*/
  color: #1a3052;
  /*margin-bottom: 30px;*/
  line-height: 1.6;
}

.btn-consult {
  display: inline-block;
  background: red;
  color: white !important;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.features-right {
  flex: 1 1 60%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  /*padding: 15px 0;*/
}

.features-right .feature-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.tab-content {
  max-height: 230px;
  overflow: hidden;
}

.tab-pane {
  height: 100%;
}

.tab-content>.tab-pane.active {
  display: block;
}


.tab-content>.tab-pane.active {
  display: block;
  animation: elevatorUp .7s cubic-bezier(.25, .8, .25, 1);
  overflow: hidden;
}

/* tab mới */
@keyframes elevatorUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* tab cũ */
@keyframes elevatorOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/*.feature-item {
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}*/

.feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.feature-item .icon {
  background: rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-item .icon img {
  width: 40px;
  height: 40px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  /*color: white;*/
  color: #1a3052;
}

.feature-item p {
  font-size: 14px;
  /*color: #ccc;*/
  color: #1a3052;
  margin-bottom: 10px;
  line-height: 1.4;
}

.feature-item .arrow {
  font-size: 18px;
  color: white;
  margin-top: auto;
}

/* Responsive: dưới 768px thì xếp dọc */
@media screen and (max-width: 768px) {
  .container2 {
    flex-direction: column;
  }

  .features-left,
  .features-right {
    flex: 1 1 100%;
  }

  .features-title {
    font-size: 24px;
  }

  .btn-consult {
    padding: 10px 18px;
  }
}

.team-section {
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
}

.section-header2 .tag {
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}



.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.member-card {
  background: #f9f9f9;
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
  transition: transform 0.3s;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-card img {
  width: 100%;
  height: 230px;
  /*
  border-radius: 10px 10px 0 0;*/
  object-fit: cover;
  margin-bottom: 15px;
}

.member-card h4 {
  font-size: 16px;
  margin: 5px 0;
  color: #000;
}

.member-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .team-members {
    flex-direction: column;
    align-items: center;
  }



  .section-header h2 {
    font-size: 22px;
  }
}



.home-feature-department-block .cate-item:hover {
  box-shadow: 0 24px 32px -16px rgba(204, 210, 220, .4);
  transform: translateY(-4px);
}



.banner-owl {
  position: relative;
}

.banner-owl .item img {
  width: 100%;
  display: block;
}

.banner-owl .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.banner-owl .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333 !important;
  /* chấm thường màu xám đậm */
  opacity: 0.4;
  transition: all 0.3s ease;
}

.banner-owl .owl-dot.active {
  width: 20px;
  /* active dài hơn */
  height: 8px;
  border-radius: 6px;
  background: #333;
  /* màu đậm hơn */
  opacity: 1;
}

.ds_sp {
  border-top: 1px solid #ccd2dc;
  border-bottom: 1px solid #ccd2dc;
}


.ds_sp .our-feature-segment {
  border-bottom: none !important;
}













/*sản phẩm*/



.home-deal-section .section-head {
  align-items: center;
  display: flex;
  padding: 15px 15px 0px 15px;
  background-color: white;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}



.home-deal-section .home-h2-title {
  color: #303846 !important;
  font-weight: 700 !important;
  line-height: 33px !important;
  margin-bottom: 0 !important;
}

.home-deal-section .home-h2-title .section-title {
  color: #303846 !important;
  font-size: 22px !important;
}

.home-h2-title .fa {
  font-size: initial;
  margin-left: 10px;
}

.home-deal-section .section-head .head-tab-col {
  align-self: center;
  margin-left: auto;
}

.home-deal-section .section-head .tab-item-wrap {
  margin-left: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: end;

}


.home-deal-section .product-grid {
  background: #fff;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, 1fr);
  padding: 15px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.home-deal-section .product-grid-search {
  background: #fff;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  padding: 15px;
}

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

.box_img_search_pro:hover {
  box-shadow: 0 0 10px rgb(0 0 0 / 40%);
  background: #D9D9D9 !important;
}

.img_search_pro {
  margin-right: 15px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.product-deal-action-card__body {
  padding: 10px 15px;
  display: grid;
  align-content: space-between;
}

.product-deal-action-card__body>p {
  margin-top: 10px;
  position: absolute;
  bottom: 0;
}

.product-grid-col {
  position: relative;
  margin: 5px;
}

.product-deal-action-card__sale-tag {
  position: absolute;
  top: 0px;
  right: 0px;
  /*background: linear-gradient(145deg, #d60000d9, #ff915082);*/
  background: #ff0000c4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-top-right-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  z-index: 10;
  letter-spacing: 0.5px;
}

/*.product-deal-action-card__discount-percent {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  line-height: 10px;
  margin: 0 4px;
  position: relative;
  top: -1px;
}*/


.product-deal-action-card__price-group {
  align-items: baseline;
  display: flex;
  height: 24px;
}

.product-deal-action-card__current-price {
  color: #ff0000;
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.product-deal-action-card__old-price {
  color: #98a5b9;
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 12px;
  line-height: 18px;
  margin-left: 4px;
  text-decoration: line-through;
}

.product-deal-action-card__brand-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.product-deal-action-card__title {
  display: block;
}

.product-deal-action-card__h3 {
  font-weight: 400;
  margin-bottom: 0;
  min-height: 43px;
}

.product-deal-action-card__title-inner {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #000 !important;
  display: -webkit-box;
  font-size: 14px;
  line-height: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
}






.section-wrapper .nav-tabs {
  border-bottom: none;
}

.section-label {
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title2 {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
  width: 75%;
}

.box-white {
  background: white;
  color: #333;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tabs-left {
  /*border-left: 3px solid #ff500024;*/
}

.tabs-left>li {
  float: none;
  margin-bottom: 10px;
}

.tabs-left>li>a {
  border-radius: 0 10px 10px 0;
  background: #e5e1e1a3;
  ;
  color: #333;
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tabs-left>li.active>a,
.tabs-left>li.active>a:focus,
.tabs-left>li.active>a:hover {
  background: #0d47a1;
  color: white !important;
  border-color: transparent;
}

.tabs-left>li>a i {
  background: #ff5722;
  color: white;
  border-radius: 50%;
  padding: 8px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 16px;
}

.tabs-left>li.active>a i {
  background: white;
  color: #0d47a1;
}

.tab-content {
  padding-left: 30px;
}

.desc-small {
  color: #f44336;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}

.desc-title {
  font-size: 24px;
  margin: 10px 0 20px;
}

.feature-item2 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item2 img {
  width: 32px;
  height: 32px;
}

.feature-item2 strong {
  font-size: 16px;
}

.feature-item2 p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

.section-desc2 {
  font-size: 15px;
  /*color: white;*/
  color: #1a3052;
  margin-bottom: 30px;
  justify-content: end;
  align-items: center;
  text-align: end;
  display: flex;
}

@media (max-width: 768px) {

  .section-title2,
  .section-desc2 {
    text-align: center;
    width: 100%;
  }

  .section-desc2 {
    justify-content: center;
    display: flex;
  }

  .tabs-left {
    margin-bottom: 20px;
  }

  .tab-content {
    padding-left: 0;
  }

  .feature-item2 {
    flex-direction: row;
  }

  .box-white .row>div {
    width: 100%;
  }

  img{
    max-width: 100%;
  }

  .tabs-left {
    position: unset;
    width: 100%;
    height: unset;
  }
}


/* Reset + font */
.testimonial-section {
  padding-top: 20px;
  background-color: white;
}

.section-header3 {
  text-align: center;
  ;
}

/* Section header */
.section-header3 h2 {
  margin: 10px 0;
}

.section-header3 p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.btn-red {
  background-color: #E48312;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

/* Grid of testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

/* Card */
.testimonial-card {
  background-color: #fff;
  padding: 20px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card .avatar {
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  width: 80px !important;
  height: 80px;
}

.intro_left_about {
  position: relative;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.intro_left_about img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

.intro_left_about:before {
  position: absolute;
  border: 10px solid #E48312;
  content: '';
  width: 60%;
  z-index: 0;
  left: -40px;
  top: -40px;
  bottom: -40px;
}

.testimonial-card h4 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.feature_contact {
  border-left: 4px solid #E48312;
  position: relative;
  padding-left: 60px;
  width: 100%;
  float: left;
}

.feature_contact .text h3 {
  font-size: 20px;
  line-height: 30px;
  color: #00173c;
}

.feature_contact .text p {
  font-size: 18px;
  color: #E48312;
}

.feature_contact .fa-quote-left {
  position: absolute;
  left: 10px;
  top: 0;
  color: #E48312;
  font-size: 50px;
  opacity: .3;
}

.video-section2-outer.mfp-gallery {
  float: left;
  width: 100%;
  display: block;
}

.video-section2-outer {
  padding-top: 10px;
  padding-bottom: 30px;
}

.video-section {
  position: relative;
  z-index: 1;
  display: flex;
}

.play-now {
  background-color: #E48312;
  width: 65px;
  left: 45%;
  top: 50%;
  height: 65px;
  border-radius: 50%;
  background: #E48312;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.play-now::before,
.play-now::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 3px solid #E48312;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: ripple 2s infinite;
}

.play-now::after {
  animation-delay: 1s;
}

.play-now .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  color: #fff;
  z-index: 1;
  font-size: 20px;
  padding-left: 5px;
  display: block;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, .5);
  -ms-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, .5);
  -o-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, .5);
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/*#form_lien_he {
  padding: 30px 0;
}*/

.testimonial-card .position {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.testimonial-card .content {
  font-size: 15px;
  color: #444;
}

/* Floating button */
.floating-button {
  position: absolute;
  top: 20px;
  right: 30px;
  background-color: #E48312;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }

  .floating-button {
    top: 10px;
    right: 10px;
  }
}

.news-section {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}

.news_home h2 {
  margin-bottom: 10px;
}

.news_home h2:after {
  content: "";
  display: table;
  clear: both;
  background: url(https://websango.vidoweb.vn/wp-content/uploads/2019/08/line-1.png);
  width: 100%;
  height: 20px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  padding-top: 0;
}

.btn-category {
  background-color: #ec2e2e;
  color: white;
  padding: 6px 16px;
  border: none;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.news-section .title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  background: red;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
}

.news-grid {
  margin-top: 30px;
}

/* Card tin tức */
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  text-align: left;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: inline-block;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Ngày xuất bản */
.news-card .date {
  display: inline-block;
  background-color: #ec2e2e;
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
  margin: 10px 15px 0;
}

/* Tiêu đề 1 dòng có dấu ... */
.news-card h3 {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 15px 15px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copyright {
  text-align: center;
  color: #e7e5df;
  padding: 10px 0;
}

.copyright span a {
  color: #999 !important;
}

@media (max-width: 768px) {
  .news-section .title {
    font-size: 24px;
  }

  .news-card img {
    height: 160px;
  }
}

.contact-banner {
  /*background: linear-gradient(to right, #f44336, #ff5722);*/
  /*background: #fff5d9;*/
  background: #f6ebd7;
  /*background: #000;*/
  color: #8a3f24;
  /*color: #fff;*/
  padding: 30px 0;
}


.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;

}

.contact-text {
  flex: 1;
  min-width: 280px;
  color: #8a3f24;
  /*color: #fff;*/
}

.contact-text .label {
  font-weight: 600;
  margin-bottom: 6px;
  background-color: #fff;
  color: #000
}

.contact-text h3 {
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

/* FORM PHẢI CHIA 2 DÒNG, MỖI DÒNG 2 CỘT */
.contact-form,
.contact-form_2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page_contact {
  padding: 30px 0 !important;
}

.contact-form .form-row,
.contact-form_2 .form-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 16px;
  /*background: #e7ad8f;*/
  background: #fff;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 0 1.5px transparent, 0 1px 0 rgba(0, 0, 0, .04) inset;
  font-size: 14px;
  width: calc(50% - 5px);
  max-width: 100%;
  outline: none;
  color: #8a3f24;
  width: 100%;
  box-shadow: 0 0 0 1.5px transparent, 0 1px 0 rgba(0, 0, 0, .04) inset;
  transition: box-shadow .2s ease, background .2s ease;
}

.contact-form .select2-container .select2-selection--single {
  /*background: #e7ad8f;*/
  background: #fff;
  border: none;
  color: #8a3f24;
  min-height: 40px;
  padding: 5px 8px;
  border-radius: 5px;
}

.contact-form_2 .select2-container .select2-selection--single {
  min-height: 43px;
  border: 1px solid #ddd;
  padding: 8px 5px;
  border-radius: .25rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.contact-form_2 .select2-container .select2-selection--single .select2-selection__placeholder {
  color: #8f5b43;
}


.contact-form_2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 5px;
}

.contact-form .select2-container .select2-selection--single .select2-selection__placeholder {
  color: #8f5b43;
}


.contact-form .select2-container .select2-selection--single .select2-selection__rendered {
  color: #8a3f24;
}

input::placeholder,
textarea::placeholder {
  color: #8f5b43;
  font-size: 12px;
}

.contact-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #8f5b43 transparent transparent transparent;
  margin-top: 5px;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form .select2-container .select2-selection--single:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .12);
  /*background: #efbda2;*/
  background: #fff;
}

.contact-form button {
  padding: 10px 20px;
  /*background-color: #f8c2a9;*/
  background-color: #E48312;
  /*color: #1a3052;*/
  /*color: #7a361f;*/
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  /*width: calc(50% - 5px);*/
  width: 100%;
}

.contact-form button:hover {
  /*background-color: #022054;*/
  filter: brightness(1.04);
}



.contact-form .button_contact {
  padding: 10px 20px !important;
  background-color: #031c61 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  width: calc(50% - 5px) !important;
}

.contact-form .button_contact:hover {
  background-color: #022054;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form .form-row input[name="email"] {
    width: 100%;
  }

  .contact-form input,
  .contact-form button {
    width: 100%;
  }
}


.footer {
  background-color: #fff;
  color: #111;
  padding: 0;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.footer .tab-content {
  padding-left: 0;
}

.footer .tab-content .contactList div {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer .nav>li>a {
  font-size: 20px;
  color: #E48312;
  font-weight: bold;
}

.footer .nav>li>a:hover,
.footer .nav>li>a:focus {
  text-decoration: none;
  background-color: transparent;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-col {
  /*flex: 1 1 200px;
  min-width: 180px;*/
  /*padding: 0 30px;*/
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #f6bb35;
}

.footer-col .bg-white {
  border: none;
}

.footer-col h4 a {
  color: #E48312;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a,
.footer-col .contactList a {
  text-decoration: none;
  /*color: #333;*/
  /*color: #2196F3;*/
  color: #999;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  /*color: #e52921;*/
  text-decoration: underline;
}

/* Brand column */
.footer-brand img {
  margin-bottom: 10px;
  max-width: 170px;
}

.footer-brand p {
  margin: 6px 0;
}

/* Tin tức có ảnh nhỏ */
.news-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-list img {
  width: 50px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .news-list li {
    flex-direction: row;
    align-items: flex-start;
  }
}

.search-box-custom {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 20px auto;
}

.search-box-custom input {
  width: 100%;
  padding: 10px 45px 12px 15px;
  /* padding right để chừa chỗ cho icon */
  border: 1px solid #684574;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}

.search-box-custom input::placeholder,
.search-form input::placeholder {
  font-size: 15px;
}


.search-box-custom .search-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box-custom .search-btn svg {
  fill: #684574;
  width: 20px;
  height: 20px;
}


.d-grid {
  display: grid;
}

.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}

.gap-30 {
  gap: 30px;
}

.gap-5 {
  gap: 5px;
}

.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}

.contai_search {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 20px;
  gap: 10px;
}


.contai_search>div {
  padding: 10px;
}


.cursor_pointer {
  cursor: pointer;
}


.search-box-custom_header {
  position: relative;
  width: 50%;
  margin: 10px auto;
}

.search-box-custom_header input {
  width: 100%;
  padding: 5px 45px 5px 10px;
  border: 0.5px solid #cfcecc;
  border-radius: 32px;
  outline: none;
  box-sizing: border-box;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15);
  /* bóng vào trong */
  transition: box-shadow 0.3s ease;
}

.search-box-custom_header input:focus {
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.25);
  /* đậm hơn khi focus */
}


.search-box-custom_header .search-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container_banner .owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.container_banner .owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.container_banner .owl-carousel .owl-nav button {
  pointer-events: all;
  background: none;
  border: none;
}

.custom-prev {
  left: 10px;
}

.custom-prev,
.custom-next {
  font-size: 16px;
  width: 40px;
  height: 40px;
  color: white;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.1;
}

.custom-next {
  right: 10px;
}

.container_banner .owl-carousel .owl-dots {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  background: none;
  z-index: 20;
  text-align: center;
  margin-top: 10px;
}



.container_banner .owl-dot span {
  width: 9px !important;
  height: 9px !important;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #3f6bc880;
  margin: 5px;
  transition: background 0.3s;
}


.container_banner .owl-dot.active span {
  background: #fff;
}

.container_banner .custom-prev:hover,
.custom-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.list_pro_home .owl-dots {
  bottom: -20px !important;
}


#thong_tin_lien_he {
  background: #e9eff5;
  position: relative;
}

.intro-section_contact {
  display: flex;
  padding: 60px 80px;
  align-items: center;
}

/* LEFT IMAGE BLOCK */
.intro-left_contact {
  position: relative;
  width: 45%;
  display: flex;
  justify-content: center;
}

.intro-left_contact .bg-map {
  width: 80%;
  height: 350px;
  background: #b2c9c6;
  opacity: .3;
  position: absolute;
  top: 50px;
  left: 0;
}

.intro-left_contact img {
  width: 50%;
  position: relative;
  z-index: 2;
}

/* RIGHT CONTENT */
.intro-right_contact {
  color: #1a3052;
  display: flex;
  flex-direction: column;
}

.intro-right_contact .small-title {
  color: #E48312;
  font-weight: 600;
}

.intro-right_contact h2 {
  font-size: 34px;
  margin: 0 0 5px;
  line-height: 4.8rem;
}

.contact-block_contact {
  background: #1a3052;
  color: #fff;
  padding: 30px;
  margin-top: 30px;
}

.contact-line_contact span {
  font-weight: bold;
  display: block;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.p-b10 {
  padding-bottom: 10px;
}

.p-b30 {
  padding-bottom: 30px;
}

.p-t40 {
  padding-top: 40px;
}

.p-b40 {
  padding-bottom: 40px;
}

.p-t50 {
  padding-top: 40px;
}

.p-b50 {
  padding-bottom: 40px;
}

.p-b70 {
  padding-bottom: 70px;
}

.p-b80 {
  padding-bottom: 80px;
}

.p-t80 {
  padding-top: 80px;
}

.p-t70 {
  padding-top: 70px;
}

.wt-small-separator {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.left.wt-small-separator-outer {
  text-align: left;
}

.bg-gray {
  background-color: #eff3f6;
}

.site-bg-secondry {
  background-color: #00173c;
}

.overlay-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.opacity-09 {
  opacity: .9;
}

.self-intro-top,
.self-intro-bottom {
  position: relative;
  z-index: 1;
}

.wt-icon-box-wraper {
  position: relative;
}

.overlay-wraper>.container,
.overlay-wraper>.container-fluid,
.overlay-wraper>.wt-icon-box-wraper,
.overlay-wraper>.wt-left-part,
.overlay-wraper>.wt-right-part {
  position: relative;
  z-index: 1;
}

.self-intro-pic-block {
  position: absolute;
  left: 100px;
  bottom: 0;
  z-index: 1;
  padding: 50px 50px 0 50px;
  background-color: #eff3f6;
  max-width: 350px;
  background-image: url(https://gridvalley.net/wp/industroz/industry/wp-content/themes/industroz/assets/images/xself-info-bg.png.pagespeed.ic.Jhye4TxDJw.png);
  background-position: top center;
  background-repeat: no-repeat;
}

.elementor img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

.wt-icon-box-wraper {
  position: relative;
}

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

.icon-content {
  overflow: hidden;
}

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

.icon-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.wt-icon-box-wraper.left {
  float: left;
  margin-right: 10px
}

.site-text-primary {
  color: #E48312;
}

.icon-md {
  width: 60px;
}

.icon-xld,
.icon-xl,
.icon-lg,
.icon-md,
.icon-sm,
.icon-xs {
  display: inline-block;
  text-align: center;
}

.m-b20 {
  margin-bottom: 20px;
}

.m-b10 {
  margin-bottom: 10px;
}

.icon-md i {
  font-size: 45px;
}

.wt-icon-box-wraper.left .icon-md {
  float: left;
  margin-right: 10px;
}


.shops-main-page.shops-main-page-all.shops-main-page-shops {
  background-color: #f2f4f7;
}

.white_wishlist {
  color: #dcdcdc;
  font-size: 16px;
}

.red_wishlist {
  color: red
}

.wt-small-separator div.sep-leaf-left {
  position: relative;
  margin-right: 35px;
}

.wt-small-separator div.sep-leaf-right {
  position: relative;
  margin-left: 35px;
}

.wt-small-separator div {
  display: inline;
  font-weight: 700;
}

.wt-small-separator div.sep-leaf-left:before {
  left: 0;
}

.wt-small-separator div.sep-leaf-right:before {
  right: 0;
}

.wt-small-separator div.sep-leaf-right:before {
  background-color: #ff5e15;
}

.wt-small-separator div.sep-leaf-right:before,
.wt-small-separator div.sep-leaf-left:before {
  position: absolute;
  content: '';
  background-color: #E48312;
  width: 25px;
  height: 3px;
  bottom: 10px;
}

.thanh_tuu_section {
  text-align: center;
}

.lien_he_section {
  text-align: left;
}

.lien_he_section h2 {
  margin-bottom: 25px;
}

.thanh_tuu_section,
.lien_he_section {
  padding: 25px 0 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.self-intro-top p {
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 16px;
}

.self-intro-top ul li {
  font-size: 16px;
}

.contact_right_form {
  background-color: #E48312;
  margin-left: 60px;
  padding: 40px;
  margin-bottom: 30px;
}

.contact_right_form h2 {
  font-weight: bolder;
  margin-bottom: 20px;
  color: #fff;
}

.contact_right_form .row {
  padding: 30px 15px;
  background-color: #fff;
  margin: 0;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact_right_form .form-control {
  height: 38px;
  padding: 10px 20px;
  background-color: #fff;
  width: 100%;
  border: 1px solid #bab7b7cf;
}

.contact_right_form .form-group {
  margin-bottom: 20px;
}

.contact_right_form .form-control:focus {
  box-shadow: none;
  background-color: #e7e7e7;
}

.contact_right_form textarea.form-control {
  height: 100% !important;
}

.contact_right_form button {
  color: #fff;
  padding: 15px 40px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  border: none;
  font-size: 14px;
  background-color: #00173c;
  margin-top: 10px;
  border-radius: 0;
  width: 100%;
}

.contact_right_form button:hover {
  background-color: #ededed;
  text-shadow: -400px 0 0 #111, 0 0 0 #111;
  color: #111;
}










.img-21-9 {
  position: relative;
  display: block;
  padding-top: 39.85%;
  overflow: hidden
}

.img-16-9 {
  position: relative;
  display: block;
  padding-top: 60.65%;
  overflow: hidden
}

.img-square {
  position: relative;
  display: block;
  padding-top: 100%;
  overflow: hidden
}

.img-3-4 {
  position: relative;
  display: block;
  padding-top: 130%;
  overflow: hidden
}

.img-4-3 {
  position: relative;
  display: block;
  padding-top: 65%;
  overflow: hidden
}

.img-21-9 img,
.img-16-9 img,
.img-square img,
.img-4-3 img,
.img-3-4 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.red {
  color: red;
}





























.stat-box .number {
  font-size: 40px;
  color: #1a3052;
  font-weight: bold;
}

.stat-box .label {
  font-size: 15px;
  background: transparent !important;
  color: #1a3052 !important;
}
















.background_class {
  background-color: #F2F4F7;
}





.search-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.search-modal.is-open {
  display: block;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity .35s ease;
}

.search-modal.is-open .search-backdrop {
  opacity: 1;
}

.search-bar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  flex-direction: column;
  width: 810px;
  margin-left: auto;
  margin-right: auto;
}

.search-bar .list-group {
  max-height: 410px;
  overflow-y: auto;
}

.search-form {
  pointer-events: auto;
  display: flex;
  align-items: center !important;
  flex-direction: row !important;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 0px 14px 0px 16px;
  border: 2px solid transparent;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  transform: scale(.9);
  opacity: 0;
  width: 100% !important;
  transition: border-color .2s ease;
}

.search-form i.fa-search {
  color: #8a8f98;
  font-size: 16px;
}

.search-form input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 16px;
  color: #222;
}

.btn-search {
  border: 0;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #ff0000, #ffd700);
  font-weight: 600;
  white-space: nowrap;
  font-family: Nunito;
}

.btn-search:hover {
  background: linear-gradient(90deg, #ffd700, #ff0000);
}

.btn-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #f3f4f6;
  color: #333;
  cursor: pointer;
  font-size: 22px;
  line-height: 0;
}

.btn-close:hover {
  background: #ffe9b3;
  color: #c20000;
}

.search-modal.is-open.play .search-form {
  animation: searchGrow .45s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes searchGrow {
  0% {
    transform: scale(.9);
    opacity: 0;
    width: 280px;
  }

  100% {
    transform: scale(1);
    opacity: 1;
    width: 960px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-backdrop {
    transition: none;
  }

  .search-modal.is-open.play .search-form {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

#main_header_id {
  position: sticky;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s;
  /*box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);*/
  /*background-color: #cf8258;*/
  background: #fefbf4;
  color: #fff;
  border-bottom: 1px solid #ede0cc;
}

#main_header_id.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .search-bar {
    display: inline;
    width: 100%;
  }

  .search-form {
    max-width: 100%;
  }

  .mega-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.user-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-box {
  position: absolute;
  top: 40px;
  right: 0;
  width: 300px;
  background: #fff;
  /*border-radius: 10px;*/
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 15px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.user-dropdown:focus-within .dropdown-box,
.user-dropdown:hover .dropdown-box {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-hover-area {
  position: absolute;
  top: 20px;
  right: 0;
  width: 100px;
  height: 20px;
}

/*.dropdown-box a {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border-radius: 6px;
  background: #ed1c24;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.dropdown-box a:hover {
  background: #b30000;
  filter: brightness(1.2);
  box-shadow: 0 0 10px rgba(0,123,255,0.6);
}*/


.dropdown-box .dd-head a {
  margin-right: 12px;
  color: #2a6bff;
  text-decoration: none;
  font-weight: 600
}

.dropdown-box .dd-head a:hover {
  text-decoration: underline
}

.dropdown-box .dd-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  max-height: 60vh;
  overflow: auto
}

.dropdown-box .dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 10px;
  color: #1f2937;
  text-decoration: none
}

.dropdown-box .dd-item:hover {
  background: #f8fafc
}

.dropdown-box .ico {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #2a6bff;
  background: #ffffff;
  color: #E48312;
}

.dropdown-box .dd-item span {
  color: #1f2937
}





.contact-fixed a:nth-child(1) {
  position: fixed;
  right: 80px;
  bottom: 238px;
  z-index: 99;
}

.contact-fixed a:nth-child(2) {
  position: fixed;
  right: 80px;
  bottom: 185px;
  z-index: 99;
}

.contact-fixed a:nth-child(3) {
  position: fixed;
  right: 80px;
  bottom: 132px;
  z-index: 99;
}

.contact-fixed a:nth-child(4) {
  position: fixed;
  right: 80px;
  bottom: 90px;
  z-index: 99;
}

.contact-fixed img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 2px -1px 8px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 2px -1px 8px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 2px -1px 8px 0px rgba(0, 0, 0, 0.09);
}

.contact-fixed a {
  display: block;
  margin-bottom: 10px;
}

.contact-fixed a:last-child {
  margin-bottom: 0
}

.btn-quick-alo-ph-circle {
  bottom: 0;
  left: 0;
  position: absolute;
  border-radius: 100%;
  border: 2px solid #bfebfc;
  opacity: .1;
  -webkit-animation: btn-quick-alo-circle-anim 1.2s ease-in-out infinite;
  animation: btn-quick-alo-circle-anim 1.2s ease-in-out infinite;
  transition: all .5s;
  transform-origin: 50% 50%;
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
  border-color: #E48312;
  opacity: .5;
}

.btn-quick-alo-ph-circle-fill {
  top: 10px;
  left: 10px;
  position: absolute;
  background-color: #000;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: .1;
  -webkit-animation: btn-quick-alo-circle-fill-anim 2.3s ease-in-out infinite;
  animation: btn-quick-alo-circle-fill-anim 2.3s ease-in-out infinite;
  transition: all .5s;
  transform-origin: 50% 50%;
  width: 60px;
  height: 60px;
  background-color: #FEF6D9;
  opacity: .75 !important;
}

.btn-quick-alo-ph-img-circle {
  width: 40px;
  height: 40px;
  top: 70px;
  left: 70px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 1;

  transform-origin: 50% 50%;
  top: 20px;
  left: 20px;
  background-size: 40px;
  background-color: #fff
}

@-webkit-keyframes btn-quick-alo-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg)
  }

  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg)
  }

  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg)
  }

  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg)
  }

  to {
    -webkit-transform: rotate(0) scale(1) skew(1deg)
  }
}

@-webkit-keyframes btn-quick-alo-circle-anim {
  0% {
    transform: rotate(0) scale(.5) skew(1deg);
    opacity: .1
  }

  30% {
    transform: rotate(0) scale(.7) skew(1deg);
    opacity: .5
  }

  to {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: .1
  }
}

@keyframes btn-quick-alo-circle-anim {
  0% {
    transform: rotate(0) scale(.5) skew(1deg);
    opacity: .1
  }

  30% {
    transform: rotate(0) scale(.7) skew(1deg);
    opacity: .5
  }

  to {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: .1
  }
}

@-webkit-keyframes btn-quick-alo-circle-fill-anim {
  0% {
    transform: rotate(0) scale(.7) skew(1deg);
    opacity: .2
  }

  50% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: .2
  }

  to {
    transform: rotate(0) scale(.7) skew(1deg);
    opacity: .2
  }
}


/*h3>a {
  color: #000 !important;
}
*/
.head-title-col .section-title {
  padding-bottom: 0;
}

:root {
  --bg-page: #fbf6ed;
  --bg-page: #fefbf4;
  --chip-bg: #fff;
  --chip-border: #dbe1ea;
  /*--chip-text: #0f1a2a;*/
  --chip-text: #999;
  --muted: #6b7280;
  --dot: #d7dde6;
  --primary: #1a73e8;
  --primary-soft: #eaf2ff;
}

body {
  margin: 0;
  background: var(--bg-page);
  font-family: Quicksand;
/*  color: var(--chip-text)*/
}



/* row chip */
.main_san_pham_chip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 15px 15px 0px 15px;
}

.main_san_pham_chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: auto;
  padding: 5px 10px;
  border-radius: 12px;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  font-size: 14px;
  color: var(--chip-text);
  cursor: pointer;
  user-select: none;
  transition: background .2s, border-color .2s, box-shadow .2s;
}


.main_san_pham_chip img {
  height: 18px;
  max-width: 70px;
  object-fit: contain;
  display: block;
}

.main_san_pham_chip svg {
  width: 18px;
  height: 18px
}

.main_san_pham_chip:hover {
  background: #f7f9fc
}

.main_san_pham_chip--primary {
  color: var(--primary);
  background: var(--primary-soft);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #e3efff inset;
}

/* sort line */
.main_san_pham_sort-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 15px;
  flex: 2;
  justify-content: end;

}

.main_san_pham_sort-line .label {
  color: var(--muted);
  margin-bottom: 0px;
  padding: 0px;
  background: transparent;
}

.main_san_pham_sort-line a {
  text-decoration: none;
  color: var(--chip-text);
  font-weight: 700;
  padding: 4px 2px;
  border-radius: 6px;
}



.main_san_pham_dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot);
  display: inline-block;
  margin: 0 4px;
}

.main_san_pham_caret {
  width: 12px;
  height: 12px;
  margin-left: 2px
}

.main_san_pham_sort-line a {
  text-decoration: none;
  color: #0f1a2a;
  font-weight: 500;
  padding: 4px 2px;
  border-radius: 6px;
  transition: color .2s;
}

.main_san_pham_sort-line a:hover {
  background: transparent;
  color: #1a73e8;
  font-weight: 700;
}

.main_san_pham_sort-line .main_san_pham_sort-active {
  color: #1a73e8;
  /* xanh active */
  font-weight: 700;
}

.main_san_pham_dropdown {
  position: relative;
  display: inline-block;
}

.main_san_pham_dropdown>a {
  text-decoration: none;
  color: #0f1a2a;
  font-weight: 500;
  padding: 4px 2px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.main_san_pham_dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #dbe1ea;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
  z-index: 99;
}

.main_san_pham_dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  text-decoration: none;
  color: #0f1a2a;
}

.main_san_pham_dropdown-menu a:hover {
  background: #f3f6fb;
  color: #1a73e8;
}

.main_san_pham_dropdown:hover .main_san_pham_dropdown-menu {
  display: block;
}

.main_san_pham_dropdown-menu a.active {
  color: #1a73e8;
  background: #f3f6fb;

}

/* Backdrop */
.main_san_pham_backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .35);
  z-index: 998;
}

/* Modal popover */
.main_san_pham_modal {
  position: fixed;
  z-index: 999;
  width: min(980px, 92vw);
  max-height: 72vh;
  overflow: auto;
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

/* Mũi tên chỉ lên nút lọc */
.main_san_pham_modal::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 40px;
  /* sẽ cập nhật bằng JS để căn đúng nút */
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid #e5e9f2;
  border-top: 1px solid #e5e9f2;
  transform: rotate(45deg);
}

/* Nút đóng */
.main_san_pham_modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 10px;
  padding: 6px 10px;
  border: 1px solid #e5e9f2;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.main_san_pham_modal_inner {
  padding: 18px 20px 20px 20px;
}

/* Lưới nội dung */
.main_san_pham_modal_row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  border-top: 1px solid #edf1f7;
  padding-top: 16px;
  margin-top: 10px;
}

.main_san_pham_modal_title {
  font-weight: 700;
  margin-bottom: 10px;
}

.main_san_pham_taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.main_san_pham_taglist .tag {
  padding: 8px 14px;
  border: 1px solid #e0e6ef;
  background: #fff;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.main_san_pham_taglist .tag:hover {
  background: #f6f8fc;
}

.main_san_pham_taglist .tag.is-active {
  border-color: #1a73e8;
  color: #1a73e8;
  background: #eef5ff;
}

.main_san_pham_modal_footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  border-top: 1px solid #edf1f7;
  padding-top: 14px;
}

.btn-outline {
  background: #fff;
  border: 1px solid #d5dce7;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
}

.btn-primary {
  background: #1a73e8;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
}

.detail_container .btn-danger {
  background: #d9534f;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
}


.home-deal-section .section-head .tab-item-wrap {
  width: 100%;
  overflow-x: auto;
  /* scroll ngang */
  overflow-y: hidden;
  /* ẩn dọc */
  white-space: nowrap;
  /* không cho xuống dòng */
  text-align: start;
  /* nếu muốn căn trái */
  box-sizing: border-box;
  /* tránh dính sát thanh scroll */
  text-align: end;
}

.tab-item-wrap::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #f1f1f1;
}

.tab-item-wrap::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(83, 83, 83, 0.07);
  background-color: #f1f1f1;
}

.tab-item-wrap::-webkit-scrollbar-thumb {
  background-color: #ed1c2491;
  border-radius: 10px;
}

.tab-item-wrap::-webkit-scrollbar-thumb:hover {
  background: #ed1c24 !important;
}

.tab-item-wrap::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.home-deal-section .section-head .tab-item-wrap .tab-item {
  display: inline-block;
  /* bắt buộc nằm ngang */
  vertical-align: middle;
  margin-right: 12px;
}

.home-deal-section .section-head .head-tab-col {
  width: 50%;
}

@media (max-width: 900px) {
  .main_san_pham_modal_row {
    grid-template-columns: 1fr;
  }

  .home-deal-section .section-head .head-tab-col {
    width: 100%;
    margin-top: 15px;
  }
}

.mz-layout__inner {
  display: grid;
  grid-template-columns: 1fr 4fr;
  margin-bottom: 20px;
  border-radius: 8px;
}

.mz-layout__side-col {
  flex: 0 0 240px;
  padding: 0 8px 16px;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  padding: 15px;
  margin: 20px auto;
  background-color: white;
  border-radius: 8px;
}

.category-layout .mz-basic-sidebox {
  border-color: #eaedf1;
}

.mz-basic-sidebox {
  border-bottom: 1px solid #ccd2dc;
  margin-bottom: 16px;
  padding-bottom: 16px;
  position: relative;
}

.title-head_se {
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  line-height: 24px;
  margin-bottom: 12px;
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}




.mz-basic-sidebox__item {
  align-items: flex-start;
  color: #303846 !important;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 8px;
}

.mz-basic-sidebox__item.is-selected {
  color: #303846;
  font-weight: 600;
}

.mz-basic-sidebox__item:first-child {
  margin-top: 0;
  padding-top: 0;
}

.mz-basic-sidebox__item {
  align-items: flex-start;
  color: #303846;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 8px;
}

.mz-basic-sidebox__item-name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mz-basic-sidebox__list-cate.os-host,
.mz-basic-sidebox__list.os-host {
  padding-right: 8px;
}

.mz-scrollbar {
  position: relative;
}

.mz-basic-sidebox__list,
.mz-basic-sidebox__list-cate {
  max-height: 416px;
  overflow-x: hidden;
  overflow-y: auto;
}

.os-host,
.os-host-textarea {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -ms-flex-line-pack: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow: visible !important;
  position: relative;
}

.os-resize-observer-host {
  border: inherit;
  border-color: transparent;
  border-style: solid;
  box-sizing: border-box;
  padding: inherit;
}

.os-resize-observer-host:after,
.os-resize-observer-host>.os-resize-observer {
  border: inherit;
  box-sizing: content-box;
  display: block;
  height: 200%;
  margin: 0;
  padding: inherit;
  width: 200%;
}

.os-resize-observer {
  -webkit-animation-duration: 1ms;
  animation-duration: 1ms;
  -webkit-animation-name: hs-resize-observer-dummy-animation;
  animation-name: hs-resize-observer-dummy-animation;
}

.os-resize-observer,
.os-resize-observer-host {
  box-sizing: inherit;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.os-resize-observer-host:after,
.os-resize-observer-host>.os-resize-observer {
  border: inherit;
  box-sizing: content-box;
  display: block;
  height: 200%;
  margin: 0;
  padding: inherit;
  width: 200%;
}

.os-resize-observer-host:after {
  content: "";
}

.os-size-auto-observer {
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  -ms-flex-negative: 0;
  -ms-flex-preferred-size: 0;
  box-sizing: inherit !important;
  flex-basis: 0;
  flex-grow: inherit;
  flex-shrink: 0;
  float: left;
  height: 100%;
  margin: 0;
  max-height: 1px;
  max-width: 1px;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: relative;
  width: inherit;
  z-index: -1;
}

.os-size-auto-observer>.os-resize-observer {
  height: 1000%;
  min-height: 1px;
  min-width: 1px;
  width: 1000%;
}

.os-resize-observer {
  -webkit-animation-duration: 1ms;
  animation-duration: 1ms;
  -webkit-animation-name: hs-resize-observer-dummy-animation;
  animation-name: hs-resize-observer-dummy-animation;
}

.os-content-glue {
  box-sizing: inherit;
  max-height: 100%;
  max-width: 100%;
  pointer-events: none;
  width: 100%;
}

.os-padding {
  bottom: 0;
  box-sizing: inherit;
  direction: inherit;
  height: auto !important;
  left: 0;
  margin: 0;
  overflow: visible;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto !important;
  z-index: 1;
}

.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size,
.os-viewport-native-scrollbars-invisible.os-viewport {
  scrollbar-width: none !important;
}

.os-viewport {
  -webkit-overflow-scrolling: touch;
  bottom: 0;
  box-sizing: inherit !important;
  direction: inherit !important;
  left: 0;
  margin: 0;
  outline: none !important;
  padding: 0;
  position: absolute;
  resize: none !important;
  right: 0;
  top: 0;
}

.os-host-overflow>.os-padding,
.os-viewport {
  overflow: hidden;
}

.os-content {
  box-sizing: border-box !important;
  direction: inherit;
  display: block;
  height: 100%;
  position: relative;
  visibility: visible;
  width: 100%;
}

.os-content:after,
.os-content:before {
  content: "";
  display: table;
  font-size: 0;
  height: 0;
  line-height: 0;
  width: 0;
}

.mz-basic-sidebox__item:first-child {
  margin-top: 0;
  padding-top: 0;
}

.mz-basic-sidebox__item {
  align-items: flex-start;
  color: #303846;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 8px;
}

.mz-basic-sidebox__item-checkbox {
  align-items: center;
  display: flex;
  margin-right: 8px;
}

.mz-state-control.has-only-icon {
  line-height: 10px;
  min-height: 16px;
  min-width: 16px;
}

.mz-state-control {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.mz-state-control .mz-state-control__input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.mz-state-control .mz-state-control__inner {
  align-items: center;
  display: inline-flex;
  min-height: 16px;
  min-width: 16px;
  padding-left: 16px;
  position: relative;
}

.mz-state-control.has-only-icon .mz-state-control__icon {
  margin-top: 0;
  top: 0;
}

.mz-check-control .mz-state-control__icon {
  align-items: center;
  justify-content: center;
}

.mz-state-control .mz-state-control__icon {
  background: #fff;
  border: 1px solid #ccd2dc;
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  height: 16px;
  left: 0;
  margin-top: -8px;
  position: absolute;
  top: calc(.75em - .5px);
  transition: .3s;
  vertical-align: middle;
  width: 16px;
}

.mz-check-control .mz-state-control__icon:before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 10px;
  line-height: 1;
  opacity: 0;
  transition: .3s;
}

.mz-basic-sidebox__item-name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}



/*    bên phải*/


/*màu border thương hiệu*/

.scope-item-bg-joma {
  border: 2px solid #8768dd;
}


.scope-item-bg-jp {
  border: 2px solid #e9d422;
}

.scope-item-bg-de {
  border: 2px solid #a9e592;
}

.scope-item-bg-uk {
  border: 2px solid #98dbf7;
}

.scope-item-bg-store {
  border: 2px solid #c868dd;
}

.scope-item-bg-iherb {
  border: 2px solid #7cdd68;
}

.scope-item-bg-black {
  border: 2px solid #A9A9A9;
}

/*màu border thương hiệu*/


.search-scope-list .scope-item:hover {
  box-shadow: 0 5px 7px 1px #0000006e;
  transform: translateY(-4px);
}



.search-scope-list .scope-item.active {
  box-shadow: 0 5px 7px 1px #0000006e;
  transform: translateY(-4px);
}



.mz-layout__main-col {
  padding: 15px;
  background-color: white;
  margin: 20px auto 20px 10px;
  border-radius: 8px;
}

.search-scope-list {
  padding-bottom: 12px;
}

.search-scope-list .search-scope-list-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.search-scope-list .scope-item-col {
  margin-top: 4px;
  padding: 0 2px;
  position: relative;
}




.search-scope-list .scope-item {
  border-radius: 8px;
  color: #303846;
  height: 100%;
  padding: 8px 12px;
  position: relative;
  transition: .3s;
  width: 100%;
}

.search-scope-list .scope-item-content {
  display: flex;
  flex-wrap: nowrap;
}

.search-scope-list .scope-item-avatar {
  display: flex;
  margin-right: 6px;
  padding-top: 2px;
}

.mz-icon-svg-s18 {
  height: 18px;
  min-width: 18px;
  width: 18px;
}

.mz-icon-svg {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  font-style: normal;
  line-height: 1;
  vertical-align: middle;
}

.mz-layout__main-col img {
  color: transparent;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}



.search-scope-list .scope-item-text {
  color: #505f77;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.search-scope-list .scope-item-row {
  align-items: baseline;
  display: flex;
  flex-wrap: nowrap;
  font-size: 12px;
  line-height: 18px;
  margin-top: 4px;
}

.search-scope-list .title-item-row {
  align-items: center;
  display: flex;
  margin-left: auto;
}

.search-scope-list .scope-item-icon {
  align-items: center;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}


.product-titlebar-section {
  margin-bottom: 16px;
}

.product-titlebar-section .main-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.product-titlebar-section .main-title h1,
.product-titlebar-section .main-title h2,
.product-titlebar-section .main-title h3,
.product-titlebar-section .main-title h4,
.product-titlebar-section .main-title h6 {
  display: inline;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.product-titlebar-section .description-field {
  font-size: 14px;
  margin-top: 0;
}

.product-titlebar-section .total-field {
  color: #2e2e2e;
  font-weight: 600;
  margin-top: 10px;
}

.category-product-card-wrap.is-loading {
  min-height: 360px;
}

.category-product-card-wrap {
  position: relative;
}

.mz-gap-8 {
  gap: 2rem !important;
}

.mz-grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.mz-grid {
  display: grid !important;
}

.price-product-card {
  height: 100%;
  position: relative;
  transition: .3s;
  width: 100%;
}

.price-product-card .product-image-card {
  display: flex;
  justify-content: center;
  height: 300px;
  transition: all .3s;
}

.price-product-card .product-image-card:hover {
  box-shadow: 0 24px 32px -16px rgba(204, 210, 220, .4);
  transform: translateY(-10px);
}

.price-product-card .product-image-card .product-image {
  display: block;
  margin-bottom: 8px;
  position: relative;
  width: 100%;
  object-fit: cover;
}

.price-product-card .discount-tag {
  align-items: center;
  background: #a42a2e;
  border-radius: 60px;
  bottom: 28%;
  box-shadow: 0 0 0 2px #fff;
  color: #fff;
  display: flex;
  height: 20px;
  left: 5px;
  padding: 2px;
  position: absolute;
  z-index: 10;
}

.price-product-card .discount-tag .discount-percent {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  line-height: 10px;
  margin: 0 4px;
  position: relative;
  top: -1px;
}

.price-product-card .product-name {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #000;
  display: -webkit-box;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 4px;
  min-height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-product-card .product-rating {
  align-items: center;
  color: #505f77;
  display: flex;
  font-size: 12px;
  line-height: 18px;
  margin-top: 8px;
}

.price-product-card .product-rating .review-star {
  color: #2e2e2e;
  display: flex;
  font-size: 8px;
  gap: 2px;
  line-height: 1;
}

.price-product-card .product-rating .rating-total {
  display: inline-flex;
  margin-left: 4px;
  margin-top: 0;
}

.price-product-card .product-rating .rating-total .country-code,
.price-product-card .product-rating .rating-total .review-total {
  color: #505f77;
  font-size: 10px;
  line-height: 1;
  margin-right: 4px;
}

.price-product-card .product-rating .rating-total .country-code,
.price-product-card .product-rating .rating-total .review-total {
  color: #505f77;
  font-size: 10px;
  line-height: 1;
  margin-right: 4px;
}

.price-product-card .product-rating .rating-total .country-code,
.price-product-card .product-rating .rating-total .review-total {
  color: #505f77;
  font-size: 10px;
  line-height: 1;
  margin-right: 4px;
}

.price-product-card .product-price {
  display: flex;
  flex-direction: row;
  margin-top: 8px;
}

.price-product-card .product-price .product-price-col {
  display: flex;
  flex-direction: column;
}

.price-product-card .product-price .product-price-col .current-price {
  color: #2e2e2e;
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.price-product-card .product-price .product-price-col .old-price {
  color: #2e2e2e;
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 13px;
  height: 15px;
  line-height: 19px;
  margin-top: 2px;
  text-decoration: line-through;
}

.category-page .mz-layout__pagination.is-search-page {
  align-items: baseline;
  display: flex;
  justify-content: center;
}

.mz-layout__pagination {
  margin-top: 24px;
}

.pagination-nav {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.pagination-nav .pageination {
  font-size: 20px;
  margin-right: 8px;
}

.pagination-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-nav__page-item:first-child {
  margin-left: 0;
}

.pagination-nav__page-item {
  margin: 0 0 0 8px;
}

.pagination-nav__page-btn:hover,
.pagination-nav__page-item.is-active .pagination-nav__page-btn {
  color: #000;
}

.pagination-nav__page-btn:hover,
.pagination-nav__page-item.is-active .pagination-nav__page-btn {
  color: #000;
}

.pagination-nav__dot-btn,
.pagination-nav__page-btn {
  align-items: center;
  border-radius: 60px;
  color: #98a5b9;
  display: flex;
  font-size: 13px;
  height: 34px;
  justify-content: center;
  line-height: 19px;
  padding: 0 6px;
}

.pagination-nav__page-btn {
  font-size: 20px;
  font-weight: 700;
}

.pagination-nav__page-item.item-dot {
  margin: 0;
}

.pagination-nav__dot-btn {
  font-weight: 300;
  line-height: 1;
}

.pagination-nav__dot-btn,
.pagination-nav__page-btn {
  align-items: center;
  border-radius: 60px;
  color: #98a5b9;
  display: flex;
  font-size: 13px;
  height: 34px;
  justify-content: center;
  line-height: 19px;
  padding: 0 6px;
}

.pagination-nav__dot-btn:before {
  content: "\f141";
  font-family: "FontAwesome";
}

.pagination-nav__page-item.item-dot+.pagination-nav__page-item {
  margin-left: 0;
}

.pagination-nav__page-item:last-child {
  margin-right: 0;
}

.pagination-nav__page-item {
  margin: 0 0 0 8px;
}

.pagination-nav__page-item.item-next .pagination-nav__page-btn,
.pagination-nav__page-item.item-prev .pagination-nav__page-btn {
  font-weight: 300;
  line-height: 1;
}

.pagination-nav__page-btn {
  font-size: 20px;
  font-weight: 700;
}

.pagination-nav__dot-btn,
.pagination-nav__page-btn {
  align-items: center;
  border-radius: 60px;
  color: #98a5b9;
  display: flex;
  font-size: 13px;
  height: 34px;
  justify-content: center;
  line-height: 19px;
  padding: 0 6px;
}

.pagination-nav__page-item.item-next .pagination-nav__page-btn:before,
.pagination-nav__page-item.item-prev .pagination-nav__page-btn:before {
  content: "\f054";
  display: block;
  font-family: "FontAwesome";
}


.mz-state-control .mz-state-control__input.is-checked+.mz-state-control__inner .mz-state-control__icon.is-checked,
.mz-state-control .mz-state-control__input.is-subtract+.mz-state-control__inner .mz-state-control__icon.is-checked,
.mz-state-control .mz-state-control__input:checked+.mz-state-control__inner .mz-state-control__icon.is-checked {
  background: #2e2e2e;
  border-color: #2e2e2e;
  content: 'check';
  color: white !important;
}



#show_bar_search {
  display: none;
  padding-top: 15px;
}


.mz-layout__side-col.is-show-search {
  max-width: 240px !important;
  opacity: 1;
  display: block;
  box-shadow: 0 5px 7px 1px #0000006e;
}

.mz-breadcrumb-block__item-title>span.txt {
  display: inline-block;
  /* hoặc block */
  max-width: 100%;
  /* đặt độ rộng tối đa, tuỳ theo layout */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* không xuống dòng */
  vertical-align: middle;
}




/*nút phân trang*/
.pagination {
  display: flex;
  margin: 18px 0;
  gap: 10px;
  justify-content: center;
  padding-left: unset;
  /*    background-color: #F2F2F2;*/
  padding: 5px 0px;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  z-index: 3;
  color: #E48312;
  background-color: white;
  border: 1px solid #E48312;
  cursor: default;
}

.pagination>li>a,
.pagination>li>span {
  color: black;
  border: 1px solid white;
  border-radius: 50%;
}


.pagination>li:first-child>a,
.pagination>li:first-child>span {
  border-radius: 50%;
  border: 1px solid #E48312;
  background-color: #E48312;
  color: white;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
  border-radius: 50%;
  border: 1px solid #E48312;
  background-color: #E48312;
  color: white;
}

#main_header_id nav>ul>.megamenu {
  position: inherit;
}

#main_header_id nav>ul>.megamenu>.sub-menu {
  display: table;
  box-shadow: 0 19px 35px rgba(0, 0, 0, .11);
}

#main_header_id nav>ul>.megamenu>.sub-menu {
  padding: 30px 0
}

#main_header_id nav>ul>.megamenu>ul>li {
  padding: 0 0 0 30px;
  border: none
}

#main_header_ids nav>ul>li>ul>li,
#header-outer[data-format=centered-menu] #main_header_id nav>ul>li>ul>li,
#header-secondary-outer .sf-menu>li>ul>li,
#header-outer .widget_shopping_cart .cart_list,
#header-outer .widget_shopping_cart .total,
#header-outer .widget_shopping_cart .buttons {
  -ms-transform: translateY(13px);
  -webkit-transform: translateY(13px);
  transform: translateY(13px);
  -ms-transition: transform .65s cubic-bezier(.2, .8, .25, 1), opacity .65s cubic-bezier(.2, .8, .25, 1);
  transition: transform .65s cubic-bezier(.2, .8, .25, 1), opacity .65s cubic-bezier(.2, .8, .25, 1);
  -webkit-transition: transform .65s cubic-bezier(.2, .8, .25, 1), opacity .65s cubic-bezier(.2, .8, .25, 1)
}

#main_header_id nav>ul>.sfHover>ul>li,
#header-secondary-outer .sf-menu>.sfHover>ul>li,
#header-outer[data-format=centered-menu] #main_header_id nav>ul>.sfHover>ul>li,
#header-outer .widget_shopping_cart.open .cart_list,
#header-outer .widget_shopping_cart.open .total,
#header-outer .widget_shopping_cart.open .buttons {
  opacity: 1;
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px)
}

#header-outer .widget_shopping_cart .cart_list,
#header-outer .widget_shopping_cart,
.wpcf7-form-control-wrap,
.nectar-social.full-width>* {
  display: block !important
}

#main_header_id nav>ul>.megamenu>ul>li:last-child {
  padding-right: 30px
}

[data-megamenu-width=full-width] #main_header_id nav>ul>.megamenu>ul>li {
  padding: 0 30px 0 0
}

[data-megamenu-width=full-width] #main_header_id nav>ul>.megamenu>ul>li:last-child {
  padding: 0
}

#main_header_id nav>ul>.megamenu>ul>li>ul {
  margin: 0;
  padding: 0
}

#main_header_id nav>ul>.megamenu>ul>li {
  width: 25%
}

#header-outer #main_header_id nav>ul>.megamenu>ul>li {
  display: table-cell;
  float: none
}

#main_header_id nav>ul>.megamenu.columns-2>ul>li {
  width: 50%
}

#main_header_id nav>ul>.megamenu.columns-3>ul>li {
  width: 33.33%
}

#main_header_id nav>ul>.megamenu.columns-4>ul>li {
  width: 25%
}

#main_header_id nav>ul>.megamenu.columns-5>ul>li {
  width: 20%
}

#main_header_id nav>ul>.megamenu.columns-6>ul>li {
  width: 16.66%
}

#main_header_id nav>ul>.megamenu>ul>li {
  display: table-cell;
  float: none;
}

#main_header_id nav>ul>.megamenu>ul>li ul {
  display: block !important;
  top: 0 !important;
  width: 100%;
  opacity: 1 !important;
  left: 0 !important;
  box-shadow: none;
  position: relative;
  padding-left: 0px;
}

#main_header_id nav>ul>.megamenu>ul>li>ul>.has-ul>ul {
  margin-left: 0;
  padding-right: 0;
  padding-left: 0
}

#main_header_id nav>ul>.megamenu ul li {
  float: none
}

#main_header_id nav>ul>.megamenu ul li a {
  border-bottom: none;
  padding: 5px 5px;
  display: block;
}

.megamenu>ul {
  position: absolute;
  width: 100%;
  left: 0;
  border: 1px solid #e9e9e9;
  padding: 30px 0;
  display: table;
  background: #fff;
  z-index: 999;

  /* Hiệu ứng */
  opacity: 0;
  transform: translateY(20px);
  /* ban đầu đẩy xuống 20px */
  pointer-events: none;
  /* tránh hover vào khi ẩn */
  transition: all 0.3s ease;
  /* mượt */
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.19);
}

.megamenu:hover>ul {
  opacity: 1;
  transform: translateY(0);
  /* trượt lên đúng vị trí */
  pointer-events: auto;
  top: 100%;
}

.nav_menu_chinh {
  position: inherit;
}

.megamenu>ul>li>ul>li>a {
  font-weight: 600;
  font-size: 14px;
  color: #444;
  text-transform: uppercase;
}

.megamenu>ul>li>ul>li>a:hover {
  color: #E48312;
}

.megamenu>ul>li>ul>li>a:active {
  color: #E48312;
}

.megamenu>ul>li>ul>li>a:focus {
  color: #E48312;
}

.megamenu>ul>li>ul>li>ul>li>a {
  color: #999;
  line-height: 20px;
  padding: 5px !important;
}

.megamenu>ul>li>ul>li>ul>li>a:hover {
  background: #E48312;
  color: #fff;
}

.doi_tac {
  text-align: center;
}

.doi_tac h2 {
  margin-bottom: 10px;
}

.loadContactForm form {
  flex-direction: column;
}

.ctrm {
  margin-bottom: 20px;
}

.d-flex {
  display: flex;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

.lien_he_ngay {
  position: relative;
}

.close_form {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 30px;
}

.list {
  color: #676767;
}

#form_lien_he_dat_hang {
  position: relative;
  padding: 20px 0;
}

#thong_so_yeu_cau .shake_arrow,
.hero-desc .shake_arrow {
  color: red;
  animation: shake 1.5s infinite alternate ease-in-out;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

.lien_he_ngay h3,
.lien_he_ngay h1 {
  color: #999;
  font-weight: 400;
}

.text_default_color {
  color: #999 !important;
}

.filter_product {
  margin-top: 10px;
}

.projects-swiper {
  position: relative;
}

.projects-swiper .swiper-wrapper {
  align-items: stretch;
}

.projects-swiper {
  position: relative;
}

.title_catalog {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: center;
  margin: 8px 0 20px;
  color: #000;
}

.title_catalog .lead_catalog {
  font-family: "Bebas Neue", system-ui, sans-serif;
  letter-spacing: .5px;
  font-size: 28px;
  line-height: 1.2;
  margin: 0
}

.title_catalog .lead_catalog span {
  color: #E48312;
}

/* Grid */
.grid_catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

@media (max-width: 980px) {
  .grid_catalog {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 640px) {
  .grid_catalog {
    grid-template-columns: 1fr;
  }
}

.card_catalog {
  position: relative;
  isolation: isolate;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.card_catalog::after,
.card-img-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .4) 55%, rgba(0, 0, 0, .75) 100%);
  transition: all 0.7s ease;
  z-index: 1;
}

.card_catalog img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform .45s ease;
}

.water {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: rgba(0, 173, 239, 0.6);
  transition: height 0.7s ease;
  /*z-index: 1;*/
  overflow: visible;
}

.card_catalog:hover .water {
  height: 76.66%;
}

.wave-top {
  position: absolute;
  top: -30px;
  left: 0;
  width: 200%;
  height: 60px;
  background: rgba(0, 173, 239, 0.6);
  border-radius: 100%;
  animation: waveMove 2s linear infinite;
  transform: scaleY(0.5);
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@keyframes waveMove {
  0% {
    transform: translateX(0) scaleY(0.5);
  }

  100% {
    transform: translateX(-50%) scaleY(0.5);
  }
}



.card_catalog .label {
  position: absolute;
  left: 22px;
  top: 385px;
  max-width: 60%;
  opacity: 1;
  z-index: 2;
  /*white-space: normal;*/
  text-align: left;
  transition: all 0.7s ease;
}

.card_catalog:hover .label {
  opacity: 1;
  top: 105px;
  z-index: 2;
}

.card_catalog:hover::after {
  /*background: transparent;*/
}

.card_catalog .water h3 {
  font-family: "Bebas Neue", system-ui, sans-serif;
  position: absolute;
  left: 22px;
  top: 30%;
  right: 12px;
  z-index: 3;
  opacity: 0;
  font-weight: normal;
  white-space: normal;
  text-align: justify;
  transition: opacity 1.4s ease;
  color: #fff;
  display: -webkit-box;
  ;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card_catalog:hover .water h3 {
  opacity: 1;
}

.card_catalog .label h3 {
  font-family: "Bebas Neue", system-ui, sans-serif;
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: unset;
  line-height: 1.5;
  font-size: 24px !important;
  text-transform: uppercase;
  white-space: pre-line;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .35);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #ffffff9e;
  color: #111;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
  display: grid;
  place-items: center;
  z-index: 5;
}

.nav-btn:hover svg {
  color: #E48312;
}

.nav-btn svg {
  width: 28px;
  height: 28px;
}

.nav-prev {
  left: -30px;
}

.nav-next {
  right: -30px;
}

.nav-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .projects-swiper {
    padding: 0 5px;
  }

  .card_catalog {
    aspect-ratio: 4 / 3;
  }

  .card_catalog .label {
    top: inherit;
    bottom: 50px;
    max-width: 85%;
  }

  .card_catalog .label h3 {
    font-size: 36px;
  }

  .card_catalog:hover .label {
    bottom: 180px;
    top: inherit;
  }

  .nav-prev {
    left: 8px;
  }

  .nav-next {
    right: 8px;
  }
}

.card_catalog:hover img {
  transform: scale(1.08)
}

.card_catalog {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .6) inset, 0 20px 30px rgba(0, 0, 0, .12)
}

.box_nhom_san_pham {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}


.news-section .h3_mini_title {
  margin-bottom: 10px;
  color: #000;
  font-weight: normal;
}

@media (min-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .projects-swiper,
  .projects-swiper .swiper,
  .projects-swiper .swiper-wrapper,
  .projects-swiper .swiper-slide {
    overflow: visible !important;
  }

  .gap-lg-20 {
    gap: 20px;
  }
}

.contact-text h2 {
  font-weight: 900;
  letter-spacing: -.5px;
  font-size: 50px;
  line-height: 1;
  margin: 0 0 12px;
  /*color: #fff;*/
  color: #d48410;
}

@media (max-width: 720px) {
  .contact-text h2 {
    font-size: 45px;
  }
}

.footer_copyright {
  background: antiquewhite;
}

.heading_title_duan {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: left;
  min-height: 85px;
  z-index: 2;
}

.heading_title_duan a {
  font-weight: bold;
  font-size: 30px;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



@media (max-width: 767.98px) {

  .box_nhom_footer {
    grid-template-columns: repeat(1, 1fr);
  }


  .product-detail-section .product-detail-container {
    width: 100%;
  }



}



@media (max-width: 499.98px) {
  .box_nhom_footer {
    grid-template-columns: repeat(1, 1fr);
  }

  .our-feature-segment .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.hero-desc .view_more {
  font-size: 16px;
  color: #fff;
}

.hero-desc .view_more:hover .shake_arrow {
  color: red !important;
}

.news_section_carosel {
  padding-bottom: 30px;
  padding-top: 20px;
}


.news_section_carosel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.news_section_carosel .owl-nav button.owl-next,
.news_section_carosel .owl-nav button.owl-prev,
.news_section_carosel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.news_section_carosel .owl-nav button {
  pointer-events: all;
  background: none;
  border: none;
}

.news_section_carosel .custom-prev {
  left: 10px;
}

.news_section_carosel .custom-prev,
.news_section_carosel .custom-next {
  font-size: 16px;
  width: 40px;
  height: 40px;
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.1;
}

.news_section_carosel:hover .custom-prev,
.news_section_carosel:hover .custom-next {
  opacity: 0.7;
}

.news_section_carosel .custom-next {
  right: 10px;
}

.news_section_carosel .owl-dots {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  background: none;
  z-index: 20;
  text-align: center;
  margin-top: 10px;
}



.news_section_carosel .owl-dot span {
  width: 9px !important;
  height: 9px !important;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #3f6bc880;
  margin: 5px;
  transition: background 0.3s;
}

.news_section_carosel .owl-dot.active span {
  background: #fff;
}

.news_section_carosel .news-grid {
  margin-top: 0px !important;
}

.news_section_carosel .custom-prev:hover,
.news_section_carosel .custom-next:hover {
  /*background: rgba(0, 0, 0, 0.6);*/
  opacity: 1;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.top_slogan a {
  color: #f6e035 !important;
}

.top_slogan .pulsingButton {
  box-shadow: 0 0 0 0 #fff;
  height: 8px;
  width: 8px;
  transition: all .3s ease-in-out;
}

@media (prefers-reduced-motion: no-preference) {
  .top_slogan .pulsingButton {
    animation: pulsing 1.25s cubic-bezier(0.66, 0, 0, 1) infinite;
  }
}

.rounded-circle {
  border-radius: 50% !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.d-inline-block {
  display: inline-block !important;
}


.top_slogan {
  position: relative;
  top: 0 !important;
  z-index: 10;
  /*background: linear-gradient(25deg, #f29878a3 0%, #d28566ab 100%);*/
  /*background: antiquewhite;*/
  background: #000;
  height: 32px;
  font-size: 12px;
  transition: all 0.4s;
}

@media (min-width: 991.99px) {
  .top_slogan {
    height: 40px;
    font-size: 14px;
    z-index: 7;
  }
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* chỉ style khung & input chấm; KHÔNG đụng tới grid 24 của bạn */
.air_blower-box {
  border: 1px solid #888;
  margin-bottom: 16px;
  background: transparent
}

.air_blower-head {
  padding: 8px 12px;
  border-bottom: 1px solid #888;
}

.air_blower-title {
  margin: 0;
  font-weight: bold
}

.air_blower-body {
  padding: 12px
}

.air_blower-item {
  margin: 10px 0;
}

.air_blower-item .checkbox {
  margin: 0
}

/* input dạng “………” nhưng vẫn gõ được */
.air_blower-input {
  background: transparent;
  border: none;
  border-bottom: 1px dotted #888;
  padding: 2px 4px;
  min-width: 130px;
  display: inline-block;
  vertical-align: baseline
}

.air_blower-input:focus {
  outline: none;
  border-bottom: 1px solid #ccc
}

.air_blower-row {
  margin: 10px 0;
}

.air_blower-inline {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0;
  padding: 0;
  margin-top: 0;
}

.air_blower-unit {
  margin-left: 8px
}

.bom_pump-box {
  border: 1px solid #888;
  padding: 15px;
  margin-bottom: 20px;
}

.bom_pump-box h4 {
  margin-top: 0;
  font-weight: bold;
  font-size: 15px;
}

/* Input kiểu "dòng chấm" nhưng vẫn gõ được */
.bom_pump-input {
  background: transparent;
  border: none;
  border-bottom: 1px dotted #888;
  padding: 2px 4px;
  min-width: 120px;
  display: inline-block;
  vertical-align: middle;
}

.bom_pump-input:focus {
  outline: none;
  border-bottom: 1px solid #bbb;
}

/* Hàng có checkbox + ô nhập: tách label và input để không che nhau */
.bom_pump-item {
  margin: 10px 0;
}

.bom_pump-item .checkbox {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  flex: 1.5 1 0;
}

.bom_pump-item .bom_pump-inline-input {
  display: inline-block;
  margin-left: 8px;
  flex: 1 1 0;
}

/* Hàng label + input + đơn vị */
.bom_pump-field {
  margin-bottom: 10px;
}

.bom_pump-unit {
  margin-left: 6px;
  opacity: .85;
}

/* Responsive */
@media (max-width:767px) {
  .bom_pump-item .bom_pump-inline-input {
    display: block;
    margin: 6px 0 0 0;
    width: 100% !important;
  }

  .bom_pump-input {
    width: 100%;
  }
}


.surface_aerator-box, .sludge_presses_box {
  border: 1px solid #888;
  margin-bottom: 16px;
  background: transparent
}

.surface_aerator-head {
  padding: 8px 12px;
  border-bottom: 1px solid #888
}

.surface_aerator-title {
  margin: 0;
  font-weight: bold
}

.surface_aerator-body {
  /*padding: 12px;*/
  margin: 15px
}

.surface_aerator-item {
  margin: 10px 0;
}

.surface_aerator-item .checkbox {
  margin: 0
}

.surface_aerator-input {
  background: transparent;
  border: none;
  border-bottom: 1px dotted #888;
  padding: 2px 4px;
  display: inline-block;
  vertical-align: baseline
}

.surface_aerator-input:focus {
  outline: none;
  border-bottom: 1px solid #ccc
}

.surface_aerator-inline {
  display: inline-block;
  /*margin-left: 12px;*/
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

.surface_aerator-unit {
  margin-left: 6px
}

.submersible_mixer-box {
  border: 1px solid #9a9a9a;
  margin-bottom: 16px;
  background: transparent
}

.submersible_mixer-head, .sludge_presses_head {
  padding: 8px 12px;
  border-bottom: 1px solid #9a9a9a
}

.sludge_presses_body h4 {
  font-weight: bold;
  text-decoration: underline;
}

.submersible_mixer-title {
  margin: 0;
  font-weight: bold
}

.submersible_mixer-body, .sludge_presses_body {
  margin: 25px
}

.submersible_mixer-item {
  margin: 10px 0;
}

.submersible_mixer-item .checkbox {
  margin: 0
}

.submersible_mixer-input {
  background: transparent;
  border: none;
  border-bottom: 1px dotted #b3b3b3;
  padding: 2px 4px;
  min-width: 120px;
  display: inline-block;
  vertical-align: baseline
}

.submersible_mixer-input:focus {
  outline: none;
  border-bottom: 1px solid #ccc
}

.submersible_mixer-inline {
  display: inline-block;
  vertical-align: baseline;
  padding: 0;
  margin: 0;
}

.submersible_mixer-unit {
  margin-left: 6px
}

.gear_motor-box {
  border: 1px solid #888;
  margin-bottom: 16px;
  background: transparent
}

.gear_motor-head {
  padding: 8px 12px;
  border-bottom: 1px solid #888;
  margin-top: 10px;
}

.gear_motor-title {
  margin: 0;
  font-weight: bold
}

.gear_motor-body {
  margin: 25px
}

.gear_motor-item {
  margin: 6px 0
}

.gear_motor-item .checkbox {
  margin: 0
}

.gear_motor-input {
  background: transparent;
  border: none;
  border-bottom: 1px dotted #888;
  padding: 2px 4px;
  min-width: 80px;
  display: inline-block;
  vertical-align: baseline
}

.gear_motor-input:focus {
  outline: none;
  border-bottom: 1px solid #ccc
}

.gear_motor-inline {
  display: inline-block;
  margin-left: 12px;
  vertical-align: baseline
}

.gear_motor-unit {
  margin-left: 6px
}

.bom_pump-box{ 
  border:1px solid #888;
  padding:15px;
  margin-bottom:20px;
}
.bom_pump-box h4{ margin-top:0; font-weight:bold;  font-size:15px; }

/* Input kiểu "dòng chấm" nhưng vẫn gõ được */
.bom_pump-input{
  background:transparent;
  border:none;
  border-bottom:1px dotted #000;
  padding:2px 4px;
  min-width:120px;
  display:inline-block;
  vertical-align:middle;
}
.bom_pump-input:focus{ outline:none; border-bottom:1px solid #bbb; }

/* Hàng có checkbox + ô nhập: tách label và input để không che nhau */
.bom_pump-item{ margin: 10px 0; }
.bom_pump-item .bom_pump-inline-input{ display:inline-block; margin-left:8px; }

/* Hàng label + input + đơn vị */
.bom_pump-field{ margin-bottom:10px; }
.bom_pump-unit{ margin-left:6px; opacity:.85; }

/* Responsive */
@media (max-width:767px){
  .bom_pump-item .bom_pump-inline-input{
    display:block;
    margin:6px 0 0 0;
    width:100% !important;
  }
  .bom_pump-input{ width:100%; }
}

.contact_form_pr_detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.contact_form_pr_detail h2 {
  position: absolute;
  top: -18px;
  left: 30px;
  font-size: 20px;
  background: #fff;
  padding: 0 15px;
}
.contact_form_pr_detail .form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: nowrap;
}
.contact_form_pr_detail input, .contact_form_pr_detail textarea {
  padding: 10px 16px;
  border: 1px solid grey;
  border-radius: 5px;
  box-shadow: 0 0 0 1.5px transparent, 0 1px 0 rgba(0, 0, 0, .04) inset;
  font-size: 14px;
  width: calc(50% - 5px);
  max-width: 100%;
  outline: none;
  color: #8a3f24;
  width: 100%;
  box-shadow: 0 0 0 1.5px transparent, 0 1px 0 rgba(0, 0, 0, .04) inset;
  transition: box-shadow .2s ease, background .2s ease;
}

.bom_pump-item .checkbox label{
  display: flex!important;
  align-items: center!important;
  margin-top: 0;
  padding: 0;
}

.video_view {
  width: 100%;
  height: 350px;
  border: 1px solid #0b6b6b;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
#video_mo_phong {
  text-align: center;
}

.item-slide-hocvien_2 {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    border-radius: 30px;
    box-shadow: 0 8px 0 #92969e14;
    height: 355px;
    background-color: #fff;
}
.item-slide-hocvien_2 .tac {
    text-align: left !important;
}

.grey-16-400 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #808080 !important;
}
.avt-200px {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-50 {
    margin-bottom: 50px;
}

.flex-column-20px {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success-stories {
    /* background-color: #ffedee; */
    background: linear-gradient(180deg, #D8EBF7 0%, #F8FCFE 100%);
    padding: 40px 0;
}

.success-stories .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.success-stories .owl-prev, .success-stories .owl-next {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222 !important;
    font-size: 20px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}
.can_form_questionnaire {
  display: flex;
  align-items: center;
}
#form_gear_motor {
  position: relative;
}
#form_gear_motor h2 {
  position: absolute;
  top: -18px;
  left: 30px;
  font-size: 20px;
  background: #fff;
  padding: 0 15px;
}
.box_questionnaire {
  color: #000 !important;
}
.box_questionnaire input[type=checkbox],
.box_questionnaire input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  margin-top: 0 !important;
  margin-left: 0 !important;
  position: relative;
}

@media (min-width: 1200px) {
    .col-lg-5-custom {
        width: 20%;
    }
}
.bon_loc_item label {
   padding: 0;
   margin: 0;
}
.bon_loc_item input {
  width: 15%;
}
#gw_shops_screen .check-cell {
  text-align: left;
}
#gw_shops_screen .row_custom {
  padding: 0 20px;
}

:root { --border:#000; --pad:12px; }
.matrix { border-collapse: collapse; width: 100%;}
.matrix th, .matrix td {
  border: 1px solid #888 !important;
  padding: var(--pad);
}
.matrix thead th {
  text-align: center;
  font-weight: 700;
  background: #fafafa;
}
.matrix tbody th[scope="row"] {
  text-align: center;
  width: 20%;
  white-space: nowrap;
  background: #fff;
  vertical-align: middle;
}
.check-cell {
  text-align: center;
  vertical-align: middle;
  width: 26.6%;
}
.cell-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 28px;
  cursor: pointer;
  margin-top: 0;
}
.cell-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #2b7cff;
}

.check-cell:hover { background: #f6f9ff; }

.section-footer-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.box_img_footer {
  height: 100%;
}
.box_img_footer img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.footer_right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: #fefbf4;
}
.footer_right_bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  position: relative;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  background: #1f1c17;
}

.footer_right_bottom .hr_right_bottom {
  border-top: 2px solid #4c4945;
  width: 100%;
  margin: 1.25rem 0 1rem;
}
/*
.font-barlow-condensed {
    font-family: Barlow Condensed;
}*/

.infor_company {
  padding: 15px 0;
}

.footer-decoration {
  width: 100%;
  top: -1.7rem;
  overflow-x: hidden;
  right: 0rem;
  position: absolute;
}

.footer-decoration .decoration[data-v-a5458f98] {
  height: 2.5rem;
  transform: translateX(10rem);
}

@media (max-width: 991.98px) {
  .footer-decoration .decoration[data-v-a5458f98] {
    height: .875rem;
    transform: translateX(1.25rem);
    display: inline;
  }
}
.box_nhom_menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.footer_right_top {
  padding: 3.75rem 10rem;
}
.infor_company img {
  width: 25%;
}


.menu_left {
  position: fixed;
  height: 100%;
  padding: 200px 6.875rem 2.25rem;
  width: 33.3%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fefbf4;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.menu_left_cap_2 {
  position: fixed;
  height: 100%;
  padding: 200px 6.875rem 2.25rem;
  width: 33.3%;
  top: 0;
  left: 0;
  z-index: 998;
  background: #fefbf4;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  border-left: 1px solid #ede0cc;
}

.menu_left_cap_3 {
  position: fixed;
  height: 100%;
  width: 33.3%;
  top: 0;
  left: 0;
  z-index: 997;
  background: #fefbf4;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  border-left: 1px solid #ede0cc;
}

.menu_left ul li a.show_pro {
  font-size: 20px !important;
}

.menu_left ul li a .img_items_pro {
  margin-right: 0;
}

.menu_left ul li a, .menu_left_cap_2 ul li a  {
  font-size: 26px;
  transition: border 0.5s ease;
  font-family: Nunito;
}

.menu_left ul li a:hover, .menu_left_cap_2 ul li a:hover {
  border-bottom: 1px solid #000;
}

.menu_left.show_tab_menu {
  transform: translateX(0);
}
.menu_left_cap_2.show_tab_menu_cap_2 {
  transform: translateX(100%);
}
.menu_left_cap_3.show_tab_menu_cap_3 {
  transform: translateX(200%);
}

.shopping_cart__overlay {
    position: fixed;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    left: 0rem;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.75;
    pointer-events: all;
    z-index: 1000;
    display: none;
}

.menu__overlay {
  position: fixed;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.75;
  pointer-events: all;
  z-index: 996;
  display: none;
}

.shopping_cart__overlay.active, .menu__overlay.active {
    display: block !important;
}

.menu_right {
  position: fixed;
  height: 100%;
  width: 45%;
  top: 0;
  right: 0;
  z-index: 1000;
  background: #fefbf4;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
}



.banner_3 {
  padding: 60px;
}

.banner_3 .bannerEco_382hf{
  height: 500px!important;
}

.banner_3 .bannerEco_382hf .btn-more{
  font-size: 1.7rem!important;
  padding: 20px 70px!important;
}

.header_card {
  padding: 30px 30px 30px 50px;
  font-size: 22px;
  border-bottom: 1px solid #ede0cc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_card {
  width: 100%;
}

.footer_card .background_card img {
  width: 100%;
  object-fit: cover;
  height: 215px;
}

.header_card button {
  border: none;
  background: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #444;
  transition: all 0.3s ease;
}

.menu_left button, .menu_left_cap_2 button, .menu_left_cap_3 button {
  border: none;
  background: none;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: #444;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 999;
  top: 170px;
  right: 50px;
}

.close_tab_menu_0 {
  border: none;
  background: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #444;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 999;
  top: 50px;
  left: 35px;
}

.menu_left button:hover, .menu_left_cap_2 button:hover, .menu_left_cap_3 button:hover, .close_tab_menu_0:hover {
  transform: rotate(90deg);
}

.box_contact_popup .contact-modal__close {
  position: absolute;
  right: 24px;
  top: 20px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #444;
  transition: all 0.3s ease;
}

.shopping-cart__footer__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    --tw-bg-opacity: 1;
    background-color: rgba(31, 28, 23, var(--tw-bg-opacity));
    padding: 24px 30px;
}
.shopping-cart__footer__main .totals {
    display: flex;
    flex-direction: column;
    --tw-text-opacity: 1;
    color: rgba(254, 251, 244, var(--tw-text-opacity));
}

.footer_card .cart-button, .order_right .cart-button {
    --tw-border-opacity: 1;
    border: 2px solid rgba(237, 224, 204, var(--tw-border-opacity));
    background-color: transparent;
    font-family: Barlow Semi Condensed;
    --tw-text-opacity: 1;
    color: rgba(254, 251, 244, var(--tw-text-opacity));
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer_card .cart-button:hover, .order_right .cart-button:hover {
  background-color: #9b0c2c;
  color: #f6e035;
}

.shopping-cart__footer__main .totals__label {
    font-size: 16px;
    font-weight: 700;
    line-height: 4rem;
    color: #f6e035;
}

.shopping-cart__footer__main .totals__value {
    font-family: Barlow Semi Condensed;
    font-size: 24px;
    font-weight: 500;
    line-height: 2.5rem;
    color: #f6e035;
}

.menu_right.show_tab_cart {
  transform: translateX(0) !important;
}

.middle_card {
  padding: 0 40px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.middle_card .list_item_pro, .middle_card_order .list_item_pro {
  width: 100%;
  position: relative;
  transition: transform 0.3s ease;
  padding: 15px 0;
  --tw-border-opacity: 1;
  border-bottom: 1px solid rgba(237, 224, 204, var(--tw-border-opacity));
  display: flex;
  flex-direction: column;
}

.middle_card .list_item_pro {
  transform: translateX(105%);
}

.middle_card .list_item_pro.visible_items {
  transform: translateX(0%);
}

.flex-direction-row {
  flex-direction: row;
}


.flex-direction-column {
  flex-direction: column;
}



.img_items_pro {
  opacity: 1;
  /*max-height: 8rem;*/
  transition-property: opacity;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  margin-right: 20px;
  object-fit: cover;
  width: 100%;
  height: 100px;
}
.name_items {
  font-family: Nunito;
  font-size: 20px;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(31, 28, 23, var(--tw-text-opacity));
  line-height: 2.5rem;
  margin-bottom: 15px;
}

.full_width {
  width: 100%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.icon-dash:before {
  content: "\e92a";
}
.icon-plus:before {
  content: "\e94d";
}
.quantity__button {
  cursor: pointer;
  border: 2px solid #ede0cc;
  --tw-text-opacity: 1;
  color: rgba(204, 180, 143, var(--tw-text-opacity));
  padding: .25rem;
  background: transparent;
}

.list_item_pro .quantity {
    height: 3.5rem;
    gap: 0;
    margin-bottom: 0;
}
.list_item_pro .price {
  font-family: Barlow;
  font-size: 20px;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(31, 28, 23, var(--tw-text-opacity));
  line-height: 1.375rem;
}

.quantity__number {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-color: #ede0cc;;
  border-top-width: 2px;
  border-bottom-width: 2px;
  border-right-width: 0px;
  border-left-width: 0px;  
  font-family: Nunito;
  font-size: 14px;
  line-height: 1.25rem;
  font-weight: 400;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(31, 28, 23, var(--tw-text-opacity));
  min-width: 7rem;
}

.header_card label {
  font-family: Nunito;
  color: #9b0c2c;
}

.flex-1 {
  flex: 1 1 0%;
}

.cart__icon-close {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    font-size: 24px;
}

body.lock_scroll {
  overflow-y: hidden;
}

/*Menu page*/
.nav-toggle {
    display: none;
    margin: 8px 12px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}
.nav-root {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 10px 0px;
    position: relative;
}

.nav-root li a {
   color: #9b0c2c;
}

.nav-root li:hover {
   border-bottom: 1px solid #9b0c2c;
}

.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}

.menu_list_pro {
  padding: 250px 6.875rem 2.25rem;
  overflow-y: auto;
}
.menu_list_pro p {
  font-family: Nunito;
  font-size: 16px;
  font-weight: bold;
  --tw-text-opacity: 1;
  line-height: 2rem;
  color: rgba(31, 28, 23, var(--tw-text-opacity));
  margin-bottom: 0px;
}
.menu_list_pro span {
  font-family: Nunito;
  --tw-text-opacity: 1;
  color: rgba(31, 28, 23, var(--tw-text-opacity));
}
.menu_list_pro .price {
  font-family: Barlow;
  font-size: 18px;
  line-height: 1.5rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgba(31, 28, 23, var(--tw-text-opacity));
  line-height: 1.375rem;
  margin-top: 15px;
}
.menu_list_pro h2 {
  font-family: Nunito;
  font-size: 22px;
  color: #333;
}
.background_catalogs {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 103px;
}
.btn_view_more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  cursor: pointer;
  align-self: flex-end;
  --tw-bg-opacity: 1;
  background-color: rgba(31, 28, 23, var(--tw-bg-opacity));
  color: #fefbf4 !important;
  height: 4.375rem;
  width: 100%;
  padding: 40px;
  border-radius: 4px;
  font-size: 24px;
  transition: backgroun 0.5s ease;
}
.btn_view_more:hover {
  background: #4e4b47;
}
#content_con_cap_3 {
  height: 100%;
}
.menu_cat h2 {
  font-family: Nunito;
  font-size: 18px;
  color: #333;
}
/*Menu page*/

.shops-cat-page h2 {
  font-family: Nunito;
  font-size: 24px;
  padding: 0 50px;
}

/* SỬA Ở ĐÂY: bỏ 1300px, thêm max-width + 2 cột linh hoạt */
.coco-best-seller-xyz .coco-best-seller-inner {
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 80px;
}

.coco-best-seller-xyz .coco-best-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
}

.coco-best-seller-xyz .coco-best-heading {
    font-family: Vollkorn;
    font-size: 70px;
    line-height: 1.05;
    font-weight: 500;
    margin: 0 0 24px;
    color: #1b150e;
    text-transform: none;
}

.coco-best-seller-xyz .coco-best-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4d4032;
    max-width: 380px;
}

/* KHỐI SLIDER BÊN PHẢI */
.coco-best-seller-xyz .coco-best-right {
    position: relative;
    min-width: 0; /* QUAN TRỌNG: tránh grid ép tràn ngang */
}

/* ============ CARD SẢN PHẨM ============ */
.coco-best-seller-xyz .coco-product-slide {
    padding: 10px 0;
}

/* card full theo slide, không fix px */
.coco-best-seller-xyz .coco-product-card {
    width: 100%;
    /*background-color: #f8f3ea;*/
    border-radius: 18px;
    padding: 0 10px;
}

/* Vùng ảnh */
.coco-best-seller-xyz .coco-card-image-wrap {
    position: relative;
    background-color: #f5efe4;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden;
}



.coco-best-seller-xyz .coco-card-image {
    width: 100%;
     height: 460px;
    object-fit: cover;
    border-radius: 4px;
}

/* Badge Mua 1 tặng 1 */
.coco-best-seller-xyz .coco-badge-main {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #d4a34d;
    color: #1a130b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Badge “Tặng” nhỏ */
.coco-best-seller-xyz .coco-badge-gift {
    position: absolute;
    bottom: 75px;
    right: 40px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #d4a34d;
    color: #1a130b;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text dưới ảnh */
.coco-best-seller-xyz .coco-card-info {
    padding-top: 4px;
}

.coco-best-seller-xyz .coco-card-name {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #1b150e;
    margin: 0 0 8px;
    min-height: 50px;
}

.coco-best-seller-xyz .coco-card-name a {
    color: #9b0c2c;
}

.coco-best-seller-xyz .coco-card-subtitle {
    margin: 0 0 5px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1b150e;
}

/* Giá + nút giỏ */
.coco-best-seller-xyz .coco-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coco-best-seller-xyz .coco-card-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.coco-best-seller-xyz .coco-card-price {
    font-size: 16px;
    font-weight: 600;
    color: #1b150e;
}

.coco-best-seller-xyz .coco-card-price-old {
    font-size: 13px;
    text-decoration: line-through;
    color: #b6aa9a;
}

/* Nút thêm giỏ */
.coco-best-seller-xyz .coco-add-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #e2d4be;
    background-color: #f4e4cb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.coco-best-seller-xyz .coco-add-btn:hover {
    background-color: #e6d1af;
}

.coco-best-seller-xyz .coco-add-icon {
    font-size: 18px;
    color: #5c4520;
}

/* ============ OWL NAV + DOTS ============ */
.coco-best-seller-xyz .owl-carousel .owl-stage-outer {
    padding: 20px 0;
}

/* slide luôn canh giữa card */
.coco-best-seller-xyz .owl-carousel .owl-item {
    margin-right: 0 !important;
    display: flex;
    justify-content: center;
}

.coco-best-seller-xyz .coco-product-slider {
    width: 100%;
}

/* NAV 2 bên */
.coco-best-seller-xyz .coco-product-slider .owl-nav {
    width: 100%;
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.coco-best-seller-xyz .coco-product-slider .owl-nav .arrow {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background-color: #1b150e;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
}

.coco-best-seller-xyz .coco-product-slider .owl-nav .arrow:hover {
    background-color: #2d2418;
}

/* VÙNG DOTS */
.coco-best-seller-xyz .coco-product-slider .owl-dots {
    position: relative;
    width: 100%;
    margin: 15px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Thanh mờ chạy full chiều rộng */
.coco-best-seller-xyz .coco-product-slider .owl-dots::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: #e8dfd3;   /* màu be nhạt */
}

/* Mỗi dot là một đoạn chia đều trên thanh */
.coco-best-seller-xyz .coco-product-slider .owl-dot {
    position: relative;
    flex: 1;               /* chia đều theo số lượng item */
    height: 2px;
    margin: 0;             /* không cần khoảng cách, vì đã chia flex */
    cursor: pointer;
}

/* span chính là đoạn đậm, mặc định trong suốt */
.coco-best-seller-xyz .coco-product-slider .owl-dot span {
    display: block;
    width: 100%;
    height: 2px;
    background: transparent;
    position: relative;
    z-index: 1;            /* nằm trên thanh mờ */
}

/* Dot đang active → đoạn đậm */
.coco-best-seller-xyz .coco-product-slider .owl-dot.active span {
    background: #1b150e;   /* màu đen/đậm */
}


/* FULL-WIDTH TRÊN MOBILE */
@media (max-width: 1366px) {
    .coco-best-seller-xyz .coco-card-image {
        height: 330px;
    }
}

@media (max-width: 1119.98px) {
    .coco-best-seller-xyz {
        padding: 40px 20px;
    }
    .coco-best-seller-xyz .coco-best-seller-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

     .coco-best-seller-xyz .coco-card-image {
        height: 450px;
    }
}

/* responsive nhẹ */
@media (max-width: 1024px) {
    .coco-best-seller-xyz .coco-best-heading {
        font-size: 48px;
    }
    .coco-best-seller-xyz .coco-product-slider .owl-nav {
        left: 0;
    }
}

@media (max-width: 690px) {
 .coco-best-seller-xyz .coco-card-image {
        height: 400px;
    }
}

#shops-content .coco-best-seller-xyz {
  padding: 50px;
}
#shops-content .coco-best-desc {
  text-transform: uppercase;
  font-family: Nunito;
  transition: all 0.5s ease;
}
#shops-content .coco-best-heading {
  font-size: 50px;
  white-space: nowrap;
  padding: 0;
  margin-bottom: 100px;
}
#shops-content .coco-best-desc:hover {
  text-decoration: underline;
}
#shops-content .coco-best-seller-xyz .coco-best-left {
  margin: 0;
}

#shops-content .coco-best-seller-xyz .coco-best-seller-inner {
  align-items: end;
}

#shops-content .coco-best-seller-xyz .owl-carousel .owl-stage-outer, 
#shops-content .coco-best-seller-xyz .coco-product-slide {
  padding: 0;
}
.product-viewlist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 15px;
}
.coco-best-seller-inner.fix_grid {
  display: block !important;
}
.coco-best-seller-inner.fix_grid .coco-card-image {
  height: 400px;
}
.product-info .info-title h1 {
  font-size: 30px;
  color: #1f1c17;
}
.box_infor_pro {
  padding: 0 50px;
}
.custom_font_vollkorn {
  font-family: Vollkorn !important;
}

.custom_font_barlow {
  font-family: Barlow Semi Condensed !important;
}

.p_relative {
  position: relative;
}

.order_left {
  padding: 30px 25px;
  border-radius: 10px;
  background-color: #fefbf4;
  font-family: Nunito;
  flex: 1 1 0;
}
.order_left .box_information {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 30px; 
}
.order_left .box_information .full-row {
  grid-column: 1 / -1;
}
.title_order {
  line-height: 1.5rem;
  font-weight: 700;
  color: #1f1c17;
}

.order_right {
  flex: 1 1 0;
  padding-top: 30px;
  border-radius: 10px;
  background-color: #fefbf4;
  font-family: Nunito;
  position: relative;
}

.input_order {
  background-color: transparent;
  border-style: none;
  flex: 1 1 0%;
  height: 4.8125rem;
  font-size: 18px;
  line-height: 1.5rem;
  width: 100%;
  border-bottom: 1px solid #ede0cc;
}

.input_order:focus {
  border-bottom: 1px solid #414548;
}

.input_order::placeholder {
  font-size: 16px;
}

textarea.input_order {
  height: auto;
}

.order_right .total_order {
  /*position: absolute;
  bottom: 0;
  left: 0;*/
  width: 100%;
  margin-top: 30px;

}

.order_right .shopping-cart__footer__main {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.middle_card_order,
.order_right .title_order {
  padding: 0 25px ;
}

#admintoolbar {
  top: 100px !important;
  left: inherit !important;
  right: 0 !important;
  border-bottom-right-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-left-radius: 10px !important;
  border-top-left-radius: 10px !important;
}

.hero_banner .eyebrow{
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 300;
  color: #f6bb35;
}

.mobile-menu-wrap .nav-wrap .nav-root {
  flex-direction: column;
  padding: 10px 20px;
  gap: 0;
}
.mobile-menu-wrap .nav-wrap ul.nav-root {
  padding: 85px 40px 2.25rem;
}
.mobile-menu-wrap .nav-wrap ul.nav-root li .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-left: 0;
}

.nav-wrap ul.nav-root li .nav-link i {
  margin-left: 5px;
}

.hot-news-others {
  flex: 0.3 1 0;
}

.hot-news-content {
  flex: 0.7 1 0;
}

.hot-news-others h2 a {
  font-size: 5.75rem;
  line-height: 72px;
  color: #9b0c2c;
}

.hot-news-content .img-thumbnail {
  width: 100%;
}
.hot-news-others .description {
  margin-top: 3.5rem;
  line-height: 3rem;
  font-size: 2rem;
  color: #97958f;
}
.hot-news-others .btn_view_more, .list_group_news .btn_view_more {
  margin-top: 3.5rem;
  background: transparent;
  border: 1px solid #9b0c2c;
  color: #1f1c17 !important;
  justify-content: space-between;
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 35px 40px;
  width: auto;
}

.list_group_news .btn_view_more {
  width: 450px;
  margin-top: 0;
}


.hot-news-others .btn_view_more i, .list_group_news .btn_view_more i {
  transition: transform 0.3s ease;
}

.hot-news-others .btn_view_more:hover i, .list_group_news .btn_view_more:hover i {
  transform: translateX(20px);
}
/*.list_group_news {
  margin-top: 50px;
}*/
.list_group_news h2 a{
  font-size: 3.5rem;
  color: #9b0c2c;
}

.news_column.coco-best-seller-xyz .coco-card-image {
   height: 400px;
   border-radius: 10px;
   transition: all 0.5s ease;
}

.news_column.coco-best-seller-xyz .coco-card-info ul li {
  font-size: 16px;
  color: #c5a25d;
  font-weight: 600;
  /*font-family: Barlow Condensed;*/
}

.news_column.coco-best-seller-xyz .coco-card-info .coco-card-name a {
  /*background: linear-gradient(90deg, transparent, transparent), linear-gradient(90deg, #1F1C17, #1F1C17);*/
  background: linear-gradient(90deg, transparent, transparent), linear-gradient(90deg, #f6e035, #9b0c2c);
  background-size: 100% 1px, 0 1px;
  background-position: 100% calc(100% - 3px), 0 calc(100% - 0px);
  background-repeat: no-repeat;
  transition: background-size .3s;
  /*display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;*/
}

.news_column.coco-best-seller-xyz .coco-product-card:hover .coco-card-name a {
  background-size: 0 1px, 100% 1px !important;
}

.news_column.coco-best-seller-xyz .coco-product-card:hover img {
  transform: scale(1.2);
}

.news_column.coco-best-seller-xyz .coco-card-info .coco-card-name {
  line-height: 3.5rem;
  font-size: 24px !important;
  color: #1f1c17;
  font-family: Vollkorn;
}

.news_column.coco-best-seller-xyz {
  padding: 15px;
}

.news_column.coco-best-seller-xyz .coco-product-card .coco-card-info .coco-card-subtitle {
  margin-top: 1.5rem;
  line-height: 2.5rem;
  font-size: 1.2rem;
  color: #97958f;
  text-transform: inherit;
}
.news_column_detail h1,
.news_column_detail .title_poplular_news {
  font-size: 30px;
  font-weight: 600;
  color: #9b0c2c;
  font-family: Vollkorn;
}
.grid_content_news {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
}
.block_popular_news img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.forgot-password {
  cursor: pointer;
  font-family: Nunito;
  font-weight: 400;
  line-height: 1.25rem;
  text-align: right;
  font-size: 16px;
  color: #ccb48f;
}

.box_contact_popup .form-input::placeholder,
.box_contact_popup .form-textarea::placeholder {
  color: #d1be98;
  font-size: 14px;
}

.box_contact_popup .form-input:focus,
.box_contact_popup .form-textarea:focus {
  border-bottom-color: #b3996a;
}

.box_contact_popup .form-textarea {
  resize: vertical;
  min-height: 100px;
}

.box_contact_popup .form-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.box_contact_popup .btn_contact {
  flex: 1;
  min-width: 180px;
  padding: 16px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
  background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.box_contact_popup .btn_contact_custom {
  background: #9b0c2c;
  color: #ffffff;
  border-color: #000;
}

.box_contact_popup .btn_contact_custom:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.2);
  color: #f6e035;
}

.box_contact_popup .btn-outline {
  background: transparent;
  color: #17130f;
  border-color: #e3c58e;
  transition: all 0.3s ease;
}



.box_contact_popup .btn-outline__icon {
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

:root{
  --bg:#fff;
  --accent:#111;
  --muted:#8a8a8a;
  --cta-bg:#111;
  --cta-color:#fff;
  --bg-card:#fbf6ef;
  --accent:#111;
  --muted:#8a8a8a;
  --btn-bg:#1b1715;
  --btn-color:#fff;
  --card-radius:10px;
}

.hero_banner .hero-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  height:700px;
  align-items:stretch;
  gap:0;
  position:relative;
  overflow:hidden;
}

/* left image area */
/*  .hero-left{
      position:relative;
      overflow:hidden;
  }*/
  .hero_banner .hero-slide{
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform .6s ease, opacity .6s ease;
    height: 100%;
  }
  .hero_banner .hero-slide img{
    width:100%;
    height: 100%;
    display:block;
  }


  .hero_banner .hero-slide video{
    width:100%;
    height: 100%;
    display:block;
  }

/* right content */
.hero_banner .hero-right{
  padding:80px 74px;
  display:flex;
  flex-direction:column;
  justify-content:start;
  gap:24px;
  background:linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 100%);
}

.hero_banner h1 {
  margin:0;
  font-family: Clarendon, serif;
  font-weight:400;
  font-size:clamp(36px,6.5vw,72px);
  line-height:1.02;
  letter-spacing:0.5px;
  color: #9b0c2c;
}
.hero_banner .desc{
  color:#444;
  max-width:620px;
  font-size:15px;
}


.hero_banner .desc p{
  line-height: inherit;
}

.hero_banner .cta-row{
  display:flex;
  gap:18px;
  align-items:center;
  margin-top:10px;
}
.hero_banner .btn-cta {
  background:#9b0c2c;
  color:var(--cta-color);
  border:none;
  padding:18px 34px;
  font-weight:600;
  border-radius:6px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:12px;
  box-shadow:0 4px 10px rgba(17,17,17,0.08);
}

/* arrows */

.hero_banner .arrow-left{ left:18px }
.hero_banner .arrow-right{ right:18px }


/* responsive */
@media (max-width: 900px){
  .hero_banner .hero-wrap{grid-template-columns:1fr;min-height:100vh}
  .hero_banner .hero-right{padding:32px 22px}
  .hero_banner .arrow{display:none}
  .hero_banner .hero-slide img{object-position:center}
  .hero_banner .hero-slide video{object-position:center}
  .hero_banner .desc{max-width:100%} 
}








.hero_banner .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #9b0c2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition:
  all 0.4s ease,
  opacity 0.3s ease,
  visibility 0.3s ease;
}

/* trạng thái bình thường: dịch nhẹ ra ngoài */
.hero_banner .arrow-left {
  left: 0;
  transform: translate(-30px, -50%);
}
.hero_banner .arrow-right {
  right: 0;
  transform: translate(30px, -50%);
}

/* khi hover vào banner (hero-left), 2 nút trượt ra và hiện */
.hero_banner .owl-carousel-css-cus:hover .arrow {
  opacity: 1;
  visibility: visible;
}

.hero_banner .owl-carousel-css-cus:hover .arrow-left {
  transform: translate(10px, -50%);
}
.hero_banner .owl-carousel-css-cus:hover .arrow-right {
  transform: translate(-10px, -50%);
}

/* có thể thêm hiệu ứng scale nhẹ khi rê lên nút */
.hero_banner .arrow:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: scale(1.05) translateY(-50%);
}




/* ========== Dots tùy chỉnh Owl Carousel ========== */

/* container của dots */
.hero_banner .owl-carousel-css-cus>.owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 35;
  display: flex !important;
  gap: 10px;
/*  display: none!important;*/
}

/* từng dot */
.hero_banner .owl-carousel-css-cus .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2c1a6;
  display: inline-block;
  transition: all 0.3s ease;
}

/* dot đang active */
.hero_banner .owl-carousel-css-cus .owl-dots .owl-dot.active span {
 background: #a17b3f;
 transform: scale(1.2);
}

/* dot hover */
.hero_banner .owl-carousel-css-cus .owl-dots .owl-dot:hover span {
 background: #a17b3f;
}




/* Dots của phần nội dung (hero-right) */
.hero_banner .hero-right .owl-dots {
  position: relative;
  margin-top: 24px;           /* cách dưới phần mô tả */
  margin-bottom: -8px;        /* đẩy lên gần nút */
  display: flex !important;
  justify-content: flex-start; /* căn trái (như hình mẫu Cocoon) */
  gap: 10px;
  z-index: 5;
}

/* Từng dot */
.hero_banner .hero-right .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  display: block;
  transition: all 0.3s ease;
}

/* Dot đang active */
.hero_banner .hero-right .owl-dots .owl-dot.active span {
  background: #000;
  transform: scale(1.2);
}

/* Hover dot */
.hero_banner .hero-right .owl-dots .owl-dot:hover span {
  background: rgba(0,0,0,0.35);
}



.hero_trietly{
  position:relative;
  width:100%;
  max-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;    
  background-size:cover;
  background-position:center;
  padding:80px 20px;
}

/* subtle overlay so white card stands out */
.hero_trietly::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06));
  pointer-events:none;
}

/* centered card */
.hero_trietly .card{
  position:relative;
  z-index:5;
  width:min(760px, 90%);
  background:var(--bg-card);
  padding:46px 48px;
  border-radius:14px;
  box-shadow: 0 18px 50px rgba(17,17,17,0.12);
  border: 1px solid rgba(0,0,0,0.02);
  text-align:left;
  transform: translateY(0);
  transition: transform .36s ease, box-shadow .36s ease;
}


/* eyebrow + heading */
.hero_trietly .eyebrow {
  /*font-family: "Oswald", Inter, sans-serif;*/
  font-family: Clarendon, sans-serif;
  text-transform:none;
  font-weight:400;
  letter-spacing:0.06em;
  color: #9b0c2c;
  font-size: 7.5rem;
  margin:0 0 6px 0;
}

.hero_trietly .hero-title{
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight:700;
  font-size: clamp(34px, 5.5vw, 64px);
  margin: 4px 0 18px 0;
  line-height:1.02;
  color:var(--accent);
}

.hero_trietly .card p {
  margin:0 0 26px 0;
  color:var(--muted);
  font-size:22px;
  line-height:1.8;
}

.hero_trietly .btn-cta {
  background: #9b0c2c;              /* nền đen nâu như Cocoon */
  color: white!important;
  border: none;
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  font-family: "Inter", sans-serif;
}

/* mũi tên */
.btn-cta .arrow_css {
  display: inline-block;
  transition: transform 0.35s ease;
  color: white!important;
}

/* hiệu ứng khi hover */
.hero_trietly .btn-cta:hover, .hero_banner .btn-cta:hover, .bannerEco_382hf .btn-more:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
  color: #f6e035;
}

.hero_trietly .btn-cta:hover .arrow_css, .hero_banner .btn-cta:hover .arrow_css {
  transform: translateX(6px);       /* mũi tên trượt sang phải */
}

/* hiệu ứng khi click */
.hero_trietly .btn-cta:active {
  transform: translateY(1px);       /* nhấn xuống nhẹ */
}




/* responsive */
@media (max-width: 980px){
  .hero_trietly {padding:40px 16px; min-height:56vh}
  .hero_trietly .card{padding:30px 22px; width:100%}
  .eyebrow{font-size:20px}
  .hero_trietly .hero-title{font-size:clamp(28px,7.5vw,44px)}
}

@media (max-width:520px){
  .hero_trietly .hero-title{font-size:28px}
  .hero_trietly .card p{font-size:14px}
  .hero_trietly .btn-cta{padding:12px 18px}
}

.coco-best-seller-xyz {
  /*background-color: #fbf6ed;*/
  background-color: #f8f3ea;
  padding: 60px;
}

/* SỬA Ở ĐÂY: bỏ 1300px, thêm max-width + 2 cột linh hoạt */
.coco-best-seller-xyz .coco-best-seller-inner {
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 80px;
}

.coco-best-seller-xyz .coco-best-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
}

.coco-best-seller-xyz .coco-best-heading {
    font-family: Clarendon, serif;
    font-size: 60px;
    line-height: 1.05;
    font-weight: 500;
    margin: 0 0 24px;
    color: #9b0c2c;
    text-transform: none;
}

.coco-best-seller-xyz .coco-best-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4d4032;
    max-width: 380px;
}

/* KHỐI SLIDER BÊN PHẢI */
.coco-best-seller-xyz .coco-best-right {
    position: relative;
    min-width: 0; /* QUAN TRỌNG: tránh grid ép tràn ngang */
}

/* ============ CARD SẢN PHẨM ============ */
.coco-best-seller-xyz .coco-product-slide {
    padding: 10px 0;
}

/* card full theo slide, không fix px */
.coco-best-seller-xyz .coco-product-card {
    width: 100%;
    background-color: #f8f3ea;
    border-radius: 18px;
    padding: 0 10px;
}

/* Vùng ảnh */
.coco-best-seller-xyz .coco-card-image-wrap {
    position: relative;
    background-color: #f5efe4;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 20px;
}



.coco-best-seller-xyz .coco-card-image {
    width: 100%;
     height: 460px;
    object-fit: cover;
    border-radius: 4px;
}

/* Badge Mua 1 tặng 1 */
.coco-best-seller-xyz .coco-badge-main {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #d4a34d;
    color: #1a130b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Badge “Tặng” nhỏ */
.coco-best-seller-xyz .coco-badge-gift {
    position: absolute;
    bottom: 75px;
    right: 40px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #d4a34d;
    color: #1a130b;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text dưới ảnh */
.coco-best-seller-xyz .coco-card-info {
    padding-top: 4px;
}

.coco-best-seller-xyz .coco-card-name {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #1b150e;
    margin: 0 0 8px;
}

.coco-best-seller-xyz .coco-card-name a{
    /*color: #1b150e;*/
    color: #9b0c2c;
}

.coco-best-seller-xyz .coco-card-subtitle {
    margin: 0 0 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1b150e;
}

/* Giá + nút giỏ */
.coco-best-seller-xyz .coco-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coco-best-seller-xyz .coco-card-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.coco-best-seller-xyz .coco-card-price {
    font-size: 16px;
    font-weight: 600;
    color: #1b150e;
}

.coco-best-seller-xyz .coco-card-price-old {
    font-size: 13px;
    text-decoration: line-through;
    color: #b6aa9a;
}

/* Nút thêm giỏ */
.coco-best-seller-xyz .coco-add-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #e2d4be;
    background-color: #f4e4cb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.coco-best-seller-xyz .coco-add-btn:hover {
    background-color: #e6d1af;
}

.coco-best-seller-xyz .coco-add-icon {
    font-size: 18px;
    color: #5c4520;
}

/* ============ OWL NAV + DOTS ============ */
.coco-best-seller-xyz .owl-carousel .owl-stage-outer {
    padding: 20px 0;
}

/* slide luôn canh giữa card */
.coco-best-seller-xyz .owl-carousel .owl-item {
    margin-right: 0 !important;
    display: flex;
    justify-content: center;
}

.coco-best-seller-xyz .coco-product-slider {
    width: 100%;
}

/* NAV 2 bên */
.coco-best-seller-xyz .coco-product-slider .owl-nav {
    width: 100%;
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.coco-best-seller-xyz .coco-product-slider .owl-nav .arrow {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background-color: #1b150e;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
}

.coco-best-seller-xyz .coco-product-slider .owl-nav .arrow:hover {
    background-color: #2d2418;
}

/* VÙNG DOTS */
.coco-best-seller-xyz .coco-product-slider .owl-dots {
    position: relative;
    width: 100%;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Thanh mờ chạy full chiều rộng */
.coco-best-seller-xyz .coco-product-slider .owl-dots::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: #e8dfd3;   /* màu be nhạt */
}

/* Mỗi dot là một đoạn chia đều trên thanh */
.coco-best-seller-xyz .coco-product-slider .owl-dot {
    position: relative;
    flex: 1;               /* chia đều theo số lượng item */
    height: 2px;
    margin: 0;             /* không cần khoảng cách, vì đã chia flex */
    cursor: pointer;
}

/* span chính là đoạn đậm, mặc định trong suốt */
.coco-best-seller-xyz .coco-product-slider .owl-dot span {
    display: block;
    width: 100%;
    height: 2px;
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Dot đang active → đoạn đậm */
.coco-best-seller-xyz .coco-product-slider .owl-dot.active span {
    background: #9b0c2c;
}


/* FULL-WIDTH TRÊN MOBILE */
@media (max-width: 1366px) {
    .coco-best-seller-xyz .coco-card-image {
        height: 330px;
    }
}

@media (max-width: 1119.98px) {
    .coco-best-seller-xyz {
        padding: 40px 20px;
    }
    .coco-best-seller-xyz .coco-best-seller-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

     .coco-best-seller-xyz .coco-card-image {
        height: 450px;
    }
}

/* responsive nhẹ */
@media (max-width: 1024px) {
    .coco-best-seller-xyz .coco-best-heading {
        font-size: 48px;
    }
    .coco-best-seller-xyz .coco-product-slider .owl-nav {
        left: 0;
    }
}

@media (max-width: 690px) {
 .coco-best-seller-xyz .coco-card-image {
        height: 400px;
    }
}

.coco-best-seller-banchay2 {
        font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
        background-color: #fbf6ed;
        padding: 60px;
    }

/* INNER: slider 1fr bên trái, text 360px bên phải */
.coco-best-seller-banchay2 .coco-best-seller-inner {
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
    gap: 80px;
    align-items: center;
  }

/* TEXT: nằm cột 2 (bên phải) */
.coco-best-seller-banchay2 .coco-best-left {
}

.coco-best-seller-banchay2 .coco-best-heading {
  font-family: Clarendon, serif;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 24px;
  color: #9b0c2c;
  text-transform: none;
}

.coco-best-seller-banchay2 .coco-best-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #4d4032;
  max-width: 380px;
}

/* SLIDER: nằm cột 1 (bên trái) */
.coco-best-seller-banchay2 .coco-best-right {
  overflow: hidden;

}


/* ============ CARD SẢN PHẨM ============ */
.coco-best-seller-banchay2 .coco-product-slide {
  padding: 10px 0;
  width: 100%;
}

/* card full theo slide, không fix px */
.coco-best-seller-banchay2 .coco-product-card {
  width: 100%;
  background-color: #f8f3ea;
  border-radius: 18px;
  padding: 0 10px;
}

/* Vùng ảnh */
.coco-best-seller-banchay2 .coco-card-image-wrap {
  position: relative;
  background-color: #f5efe4;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 20px;
}



.coco-best-seller-banchay2 .coco-card-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
}

/* Badge Mua 1 tặng 1 */
.coco-best-seller-banchay2 .coco-badge-main {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #d4a34d;
  color: #1a130b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Badge “Tặng” nhỏ */
.coco-best-seller-banchay2 .coco-badge-gift {
  position: absolute;
  bottom: 75px;
  right: 40px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d4a34d;
  color: #1a130b;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text dưới ảnh */
.coco-best-seller-banchay2 .coco-card-info {
  padding-top: 4px;
}

.coco-best-seller-banchay2 .coco-card-name {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #1b150e;
  margin: 0 0 8px;
}

.coco-best-seller-banchay2 .coco-card-name a{
  color: #1b150e;
}

.coco-best-seller-banchay2 .coco-card-subtitle {
  margin: 0 0 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1b150e;
}

/* Giá + nút giỏ */
.coco-best-seller-banchay2 .coco-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coco-best-seller-banchay2 .coco-card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.coco-best-seller-banchay2 .coco-card-price {
  font-size: 16px;
  font-weight: 600;
  color: #1b150e;
}

.coco-best-seller-banchay2 .coco-card-price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: #b6aa9a;
}

/* Nút thêm giỏ */
.coco-best-seller-banchay2 .coco-add-btn {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid #e2d4be;
  background-color: #f4e4cb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.coco-best-seller-banchay2 .coco-add-btn:hover {
  background-color: #e6d1af;
}

.coco-best-seller-banchay2 .coco-add-icon {
  font-size: 18px;
  color: #5c4520;
}

/* ============ OWL NAV + DOTS ============ */
.coco-best-seller-banchay2 .owl-carousel .owl-stage-outer {
  padding: 20px 0;
}

/* slide luôn canh giữa card */
.coco-best-seller-banchay2 .owl-carousel .owl-item {
  margin-right: 0 !important;
  display: flex;
  justify-content: center;
}

.coco-best-seller-banchay2 .coco-product-slider {
  width: 100%;
}

/* NAV 2 bên */
.coco-best-seller-banchay2 .coco-product-slider .owl-nav {
  width: 100%;
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.coco-best-seller-banchay2 .coco-product-slider .owl-nav .arrow {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background-color: #1b150e;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
}

.coco-best-seller-banchay2 .coco-product-slider .owl-nav .arrow:hover {
  background-color: #2d2418;
}

/* VÙNG DOTS */
.coco-best-seller-banchay2 .coco-product-slider .owl-dots {
  position: relative;
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Thanh mờ chạy full chiều rộng */
.coco-best-seller-banchay2 .coco-product-slider .owl-dots::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #e8dfd3;   /* màu be nhạt */
}

/* Mỗi dot là một đoạn chia đều trên thanh */
.coco-best-seller-banchay2 .coco-product-slider .owl-dot {
  position: relative;
  flex: 1;               /* chia đều theo số lượng item */
  height: 2px;
  margin: 0;             /* không cần khoảng cách, vì đã chia flex */
  cursor: pointer;
}

/* span chính là đoạn đậm, mặc định trong suốt */
.coco-best-seller-banchay2 .coco-product-slider .owl-dot span {
  display: block;
  width: 100%;
  height: 2px;
  background: transparent;
  position: relative;
  z-index: 1;            /* nằm trên thanh mờ */
}

/* Dot đang active → đoạn đậm */
.coco-best-seller-banchay2 .coco-product-slider .owl-dot.active span {
  background: #9b0c2c;
}




@media (max-width: 1119.98px) {
  .coco-best-seller-banchay2 {
    padding: 40px 20px;
  }

  .coco-best-seller-banchay2 .coco-best-seller-inner {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }



  .coco-best-seller-banchay2 .coco-card-image {
    height: 450px;
  }
}


/* responsive nhẹ */
@media (max-width: 1024px) {
  .coco-best-seller-banchay2 .coco-best-heading {
    font-size: 48px;
  }
  .coco-best-seller-banchay2 .coco-product-slider .owl-nav {
    left: 0;
  }
}

@media (max-width: 690px) {
  .coco-best-seller-banchay2 .coco-card-image {
    height: 400px;
  }
}

.coco-quote-slider-x {
  background-color: #fbf6ed;
  font-family: Vollkorn;
  position: relative;
}

.coco-quote-slider-x .cqs-carousel {
  margin: 0 auto;
}

/* Nội dung mỗi slide */
.coco-quote-slider-x .cqs-item {
  text-align: center;
  width: 45%;
  margin: auto;
}

.coco-quote-slider-x .cqs-quote {
  margin: 30px auto;
  line-height: 1;
  font-size: 4.5rem;
  font-style: italic;
  font-weight: 500;
  color: #f6bb35; /* màu vàng nhạt giống hình */
}

.coco-quote-slider-x .cqs-author {
  font-family: Clarendon, serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #9b0c2c;
}

/* NAV (mũi tên 2 bên) */
.coco-quote-slider-x .cqs-carousel .owl-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.coco-quote-slider-x .cqs-carousel .owl-nav .cqs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  cursor: pointer;
  font-size: 60px;
  color: #3c3227;
}

.coco-quote-slider-x .cqs-carousel .owl-nav .cqs-arrow-left {
  left: 26px;
}

.coco-quote-slider-x .cqs-carousel .owl-nav .cqs-arrow-right {
  right: 26px;
}

/* Ẩn nền mặc định của nav */
.coco-quote-slider-x .cqs-carousel .owl-nav [class*="owl-"] {
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Dots */
.coco-quote-slider-x .cqs-carousel .owl-dots {
  margin-top: 26px;
  text-align: center;
}

.coco-quote-slider-x .cqs-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 3px;
  border-radius: 50%;
  display: inline-block;
  background-color: #d8c8a8;
}

.coco-quote-slider-x .cqs-carousel .owl-dot.active span {
  background-color: #b69555;
}

/* Responsive */
@media (max-width: 1400px) {
  .coco-quote-slider-x .cqs-item {
    width: 95%;
  }
}


@media (max-width: 767.98px) {
  .coco-quote-slider-x .cqs-quote {
    font-size: 3.5rem;
  }
}

@media (max-width: 600px) {

  .coco-quote-slider-x .cqs-carousel .owl-nav .cqs-arrow-left {
    left: 10px;
  }
  .coco-quote-slider-x .cqs-carousel .owl-nav .cqs-arrow-right {
    right: 10px;
  }

  .coco-quote-slider-x .cqs-author {
    font-size: 1.3rem;
  }

  .coco-quote-slider-x .cqs-carousel .owl-nav .cqs-arrow {
    font-size: 40px;
  }
}


@media (max-width: 499.98px) {
  .coco-quote-slider-x .cqs-quote {
    font-size: 2rem;
  }

  .coco-quote-slider-x .cqs-carousel .owl-nav .cqs-arrow {
    font-size: 30px;
  }

  .coco-quote-slider-x .cqs-carousel .owl-dots {
    margin-top: 0px;
  }

  .coco-quote-slider-x .cqs-author {
    font-size: 1rem;
  }
}

.coco-insta-xyz {
  padding: 60px;

}

.coco-insta-xyz .cinsta-inner {
  max-width: 100%;
  margin: 0 auto;
}

/* Header */
.coco-insta-xyz .cinsta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.coco-insta-xyz .cinsta-title {
  margin: 0;
  font-size: 4.5rem;
  font-style: italic;
  color: #9b0c2c;
  text-transform: none;
  font-family: Clarendon, serif;
}

.coco-insta-xyz .cinsta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  border-radius: 4px;
  border: 1px solid #9b0c2c;
  background-color: #fbf6ed;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  color: #1b150e;
  font-weight: 500;
  padding: 2rem;
  transition: all 0.3s ease;
}


.coco-insta-xyz .cinsta-follow-btn:hover, .coco-latest-posts-x1 .clp-all-btn:hover, .hot-news-others .btn_view_more:hover, .list_group_news .btn_view_more:hover, .box_contact_popup .btn-outline:hover {
  background: #9b0c2c;
  border: 1px solid #fbf6ed;
  color: #f6e035 !important;
  filter: brightness(1.2);
}

.coco-insta-xyz .cinsta-follow-btn:hover span, .coco-latest-posts-x1 .clp-all-btn:hover span {
  color: #f6e035;
}

.coco-insta-xyz .cinsta-follow-btn:hover i {
  color: #fff;
}

.coco-insta-xyz .cinsta-follow-btn i {
  font-size: 22px;
}



.coco-insta-xyz .cinsta-follow-btn2 {
  color: #1b150e;
}


.coco-insta-xyz .cinsta-follow-btn2:hover {
  background: rgba(237, 224, 204);
  border: 1px solid rgba(237, 224, 204);
}

.coco-insta-xyz .cinsta-follow-btn2 i {
  font-size: 22px;
}

/* Grid */
.coco-insta-xyz .cinsta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  height: 400px;
}

/* Item chung */
.coco-insta-xyz .cinsta-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #ddd;
}

.coco-insta-xyz .cinsta-item--big {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
}

.coco-insta-xyz .cinsta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lớp phủ + icon Instagram */
.coco-insta-xyz .cinsta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.coco-insta-xyz .cinsta-overlay i {
  font-size: 34px;
  color: #ffffff;
}

/* Hover: show overlay */
.coco-insta-xyz .cinsta-item:hover .cinsta-overlay {
  opacity: 1;
}

.cinsta-follow-btn2{
  display: none!important;
}

/* Responsive */
@media (max-width: 1200px) {
  .coco-insta-xyz .cinsta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .coco-insta-xyz .cinsta-header {
    align-items: center;
  }

  

  .coco-insta-xyz .cinsta-item--big {
    grid-row: span 1; /* trên mobile cho đều, không quá cao */
  }


  .cinsta-follow-btn{
    display: none!important;
  }

  .cinsta-follow-btn2{
    display: block!important;
  }

  .coco-insta-xyz .cinsta-title {
    font-size: 30px;
  }


  .coco-insta-xyz {
    padding: 20px;
  }


}

@media (max-width: 600px) {
  

  .coco-insta-xyz .cinsta-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  
}

@media (max-width: 499.98px) {

}

.coco-latest-posts-x1 {
  background-color: #fbf6ed;
  padding: 60px;
}

.coco-latest-posts-x1 .clp-inner {
  margin: 0 auto;
}

/* Header */
.coco-latest-posts-x1 .clp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.coco-latest-posts-x1 .clp-heading {
  margin: 0;

  color: #9b0c2c;
  font-size: 4.5rem;
  font-family: Clarendon, serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}

.coco-latest-posts-x1 .clp-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 34px;
    border-radius: 3px;
    border: 1px solid #9b0c2c;
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1b150e;
    text-decoration: none;
    background: #fbf6ed;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coco-latest-posts-x1 .clp-all-arrow {
    font-size: 16px;
}

/* Grid 3 cột */
.coco-latest-posts-x1 .clp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.coco-latest-posts-x1 .clp-card {
    display: flex;
    flex-direction: column;
}

.coco-latest-posts-x1 .clp-thumb-wrap {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: #e3dccf;
    margin-bottom: 18px;
}

.coco-latest-posts-x1 .clp-thumb {
    width: 100%;
    height: auto;
    display: block;
}

/* Meta */
.coco-latest-posts-x1 .clp-meta {
    margin-bottom: 6px;
}

.coco-latest-posts-x1 .clp-meta-brand {
    color: black;
}


.coco-latest-posts-x1 .clp-meta-date {
    color: rgba(197, 162, 93);
    font-family: Barlow Condensed;
}


.coco-latest-posts-x1 .clp-meta-dot {
    margin: 0 6px;
}

/* Title */
.coco-latest-posts-x1 .clp-title {
    font-size: 2.5rem;
    line-height: 1.5;
    color: #1b150e;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.coco-latest-posts-x1 .clp-title:hover {
    text-decoration: underline;
}

/* Excerpt */
.coco-latest-posts-x1 .clp-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #6e614d;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .coco-latest-posts-x1 {
        padding: 60px 24px;
    }

    .coco-latest-posts-x1 .clp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .coco-latest-posts-x1 .clp-heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .coco-latest-posts-x1 .clp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .coco-latest-posts-x1 .clp-grid {
        grid-template-columns: 1fr;
    }
}


#cert-wrap-large {
  padding: 80px 0px;
  background: #fbf8f2;
}

/* inner container to control max width independently */
#cert-wrap-large .cert-large-inner {
  max-width: 1600px; /* rộng để 3 item lớn */
  margin: 0 auto;
  width: calc(100% - 40px);
}

/* title + small dot */
#cert-wrap-large .cert-large-title {
  font-family: "Oswald", "Inter", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: #9b0c2c;
  margin: 0;
  font-size: 2.5rem!important;
  margin-bottom: 60px;
}
#cert-wrap-large .cert-large-dot {
  width: 6px; height:6px; background:#1b1715;
  opacity: .5; border-radius:50%;
  margin: 10px auto 36px;
}

/* override owl structure so items behave like our grid */
#cert-wrap-large .cert-large-grid { /* wrapper around owl */
  display: block; /* not grid while owl active */
  position: relative;
}

/* crucial: make owl items center and full height */
#cert-wrap-large .owl-carousel .owl-stage-outer { height: auto; }
#cert-wrap-large .owl-carousel .owl-stage { display:flex; align-items:stretch; }
/*#cert-wrap-large .owl-carousel .owl-item {
  display: flex;               
  justify-content: center; 
  align-items: flex-start;
  padding: 0 !important;
  margin: 0 !important;
  height: auto;
}*/

/* each card - width controlled so 3 items look large */
#cert-wrap-large .cert-large-card {
  text-align: center;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 520px; /* control how wide each card can be */
  box-sizing: border-box;
}

/* logo */
#cert-wrap-large .cert-large-logo-wrap {
  display: inline-block;
  padding: 6px;
  border-radius: 10px;
  transition: transform .28s ease, box-shadow .28s ease;
}
#cert-wrap-large .cert-large-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
  margin-bottom: 26px;
}

/* name (serif, lớn) */
#cert-wrap-large .cert-large-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  margin: 6px 0 12px;
  /*color: #f6e035;*/
  color: #9b0c2c;;
  font-weight: 400;
  line-height: 1.02;
}

/* sub heading uppercase */
#cert-wrap-large .cert-large-sub {
  font-family: "Oswald", "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 18px;
  font-weight: 600;
}

/* description */
#cert-wrap-large .cert-large-desc {
  color: #7a7a7a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto;
}


#cert-wrap-large .cert-large-desc p{
  color: #7a7a7a;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto;
}

/* responsive: keep 3 columns until narrower, then 2, then 1 */
/* We control number of visible items via Owl responsive option; these CSS breakpoints adjust sizing */
@media (max-width: 1400px) {
  #cert-wrap-large .cert-large-inner { max-width: 1200px; }
  #cert-wrap-large .cert-large-logo { width: 160px; height:160px; margin-bottom:22px; }
  #cert-wrap-large .cert-large-name { font-size: 34px; }
  #cert-wrap-large .cert-large-desc { max-width:420px; font-size:15px; }
  #cert-wrap-large .cert-large-card { max-width: 480px; }
}

@media (max-width: 1000px) {
  #cert-wrap-large .cert-large-logo { width: 140px; height:140px; }
  #cert-wrap-large .cert-large-name { font-size: 28px; }
  #cert-wrap-large .cert-large-desc { max-width:360px; }
  #cert-wrap-large .cert-large-card { max-width: 420px; }
}

@media (max-width: 640px) {
  #cert-wrap-large .cert-large-logo { width: 110px; height:110px; margin-bottom:16px; }
  #cert-wrap-large .cert-large-name { font-size: 22px; }
  #cert-wrap-large .cert-large-desc { max-width: 100%; padding: 0 18px; font-size:15px; }
  #cert-wrap-large .cert-large-card { max-width: 100%; padding: 0 12px; }
}

/* optional: hide default owl dots if you prefer custom ones */
#cert-wrap-large .owl-dots { display: none; }

/* end scoped styles */


.bannerEco_382hf {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
  box-sizing: border-box;
  height: 800px;
}

/* NÚT */
.bannerEco_382hf .btn-more {
  position: absolute;
  bottom: 14%;
  left: 20.5%;
  display: inline-block;
  background: #9b0c2c;
  padding: 28px 90px;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ẢNH SẢN PHẨM PHẢI */
.bannerEco_382hf .right-img {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 42%;
  max-width: 750px;
}

.dd-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f5693, #c7d2fe);
  border: 1px solid #e0e7ff;
  margin-bottom: 8px
}

.dropdown-box .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9aa5b1, #c7d2fe);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 700;
  position: relative;
}

.dropdown-box .avatar img {
  width: 100%;
  border-radius: 50%;
}

.dd-head a {
  margin-right: 12px;
  color: #2a6bff;
  text-decoration: none;
  font-weight: 600
}

.dd-head a:hover {
  text-decoration: underline
}
/* Mobile responsive */
@media (max-width: 767.98px) {
  .content-background h2 {
    font-size: 1.4rem;  /* nhỏ hơn để vừa màn hình */
    margin: 0 0 24px;   /* margin dưới giảm lại */
    line-height: 1.3;   /* thêm thoáng chữ */
    word-break: break-word; /* tránh chữ dài tràn */
    text-align: center;     /* canh giữa cho đẹp */
  }
}

.marquee-container {
  display: block;
  white-space: nowrap;
  background: #fbf8f2;
  padding: 40px 0;
  border-bottom: 1px solid #D0CECE;
}

.marquee-container .marquee-text {
  font-family: Clarendon, serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 92px);
  color: #9b0c2c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-container:hover {
  animation-play-state: paused;
}

.affiliate_box {
  padding: 0 30px;
}