@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: #3a6bb4;
  text-transform: capitalize;
  margin-bottom: 0;
}
.title-main h2 span {
  color: #3a6bb4;
}
.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;
  }
}
/* 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: #3a6bb4;
  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: #3a6bb4;
}

.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: 475px;
  z-index: 10;
  background: #3a6bb4;
  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: #3a6bb4;
  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: #3a6bb4;
}
.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 #3a6bb4;
  -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: #3a6bb4;
  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: #3a6bb4;
  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;
  /* Khung mỏng */
  border-radius: 0.375rem;
  /* Bo góc */
  background-color: #fff;
  transition: all 0.3s ease;
}
.pagination-home .pagination .page-item .page-link:hover {
  border-color: #3a6bb4;
  color: #3a6bb4;
  background-color: rgba(58, 107, 180, 0.1);
}
.pagination-home .pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: #3a6bb4;
  border-color: #3a6bb4;
}
.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: #3a6bb4;
  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: #3a6bb4;
  border-color: #3a6bb4;
}
.pagination-ajax a:not(.disabled):hover {
  color: #ffffff;
  background: #3a6bb4;
  border-color: #3a6bb4;
  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;
}

.navigation {
  background-color: #fff;
  border-bottom: 1px solid #e1e1e1;
  z-index: 999;
}
.navigation .nav-menu li {
  position: relative;
}
.navigation .nav-menu li a {
  line-height: 1.5;
  display: flex;
  text-align: center;
  font-size: 14px;
  align-items: center;
  color: #333;
  gap: 8px;
}
.navigation .nav-menu li a:hover {
  color: #3a6bb4;
}
.navigation .nav-menu li a.active {
  color: #3a6bb4;
  font-weight: 600;
}
.navigation .nav-menu li:hover .sub-menu {
  display: block;
}
.navigation .nav-menu li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 400px;
  border: 1px solid #e1e1e1;
  padding: 10px;
  z-index: 1000;
}
.navigation .nav-menu li .sub-menu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.navigation .nav-menu li .sub-menu ul li a {
  color: #333;
  transition: 0.3s ease;
}
.navigation .nav-menu li .sub-menu ul li a:hover {
  color: #3a6bb4;
}
.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 #3a6bb4;
}
.section-slider .thumb-slider .slide-item {
  cursor: pointer;
  padding: 10px 4px;
  text-align: center;
  border-top: 2px solid transparent;
}
.section-slider .thumb-slider .slide-item h3 {
  font-size: 12px;
  color: #3a6bb4;
}
.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);
}
.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 {
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}
.section-slider .service-item .info:hover h3 {
  color: #3a6bb4;
}

@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: #3a6bb4;
  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: #3a6bb4;
  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: #3a6bb4;
}
.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: #3a6bb4;
  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: #3a6bb4;
  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: #3a6bb4;
}

/* 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 {
  transform: scale(1.05);
}
.product_card:hover .product_name {
  color: #3a6bb4;
}
.product_card.variant {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

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

.product_image {
  position: relative;
}
.product_image .image_wrapper {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.product_image .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_image .compare_btn {
  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;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product_image .compare_btn:hover {
  background: #3a6bb4;
  color: #fff;
}
.product_image .product_icon_status {
  position: absolute;
  top: 5px;
  left: 30%;
  background: #3a6bb4;
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  cursor: pointer;
  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: #3a6bb4;
  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 {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid #3a6bb4;
  color: #3a6bb4;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.product_info .buy_now:hover {
  background: #3a6bb4;
  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: #3a6bb4;
  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);
}

/* 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: #3a6bb4;
}
.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: #3a6bb4;
}
.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 #3a6bb4;
}
.block-filter .filter-item .filter-show .filter-button button.filter-button__close {
  border: 1px solid #3a6bb4;
  color: #3a6bb4;
}
.block-filter .filter-item .filter-show .filter-button button.filter-button__readmore {
  background-color: #3a6bb4;
  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 detail */
.table-container {
  max-width: 800px;
  margin: 2rem auto;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  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 {
  font-weight: 600;
  color: #fff;
}
.table-container table tr:last-child td {
  border-bottom: none;
}
.table-container table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.table-container table tbody tr:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}
.table-container table:nth-of-type(1) {
  background-color: #e3f2fd;
}
.table-container table:nth-of-type(1) th {
  background: #2196f3;
}
.table-container table:nth-of-type(1) tbody tr:nth-child(even) {
  background-color: #f1f9ff;
}
.table-container table:nth-of-type(1) tbody tr:hover {
  background-color: #bbdefb;
}
.table-container table:nth-of-type(2) {
  background-color: #fefae0;
}
.table-container table:nth-of-type(2) th {
  background: #fbc02d;
}
.table-container table:nth-of-type(2) tbody tr:nth-child(even) {
  background-color: #fff8dc;
}
.table-container table:nth-of-type(2) tbody tr:hover {
  background-color: #fff59d;
}

.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-responsive {
  transition: transform 0.4s ease;
}
.card-news__thumbnail-wrapper.hover-scale:hover .img-responsive {
  transform: scale(1.05);
}
.card-news__thumbnail .img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-news__thumbnail .img-responsive.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-news__thumbnail .img-responsive.lazy-load.loaded {
  opacity: 1;
}
.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;
}
.card-news__title.smooth-transition {
  transition: color 0.3s ease;
}
.card-news__link:hover .card-news__title {
  color: #3a6bb4;
}
.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 #3a6bb4;
  color: #3a6bb4;
  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: #3a6bb4;
  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: #3a6bb4;
  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: #3a6bb4;
}

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