@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
}

.title-main {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-main h2 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}
.title-main h2 span {
  color: #9f1a1f;
}
.title-main p {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* 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: #d71920;
  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: #9f1a1f;
}

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

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

.swiper:not(.swiper-slider-home) {
  padding: 8px;
  margin: -8px;
}

.swiper-wrapper {
  padding: 0;
}

.swiper-slide.safe-mode .article-card {
  margin: 0;
}

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

/* Button Frame */
.btn-frame {
  --size: 50px;
  --kenit-circle: 10px;
  --kenit-circle-fill: 20px;
  position: fixed;
  right: 20px;
  z-index: 999;
  display: block;
  aspect-ratio: 1;
  width: var(--size);
  height: var(--size);
}
.btn-frame.btn-chiduong {
  bottom: 400px;
}
.btn-frame.btn-zalo {
  bottom: 315px;
}
.btn-frame.btn-phone {
  bottom: 230px;
}
.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: #9f1a1f;
}
.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 #9f1a1f;
  -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 {
  position: fixed;
  bottom: 30px;
  right: 17px;
  height: 56px;
  width: 56px;
  cursor: pointer;
  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: #9f1a1f;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap svg path {
  fill: #fff;
}
.progress-wrap svg.progress-circle path {
  stroke: #9f1a1f;
  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: 1.5rem;
}

.pagination-home .pagination .page-item .page-link {
  color: #555555;
  font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: #9f1a1f;
  border-color: #9f1a1f;
}

/* 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: #9f1a1f;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s ease-out;
}
.pagination-ajax a.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagination-ajax a.current {
  color: #ffffff;
  background: var(--clr-hover);
}
.pagination-ajax a:not(.disabled):hover {
  color: #ffffff;
  background: var(--clr-hover);
}
.pagination-ajax a:is(.first, .prev, .next, .last) {
  position: relative;
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
}
.pagination-ajax a:is(.first, .prev, .next, .last):before {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 16px;
  text-indent: 0;
}
.pagination-ajax a.first:before {
  content: "\f100";
}
.pagination-ajax a.prev:before {
  content: "\f104";
}
.pagination-ajax a.next:before {
  content: "\f105";
}
.pagination-ajax a.last:before {
  content: "\f101";
}

.navigation {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.navigation ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  list-style: none;
}
.navigation ul li a {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 0;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.navigation ul li a:hover {
  color: #cf0008;
}
.navigation ul li a.active {
  color: #cf0008;
  font-weight: 600;
}
@media (max-width: 768px) {
  .navigation .navigation ul {
    flex-direction: column;
    gap: 1rem;
  }
  .navigation .navigation ul li a {
    display: block;
    text-align: center;
  }
}

.section-product .wrap-content {
  background: linear-gradient(to right, #d01f27, #9f1a1f);
  padding: 10px;
  border-radius: 5px;
}
.section-product .title-product {
  margin-bottom: 10px;
}
.section-product .title-product h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}

.grid-product {
  border-top: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
}

.product-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  border-bottom: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  padding: 0.75rem;
}
.product-item:hover .product-img-inner {
  transform: scale(1.05);
}
.product-item:hover .product-name {
  color: #9f1a1f;
}
.product-item.product-variant {
  padding: 0;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.product-item.product-variant:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.product-item.product-variant .product-info {
  padding: 1rem;
}

.product-item-inner {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.product-img {
  position: relative;
  overflow: hidden;
}
.product-img-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.product-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-info {
  padding-top: 0.75rem;
}
.product-info-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-name {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: #000;
  transition: color 0.3s ease;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-weight: 500;
}

.price-new {
  color: #9f1a1f;
  font-size: 16px;
  font-weight: 700;
}

.price-old {
  color: #999;
  font-size: 14px;
  opacity: 0.7;
}

/* 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: #9f1a1f;
  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: rgb(221, 51, 51);
}

@media (max-width: 768px) {
  .product-item .product-info {
    padding: 5px;
  }
  .product-item .product-name {
    font-size: 14px;
  }
  .product-item .price-new {
    font-size: 16px;
  }
}
/* 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: #9f1a1f;
}
.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: #9f1a1f;
}
.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 #9f1a1f;
}
.block-filter .filter-item .filter-show .filter-button button.filter-button__close {
  border: 1px solid #9f1a1f;
  color: #9f1a1f;
}
.block-filter .filter-item .filter-show .filter-button button.filter-button__readmore {
  background-color: #9f1a1f;
  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: #007bff;
  color: #fff;
  border-color: #007bff;
}
.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 Category */
.section-news .title {
  margin-bottom: 1.5rem;
}
.section-news .title h2 {
  position: relative;
  font-size: 24px;
  line-height: 1.4;
  color: #9f1a1f;
  text-transform: uppercase;
}

.article-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.article-card.swiper-safe {
  margin: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.article-card.swiper-safe:hover {
  box-shadow: inset 0 0 0 1px rgba(0, 102, 204, 0.3);
  transform: translateY(-2px);
}
.article-card.swiper-border {
  margin: 0;
  box-shadow: none;
  border: 1px solid #e0e0e0;
}
.article-card.swiper-border:hover {
  border-color: #9f1a1f;
  transform: translateY(-2px);
}

.article-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.article-link:hover {
  text-decoration: none;
  color: inherit;
}

.article-thumbnail {
  position: relative;
  overflow: hidden;
}
.article-thumbnail .thumbnail-wrapper {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.article-thumbnail .thumbnail-wrapper.hover-scale .img-responsive {
  transition: transform 0.4s ease;
}
.article-thumbnail .thumbnail-wrapper.hover-scale:hover .img-responsive {
  transform: scale(1.05);
}
.article-thumbnail .img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-thumbnail .img-responsive.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.article-thumbnail .img-responsive.lazy-load.loaded {
  opacity: 1;
}

.article-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.article-content .content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px 0;
  color: #1a1a1a;
}
.article-title.smooth-transition {
  transition: color 0.3s ease;
}
.article-link:hover .article-title {
  color: #9f1a1f;
}

.article-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 16px 0;
  flex: 1;
}

.article-actions {
  margin-top: auto;
  padding-top: 12px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d30000, #004499);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-read-more:hover {
  background: linear-gradient(135deg, #0052a3, #003366);
  transform: translateX(2px);
}
.btn-read-more:hover .btn-icon {
  transform: translateX(2px);
}
.btn-read-more:active {
  transform: translateX(1px);
}
.btn-read-more .btn-text {
  font-size: inherit;
}
.btn-read-more .btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.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) {
  .article-card {
    border-radius: 8px;
  }
  .article-content {
    padding: 16px;
  }
  .article-title {
    font-size: 1.1rem;
  }
  .article-excerpt {
    font-size: 0.9rem;
  }
  .btn-read-more {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .article-content {
    padding: 12px;
  }
  .article-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .article-excerpt {
    margin-bottom: 12px;
  }
}
.footer-title {
  font-size: 18px;
  font-weight: 400;
  color: #9f1a1f;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

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