/**
 * 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 {

}


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

.logo img {
  max-height: 50px;
}

/* 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 10px;
  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;
}

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

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

.mobile-menu-wrap .metismenu .sidebar-nav ul {
  margin-top: -13px;
  margin-bottom: 13px;
}

/* 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: #e63946;
}

/* 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: #e63946;
}

/* 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: 991px) {
  .mega-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@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: #e63946;
  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 #e63946;
  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;
}

.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: #6c2eb9;
  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: #111;
}

.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 h3 {
  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;
}

/* 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 {
  display: flex;
  flex-direction: row;
  gap:  20px;
}

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;
}

.icons .badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #2196F3;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
}

/* Ẩ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 */


.card h3 {
  font-weight: 600;
  line-height: 1.4;
  margin: 10px 0 0;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Cắt tối đa 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.metismenu .sidebar {
  position: relative;
}
.mobile-menu-toggle-btn {
  cursor: pointer;
  background: none;
  text-align: center;
  font-size: 30px;
  display: none;
  z-index: 999;
}
.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 {
  width: 280px;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  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: #fff;
  min-height: 100vh;
  overflow: auto;
}
.header-menu {
  background: #fff;
  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: 35px;
  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: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 45px;
}

.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 i {
  font-size: 18px;
  position: relative;
  color:#e63946
}

.icons .badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #2196F3;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
}
.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%;
}
.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%;
}
/* ========= 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;
  }

@media (max-width: 991.98px) {
  .mo_menu_mobile {
    display: block;
  }
  .flex-direction-column-xs {
    flex-direction: column !important;
  } 
  .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: 390px !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: 50px !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: 270px;
  }

  .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 {
    left: 20px !important;
    max-width: 125px !important;
    padding: 10px !important;
  }

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

  .img-top {
    width: 200px !important;
    height: 200px !important;
  }

  .img-bottom {
    width: 275px !important;
    height: 275px !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: 40px 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 30px;  
}

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

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

.years strong {
  font-size: 48px;
  color: #e02020;
  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: 260px;
  height:260px;
  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;
  color: #333;
}

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

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

.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: #DB1A2E;
}

.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 {
    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;
  color: #555;
  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;
}

.card-content {
  padding: 20px 0;
  text-align: left;
}

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

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

.card-content h3 a {
  margin: 10px 0;
  color: #e63946 !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;
}

.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 .product-image-gallery .gallery-view {
  border-bottom: none!important;
}


.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;
}



@media (max-width: 767.98px) {
  .con_left{
    display: unset;
  }



  .product-detail-section .product-detail-container {
    width: 100%;
  }



}



@media (max-width: 499.98px) {
  .our-feature-segment .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}


.product-detail .product-image-gallery .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;
  color: #555;
  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;
  color: #333;
}

.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%;
  }

  .tab-content img {
    margin-top: 20px;
  }

  .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: #ff4d4d;
  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;
}

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

.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: #ff4d4d;
  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;
  margin-top:20px;
}

.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: #000;
  padding: 10px 0;
}

.copyright span a {
  color: #2196F3 !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: #e3a07f;
  color: #8a3f24;
  padding: 30px 0;
  font-family: 'Be Vietnam Pro', sans-serif;
}


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

}

.contact-text {
  flex: 1;
  min-width: 280px;
}

.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 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.contact-form input, .contact-form textarea {
  padding: 10px 16px;
  background: #e7ad8f;
  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;
  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 input::placeholder, .contact-form textarea::placeholder {
  color:#8f5b43;
}

.contact-form input:focus,.contact-form select:focus, .contact-form textarea:focus{
  box-shadow:0 0 0 3px rgba(0,0,0,.12);
  background:#efbda2;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #f8c2a9;
  /*color: #1a3052;*/
  color: #7a361f;
  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 input,
  .contact-form button {
    width: 100%;
  }
}


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

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

.footer .tab-content .contactList div {
  margin-bottom: 15px;
  font-size: 16px;
}
.footer .nav>li>a {
  font-size: 20px;
  color: #DB1A2E;
  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: 20px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #DB1A2E;
}

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

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

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

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #e52921;
}

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

.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: 12px 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 .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-30{
  gap: 30px;
}

.gap-5{
  gap: 5px;
}

.align-items-start {
  align-items: flex-start !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;
}

.container_banner .custom-prev {
  left: 10px;
}

.container_banner .custom-prev, .custom-next {
  font-size: 20px;
  width: 50px;
  height: 50px;
  color: white;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}

.container_banner .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:#ff4d4d;
  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 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end !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: 50px;
}
.p-b50 {
  padding-bottom: 50px;
}
.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: #ff4d4d;
}
.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: #ff4d4d;
  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: #ff4d4d;
  margin-left: 60px;
  padding: 40px;
}
.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-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 {
  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;
}
.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:1;
}
.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: white;
}

#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%;
  }
}

.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: 220px;
  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: #e63946;
}
.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: #DB1A2E;
  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: #fff;
        --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: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
        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: #ff4d4d;
    background-color: white;
    border: 1px solid #ff4d4d;
    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 #ff4d4d;
   background-color: #ff4d4d;
   color: white;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
   border-radius: 50%;
   border: 1px solid #ff4d4d;
   background-color: #ff4d4d;
   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_id 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;
    }
    .megamenu > ul > li > ul > li > a:hover{
        color: #e63946;
    }
    .megamenu > ul > li > ul > li > a:active{
        color: #e63946;
    }
    .megamenu > ul > li > ul > li > a:focus{
        color: #e63946;
    }
    .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: #e63946;
      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;
  align-items: center;
  justify-content: space-between;
}

.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;
}