@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

.title-main {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-main h2 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: #d30000;
  text-transform: capitalize;
  margin-bottom: 0;
}
.title-main h2 span {
  color: #d30000;
}
.title-main p {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .title-main h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 425px) {
  .title-main h2 {
    font-size: 20px;
  }
}
/* Lazy */
img {
  display: inline-block;
}

img[loading=lazy] {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: #f0f0f0;
  min-height: 100px;
  width: 100%;
  display: block;
}

img[loading=lazy].loaded {
  opacity: 1;
}

img[loading=lazy]:not(.loaded) {
  position: relative;
}
img[loading=lazy]:not(.loaded)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 3px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Reset */
.ckeditor {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor h1,
.ckeditor h2,
.ckeditor h3,
.ckeditor h4,
.ckeditor h5,
.ckeditor h6 {
  margin-bottom: 1rem;
}
.ckeditor hh2 {
  font-size: 24px;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor hh3 {
  font-size: 22px;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor hh4 {
  font-size: 20px;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor hh5 {
  font-size: 18px;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor hh6 {
  font-size: 16px;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor p {
  margin-bottom: 18px;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor h2 span,
.ckeditor h3 span,
.ckeditor h4 span,
.ckeditor h5 span,
.ckeditor h6 span,
.ckeditor p span,
.ckeditor li span,
.ckeditor a span,
.ckeditor p span strong {
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor em {
  font-style: italic;
}
.ckeditor ul,
.ckeditor ol {
  list-style: unset;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor ul li,
.ckeditor ol li {
  margin-bottom: 0.5rem;
}
.ckeditor a {
  color: #007bff;
  text-decoration: underline;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
.ckeditor a:hover {
  color: #0056b3;
}
.ckeditor img {
  width: 800px;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.ckeditor table {
  width: 100%;
  overflow-x: auto;
  table-layout: auto;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  border: 0;
}
.ckeditor table th,
.ckeditor table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
  font-size: 0.95rem;
}
.ckeditor .toc {
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 0.25rem;
}
.ckeditor .toc ul {
  list-style: none;
  padding-left: 0;
}
.ckeditor .toc ul li {
  margin-bottom: 0.5rem;
}
.ckeditor .toc a {
  color: #212529;
  text-decoration: none;
}
.ckeditor .toc a:hover {
  color: #007bff;
}
.ckeditor hr {
  margin: 1rem 0;
  border: none;
  border-top: 1px solid #ccc;
}
.ckeditor h2,
.ckeditor h3,
.ckeditor h4 {
  background: linear-gradient(#d30000, rgba(211, 0, 0, 0.6));
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.ckeditor blockquote {
  position: relative;
  font-style: italic;
  color: #444;
  border-left: 4px solid var(--color-primary);
  margin: 1em 0;
  padding: 1em 1.5em 1em 3em;
  background: linear-gradient(135deg, #fdfdfd, #f6f6f6);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.ckeditor blockquote:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.ckeditor blockquote::before {
  content: "“";
  font-size: 5em;
  position: absolute;
  left: 10px;
  top: -25px;
  color: var(--color-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}
.ckeditor blockquote a {
  color: var(--color-primary);
}
.ckeditor blockquote a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ckeditor h2 {
    font-size: 22px;
  }
  .ckeditor h3 {
    font-size: 20px;
  }
  .ckeditor h4 {
    font-size: 18px;
  }
  .ckeditor h5 {
    font-size: 16px;
  }
  .ckeditor h6 {
    font-size: 0.875rem;
  }
  .ckeditor table th,
  .ckeditor table td {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}
@media (max-width: 425px) {
  .ckeditor h2 {
    font-size: 1.25rem;
  }
  .ckeditor h3 {
    font-size: 1rem;
  }
  .ckeditor h4 {
    font-size: 0.875rem;
  }
  .ckeditor h5 {
    font-size: 0.75rem;
  }
  .ckeditor h6 {
    font-size: 0.875rem;
  }
  .ckeditor table th,
  .ckeditor table td {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}
.a2a_kit .a2a_svg {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.form-control,
.form-control-plaintext:not(textarea),
.custom-select {
  height: calc(1em + 1.25rem + 8px);
}

.quote-hidden:before, .quote-hidden:after {
  content: unset;
}

.figcaption-hidden {
  overflow: hidden;
  width: 0;
  height: 0;
}

.hidden-seoh {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  margin: 0;
}

.main-content {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.wrap-home {
  max-width: 100%;
  padding: 0;
}

.wrapper-content,
.wrap-content {
  --w: 1200px;
  width: min(100% - 20px, var(--w));
  margin: 0 auto;
}

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

.text-split-1 {
  --line-clamp: 1;
}

.text-split-2 {
  --line-clamp: 2;
}

.text-split-3 {
  --line-clamp: 3;
}

.text-split-4 {
  --line-clamp: 4;
}

.text-split-5 {
  --line-clamp: 5;
}

.text-split-6 {
  --line-clamp: 6;
}

.text-split-7 {
  --line-clamp: 7;
}

.text-split-8 {
  --line-clamp: 8;
}

.transition {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

/* BreadCrumb */
.breadCrumbs {
  background: #f1f1f1;
}

.breadcrumb {
  margin: 0;
  font-size: 14px;
  padding: 15px 0px;
  border-radius: 0;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  text-align: left;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb li:not(:last-child) {
  margin-right: 10px;
}
.breadcrumb li a {
  color: #000;
}
.breadcrumb li a span {
  color: #000;
}
.breadcrumb li:hover span, .breadcrumb li.active span, .breadcrumb listrong span {
  color: #d30000;
  font-weight: 400;
  text-decoration: none;
}

/* swiper */
.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 30px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  color: #d30000;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.section-news .swiper {
  padding: 1px;
  margin: -1px;
}

/* Cart Fix */
.cart-fixed {
  position: fixed;
  right: 20px;
  bottom: 355px;
  z-index: 10;
  background: #d30000;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  border-radius: 100%;
  display: grid;
  place-items: center;
}
.cart-fixed i {
  font-size: 22px;
}
.cart-fixed span {
  position: absolute;
  top: -5px;
  right: -10px;
  color: #ffffff;
  width: 25px;
  height: 25px;
  background: #d30000;
  text-align: center;
  line-height: 25px;
  font-size: 11px;
  border-radius: 50%;
}

/* Button Frame */
.btn-frame {
  --size: 45px;
  --kenit-circle: 8px;
  --kenit-circle-fill: 16px;
  position: fixed;
  right: 20px;
  z-index: 999;
  display: block;
  aspect-ratio: 1;
  width: var(--size);
  height: var(--size);
}
.btn-frame.btn-chiduong {
  bottom: 290px;
}
.btn-frame.btn-zalo {
  bottom: 220px;
}
.btn-frame.btn-phone {
  bottom: 150px;
}
.btn-frame .btn-frame-icon {
  position: relative;
  z-index: 1;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  aspect-ratio: 1;
  width: var(--size);
  height: var(--size);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #d30000;
}
.btn-frame .kenit-alo-circle {
  opacity: 0.5;
  position: absolute;
  top: calc(50% - (var(--size) + var(--kenit-circle)) / 2);
  right: calc(50% - (var(--size) + var(--kenit-circle)) / 2);
  aspect-ratio: 1;
  width: calc(var(--size) + var(--kenit-circle));
  height: calc(var(--size) + var(--kenit-circle));
  border: 2px solid #d30000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: transparent;
}
.btn-frame .kenit-alo-circle-fill {
  opacity: 0.4;
  position: absolute;
  top: calc(50% - (var(--size) + var(--kenit-circle-fill)) / 2);
  right: calc(50% - (var(--size) + var(--kenit-circle-fill)) / 2);
  aspect-ratio: 1;
  width: calc(var(--size) + var(--kenit-circle-fill));
  height: calc(var(--size) + var(--kenit-circle-fill));
  border: 2px solid transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3490196078);
}
.btn-frame .btn-frame-icon-inner {
  max-width: 70%;
}

/* Scroll to top */
.progress-wrap {
  --size: 55px;
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 12px;
  height: var(--size);
  width: var(--size);
  display: block;
  border-radius: 50%;
  z-index: 1001010;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 400ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  cursor: pointer;
  content: "\f077";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  font-weight: 900;
  color: #d30000;
  left: 0;
  top: 0;
  height: var(--size);
  width: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: all 400ms linear;
}
.progress-wrap svg path {
  fill: #fff;
}
.progress-wrap svg.progress-circle path {
  stroke: #d30000;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

/* Popup */
#popup .modal-body {
  padding: 0px;
}

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

/* Hidden Check Grammar Coccoc */
coccocgrammar {
  display: none;
}

/* Like Share */
.share {
  font-size: 14px;
  margin-top: 10px;
}

.social-plugin {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.social-plugin .at-share-btn {
  margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
  margin-left: 3px;
}

/* Paging */
.pagination-home {
  margin-top: 2rem;
}
.pagination-home .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.pagination-home .pagination .page-item {
  cursor: pointer;
}
.pagination-home .pagination .page-item .page-link {
  display: inline-block;
  min-width: 2rem;
  padding: 0.5rem 0.75rem;
  color: #555555;
  font-size: 0.875rem;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  background-color: #fff;
  transition: all 0.3s ease;
}
.pagination-home .pagination .page-item .page-link:hover {
  border-color: #d30000;
  color: #d30000;
  background-color: rgba(211, 0, 0, 0.1);
}
.pagination-home .pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: #d30000;
  border-color: #d30000;
}
.pagination-home .pagination .page-item.disabled {
  cursor: not-allowed;
}
.pagination-home .pagination .page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
}

/* Phân Trang Ajax */
.pagination-ajax {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 2rem;
}
.pagination-ajax a {
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  font-size: 13px;
  color: #d30000;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
  /* Nút điều hướng đặc biệt */
}
.pagination-ajax a.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagination-ajax a.current {
  color: #ffffff;
  background: #d30000;
  border-color: #d30000;
}
.pagination-ajax a:not(.disabled):hover {
  color: #ffffff;
  background: #d30000;
  border-color: #d30000;
  transform: scale(1.05);
  /* Nhẹ nhàng phóng to */
}
.pagination-ajax a.first, .pagination-ajax a.prev, .pagination-ajax a.next, .pagination-ajax a.last {
  position: relative;
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
}
.pagination-ajax a.first::before, .pagination-ajax a.prev::before, .pagination-ajax a.next::before, .pagination-ajax a.last::before {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 16px;
  text-indent: 0;
  color: inherit;
}
.pagination-ajax a.first::before {
  content: "\f100";
  /* << icon */
}
.pagination-ajax a.prev::before {
  content: "\f104";
  /* < icon */
}
.pagination-ajax a.next::before {
  content: "\f105";
  /* > icon */
}
.pagination-ajax a.last::before {
  content: "\f101";
  /* >> icon */
}

/* Select2 */
.form-group-category .select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: calc(2.25rem + 2px) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  margin-top: -3px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 3px !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da;
  padding: 0.46875rem 0.75rem;
  height: calc(2.25rem + 2px);
}

.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #80bdff;
}

.select2-container--default .select2-dropdown {
  border: 1px solid #ced4da;
}

.select2-container--default .select2-results__option {
  padding: 6px 12px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  height: auto;
  margin-top: -3px;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 6px;
  padding-left: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 31px;
  right: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 0;
}

.select2-container--default .select2-dropdown .select2-search__field,
.select2-container--default .select2-search--inline .select2-search__field {
  border: 1px solid #ced4da;
}

.select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-search--inline .select2-search__field:focus {
  outline: 0;
  border: 1px solid #80bdff;
}

.select2-container--default .select2-dropdown.select2-dropdown--below {
  border-top: 0;
}

.select2-container--default .select2-dropdown.select2-dropdown--above {
  border-bottom: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #6c757d;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #dee2e6;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[aria-selected=true]:hover {
  color: #1f2d3d;
}

.select2-container--default .select2-results__option--highlighted {
  background-color: #007bff;
  color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
  background-color: #0074f0;
  color: #fff;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #ced4da;
  min-height: calc(2.25rem + 2px);
}

.select2-container--default .select2-selection--multiple:focus {
  border-color: #80bdff;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0 0.375rem 0.375rem;
  margin-bottom: -0.375rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline {
  width: 100%;
  margin-left: 0.375rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline .select2-search__field {
  width: 100% !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline .select2-search__field {
  border: 0;
  margin-top: 6px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #007bff;
  border-color: #006fe6;
  color: #fff;
  padding: 0 10px;
  margin-top: 0.31rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: rgba(255, 255, 255, 0.7);
  float: right;
  margin-left: 5px;
  margin-right: -2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #fff;
}

.select2-container--default .select2-selection--multiple.text-sm .select2-search.select2-search--inline .select2-search__field,
.text-sm .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline .select2-search__field {
  margin-top: 8px;
}

.select2-container--default .select2-selection--multiple.text-sm .select2-selection__choice,
.text-sm .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 0.4rem;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #80bdff;
}

.select2-container--default.select2-container--focus .select2-search__field {
  border: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered li {
  padding-right: 10px;
}

.select2-selection__clear {
  display: none;
}

.header.has-scroll {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.header .head-menu a {
  display: block;
  line-height: 1.5;
  color: #fff;
}
.header .head-menu a:hover {
  color: #fff;
}
.header .head-menu a.active {
  color: #fff;
  font-weight: 600;
}

.navigation {
  z-index: 999;
}
.navigation .nav-menu li {
  position: relative;
  transition: all 0.3s ease;
}
.navigation .nav-menu li a {
  line-height: 1.5;
  display: flex;
  text-align: center;
  font-size: 14px;
  align-items: center;
  color: #fff;
  gap: 8px;
  padding: 10px 0;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.navigation .nav-menu li a i {
  transition: transform 0.3s ease;
}
.navigation .nav-menu li a:hover {
  color: #fff;
  border-radius: 4px;
}
.navigation .nav-menu li a.active {
  color: #fff;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.navigation .nav-menu li:hover a > i.fa-chevron-down {
  transform: rotate(180deg);
}
.navigation .nav-menu li:hover .sub-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear;
}
.navigation .nav-menu li .sub-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 520px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 15px;
  z-index: 1000;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.navigation .nav-menu li .sub-menu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.navigation .nav-menu li .sub-menu ul li a {
  color: #333;
  padding: 4px 0;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.navigation .nav-menu li .sub-menu ul li a:hover {
  color: #d30000;
  transform: translateX(5px);
}
.navigation .menu-info p {
  font-size: 14px;
  line-height: 1.5;
}
.navigation .menu-info p:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .navigation .navigation ul {
    flex-direction: column;
    gap: 1rem;
  }
  .navigation .navigation ul li a {
    display: block;
    text-align: center;
  }
  .navigation #offcanvas ul li a {
    position: relative;
  }
  .navigation #offcanvas ul li a i {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1000;
  }
  .navigation #offcanvas ul li.active .sub-menu {
    display: block;
  }
  .navigation #offcanvas ul li .sub-menu {
    display: none;
    padding-left: 10px;
  }
  .navigation #offcanvas ul li .sub-menu li a {
    font-size: 14px;
    color: #333;
    font-weight: 400;
  }
}

.section-slider .slide-item img {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.section-slider .thumb-slider {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.section-slider .thumb-slider .swiper-slide-thumb-active .slide-item {
  border-radius: 0;
  border-top: 2px solid #d30000;
}
.section-slider .thumb-slider .slide-item {
  cursor: pointer;
  padding: 6px 4px;
  text-align: center;
  border-top: 2px solid transparent;
}
.section-slider .thumb-slider .slide-item h3 {
  font-size: 12px;
  color: #d30000;
}
.section-slider .service-item {
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.section-slider .service-item .info {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.section-slider .service-item .info::before {
  content: "";
  position: absolute;
  background: url(../images/before-service.png) no-repeat center center/100% 100%;
  inset: 0;
  pointer-events: none;
}
.section-slider .service-item .info h3 {
  z-index: 2;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}
.section-slider .service-item .info:hover h3 {
  color: #d30000;
}

@media screen and (max-width: 426px) {
  .section-slider .thumb-slider .slide-item {
    padding: 4px;
  }
  .section-slider .thumb-slider .slide-item h3 {
    font-size: 12px;
  }
  .section-slider .service-item .info h3 {
    font-size: 12px;
  }
}
.section-product .wrap-content {
  background: #d30000;
  padding: 10px;
  border-radius: 5px;
}
.section-product .title-product {
  margin-bottom: 1rem;
}
.section-product .title-product h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}

.section-product-category .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.section-product-category .title h2 {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #d30000;
  text-transform: uppercase;
  padding-left: 1rem;
}
.section-product-category .title h2::before {
  content: "";
  position: absolute;
  width: 5px;
  height: calc(90% - 4px);
  left: 0px;
  top: 2px;
  transform: skew(-20deg);
  background-color: #d30000;
}
.section-product-category .title a {
  display: inline-block;
  border: 1px solid #d3d3d3;
  border-radius: 16px;
  color: #333;
  font-size: 11px;
  line-height: 11px;
  padding: 10px 11px;
  background: #fff;
  transition: all 0.3s ease;
}
.section-product-category .title a:hover {
  background: #d30000;
  color: #fff;
}

.section-news .title {
  margin-bottom: 1rem;
}
.section-news .title h2 {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #d30000;
  text-transform: uppercase;
  padding-left: 1rem;
}
.section-news .title h2::before {
  content: "";
  position: absolute;
  width: 5px;
  height: calc(90% - 4px);
  left: 0px;
  top: 2px;
  transform: skew(-20deg);
  background-color: #d30000;
}

.contact-maps #iframe-map iframe {
  width: 100%;
  height: 500px;
}

/* Compare */
[data-animation=slide-in-bottom] .portal-inner {
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

[data-animation=slide-in-bottom]:not(.hidden) .portal-inner {
  transform: translateY(0);
}

/* Media Query */
@media screen and (max-width: 769px) {
  .section-product .title-product h2 {
    font-size: 22px;
  }
  .section-product-category .title h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 425px) {
  .section-product .title-product h2 {
    font-size: 20px;
  }
  .section-product-category .title h2 {
    font-size: 20px;
  }
}
.grid-product {
  border-top: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
}

.product_card {
  position: relative;
  background: #fff;
  border-right: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.product_card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.product_card:hover .image_wrapper img {
  transform: scale(1.05);
}
.product_card:hover .product_name {
  color: #d30000;
}
.product_card.variant {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.product_image {
  position: relative;
}
.product_image .product_link {
  display: block;
}
.product_image .image_wrapper {
  display: block;
  overflow: hidden;
}
.product_image .image_wrapper img {
  transition: transform 0.4s linear;
}
.product_image .compare_btn {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  transition: background 0.2s ease;
}
.product_image .compare_btn:hover, .product_image .compare_btn.active {
  background: #d30000;
  color: #fff;
}
.product_image .product_icon_status {
  cursor: pointer;
  position: absolute;
  top: 5px;
  left: 30%;
  background: #d30000;
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  transition: background 0.2s ease;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.product_info {
  padding: 1rem;
}
.product_info .product_name {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 8px;
  height: 42px;
  line-height: 1.3;
  transition: color 0.3s;
}
.product_info .product_price {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.product_info .product_price .new_price {
  color: #d30000;
  font-weight: 700;
  font-size: 16px;
}
.product_info .product_price .old_price {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
}
.product_info .buy_now {
  cursor: pointer;
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d30000;
  color: #d30000;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
}
.product_info .buy_now:hover {
  background: #d30000;
  color: #fff;
}

@media (max-width: 768px) {
  .product_info {
    padding: 0.75rem;
  }
  .product_info .product_name {
    font-size: 14px;
  }
  .product_info .product_price .new_price {
    font-size: 15px;
  }
  .product_info .buy_now {
    font-size: 13px;
    padding: 0.5rem;
  }
}
/* Product Category */
.section-product-category .title-product {
  margin-bottom: 1.5rem;
}
.section-product-category .title-product h2 {
  position: relative;
  font-size: 24px;
  line-height: 1.4;
  color: #d30000;
  text-transform: uppercase;
  padding-left: 15px;
}
.section-product-category .title-product h2::before {
  content: "";
  position: absolute;
  width: 5px;
  height: calc(100% - 4px);
  left: 0px;
  top: 2px;
  transform: skew(-20deg);
  background-color: #d30000;
}

/* Product Filter */
.block-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.block-filter .filter-item {
  cursor: pointer;
  position: relative;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 10px;
}
.block-filter .filter-item.active {
  border-color: #d30000;
}
.block-filter .filter-item .filter-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.block-filter .filter-item .filter-show {
  display: none;
  position: absolute;
  max-width: 600px;
  min-width: 382px;
  top: 45px;
  left: 0;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 10px;
  z-index: 1;
}
.block-filter .filter-item .filter-show.active .filter-button {
  display: block;
}
.block-filter .filter-item .filter-show .filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.block-filter .filter-item .filter-show .filter-list .filter-list__item {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 10px;
}
.block-filter .filter-item .filter-show .filter-list .filter-list__item.active {
  border-color: #d30000;
}
.block-filter .filter-item .filter-show .filter-button {
  display: none;
  background-color: #fff;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.05);
  font-size: 0;
  margin: 8px -10px 0;
  padding: 8px 10px;
  text-align: center;
}
.block-filter .filter-item .filter-show .filter-button button {
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  margin: 0 5px;
  padding: 10px 0;
  text-align: center;
  width: 170px;
  transition: all 0.3s ease;
}
.block-filter .filter-item .filter-show .filter-button button:hover {
  box-shadow: 0 -1px 1px 1px #d30000;
}
.block-filter .filter-item .filter-show .filter-button button.filter-button__close {
  border: 1px solid #d30000;
  color: #d30000;
}
.block-filter .filter-item .filter-show .filter-button button.filter-button__readmore {
  background-color: #d30000;
  color: #fff;
}

.sort-cate {
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.sort-cate h3 {
  display: flex;
  align-items: center;
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.sort-cate h3 svg {
  margin-right: 8px;
  fill: #666;
  transition: fill 0.3s ease;
}
.sort-cate ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .sort-cate ul {
    flex-direction: column;
    gap: 5px;
  }
}
.sort-cate .btn-quick-sort.active a {
  background: #d30000;
  color: #fff;
  border-color: #d30000;
}
.sort-cate .btn-quick-sort.active a i::before {
  background: #fff;
}
.sort-cate .btn-quick-sort a {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.sort-cate .btn-quick-sort a:hover {
  background: #e9ecef;
  border-color: #adb5bd;
  transform: translateY(-1px);
}
.sort-cate .btn-quick-sort a i {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  position: relative;
  display: inline-block;
}
.sort-cate .btn-quick-sort a i::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
}
.sort-cate .btn-quick-sort.alpha-asc a i::before {
  content: "A";
  background: transparent;
  color: inherit;
  font-size: 10px;
  font-weight: bold;
  border-radius: 0;
  width: auto;
  height: auto;
}
.sort-cate .btn-quick-sort.alpha-desc a i::before {
  content: "Z";
  background: transparent;
  color: inherit;
  font-size: 10px;
  font-weight: bold;
  border-radius: 0;
  width: auto;
  height: auto;
}
.sort-cate .btn-quick-sort.position-desc a i::before {
  content: "★";
  background: transparent;
  color: inherit;
  font-size: 12px;
  border-radius: 0;
  width: auto;
  height: auto;
}
.sort-cate .btn-quick-sort.price-asc a i::before {
  content: "↑";
  background: transparent;
  color: inherit;
  font-size: 12px;
  border-radius: 0;
  width: auto;
  height: auto;
}
.sort-cate .btn-quick-sort.price-desc a i::before {
  content: "↓";
  background: transparent;
  color: inherit;
  font-size: 12px;
  border-radius: 0;
  width: auto;
  height: auto;
}

/* product detail */
.grid-pro-detail-gallery .item {
  border: 1px solid transparent;
  padding: 2px;
}
.grid-pro-detail-gallery .gallery-thumb-pro .item {
  border: 1px solid #ddd;
}
.grid-pro-detail-gallery .swiper-slide-thumb-active .item {
  border: 1px solid #ddd;
}

.table-container {
  max-width: 800px;
  margin: 2rem auto;
  overflow-x: auto;
  table-layout: auto;
  border: 1px solid #ddd;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.table-container table th,
.table-container table td {
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid #ddd;
}
.table-container table th.lileft,
.table-container table td.lileft {
  border-right: 1px solid #ddd;
}
.table-container table th {
  font-weight: 600;
  color: #fff;
}
.table-container table tr:last-child td {
  border-bottom: none;
}
.table-container table tbody tr:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.card-news {
  background: #fff;
  transition: all 0.3s ease;
}
.card-news__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-news__link:hover {
  text-decoration: none;
  color: inherit;
}
.card-news__thumbnail {
  position: relative;
  overflow: hidden;
}
.card-news__thumbnail-wrapper {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.card-news__thumbnail-wrapper.hover-scale img {
  transition: transform 0.4s linear;
}
.card-news__thumbnail-wrapper.hover-scale:hover img {
  transform: scale(1.05);
}
.card-news__content {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}
.card-news__content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-news__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 12px 0;
  color: #1a1a1a;
  min-height: 48px;
  margin-bottom: 0.625rem;
}
.card-news__title.smooth-transition {
  transition: color 0.3s ease;
}
.card-news__link:hover .card-news__title {
  color: #d30000;
}
.card-news__excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 12px 0;
  flex: 1;
  min-height: 73px;
}
.card-news__actions {
  margin-top: auto;
}
.card-news__actions .btn-read-more {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d30000;
  color: #d30000;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.card-news__actions .btn-read-more:hover {
  background: #d30000;
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .card-news__title {
    font-size: 1.1rem;
  }
  .card-news__excerpt {
    font-size: 0.9rem;
  }
  .btn-read-more {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .card-news__title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .card-news__excerpt {
    margin-bottom: 12px;
  }
}
.footer-title {
  font-size: 18px;
  font-weight: 400;
  color: #d30000;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-article .content {
  line-height: 1.8;
}
.footer-article .content p {
  margin-bottom: 0.25rem;
}

.footer-ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-ul li a {
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.footer-ul li a:hover {
  color: #d30000;
}

.popular-search span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.popular-search a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  transition: all 3s ease;
}
.popular-search a:hover {
  text-decoration: underline;
}
.popular-search a:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid #fff;
}

/*# sourceMappingURL=style-custom.css.map */
