.menu-account,
.menu-footer {
  display: none;
}

.entire-action-header svg,
.entire-action-header img {
  width: 24px;
  height: 24px;
}

@media (max-width: 1199.98px) {

  .logo-menu img {
    height: 45px;
  }

  .menu-account {
    margin-bottom: 30px;
  }

  .header-menu-mb>.container>.row>div:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  .logo-section img {
      height: 40px;
  }

  .header-menu-mb {
    padding: 10px 0;
  }

  .menu-account,
  .menu-footer {
    display: block;
  }

  .menu-account-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--black);
  }

  .menu-account-link:hover {
    color: var(--color-main);
  }

  .menu-account-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    font-size: 1.8rem;
    color: var(--color-text);
  }

  .menu-account-info {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .menu-account-name {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .menu-account-desc {
    font-size: 1.2rem;
    color: var(--color-text);
  }

  .menu-account-arrow {
    flex-shrink: 0;
    color: #000000;
  }

  .menu-section>ul>li>a {
    display: flex !important;
    align-items: center;
    gap: 1rem;
  }

  .menu-section>ul>li .menu-item-arrow {
    margin-left: auto;
    color: var(--gray-bold);
    font-size: 1.4rem;
  }

  .menu-section .marker-image,
  .menu-section .menu-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 2rem;
    width: 2rem;
    margin-right: 0;
    font-size: 1.8rem;
    color: var(--color-text);
  }

  .menu-section>ul>li.menu-home .menu-item-icon,
  .menu-section>ul>li.menu-home .menu-item-arrow {
    color: var(--red);
  }

  .menu-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 0.1rem solid #e3e3e3;
  }

  .menu-footer-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 4rem;
    padding: 0 1.5rem;
    color: var(--color-main);
  }

  .menu-footer-link:hover {
    color: var(--color-main);
  }

  .menu-footer-link i {
    width: 2rem;
    font-size: 1.8rem;
    text-align: center;
  }

  .menu-account-avatar img {
    width: 40px;
    height: 40px;
  }

  .box-member-section {
    overflow: hidden;
}
}

.nh-search .btn-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}

.nh-search .wrap-suggestion {
  top: 100%;
  left: 0;
}

.nh-search-header,
.nh-search-page {
  margin: 0 auto;
}

.nh-search-header {
  max-width: 560px;
}

.nh-search-page {
  max-width: 720px;
}

.wrap-suggestion,
.box-suggest .wrap-suggestion {
  overflow-y: auto;
  max-height: 42rem;
  padding: 6px 0;
  background-color: var(--white);
  border: 1px solid #ececec;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 32px rgba(17, 28, 45, 0.14);
  overscroll-behavior: contain;
}

.wrap-suggestion::-webkit-scrollbar {
  width: 6px;
}

.wrap-suggestion::-webkit-scrollbar-thumb {
  background-color: #dcdcdc;
  border-radius: 3px;
}

.wrap-suggestion .suggest-heading {
  padding: 10px 16px 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-text);
}

.wrap-suggestion .suggest-section + .suggest-section {
  margin-top: 4px;
  border-top: 1px solid #f4f4f4;
}

.wrap-suggestion ul li:hover,
.wrap-suggestion ul li.active {
  background-color: transparent;
}

.wrap-suggestion .suggest-item {
  padding: 0 6px;
}

.wrap-suggestion .suggest-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--color-main);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.wrap-suggestion .suggest-link:hover,
.wrap-suggestion .suggest-link:focus {
  text-decoration: none;
  color: var(--color-main);
}

.wrap-suggestion .suggest-item:hover > .suggest-link,
.wrap-suggestion ul li.active > .suggest-link {
  background-color: #fdf2f2;
}

.wrap-suggestion .suggest-item:hover > .suggest-link .suggest-name,
.wrap-suggestion ul li.active > .suggest-link .suggest-name {
  color: var(--color-highlight);
}

.wrap-suggestion .suggest-thumb {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  background-color: var(--light);
}

.wrap-suggestion .suggest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap-suggestion .suggest-body {
  flex: 1 1 auto;
  min-width: 0;
}

.wrap-suggestion .suggest-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-main);
}

.wrap-suggestion .suggest-mark {
  padding: 0;
  background-color: transparent;
  font-weight: 700;
  color: var(--color-highlight);
}

.wrap-suggestion .suggest-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 8px;
}

.wrap-suggestion .suggest-price .price-amount {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-highlight);
}

.wrap-suggestion .suggest-price .price-amount .currency-symbol {
  margin-left: 2px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
}

.wrap-suggestion .suggest-price .price-amount.old-price {
  margin-left: 0;
  font-size: 12px;
  font-weight: 400;
  color: #9aa0ab;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.wrap-suggestion .suggest-price .price-amount.old-price::after {
  display: none;
}

.wrap-suggestion .suggest-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  color: var(--color-text);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.wrap-suggestion .suggest-item:hover > .suggest-link .suggest-action,
.wrap-suggestion ul li.active > .suggest-link .suggest-action {
  background-color: var(--color-highlight);
  border-color: var(--color-highlight);
  color: var(--white);
}

.wrap-suggestion .suggest-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  font-size: 13px;
  color: var(--color-text);
}

.wrap-suggestion .suggest-empty svg {
  flex: 0 0 auto;
  opacity: 0.55;
}

.wrap-suggestion .suggest-more {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  padding: 11px 16px;
  border: 0;
  border-top: 1px solid #f1f1f1;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-highlight);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.wrap-suggestion .suggest-more:hover,
.wrap-suggestion .suggest-more:focus {
  background-color: #fdf2f2;
  text-decoration: none;
  color: var(--color-highlight);
}

.wrap-suggestion .suggest-more b {
  font-weight: 700;
}

.wrap-suggestion .suggest-more svg {
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .wrap-suggestion,
  .box-suggest .wrap-suggestion {
    max-height: 60vh;
  }

  .wrap-suggestion .suggest-thumb {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .wrap-suggestion .suggest-link {
    gap: 10px;
    padding: 7px 8px;
  }

  .wrap-suggestion .suggest-name {
    font-size: 13px;
  }
}

.sidebar-mini-cart .content-mini-cart .cart-summary-row.cart-summary-total label {
  font-weight: 600;
}

.product-combo .product-content-info-cart {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

ul.combo-items-list {
  padding-left: 0;
}

.sidebar-mini-cart .content-mini-cart .combo-item:last-child {
  padding-bottom: 0;
}

.sidebar-mini-cart .content-mini-cart .cart-item:last-child {
  margin-bottom: 0;
}

.sidebar-mini-cart .content-mini-cart .combo-item:last-child {
  border-bottom: 0;
}

.sidebar-mini-cart .content-mini-cart .product-combo .product-content-info-cart .checkbox-mark,
.sidebar-mini-cart .content-mini-cart .combo-item .nh-checkbox .checkbox-mark {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}

.sidebar-mini-cart .content-mini-cart .product-combo .product-content-info-cart .checkbox-mark i,
.sidebar-mini-cart .content-mini-cart .combo-item .nh-checkbox .checkbox-mark i {
  font-size: 8px;
}

.product-combo {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}

.sidebar-mini-cart .content-mini-cart .cart-summary-row label {
  font-weight: 400;
  margin-bottom: 0;
}

.header-menu-pc {
  padding: 10px 0px 0;
}

/* Ba cột chỉ xếp ngang từ `md` trở lên (chúng là `col-md-*`). Dưới mức đó,
   `calc(100% - 425px)` ra số âm nên cột giữa co về 0, còn `top: 25px` đẩy logo và
   cụm giỏ hàng đè lên ô tìm kiếm ở hàng dưới. */
@media (min-width: 768px) {
  .header-menu-pc>.container>.row>div:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    max-width: 215px;
    flex: 0 0 215px;
    top: 25px;
    position: relative;
    z-index: 2;
  }

  .header-menu-pc>.container>.row>div:nth-child(1) {
    flex: 0 0 210px;
    max-width: 210px;
    position: relative;
    top: 25px;
    z-index: 2;
  }

  .header-menu-pc>.container>.row>div:nth-child(2) {
    flex-basis: calc(100% - 425px);
    max-width: calc(100% - 425px);
  }
}

body.page-search .header-menu-pc {
  padding-bottom: 10px;
}

body.page-search .header-menu-pc>.container>.row>div:nth-child(1),
body.page-search .header-menu-pc>.container>.row>div:nth-child(3) {
  top: 0;
}

@media (min-width: 1200px) {
  .header-menu-pc .menu-container .menu-section>ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.section-chinh-sach .item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-chinh-sach .item .img {
  flex: 0 0 45px;
  max-width: 45px;
}

.section-chinh-sach .item .img img {
  width: 45px;
  height: 45px;
}

.section-chinh-sach .item .info-content .name {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

.section-chinh-sach .item .info-content .description {
  font-size: 14px;
}

.section-chinh-sach .title-section {
  font-size: 20px;
  margin-bottom: 10px;
}

.search-filter-reset svg {
  vertical-align: -2px;
}

.swiper .product-item.swiper-slide {
  margin-bottom: 0;
  height: auto;
}

.box-product-detail-01 {
  margin-bottom: 40px;
}

.box-product-detail-02 {
  margin-bottom: 40px;
}

.header-search {
  padding-bottom: 15px;
}

.header-search .input-group .form-control {
  border-radius: 55px !important;
  height: 40px;
  background: #f3f3f3;
}

.header-search .input-group .input-group-append .btn-submit {
  position: absolute;
  right: 0;
  background: none;
  border: 0;
  color: #000;
  top: 0;
  height: 40px;
  z-index: 22;
}

.product-wishlist-top-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid #f7dcdc;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff6f6 0%, #fffdfd 60%);
}

.product-wishlist-top-banner .banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.product-wishlist-top-banner .heart-icon-bg {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-highlight);
  box-shadow: 0 6px 14px rgba(222, 2, 4, 0.25);
  color: #ffffff;
  font-size: 18px;
}

.product-wishlist-top-banner .banner-text {
  min-width: 0;
}

.product-wishlist-top-banner .banner-text .title {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-main);
}

.product-wishlist-top-banner .banner-text .dsc {
  font-size: 13px;
  line-height: 1.45;
  color: #7c8494;
}

.product-wishlist-top-banner .btn-history {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #f2c9c9;
  border-radius: 40px;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-highlight);
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.product-wishlist-top-banner .btn-history:hover {
  background-color: var(--color-highlight);
  border-color: var(--color-highlight);
  color: #ffffff;
}

@media (max-width: 575px) {
  .product-wishlist-top-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .product-wishlist-top-banner .btn-history {
    justify-content: center;
  }
}

.list-product-wishlist {
  width: 100%;
}

.list-product-wishlist > .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 24px;
}

.list-product-wishlist > .top .title {
  position: relative;
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-main);
}

.list-product-wishlist > .top .title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--color-highlight);
}

@media (max-width: 575px) {
  .list-product-wishlist > .top .title {
    font-size: 2rem;
  }
}

.wishlist-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid #f7dcdc;
  border-radius: 40px;
  background: linear-gradient(135deg, #fff6f6 0%, #fffdfd 60%);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  color: #7c8494;
}

.wishlist-summary > i {
  font-size: 13px;
  color: var(--color-highlight);
}

.wishlist-summary strong {
  font-weight: 700;
  color: var(--color-main);
}

.warp-product-wishlist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 992px) {
  .warp-product-wishlist {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.wl-card {
  display: flex;
  flex-direction: column;
  padding: 14px;
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.wl-card:hover {
  border-color: #f6d5d5;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

.wl-card__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 12px;
  flex: 1 1 auto;
}

.wl-card__thumb {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  padding: 6px;
  border: 1px solid #eef1f5;
  border-radius: 10px;
  background-color: #f9fafc;
  overflow: hidden;
}

.wl-card__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.wl-card__sale {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px 7px;
  border-radius: 0 8px 0 8px;
  background-color: var(--color-highlight);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}

.wl-card__body {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
}

.wl-card__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.wl-card__title {
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-main);
  transition: color 0.2s;
}

.wl-card__title:hover {
  color: var(--color-highlight);
}

.wl-card__sku {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  padding: 3px 9px;
  border-radius: 8px;
  background-color: #f3f5f9;
  font-size: 12px;
  line-height: 1.5;
}

.wl-card__sku-label {
  flex: 0 0 auto;
  color: #8b93a5;
}

.wl-card__sku-value {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 600;
  color: var(--color-main);
}

.wl-card__sku-copy {
  flex: 0 0 auto;
  display: inline-flex;
  color: #a4abb8;
  transition: color 0.2s;
}

.wl-card__sku-copy:hover {
  color: var(--color-highlight);
}

.wl-card__stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.wl-card__stock i {
  font-size: 11px;
}

.wl-card__stock--in {
  background-color: rgba(26, 155, 60, 0.1);
  color: #1a9b3c;
}

.wl-card__stock--out {
  background-color: rgba(222, 2, 4, 0.08);
  color: var(--color-highlight);
}

.wl-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 10px;
  padding-top: 2px;
}

.wl-card__fav {
  flex: 0 0 32px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #f4d5d5;
  border-radius: 50%;
  background-color: #fff7f7;
  font-size: 14px;
  color: var(--color-highlight);
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.wl-card__fav:hover {
  background-color: var(--color-highlight);
  border-color: var(--color-highlight);
  color: #ffffff;
}

.wl-card__foot {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px dashed #eceff4;
}

.wl-card__qty {
  flex: 0 0 auto;
}

.wl-card__qty .product-quantity {
  height: 32px;
  padding: 0 3px;
  border-color: #e3e7ee;
  border-radius: 8px;
}

.wl-card__qty .product-quantity .btn-quantity {
  width: 22px;
  height: 30px;
  font-size: 10px;
}

.wl-card__qty .product-quantity input {
  width: 30px;
  height: 30px;
  font-size: 13px;
  font-weight: 600;
}

.wl-card__cart {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 32px;
  padding: 0 14px;
  border: 1px solid var(--color-highlight);
  border-radius: 8px;
  background-color: var(--color-highlight);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  color: #ffffff;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.wl-card__cart i {
  font-size: 14px;
}

.wl-card__cart:hover {
  background-color: #b90103;
  border-color: #b90103;
  color: #ffffff;
}

.wl-card__cart--ghost {
  border-color: #dfe3ea;
  background-color: #ffffff;
  color: var(--color-main);
}

.wl-card__cart--ghost:hover {
  border-color: var(--color-main);
  background-color: var(--color-main);
  color: #ffffff;
}

@media (min-width: 768px) {
  .wl-card {
    padding: 16px;
  }

  .wl-card__inner {
    gap: 14px;
  }

  .wl-card__thumb {
    width: 104px;
    height: 104px;
  }

  .wl-card__title {
    font-size: 16px;
  }

  .wl-card__sku,
  .wl-card__stock {
    font-size: 13px;
  }

  .wl-card__cart {
    height: 34px;
  }

  .wl-card__qty .product-quantity {
    height: 34px;
  }

  .wl-card__qty .product-quantity .btn-quantity,
  .wl-card__qty .product-quantity input {
    height: 32px;
  }
}

.wishlist-empty {
  padding: 48px 16px;
  text-align: center;
}

.wishlist-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
  border-radius: 50%;
  background-color: #fff2f2;
  font-size: 32px;
  color: #f0a3a3;
}

.wishlist-empty__text {
  margin-bottom: 18px;
  font-size: 15px;
  color: #7c8494;
}

.wishlist-empty__shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  background-color: var(--color-highlight);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: background-color 0.2s;
}

.wishlist-empty__shop:hover,
.wishlist-empty__shop:focus {
  background-color: #b90103;
  color: #ffffff;
}

.list-product-wishlist + .pagination,
.wishlist-empty + .pagination {
  margin-top: 24px;
}

.warp-place-order {
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  color: #1c1c1e;
}

.header-place-order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.header-place-order .title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.warp-place-order .header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.warp-place-order .header-btn .action-search,
.warp-place-order .header-btn .action-filter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #3a3a3c;
  cursor: pointer;
}

.warp-place-order .time-tabs {
  display: flex;
  margin-bottom: 14px;
}

.warp-place-order .tab-item {
  flex: 1;
  text-align: center;
  padding: 7px 0;
  font-size: 13px;
  font-weight: 500;
  color: #3a3a3c;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #ddd;
}

.warp-place-order .tab-item.active {
  background-color: #feedee;
  color: var(--color-highlight);
  border: 1px solid #f2cfcf;
}

.warp-place-order .stats-place-order {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.warp-place-order .stat-card {
  flex: 1;
  background-color: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.warp-place-order .stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.warp-place-order .stat-icon.draft {
  background-color: #eef4ff;
  color: #2f69ff;
}

.warp-place-order .stat-icon.completed {
  background-color: #eaf7ed;
  color: #1fb141;
}

.warp-place-order .stat-info .title {
  font-size: 13px;
  color: #1c1c1e;
  margin-bottom: 2px;
}

.warp-place-order .stat-info .count {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.warp-place-order .stat-info .count.blue {
  color: #1e56e0;
}

.warp-place-order .stat-info .count.green {
  color: #1fb141;
}

.warp-place-order .stat-info .sub-text {
  font-size: 11px;
  color: #8e8e93;
  margin-top: 2px;
}

.warp-place-order .sync-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 11.5px;
  color: #3a3a3c;
}

.warp-place-order .sync-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.warp-place-order .sync-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1e56e0;
  border: 1px solid #d0e0ff;
  padding: 10px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  background: #fff;
  line-height: 1;
}

.warp-place-order .order-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.warp-place-order .order-card {
  background-color: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.warp-place-order .order-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.warp-place-order .order-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.warp-place-order .order-icon.draft {
  background-color: #eef4ff;
  color: #2f69ff;
}

.warp-place-order .order-icon.completed {
  background-color: #eaf7ed;
  color: #1fb141;
}

.warp-place-order .order-details .order-id {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 2px;
}

.warp-place-order .order-details .order-time,
.warp-place-order .order-details .order-items {
  font-size: 11.5px;
  color: #666;
  line-height: 1.35;
}

.warp-place-order .order-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.warp-place-order .order-right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.warp-place-order .order-amount {
  font-size: 14.5px;
  font-weight: 700;
}

.warp-place-order .order-amount.blue {
  color: #1e56e0;
}

.warp-place-order .order-amount.green {
  color: #1fb141;
}

.warp-place-order .badge {
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.warp-place-order .badge.draft {
  background-color: #eef4ff;
  color: #1e56e0;
}

.warp-place-order .badge.completed {
  background-color: #eaf7ed;
  color: #179334;
}

.warp-place-order .arrow-icon {
  color: #c7c7cc;
  font-size: 12px;
}

.box-order-page .time-tabs-wrap {
  display: flex;
  padding: 16px 20px 0;
}

.box-order-page .time-tabs {
  display: inline-flex;
  gap: 4px;
  max-width: 100%;
  margin-bottom: 0;
  padding: 4px;
  border-radius: 10px;
  background-color: #f6f7f9;
}

.box-order-page .time-tabs .tab-item {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #57637a;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.box-order-page .time-tabs .tab-item:hover {
  color: var(--color-highlight);
  text-decoration: none;
}

.box-order-page .time-tabs .tab-item.active {
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
  color: var(--color-highlight);
}

.box-order-page .order-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.box-order-page .stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background-color: #fff;
}

.box-order-page .stat-icon {
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
}

.box-order-page .stat-icon.orders {
  background-color: #eef4ff;
  color: #2f69ff;
}

.box-order-page .stat-icon.goods {
  background-color: #eaf7ed;
  color: #1fb141;
}

.box-order-page .stat-icon.shipping {
  background-color: #fff5e6;
  color: #f59e0b;
}

.box-order-page .stat-icon.payment {
  background-color: rgba(222, 2, 4, 0.08);
  color: var(--color-highlight);
}

.box-order-page .stat-info {
  min-width: 0;
}

.box-order-page .stat-info .title {
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.3;
  color: #1c1c1e;
}

.box-order-page .stat-info .count {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  word-break: break-word;
}

.box-order-page .stat-info .count.orders {
  color: #1e56e0;
}

.box-order-page .stat-info .count.goods {
  color: #1fb141;
}

.box-order-page .stat-info .count.shipping {
  color: #d97706;
}

.box-order-page .stat-info .count.payment {
  color: var(--color-highlight);
}

.box-order-page .stat-info .sub-text {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.3;
  color: #8e8e93;
}

@media (max-width: 1199.98px) {
  .box-order-page .order-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .box-order-page .time-tabs {
    display: flex;
    width: 100%;
    gap: 3px;
  }

  .box-order-page .time-tabs .tab-item {
    flex: 1 1 0;
    padding: 7px 4px;
    font-size: 12px;
  }

  .box-order-page .stat-card {
    gap: 10px;
    padding: 10px;
  }

  .box-order-page .stat-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .box-order-page .stat-info .count {
    font-size: 16px;
  }
}

.box-order-page-top {
  border-radius: 12px;
  border: 1px solid #EFF1F2;
  background: #FFF;
  margin-bottom: 15px;
}

.box-order-page-top .search-order {
  padding: 16px 20px 0;
  border-bottom: 1px solid #eef2f7;
  margin-bottom: 0;
}

.search-order .title {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.list-status-order {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  gap: 20px;
  flex-wrap: wrap;
}

.list-status-order .item-status-order {
  padding: 0;
  position: relative;
}

.list-status-order .item-status-order input {
  position: absolute;
  opacity: 0;
}

.list-status-order .item-status-order .form-check-label {
  font-weight: 500;
  color: #57637a;
  font-size: 14px;
  padding: 4px 2px 12px;
  display: inline-flex;
  cursor: pointer;
  margin-bottom: 0;
  transition: color 0.2s ease;
}

.list-status-order .item-status-order .form-check-label:before {
  content: '';
  position: absolute;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background: var(--color-highlight);
  left: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.list-status-order .item-status-order input:checked + .form-check-label {
  font-weight: 700;
  color: var(--color-highlight);
}

.list-status-order .item-status-order .form-check-label:hover {
  color: var(--color-highlight);
}

.list-status-order .item-status-order input:checked + .form-check-label:before {
  opacity: 1;
}

.list-status-order .item-status-order .form-check-label:hover:before {
  opacity: 0.35;
}

.list-status-order .item-status-order input:focus-visible + .form-check-label {
  color: var(--color-highlight);
  outline: 2px solid rgba(222, 2, 4, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

.order-filter-active {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 12px;
  font-size: 13px;
}

.order-filter-active .filter-label {
  color: #64748b;
}

.order-filter-active .filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-weight: 500;
  line-height: 1.6;
}

.order-filter-active .filter-chip:hover {
  background: #e2e8f0;
  color: #0f172a;
  text-decoration: none;
}

.order-filter-active .filter-chip i {
  font-size: 12px;
  color: #64748b;
}

.search-order-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
  padding: 14px 20px 20px;
}

.search-order-form .form-group {
  flex: 1 1 300px;
  width: auto;
  min-width: 0;
  max-width: 100%;
  margin-bottom: 0;
}

.search-order-form .form-control {
  height: 46px;
  padding: 0 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background-color: #f8fafc;
  box-shadow: none;
  font-size: 14px;
  color: #1c1c1e;
}

.search-order-form .form-control:focus {
  border-color: var(--color-highlight);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(222, 2, 4, 0.1);
}

.search-order-form .form-control::placeholder {
  color: #a2a9b6;
  opacity: 1;
}

.search-order-form .form-group .input-group.input-group-icon .input-group-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 9;
  line-height: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-order-form .form-group .input-group.input-group-icon input.form-control {
  padding-right: 44px;
  border-radius: 10px;
}

.search-order-form .form-group .input-group.date-range .form-control:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.search-order-form .form-group .input-group.date-range .form-control:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.search-order-form .form-group .input-group.date-range .input-group-text {
  height: 46px;
  padding: 0 10px;
  border: 1px solid #e2e8f0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background-color: #f8fafc;
  color: #98a2b3;
  font-size: 12px;
}

.box-order-page-top .search-order-button {
  flex: 0 0 auto;
  padding: 0;
}

.box-order-page-top .search-order-button .btn-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 46px;
  border-radius: 10px;
  background: var(--color-highlight);
  border-color: var(--color-highlight);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.box-order-page-top .search-order-button .btn-success:hover,
.box-order-page-top .search-order-button .btn-success:focus {
  background: var(--color-highlight);
  border-color: var(--color-highlight);
  filter: brightness(1.1);
  box-shadow: 0 10px 22px rgba(222, 2, 4, 0.25);
}

@media (max-width: 768px) {
  .search-order-form {
    padding: 12px 14px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .box-order-page-top .search-order {
    padding: 14px 14px 0;
  }

  .search-order-form .form-group {
    flex: 0 0 auto;
    width: 100%;
  }

  .box-order-page-top .search-order-button {
    width: 100%;
    padding: 0;
  }

  .box-order-page-top .search-order-button .btn-success {
    width: 100%;
  }

  .box-order-page .time-tabs-wrap {
    padding: 12px 14px 0;
  }

  .list-status-order {
    gap: 6px;
    margin-bottom: 14px;
  }

  .list-status-order .item-status-order {
    flex: 1 1 calc(33.33% - 4px);
    max-width: calc(33.33% - 4px);
  }

  .list-status-order .item-status-order .form-check-label {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 34px;
    padding: 0 6px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 12px;
    text-align: center;
  }

  .list-status-order .item-status-order .form-check-label:before {
    content: none;
  }

  .list-status-order .item-status-order input:checked + .form-check-label {
    border-color: var(--color-highlight);
    background: var(--color-highlight);
    color: #fff;
  }
}

.warp-payment-history {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.warp-payment-history .content {
  flex: 1;
  overflow-y: auto;
}

.warp-payment-history .content::-webkit-scrollbar {
  display: none;
}

.warp-payment-history .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.warp-payment-history .nav-btn {
  font-size: 18px;
  color: #000;
  cursor: pointer;
  width: 32px;
  display: flex;
  align-items: center;
}

.warp-payment-history .navbar .title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-align: center;
  flex: 1;
}

.warp-payment-history .filter-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #3a3a3c;
  cursor: pointer;
}

.warp-payment-history .debt-card {
  background-color: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 14px;
}

.warp-payment-history .debt-header {
  font-size: 13.5px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.warp-payment-history .debt-header span {
  font-size: 11px;
  font-weight: 400;
  color: #6e6e73;
}

.warp-payment-history .debt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding-bottom: 12px;
  position: relative;
}

.warp-payment-history .debt-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.warp-payment-history .debt-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #f0f0f2;
}

.warp-payment-history .debt-lbl {
  font-size: 11px;
  color: #3a3a3c;
}

.warp-payment-history .debt-val {
  font-size: 14px;
  font-weight: 700;
  margin: 2px 0;
}

.warp-payment-history .debt-val.red {
  color: #d9383a;
}

.warp-payment-history .debt-val.green {
  color: #1fb141;
}

.warp-payment-history .debt-val.blue {
  color: #1e56e0;
}

.warp-payment-history .debt-sub {
  font-size: 10px;
  color: #8e8e93;
}

.warp-payment-history .debt-alert {
  background-color: #fff1f1;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  cursor: pointer;
}

.warp-payment-history .alert-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #d9383a;
  font-weight: 500;
}

.warp-payment-history .alert-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #d9383a;
}

.warp-payment-history .alert-right i {
  font-size: 11px;
  color: #d9383a;
}

.warp-payment-history .filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.warp-payment-history .f-tab {
  flex: 1;
  text-align: center;
  padding: 7px 0;
  font-size: 12.5px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #e2e4e8;
  color: #3a3a3c;
  cursor: pointer;
}

.warp-payment-history .f-tab.active {
  background-color: #fff;
  color: #d9383a;
  border-color: #f2cfcf;
  font-weight: 600;
}

.warp-payment-history .history-group {
  margin-bottom: 14px;
}

.warp-payment-history .group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
  padding: 0 2px;
}

.warp-payment-history .group-total {
  color: #1fb141;
  font-weight: 700;
}

.warp-payment-history .group-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.warp-payment-history .history-card {
  background-color: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.warp-payment-history .item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.warp-payment-history .item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warp-payment-history .item-icon.sale {
  background-color: #eaf7ed;
  color: #1fb141;
}

.warp-payment-history .item-icon.return {
  background-color: #fdeeee;
  color: #d9383a;
}

.warp-payment-history .item-icon.pay {
  background-color: #eef4ff;
  color: #2f69ff;
}

.warp-payment-history .item-info .item-title {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
}

.warp-payment-history .item-info .item-sub {
  font-size: 11px;
  color: #6e6e73;
}

.warp-payment-history .item-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.warp-payment-history .item-amount-box {
  text-align: right;
}

.warp-payment-history .item-amount {
  font-size: 13px;
  font-weight: 700;
}

.warp-payment-history .item-amount.green {
  color: #1fb141;
}

.warp-payment-history .item-amount.red {
  color: #d9383a;
}

.warp-payment-history .item-debt-rem {
  font-size: 10px;
  color: #6e6e73;
  margin-top: 2px;
}

.warp-payment-history .item-debt-rem span {
  color: #d9383a;
  font-weight: 600;
}

.warp-payment-history .arrow-icon {
  color: #c7c7cc;
  font-size: 11px;
}

.warp-payment-history .empty-data {
  text-align: center;
  font-size: 12px;
  color: #8e8e93;
  margin: 16px 0;
}
.btn-action-header .title {white-space: nowrap;max-width: 95px;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.warp-support {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 30px;
}

.warp-support .header-support {
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.warp-support .back-btn {
  position: absolute;
  left: 0;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
}

.warp-support .title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

.warp-support .support-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 22px;
  padding: 0 8px;
  border-radius: 11px;
  background-color: #fee2e2;
  color: var(--color-highlight);
  font-size: 12px;
  font-weight: 700;
}

.warp-support .header-actions {
  position: absolute;
  right: 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.warp-support .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-size: 11px;
  color: #333;
  cursor: pointer;
  gap: 2px;
  height: 100%;
  justify-content: center;
}

.warp-support .nav-item i {
  font-size: 18px;
}

.warp-support .nav-item.active {
  color: #e31818;
}

.warp-support .nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #e31818;
}

.warp-support .badge {
  position: absolute;
  top: 6px;
  right: -2px;
  background-color: #e31818;
  color: white;
  font-size: 10px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.warp-support .support-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 14px;
}

.warp-support .support-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background-color: #f8fafc;
  transition: border-color 0.2s, background-color 0.2s;
}

.warp-support .support-search:focus-within {
  border-color: var(--color-highlight);
  background-color: #fff;
}

.warp-support .support-search > i {
  flex: 0 0 auto;
  font-size: 15px;
  color: #94a3b8;
}

.warp-support .support-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: #0f172a;
}

.warp-support .support-search-input::placeholder {
  color: #94a3b8;
}

/* Chrome tu ve nut xoa cho input[type=search], de lai thi thanh hai nut chong nhau. */
.warp-support .support-search-input::-webkit-search-cancel-button {
  display: none;
}

.warp-support .support-search-clear {
  display: none;
  flex: 0 0 auto;
  padding: 4px;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.warp-support .support-search.has-value .support-search-clear {
  display: block;
}

.warp-support .support-city-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.warp-support .support-city-list::-webkit-scrollbar {
  display: none;
}

.warp-support .support-city {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 14px;
  border: 1px solid #e2e8f0;
  border-radius: 17px;
  background-color: #fff;
  color: #475569;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.warp-support .support-city.active {
  background-color: var(--color-highlight);
  border-color: var(--color-highlight);
  color: #fff;
}

.warp-support .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warp-support .location-card {
  padding: 14px;
  border: 1px solid #eceef2;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 6px 18px rgba(17, 28, 45, 0.06);
}

.warp-support .tag {
  font-size: 11px;
  font-weight: bold;
  color: #e31818;
  background-color: #fde8e8;
  padding: 3px 6px;
  border-radius: 4px;
  margin-right: 10px;
  margin-top: 2px;
  white-space: nowrap;
}

.warp-support .info {
  flex: 1;
}

.warp-support .store-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.warp-support .store-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background-color: #fee2e2;
  color: var(--color-highlight);
  font-size: 16px;
}

.warp-support .store-title {
  flex: 1 1 auto;
  min-width: 0;
}

.warp-support .store-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 3px;
}

.warp-support .store-city {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background-color: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
}

.warp-support .detail-row {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  color: #475569;
  margin-bottom: 6px;
  line-height: 1.45;
}

.warp-support .detail-row i {
  flex: 0 0 14px;
  width: 14px;
  margin-right: 8px;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 13px;
  text-align: center;
}

.warp-support .detail-row b {
  color: #0f172a;
  font-weight: 600;
}

.warp-support .actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #eceef2;
}

.warp-support .btn {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  padding: 0 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
}

.warp-support .btn-call {
  border: 0;
  color: #fff;
  background-color: var(--color-highlight);
}

.warp-support .btn-zalo {
  border: 1px solid #a4c7f5;
  color: #0068ff;
  background-color: #fff;
}

.warp-support .btn-map {
  border: 1px solid #e2e8f0;
  color: #475569;
  background-color: #fff;
}

.warp-support .zalo-text-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #0068ff;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.warp-support .support-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

.warp-support .support-empty i {
  font-size: 26px;
  color: #cbd5e1;
}

.warp-support .footer-note {
  text-align: center;
  padding: 14px 12px 4px;
  font-size: 12px;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.warp-support .footer-note i {
  color: var(--color-highlight);
  font-size: 14px;
}

.warp-support .footer-note strong {
  color: #0f172a;
}

.warp-combo-product-detail {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.warp-combo-product-detail .app-header {
  background-color: #ffffff;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.warp-combo-product-detail .header-title {
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.warp-combo-product-detail .icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

.warp-combo-product-detail .content-scroll {
  flex: 1;
  overflow-y: auto;
}

.warp-combo-product-detail .combo-main-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #faf3f3;
}

.warp-combo-product-detail .combo-main-info {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.warp-combo-product-detail .combo-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.warp-combo-product-detail .combo-details {
  flex: 1;
}

.warp-combo-product-detail .combo-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 4px;
}

.warp-combo-product-detail .combo-code {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.warp-combo-product-detail .combo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #1877f2;
  background-color: #e7f3ff;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.warp-combo-product-detail .combo-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.warp-combo-product-detail .main-price {
  font-size: 18px;
  font-weight: 700;
  color: #d32f2f;
}

.warp-combo-product-detail .checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.warp-combo-product-detail .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.warp-combo-product-detail .checkmark {
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: inline-block;
  position: relative;
}

.warp-combo-product-detail .checkbox-container input:checked ~ .checkmark {
  background-color: #d32f2f;
  border-color: #d32f2f;
}

.warp-combo-product-detail .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.warp-combo-product-detail .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.warp-combo-product-detail .select-all-row {
  margin: 8px 0;
  font-size: 14px;
  font-weight: 600;
}

.warp-combo-product-detail .select-all-row .label-text {
  margin-left: 8px;
}

.warp-combo-product-detail .info-banner {
  background-color: #fff8e1;
  color: #856404;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.warp-combo-product-detail .items-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.warp-combo-product-detail .item-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #f2f2f2;
}

.warp-combo-product-detail .item-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
}

.warp-combo-product-detail .item-details {
  flex: 1;
}

.warp-combo-product-detail .item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.warp-combo-product-detail .item-name {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  flex: 1;
  padding-right: 4px;
}

.warp-combo-product-detail .stock-status {
  font-size: 11px;
  color: #2e7d32;
  white-space: nowrap;
}

.warp-combo-product-detail .item-code {
  font-size: 11px;
  color: #777;
  margin: 2px 0 6px 0;
}

.warp-combo-product-detail .item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.warp-combo-product-detail .item-price {
  font-size: 12px;
  color: #555;
}

.warp-combo-product-detail .item-price strong {
  color: #d32f2f;
  font-size: 13px;
}

.warp-combo-product-detail .bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 10px 12px;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.warp-combo-product-detail .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}

.warp-combo-product-detail .selected-count {
  color: #333;
  font-weight: 500;
}

.warp-combo-product-detail .total-price-box {
  color: #333;
}

.warp-combo-product-detail .total-price {
  color: #d32f2f;
  font-weight: 700;
  font-size: 15px;
}

.warp-combo-product-detail .actions-row {
  display: flex;
  gap: 8px;
}

.warp-combo-product-detail .btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.warp-combo-product-detail .btn-outline {
  background: #fff;
  border: 1px solid #d32f2f;
  color: #d32f2f;
}

.warp-combo-product-detail  .btn-danger {
  background: #d32f2f;
  color: #fff;
}

@media (min-width: 992px) {
  .product-detail-head .top {
    display: none;
  }

  .row {
    margin-right: -10px;
    margin-left: -10px;
  }

  .row>div {
    padding-right: 10px;
    padding-left: 10px;
  }

  .mb-20 {
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .search-filter-reset {
    margin-left: 0 !important;
    width: 100%;
  }
}
.box-product-category {
    margin: 30px 0;
}

.box-product-category .list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.box-product-category .item {
    min-width: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.box-product-category .inter-img {
    margin-bottom: 12px;
}

.box-product-category .inter-img .img {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #f8f8f8;
}

.box-product-category .inter-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.box-product-category .name {
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-product-category .name a {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.box-product-category .item:hover {
    border-color: #e31e24;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.box-product-category .item:hover img {
    transform: scale(1.08);
}

.box-product-category .item:hover .name a {
    color: #e31e24;
}

@media (max-width: 991px) {
    .box-product-category .list {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .box-product-category .item {
        padding: 12px 8px;
    }

    .box-product-category .name a {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .box-product-category {
        margin: 20px 0;
    }

    .box-product-category .list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .box-product-category .item {
        padding: 10px 8px;
        border-radius: 10px;
    }

    .box-product-category .inter-img {
        margin-bottom: 8px;
    }

    .box-product-category .name {
        min-height: 38px;
    }

    .box-product-category .name a {
        font-size: 13px;
        line-height: 1.35;
    }
}

.swiper-slider-main .swiper-slide {
    position: relative;
    padding-top: 29%;
    border-radius: 15px;
    overflow: hidden;
}
.top-title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-title .title-section:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: var(--color-highlight);
}

.top-title .link a {
    color: var(--color-highlight);
    font-size: 16px;
}

.box-home-polici .section-chinh-sach {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
}

.box-home-polici .section-chinh-sach .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item .product-bottom {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 15px 15px;
}

.product-item .product-sku {
    font-size: 14px;
    color: var(--color-text);
    word-break: break-all;
    margin-bottom: 5px;
}

.product-item .product-sku span {
    color: var(--color-main);
    font-weight: 500;
}

.product-item .price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 2px 8px;
}

.product-item .price .price-label {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text);
}

.product-item .price .price-amount {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.2px;
    color: var(--color-highlight);
}

.product-item .price .price-amount .currency-symbol {
    margin-left: 2px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
}

.product-item .price .price-amount.old-price {
    margin-left: 0;
    font-size: 13px;
    font-weight: 400;
    color: #9aa0ab;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.product-item .price .price-amount.old-price .currency-symbol {
    font-size: 11px;
    font-weight: 400;
}

.product-item .price .price-amount.old-price::after {
    display: none;
}

.product-item .btn-add-cart-item {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background-color: var(--color-highlight);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(222, 2, 4, 0.18);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-item .btn-add-cart-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.product-item .btn-add-cart-item i,
.product-item .btn-add-cart-item span {
    position: relative;
    z-index: 1;
}

.product-item .btn-add-cart-item i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.product-item .btn-add-cart-item:hover {
    color: #fff;
    background-color: #b80103;
    box-shadow: 0 6px 16px rgba(222, 2, 4, 0.32);
    transform: translateY(-2px);
}

.product-item .btn-add-cart-item:hover::before {
    left: 125%;
}

.product-item .btn-add-cart-item:hover i {
    transform: translateX(-2px) scale(1.08);
}

.product-item .btn-add-cart-item:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(222, 2, 4, 0.24);
}

.product-item .btn-add-cart-item:focus-visible {
    outline: 2px solid var(--color-main);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .product-item .btn-add-cart-item,
    .product-item .btn-add-cart-item::before,
    .product-item .btn-add-cart-item i {
        transition: none;
    }

    .product-item .btn-add-cart-item:hover {
        transform: none;
    }

    .product-item .btn-add-cart-item:hover::before {
        left: -75%;
    }

    .product-item .btn-add-cart-item:hover i {
        transform: none;
    }
}
@media (min-width: 992px) {
  .sidebar-mini-cart {
    width: 550px;
  }

  .sidebar-mini-cart .title-top-cart .title-cart {
    font-size: 18px;
  }

  .sidebar-mini-cart .content-mini-cart .cart-item .product-title,
  .sidebar-mini-cart .content-mini-cart .cart-summary-row.cart-summary-total,
  .sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-checkout {
    font-size: 15px;
  }

  .sidebar-mini-cart .content-mini-cart .nh-checkbox,
  .sidebar-mini-cart .content-mini-cart .cart-remove-all,
  .sidebar-mini-cart .content-mini-cart .cart-item .product-code,
  .sidebar-mini-cart .content-mini-cart .combo-items-toggle,
  .sidebar-mini-cart .content-mini-cart .combo-item-title,
  .sidebar-mini-cart .content-mini-cart .cart-summary-row,
  .sidebar-mini-cart .content-mini-cart .product-qty-row .product-quantity input,
  .sidebar-mini-cart .content-mini-cart .combo-item-qty .product-quantity input {
    font-size: 14px;
  }

  .sidebar-mini-cart .content-mini-cart .cart-item .combo-badge,
  .sidebar-mini-cart .content-mini-cart .cart-item .saving-amount,
  .sidebar-mini-cart .content-mini-cart .combo-item-code {
    font-size: 12px;
  }

  .sidebar-mini-cart .content-mini-cart .combo-item-price {
    font-size: 14px;
  }

  .sidebar-mini-cart .content-mini-cart .cart-item .product-price-row .price-amount {
    font-size: 17px;
  }

  .sidebar-mini-cart .content-mini-cart .cart-summary-row.cart-summary-total .price-amount {
    font-size: 18px;
  }

  .sidebar-mini-cart .content-mini-cart .product-combo .product-content-info-cart .checkbox-mark,
  .sidebar-mini-cart .content-mini-cart .combo-item .nh-checkbox .checkbox-mark {
    width: 18px;
    height: 18px;
    border-radius: 5px;
  }

  .sidebar-mini-cart .content-mini-cart .product-combo .product-content-info-cart .checkbox-mark i,
  .sidebar-mini-cart .content-mini-cart .combo-item .nh-checkbox .checkbox-mark i {
    font-size: 9px;
  }

  .sidebar-mini-cart .content-mini-cart .cart-item .product-qty-row .product-quantity,
  .sidebar-mini-cart .content-mini-cart .combo-item-qty .product-quantity {
    height: 32px;
  }

  .sidebar-mini-cart .content-mini-cart .product-qty-row .product-quantity input,
  .sidebar-mini-cart .content-mini-cart .combo-item-qty .product-quantity input {
    height: 30px;
  }

  .sidebar-mini-cart .content-mini-cart .product-quantity .btn-quantity {
    width: 22px;
    height: 26px;
    font-size: 11px;
  }

  .sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-checkout {
    padding: 12px 10px;
  }
}
@media (max-width: 575px) {
    .product-item .product-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px 10px;
        margin-top: 5px;
    }

    .product-item .btn-add-cart-item {
        width: 100%;
        justify-content: center;
    }

    .product-item .price .price-amount {
        font-size: 16px;
    }

    .product-item .price .price-amount.old-price {
        font-size: 12px;
    }
    .product-item .inner-content {
      padding: 10px 10px 0px;
  }

  .product-item .product-sku {
      font-size: 12px;
  }

  .product-item .price .price-label {
      font-size: 12px;
  }
  .product-item .price .btn-login-price {
    font-size: 11px;
}
  .box-product-detail-01 {
    margin-bottom: 0;
}
}

.toast-body {
    position: relative;
    border-radius: 12px;
    background-position: 18px center !important;
    box-shadow: none;
    color: var(--color-main) !important;
    opacity: 1;
    border: 1px solid #dddddd00;
    min-width: 350px;
    font-weight: 600;
    background-clip: padding-box;
    background-position: 18px center !important;
    box-shadow: none;
    background-repeat: no-repeat;
    padding: 16px 16px 16px 60px !important;
    font-size: 16px;
}

.toast-body.bg-error {
    background-color: rgb(255 245 243) !important;
    border-color: #f4b0a1 !important;
}

.toast-body.bg-info {
    background-color: rgb(245 249 255) !important;
    border-color: #9dc0ee !important;
}

.toast-body.bg-success {
    background-color: #ebfff0 !important;
    border-color: #48c1b5 !important;
}

.toast-body.bg-warning {
    background-color: rgb(255 248 236) !important;
    border-color: #f7d9a4 !important;
}

.toast-body.bg-danger {
    background-color: rgb(255 245 243) !important;
    border-color: #f4b0a1 !important;
}

.toast-body.bg-info {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iNiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzEwMl81MikiLz4KPHBhdGggZD0iTTEyIDE2VjExIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CjxjaXJjbGUgY3g9IjEiIGN5PSIxIiByPSIxIiB0cmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAxMSA5KSIgZmlsbD0id2hpdGUiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xMDJfNTIiIHgxPSIxMiIgeTE9Ii00LjUiIHgyPSIxMiIgeTI9IjI4IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiM0RENBRkYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjNEVBM0UwIi8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==") !important;
}

.toast-body.bg-danger {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iNiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzEwMl83KSIvPgo8cGF0aCBkPSJNMTUgOS4wMDAwMkw5IDE1TTguOTk5OTcgOUwxNC45OTk5IDE1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMTAyXzciIHgxPSIxMiIgeTE9IjAiIHgyPSIxMiIgeTI9IjI0IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNFODhCNzYiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjQ0E1MDQ4Ii8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==") !important;
}

.toast-body.bg-success {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iNiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzEwMl8zNykiLz4KPHBhdGggZD0iTTguNSAxMi41TDEwLjUgMTQuNUwxNS41IDkuNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzEwMl8zNyIgeDE9IjEyIiB5MT0iMCIgeDI9IjEyIiB5Mj0iMjQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzQ4Q0E5MyIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiM0OEJBQ0EiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K") !important;
}

.toast-body.bg-warning {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iNiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzEwMl82NykiLz4KPHBhdGggZD0iTTEyIDlWMTQiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPGNpcmNsZSBjeD0iMTIiIGN5PSIxNyIgcj0iMSIgZmlsbD0id2hpdGUiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xMDJfNjciIHgxPSIxMiIgeTE9IjAiIHgyPSIxMiIgeTI9IjI0IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNEQkE5NDgiLz4KPHN0b3Agb2Zmc2V0PSIwLjAwMDEiIHN0b3AtY29sb3I9IiNGRkM0NkIiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkZBMzE4Ii8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==") !important;
}

.toast {
    border: 0;
    box-shadow: none !important;
    background: none;
}

.toast-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.toast-body .toast-btn {
    padding: 4px 15px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: none;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.toast-body .toast-btn:focus {
    outline: 0;
    box-shadow: none;
}

.toast-body .toast-btn-confirm {
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
    color: #fff;
}

.toast-body .toast-btn-confirm:hover {
    background-color: #c30203;
    border-color: #c30203;
    color: #fff;
}

.toast-body .toast-btn-cancel {
    background-color: #fff;
    border-color: #dcdcdc;
    color: var(--color-main);
}

.toast-body .toast-btn-cancel:hover {
    background-color: #f3f3f3;
    border-color: #c9c9c9;
    color: var(--color-main);
}

.contact-page {
    --contact-red: #e00204;
    --contact-ink: #000;
    padding-bottom: 24px;
}

.contact-intro {
    max-width: 520px;
    padding-top: 8px;
}

.contact-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-eyebrow-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--contact-red);
}

.contact-eyebrow-line {
    width: 34px;
    height: 2px;
    margin-left: 12px;
    background-color: var(--contact-red);
}

.contact-title {
    margin-bottom: 16px;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--contact-ink);
}

.contact-desc {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px 20px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--contact-red) 0%, var(--contact-ink) 100%);
    color: #fff;
    font-size: 17px;
}

.contact-info-body {
    min-width: 0;
}

.contact-info-label {
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 1.4;
    color: #767676;
}

.contact-info-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--contact-ink);
    word-break: break-word;
}

a.contact-info-value:hover {
    color: var(--contact-red);
}

.contact-form-card {
    padding: 32px;
    border: 1px solid #ececec;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.contact-field {
    margin-bottom: 18px;
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--contact-ink);
}

.contact-input {
    background-color: #f2f2f2;
    border-radius: 8px;
    overflow: hidden;
}

.contact-input:focus-within {
    box-shadow: 0 0 0 2px rgba(224, 2, 4, 0.18);
}

.contact-input .form-control {
    height: 48px;
    padding: 0 6px 0 16px;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    font-size: 15px;
    color: #111;
}

.contact-input .form-control:focus {
    background-color: transparent;
    box-shadow: none;
}

.contact-input .form-control::-webkit-input-placeholder {
    color: #9a9a9a;
}

.contact-input .form-control::placeholder {
    color: #9a9a9a;
}

.contact-input .form-control:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #f2f2f2 inset;
    -webkit-text-fill-color: #111;
}

.contact-input .input-group-text {
    padding: 0 16px 0 8px;
    background-color: transparent;
    border: 0;
    font-size: 16px;
    color: #9a9a9a;
}

.contact-input-area .form-control {
    height: auto;
    min-height: 130px;
    padding: 14px 6px 14px 16px;
    resize: vertical;
}

.contact-input-area .input-group-text {
    align-items: flex-start;
    padding-top: 15px;
}

.contact-submit {
    height: 56px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--contact-ink) 0%, var(--contact-red) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus {
    color: #fff;
    filter: brightness(1.12);
    box-shadow: 0 8px 20px rgba(224, 2, 4, 0.25);
}

.contact-submit i {
    margin-left: 10px;
    font-size: 14px;
}

.contact-form-card label.error {
    display: block;
    width: 100%;
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--contact-red);
}

@media (min-width: 992px) {
    .header-search>.container>.row>div:nth-child(1) {
        flex: 0 0 210px;
        max-width: 210px;
    }

    .header-search>.container>.row>div:nth-child(2) {
        flex-basis: calc(100% - 425px);
        max-width: calc(100% - 425px);
    }

    .header-search>.container>.row>div:nth-child(3) {
        max-width: 215px;
        flex: 0 0 215px;
    }
}
header {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .contact-form-card {
        margin-left: 20px;
    }
}

@media (max-width: 991.98px) {
    .contact-intro {
        max-width: none;
        margin-bottom: 28px;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-form-card {
        padding: 24px 20px;
    }
}

@media (max-width: 575.98px) {
    .contact-title {
        font-size: 26px;
    }

    .contact-info-item {
        padding: 14px 16px;
    }
}

.product-detail-head .content {
    margin-bottom: 10px;
}

.product-gallery .product-image-detail-top {
    margin-bottom: 12px;
}

.product-gallery .list-img {
    border-radius: 20px;
    overflow: hidden;
    background-color: #f5f7fa;
    border: 1px solid #ebeef3;
}

.product-gallery .inner-image img {
    transition: transform 0.6s ease;
}

.product-gallery .list-img:hover .swiper-slide-active img,
.product-gallery .list-img:hover .swiper-slide:only-child img {
    transform: scale(1.05);
}

.product-image-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    background-color: var(--color-highlight);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 6px 16px -6px rgba(222, 2, 4, 0.6);
}

.product-gallery .warp-image-counter {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    margin-top: 0;
    padding: 4px 12px;
    border-radius: 40px;
    background-color: rgba(17, 28, 45, 0.55);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
}

.product-gallery .product-thumbs {
    padding: 2px;
}

.swiper-thumbs .swiper-slide .img {
    border: 1px solid #ebeef3;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f7fa;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.swiper-thumbs .swiper-slide:hover .img {
    border-color: rgba(222, 2, 4, 0.4);
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active .img {
    border-color: var(--color-highlight);
    box-shadow: 0 0 0 1px var(--color-highlight);
}

.product-content-detail {
    --pd-line: #e7eaf1;
    --pd-soft: #f4f6fa;
    --pd-muted: #6b7382;
}

.product-content-detail .product-title-detail {
    font-size: 27px;
    line-height: 1.32;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--color-main);
    margin-bottom: 14px;
}

.product-content-detail .product-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-content-detail .product-code-info,
.product-content-detail .product-stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 13px;
    border-radius: 40px;
    font-size: 13px;
    line-height: 1;
}

.product-content-detail .product-code-info {
    background-color: var(--pd-soft);
    color: var(--color-main);
}

.product-content-detail .product-code-info label {
    color: var(--pd-muted);
    font-weight: 400;
    margin-bottom: 0;
}

.product-content-detail .product-code-info [nh-label-code] {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.product-content-detail .product-code-info .btn-copy-code {
    display: inline-flex;
    align-items: center;
    color: #a4abb8;
    transition: color 0.2s ease;
}

.product-content-detail .product-code-info .btn-copy-code:hover {
    color: var(--color-highlight);
}

.product-content-detail .product-stock-status {
    background-color: rgba(26, 155, 60, 0.1);
    color: #1a9b3c;
    font-weight: 600;
}

.product-content-detail .product-stock-status .dot-status {
    width: 7px;
    height: 7px;
    background-color: #1a9b3c;
    box-shadow: 0 0 0 3px rgba(26, 155, 60, 0.18);
}

.product-content-detail .product-brand-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 13px;
    border-radius: 40px;
    background-color: var(--pd-soft);
    font-size: 13px;
    line-height: 1;
    color: var(--color-main);
}

.product-content-detail .product-brand-info i {
    color: #a4abb8;
}

.product-content-detail .product-brand-info label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--pd-muted);
}

.product-content-detail .product-brand-info a,
.product-content-detail .product-brand-info span {
    font-weight: 600;
    color: var(--color-main);
}

.product-content-detail .product-brand-info a:hover {
    color: var(--color-highlight);
}

.product-content-detail .product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.product-content-detail .product-rating-row .rating-score {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-main);
}

.product-content-detail .product-short-desc {
    color: var(--pd-muted);
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Không bọc thẻ: chỉ KHỐI GIÁ có nền riêng, còn dải cam kết / số lượng / nút bấm
   nằm trần trên nền trang. */
.product-buy-box {
    margin-top: 20px;
}

.product-buy-box .product-price-box {
    padding: 16px 20px;
    border: 1px solid #f4e4e4;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff5f5 0%, #fffaf7 100%);
}

.product-buy-box .product-price-box-login {
    border-color: var(--pd-line);
    background: var(--pd-soft);
}

.product-price-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-bottom: 18px;
}

/* "GIÁ" và "SỐ LƯỢNG" cùng một vai — nhãn mục trong thẻ mua — nên dùng chung một
   khuôn. Trước đó lệch cả cỡ (12 / 13px) lẫn giãn chữ (0.6 / 0.3px). */
.product-price-box .price-label,
.product-quantity-wrap .quantity-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--pd-muted);
}

.product-price-box .price-label {
    flex: 0 0 100%;
    margin-bottom: 2px;
}

.product-content-detail .price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.product-content-detail .price .price-amount {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.product-content-detail .price .price-amount .currency-symbol {
    font-size: 20px;
    font-weight: 700;
}

.product-content-detail .price .price-amount.old-price {
    font-size: 16px;
    font-weight: 400;
    margin-left: 0;
    letter-spacing: 0;
    color: #9aa0ab;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.product-content-detail .price .price-amount.old-price .currency-symbol {
    font-size: 16px;
    font-weight: 400;
}

.price-discount-badge {
    display: inline-block;
    align-self: center;
    padding: 4px 9px;
    border-radius: 40px;
    background-color: var(--color-highlight);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

/* ── CV-11 — khối giá combo. Xuống dòng vì có ba con số, 390px không đủ một hàng. ── */
.product-price-box-combo {
    align-items: flex-start;
    /* Dòng "Tiết kiệm" cách dòng giá 10px. Trước đây nhịp này do `margin-top: 4px`
       của chính nó CỘNG `gap: 6px` của khối cha — sửa một trong hai là lệch. */
    gap: 10px 14px;
}

.product-price-box-combo .price {
    flex: 1 1 100%;
}

/* "Liên hệ để đặt" — nhỏ hơn giá thật một bậc: là lời mời, không phải số để so sánh. */
.product-price-box-combo .price-contact {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-highlight);
}

/* Viên "Tiết kiệm …". Trước đây là khối xanh đặc `#e8f5e9` / `#2e7d32` nằm ngay
   dưới viên `-39%` đỏ đặc: hai viên cạnh nhau, hai sắc, hai độ đậm nền — đọc ra
   hai hệ chứ không phải một thẻ. Nay là viên nền trắng viền mảnh, để `-39%` giữ
   vai con số bán hàng còn dòng này lùi về vai chú thích.

   🔴 Sắc xanh lấy từ bộ token `--os-green*` đã khai ở `:root`. Theme đang có BỐN
   sắc xanh cho cùng vai "tích cực" (`#2e7d32`, `#16a34a`, `#12b76a`, `--green`),
   và đây là bộ duy nhất có đủ chữ / nền / viền. Đừng thêm sắc thứ năm. */
.product-content-detail .combo-saving {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border: 1px solid var(--os-green-line);
    border-radius: 40px;
    background-color: var(--white);
    color: var(--os-green);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.product-content-detail .combo-saving i {
    font-size: 13px;
    opacity: 0.85;
}

.product-content-detail .entire-attribute {
    margin-bottom: 18px;
}

.product-content-detail .list-attribute + .list-attribute {
    margin-top: 14px;
}

.product-content-detail .attribute-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.product-content-detail .entire-attribute .list-attribute .attribute-name {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--pd-muted);
}

.product-content-detail .attribute-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-main);
}

.product-content-detail .reset-attribute {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 0;
    color: var(--pd-muted);
    font-size: 12px;
    font-weight: 500;
}

.product-content-detail .reset-attribute i {
    font-size: 11px;
}

.product-content-detail .reset-attribute:hover {
    color: var(--color-highlight);
}

.product-content-detail .product-attribute-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.product-content-detail .product-attribute-switch .inner-product-attribute {
    margin: 0;
    border: 1px solid var(--pd-line);
    border-radius: 12px;
    background-color: var(--white);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.product-content-detail .product-attribute-switch .inner-product-attribute:hover {
    border-color: #c8cedb;
}

.product-content-detail .product-attribute-switch.text-switch .inner-product-attribute {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-main);
}

.product-content-detail .product-attribute-switch.image-switch .inner-product-attribute {
    width: 52px;
    height: 52px;
    border-radius: 12px;
}

.product-content-detail .product-attribute-switch .inner-product-attribute.active {
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    background-color: #fff5f5;
    box-shadow: 0 0 0 1px var(--color-highlight);
}

.product-content-detail .product-attribute-switch.text-switch .inner-product-attribute.active::before,
.product-content-detail .product-attribute-switch.text-switch .inner-product-attribute.active::after {
    display: none;
}

.product-content-detail .product-attribute-switch.image-switch .inner-product-attribute.active::before {
    right: -4px;
    bottom: -4px;
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background-color: var(--color-highlight);
}

.product-content-detail .product-attribute-switch.image-switch .inner-product-attribute.active::after {
    right: -4px;
    bottom: -4px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 9px;
}

.product-quantity-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Cỡ chữ, giãn chữ và màu gom chung với `.price-label` ở khối giá */
.product-quantity-wrap .quantity-label {
    flex: 0 0 auto;
    margin-bottom: 0;
}

.product-quantity-wrap:has(.product-quantity.d-none) {
    display: none;
}

.product-content-detail .product-quantity {
    border-color: var(--pd-line);
    border-radius: 12px;
    padding: 4px 6px;
}

.product-content-detail .product-quantity .btn-quantity {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background-color: var(--pd-soft);
    font-size: 11px;
}

.product-content-detail .product-quantity .btn-quantity:hover {
    background-color: var(--color-highlight);
    color: var(--white);
}

.product-content-detail .product-quantity input {
    width: 44px;
    height: 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-main);
}

.product-purchase {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Flex chứ không phải lưới hai cột: `.add-to-cart` bị `d-none` khi combo chưa có giá
   hoặc hết hàng, lưới cố định để lại một ô trống và nút yêu thích đứng lệch nửa hàng. */
.btn-cart-buy {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-content-detail .add-to-cart {
    flex: 1.35 1 0;
    min-width: 0;
    height: 54px;
    line-height: 1.2;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-radius: 14px;
    box-shadow: 0 12px 24px -14px rgba(222, 2, 4, 0.75);
    transition: all 0.25s ease;
}

.product-content-detail .add-to-cart i {
    font-size: 18px;
}

.product-content-detail .add-to-cart:hover {
    background-color: #c40204;
    border-color: #c40204;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 16px 28px -14px rgba(222, 2, 4, 0.8);
}

.product-content-detail .add-to-cart.add-to-wishlist {
    flex: 1 1 0;
    background-color: var(--white);
    border-color: var(--pd-line);
    color: var(--color-main);
    box-shadow: none;
}

.product-content-detail .add-to-cart.add-to-wishlist:hover,
.product-content-detail .add-to-cart.add-to-wishlist.added-wishlist {
    background-color: #fff5f5;
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    box-shadow: none;
}

.product-content-detail .add-to-cart.add-to-wishlist.added-wishlist i::before {
    font-weight: 900;
}

/* Combo chưa có giá thì đây là lối đi duy nhất còn lại, nên là nút gọi thật chứ
   không phải hộp thông báo. */
.btn-contact-order {
    position: relative;
    flex: 1 1 0;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    /* Cùng `padding` và `border` với `.add-to-cart`: `flex-basis: 0` không tính hai
       thứ này, lệch một px là hai nửa hàng lệch theo. */
    padding: 0 20px;
    border: 1px solid var(--color-highlight);
    border-radius: 14px;
    /* Nền phẳng, đúng đỏ thương hiệu và đúng bóng của `.add-to-cart`. Trước đây
       là gradient ba chặng + một lớp phủ sáng: cùng vai "nút chính của thẻ mua"
       mà hai ngôn ngữ khác nhau. Hai nút không bao giờ hiện cùng lúc nên không ai
       thấy chúng cạnh nhau — chỉ thấy trang này lệch trang kia. */
    background-color: var(--color-highlight);
    color: var(--white);
    box-shadow: 0 12px 24px -14px rgba(222, 2, 4, 0.75);
    transition: all 0.25s ease;
}

.btn-contact-order:hover {
    background-color: #c40204;
    border-color: #c40204;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 16px 28px -14px rgba(222, 2, 4, 0.8);
}

.btn-contact-order .contact-icon {
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.16);
    font-size: 17px;
}

/* Vòng loang báo "bấm được để gọi". Tắt bằng cách xoá riêng khối này. */
.btn-contact-order .contact-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: contact-order-ring 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

@keyframes contact-order-ring {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    70%,
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-contact-order .contact-icon::before {
        animation: none;
    }
}

.btn-contact-order .contact-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-content-detail .out-of-stock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: auto;
    line-height: 1.5;
    padding: 14px 16px;
    border: 1px solid #f7dcdc;
    border-radius: 14px;
    background-color: #fff6f6;
    text-transform: none;
}

/* CV-11 — lý do không có nút thêm giỏ khi combo chưa có giá.
   🔴 Phải đứng NGAY SAU `.out-of-stock`: cùng độ đặc hiệu (0,2,0) nên cái viết sau thắng.
   Đặt trước là mất nền vàng vào tay nền đỏ — trang vẫn dựng, chỉ sai màu, không gì báo. */
.product-content-detail .combo-need-quote {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 20px;
    padding-left: 20px;
    border-color: #f2e2b4;
    background-color: #fff8e1;
    color: #856404;
}

/* Dải cam kết: ba ô trong khung bo tròn.

   Icon nằm TRÊN chữ chứ không cạnh chữ: cột chi tiết chỉ ~390px, chia ba còn ~110px
   mỗi ô — đặt ngang thì icon chiếm mất một phần ba bề rộng và tên xuống ba dòng. */
.product-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    padding: 18px 14px;
    border: 1px solid var(--pd-line);
    border-radius: 16px;
    background-color: #fbfcfe;
}

.product-trust-row .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
    text-align: center;
}

.product-trust-row .trust-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(222, 2, 4, 0.08);
    color: var(--color-highlight);
    font-size: 17px;
}

.product-trust-row .trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.product-trust-row .trust-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-main);
}

/* Câu mô tả là chú thích, không phải nội dung phải đọc hết: cắt hai dòng để ba ô
   luôn bằng nhau, câu đầy đủ vẫn còn trong `title`. */
.product-trust-row .trust-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--pd-muted);
}

@media (max-width: 575.98px) {
    .product-trust-row {
        padding: 14px 10px;
        gap: 8px;
    }

    .product-trust-row .trust-item i {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .product-trust-row .trust-name {
        font-size: 12px;
    }

    .product-trust-row .trust-desc {
        font-size: 11px;
    }
}

.product-policy {
    margin-top: 18px;
    padding: 2px 18px;
    border: 1px solid var(--pd-line);
    border-radius: 16px;
    background-color: #fbfcfe;
}

.product-policy .policy-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #eef0f4;
}

.product-policy .policy-item:last-child {
    border-bottom: 0;
}

.product-policy .policy-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(222, 2, 4, 0.08);
    color: var(--color-highlight);
    font-size: 16px;
}

.product-policy .policy-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-main);
    line-height: 1.4;
}

.product-policy .policy-desc {
    font-size: 13px;
    color: var(--pd-muted);
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .product-detail-media {
        margin-bottom: 6px;
    }
}

@media (max-width: 575.98px) {
    .product-content-detail .product-title-detail {
        font-size: 20px;
    }

    .product-buy-box .product-price-box {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .product-content-detail .price .price-amount {
        font-size: 27px;
    }

    .product-content-detail .price .price-amount .currency-symbol {
        font-size: 17px;
    }

    .product-price-box-combo .price-contact {
        font-size: 20px;
    }

    /* Xếp dọc thì `flex-basis: 0` rơi vào chiều cao và nút xẹp còn ~20px — phải trả
       `flex` về `auto` chứ không chỉ đổi `flex-direction`. */
    .btn-cart-buy {
        flex-direction: column;
    }

    .product-content-detail .add-to-cart,
    .product-content-detail .add-to-cart.add-to-wishlist {
        flex: 0 0 auto;
        height: 48px;
    }

    .btn-contact-order,
    .product-content-detail .combo-need-quote {
        flex: 0 0 auto;
        min-width: 0;
        gap: 12px;
    }

    .btn-contact-order .contact-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .btn-contact-order .contact-label {
        font-size: 14px;
    }

    .product-policy {
        padding: 2px 14px;
        margin-top: 16px;
    }
}

:root {
    --co-ink: #101828;
    --co-muted: #6f7787;
    --co-line: #e4e7ee;
    --co-soft: #f6f7f9;
    --co-radius: 14px;
    --co-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 10px 26px rgba(16, 24, 40, 0.045);
}

[nh-order-info],
.co-page {
    padding-bottom: 40px;
}

.co-crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--co-muted);
}

.co-crumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--co-muted);
}

.co-crumb a:hover {
    color: var(--color-highlight);
}

.co-crumb-sep {
    font-size: 11px;
    color: #b9c0cc;
}

.co-crumb h1 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: inherit;
    color: var(--co-ink);
}

.co-steps {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.co-step {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.co-step::after {
    content: '';
    flex: 0 0 56px;
    width: 56px;
    height: 2px;
    margin: 0 14px;
    border-radius: 2px;
    background-color: #e1e5ec;
}

.co-step:last-child::after {
    display: none;
}

.co-step-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--co-muted);
    white-space: nowrap;
}

a.co-step-link:hover {
    color: var(--co-ink);
}

.co-step-dot {
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--co-line);
    border-radius: 50%;
    background-color: #fff;
    font-size: 13px;
    font-weight: 700;
    color: var(--co-muted);
}

.co-step.is-done .co-step-link,
.co-step.is-current .co-step-link {
    color: var(--co-ink);
}

.co-step.is-done .co-step-dot {
    border-color: var(--color-highlight);
    background-color: var(--color-highlight);
    color: #fff;
}

.co-step.is-done::after {
    background-color: var(--color-highlight);
}

.co-step.is-current .co-step-link {
    font-weight: 700;
}

.co-step.is-current .co-step-dot {
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    box-shadow: 0 0 0 4px rgba(222, 2, 4, 0.12);
}

.co-card {
    margin-bottom: 20px;
    padding: 24px;
    border: 1px solid var(--co-line);
    border-radius: var(--co-radius);
    background-color: #fff;
    box-shadow: var(--co-shadow);
}

.co-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.co-head-icon {
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background-color: rgba(222, 2, 4, 0.08);
    color: var(--color-highlight);
    font-size: 16px;
}

.co-head-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--co-ink);
}

.co-head-action {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-highlight);
    white-space: nowrap;
}

.co-head-action:hover {
    color: var(--color-highlight);
    text-decoration: underline;
}

.co-badge {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: var(--co-soft);
    font-size: 12px;
    font-weight: 600;
    color: var(--co-muted);
    text-transform: lowercase;
    white-space: nowrap;
}

.co-items {
    max-height: 380px;
    margin-top: -8px;
    margin-right: -6px;
    padding-top: 8px;
    padding-right: 6px;
    overflow-x: hidden;
    overflow-y: auto;
}

.co-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--co-line);
}

.co-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.co-item:last-child {
    padding-bottom: 0;
}

.co-item-thumb {
    position: relative;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border: 1px solid var(--co-line);
    border-radius: 10px;
    background-color: #fff;
}

.co-item-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
}

.co-item-qty {
    position: absolute;
    top: -7px;
    right: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background-color: var(--co-ink);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.co-item-body {
    flex: 1 1 auto;
    min-width: 0;
}

.co-item-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--co-ink);
}

.co-item-name:hover {
    color: var(--color-highlight);
}

.co-item-meta {
    margin-top: 4px;
    font-size: 13px;
    color: var(--co-muted);
}

.co-item-price {
    flex: 0 0 auto;
    padding-left: 8px;
    text-align: right;
}

.co-item-price .price-amount {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-highlight);
    white-space: nowrap;
}

.co-item-price-sub {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--co-muted);
    white-space: nowrap;
}

.co-empty {
    padding: 26px 0;
    text-align: center;
    font-size: 14px;
    color: var(--co-muted);
}

.co-empty i {
    display: block;
    margin-bottom: 10px;
    font-size: 34px;
    color: #c9ced8;
}

.co-note-login {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    background-color: var(--co-soft);
    font-size: 13px;
    color: var(--co-muted);
}

.co-note-login i {
    font-size: 18px;
    color: var(--co-ink);
}

.co-link {
    font-weight: 600;
    color: var(--color-highlight);
}

.co-link:hover {
    color: var(--color-highlight);
    text-decoration: underline;
}

.co-link-muted {
    font-size: 13px;
    color: var(--co-muted);
    text-decoration: underline;
}

.co-link-muted:hover {
    color: var(--color-highlight);
}

.co-field {
    margin-bottom: 18px;
}

.co-field-last {
    margin-bottom: 0;
}

.co-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--co-ink);
}

.co-card input.form-control,
.co-card textarea.form-control {
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--co-line);
    border-radius: 10px;
    background-color: var(--co-soft);
    box-shadow: none;
    font-size: 14px;
    color: var(--co-ink);
}

.co-card input.form-control:focus,
.co-card textarea.form-control:focus {
    border-color: var(--color-highlight);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(222, 2, 4, 0.1);
}

.co-card input.form-control::-webkit-input-placeholder,
.co-card textarea.form-control::-webkit-input-placeholder {
    color: #a2a9b6;
}

.co-card input.form-control::placeholder,
.co-card textarea.form-control::placeholder {
    color: #a2a9b6;
}

.co-card textarea.co-textarea.form-control {
    height: auto;
    min-height: 92px;
    padding: 12px 14px;
    resize: vertical;
}

.co-card .validate-form .invalid-feedback {
    position: static;
}

.co-card label.error {
    display: block;
    width: 100%;
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 400;
    color: #dc2626;
}

.co-select .bootstrap-select {
    width: 100% !important;
}

.co-select .bootstrap-select.form-control {
    height: auto;
    padding: 0;
    border: 0;
    background-color: transparent;
    box-shadow: none;
}

.co-select .bootstrap-select > .dropdown-toggle {
    height: 46px;
    padding: 0 32px 0 14px;
    border: 1px solid var(--co-line);
    border-radius: 10px;
    background-color: var(--co-soft) !important;
    box-shadow: none !important;
    outline: 0 !important;
    font-size: 14px;
    color: var(--co-ink);
}

.co-select .bootstrap-select > .dropdown-toggle:focus,
.co-select .bootstrap-select.show > .dropdown-toggle {
    border-color: var(--color-highlight);
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(222, 2, 4, 0.1) !important;
}

.co-select .bootstrap-select > .dropdown-toggle.bs-placeholder,
.co-select .bootstrap-select > .dropdown-toggle.bs-placeholder:focus {
    color: #a2a9b6;
}

.co-select .bootstrap-select > .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.co-select .bootstrap-select .dropdown-menu {
    margin: 6px 0;
    padding: 8px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.14);
}

.co-select .bootstrap-select .bs-searchbox {
    padding: 0 0 8px;
}

.co-select .bootstrap-select .bs-searchbox .form-control {
    height: 40px;
    padding: 0 14px;
    border: 1px solid var(--co-line);
    border-radius: 8px;
    background-color: var(--co-soft);
    box-shadow: none;
    font-size: 14px;
}

.co-select .bootstrap-select .dropdown-menu li a.dropdown-item {
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #334155;
    white-space: normal;
}

.co-select .bootstrap-select .dropdown-menu li a.dropdown-item:hover,
.co-select .bootstrap-select .dropdown-menu li a.dropdown-item:focus {
    background-color: #f1f5f9;
    color: var(--co-ink);
}

.co-select .bootstrap-select .dropdown-menu li a.dropdown-item.active,
.co-select .bootstrap-select .dropdown-menu li a.dropdown-item.selected,
.co-select .bootstrap-select .dropdown-menu li a.dropdown-item:active {
    background-color: rgba(222, 2, 4, 0.08);
    font-weight: 600;
    color: var(--color-highlight);
}

.co-select .bootstrap-select .dropdown-menu li:first-child a.dropdown-item {
    font-weight: 400;
    color: #a2a9b6;
}

.co-address {
    padding: 16px;
    border: 1px dashed #d9dde5;
    border-radius: 12px;
    background-color: var(--co-soft);
    margin-bottom: 15px;
}

.co-address-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--co-ink);
}

.co-address-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--co-muted);
}

.co-address-line i {
    margin-top: 3px;
    font-size: 13px;
}

.co-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.co-btn-block {
    display: flex;
    width: 100%;
}

.co-btn-lg {
    height: 54px;
    font-size: 15px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.co-btn-primary {
    border-color: var(--color-highlight);
    background-color: var(--color-highlight);
    color: #fff;
}

.co-btn-primary:hover {
    color: #fff;
    filter: brightness(1.1);
    box-shadow: 0 10px 22px rgba(222, 2, 4, 0.25);
}

.co-btn-outline {
    border-color: var(--color-highlight);
    background-color: #fff;
    color: var(--color-highlight);
}

.co-btn-outline:hover {
    background-color: var(--color-highlight);
    color: #fff;
}

.co-btn-dark {
    border-color: var(--co-ink);
    background-color: var(--co-ink);
    color: #fff;
}

.co-btn-dark:hover {
    color: #fff;
    filter: brightness(1.4);
}

.co-card.co-accordion {
    padding: 0;
    overflow: hidden;
}

.co-acc-item + .co-acc-item {
    border-top: 1px solid var(--co-line);
}

.co-collapse-head {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 17px 20px;
    border: 0;
    background-color: transparent;
    text-align: left;
    cursor: pointer;
}

.co-collapse-head:focus {
    outline: 0;
}

.co-collapse-head:not(.collapsed) {
    border-bottom: 1px solid var(--co-line);
}

.co-collapse-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--co-ink);
}

.co-chevron {
    margin-left: auto;
    color: var(--co-muted);
    transition: transform 0.25s ease;
}

.co-collapse-head:not(.collapsed) .co-chevron {
    transform: rotate(180deg);
}

.co-tag {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 8px;
    background-color: rgba(47, 138, 0, 0.1);
    font-size: 12px;
    font-weight: 700;
    color: #2f8a00;
    white-space: nowrap;
}

.co-tag + .co-chevron {
    margin-left: 10px;
}

.co-collapse-body {
    padding: 20px;
}

.co-collapse-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.co-inline {
    display: flex;
    gap: 10px;
}

.co-inline .form-control {
    flex: 1 1 auto;
    min-width: 0;
}

.co-inline .co-btn {
    flex: 0 0 auto;
}

.co-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.co-hint.is-success {
    color: #2f8a00;
}

.co-point-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 12.5px;
    color: var(--co-muted);
}

.co-point-input .input-group-text {
    height: 46px;
    padding: 0 14px;
    border-color: var(--color-highlight);
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    font-size: 13px;
    font-weight: 700;
}

.co-point-input .input-group-text small {
    margin-left: 4px;
}

.co-ship-item + .co-ship-item {
    margin-top: 10px;
}

.co-ship-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid var(--co-line);
    border-radius: 12px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.co-ship-item label:hover {
    border-color: #c9ced8;
}

.co-ship-item input.form-check-input:checked ~ label {
    border-color: var(--color-highlight) !important;
    background-color: rgba(222, 2, 4, 0.03);
    box-shadow: 0 0 0 3px rgba(222, 2, 4, 0.08);
}

.co-ship-body {
    flex: 1 1 auto;
    min-width: 0;
}

.co-ship-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--co-ink);
}

.co-ship-desc {
    margin-top: 2px;
    font-size: 13px;
    font-weight: 400;
    color: var(--co-muted);
}

.co-ship-fee {
    font-weight: 600;
    color: var(--color-highlight);
}

.co-ship-radio {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #d3d8e0;
    border-radius: 50%;
}

.co-ship-item input.form-check-input:checked ~ label .co-ship-radio {
    border-color: var(--color-highlight);
}

.co-ship-item input.form-check-input:checked ~ label .co-ship-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    border-radius: 50%;
    background-color: var(--color-highlight);
}

.co-sum-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.co-sum-label {
    color: var(--co-muted);
}

.co-sum-value {
    text-align: right;
    font-weight: 700;
    color: var(--co-ink);
    white-space: nowrap;
}

.co-sum-value .price-amount {
    font-size: 14px;
    font-weight: 700;
}

.co-sum-value.is-minus,
.co-sum-value.is-minus .price-amount {
    color: #2f8a00;
}

.co-sum-sub {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 400;
    color: var(--co-muted);
}

.co-sum-divider {
    margin: 18px 0;
    border-top: 1px dashed #dfe3ea;
}

.co-sum-total {
    align-items: center;
    margin-bottom: 0;
}

.co-sum-total .co-sum-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--co-ink);
}

.co-sum-total .price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-highlight);
}

.co-sum-row + .co-sum-total {
    margin-top: 0;
}

.co-pay {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--co-line);
    text-align: center;
}

/* Cột phải của `/order/info` chứa các lựa chọn phụ ở trên và khối tiền phải trả ở cuối.
   Khi cuộn, ghim cả khối tổng kết để số tiền và hành động chính luôn đi cùng nhau. Mốc
   `md` là lúc hai cột đơn hàng còn đứng cạnh nhau; dưới mốc ấy khối trở lại luồng thường
   để không che phần thông tin giao hàng. `--co-sticky-offset` được `order.js` đo theo
   chiều cao menu sticky. */
@media (min-width: 768px) {
    #order-info-right .co-sticky-summary {
        position: sticky;
        top: var(--co-sticky-offset, 16px);
        z-index: 2;
    }
}

.co-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    color: var(--co-muted);
}

.co-back:hover {
    color: var(--color-highlight);
}

@media (max-width: 991.98px) {
    .co-card {
        margin-bottom: 16px;
        padding: 18px 16px;
    }

    .co-collapse-body {
        padding: 16px;
    }

    .co-head-title {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    /* Dải bước rút về ĐÚNG MỘT tên: bước đang đứng. Hai tên kia là nơi đã qua và nơi chưa
       tới — không phải tin cần biết ngay, mà chiếm trọn một hàng ngang của khổ điện thoại.

       Giấu cả thẻ `<li>` chứ không riêng phần chữ: giấu mỗi chữ thì chấm tròn và vạch nối
       của bước ấy vẫn nằm lại, thành mấy gạch rời hai bên cái tên còn sót. */
    .co-step:not(.is-current) {
        display: none;
    }

    .co-step-dot {
        display: none;
    }

    /* Vạch nối của CHÍNH bước đang đứng cũng phải đi: luật gốc chỉ ẩn nó ở bước cuối, nên
       đứng ở bước 1 hay 2 thì còn một gạch cụt chĩa ra bên phải cái tên. */
    .co-step::after {
        display: none;
    }

    /* Còn một mình thì nó là tiêu đề của trang, không phải một mục trong dải — 12px cũ là cỡ
       của chữ đứng cạnh chấm tròn. Màu và độ đậm để nguyên luật gốc (mực, 700): đỏ là để
       phân biệt với các bước khác, mà nay không còn bước nào khác để phân biệt. */
    .co-step-link {
        gap: 0;
        font-size: 18px;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    /* Khe dưới 30px -> 16px, trong khi khe trên vẫn 30px (khe ấy do khối phía trên đặt, không
       nằm trong `.co-page`). Lệch là cố ý: tiêu đề thuộc về phần nội dung NGAY DƯỚI nó, nên
       phải dính vào đó hơn là dính vào thứ ở trên. Chia đều hai bên thì nó lửng lơ giữa hai
       khối, đọc ra như một dòng chữ rơi rớt chứ không phải tiêu đề của cái gì. */
    .co-steps {
        margin-bottom: 16px;
    }

    .co-item-thumb {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
    }

    .co-item-price .price-amount {
        font-size: 14px;
    }

    .co-sum-total .price-amount {
        font-size: 20px;
    }
}

/* Khổ điện thoại: "Tổng cộng" đứng TRÊN "Phương thức thanh toán".

   Hai thẻ ấy nằm ở hai cột khác nhau của cùng một `.row`, nên `order` không với tới —
   nó chỉ xếp lại các con của MỘT khung flex. `display: contents` gỡ hộp của hai cột đi,
   để bốn thẻ cùng thành con trực tiếp của hàng; từ đó `order` mới xếp được chúng xen kẽ.

   Hộp cột biến mất thì `px-3` của nó cũng mất theo, mà `mx-n3` âm của hàng thì còn —
   không gỡ là trang tràn ngang 2x16px. Phải `!important` vì tiện ích bootstrap mang sẵn.

   Chỉ dưới 768px: từ `md` trở lên hai cột đứng cạnh nhau, ở đó thứ tự này vô nghĩa. */
@media (max-width: 767.98px) {
    .payment-section > .row {
        display: flex;
        flex-direction: column;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .payment-section > .row > [class*="col-"] {
        display: contents;
    }

    .payment-section .co-card-summary {
        order: 1;
    }

    .payment-section .co-card-payment {
        order: 2;
    }
}

.co-collapse-head {
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.co-collapse-head:hover .co-collapse-title {
    color: var(--color-highlight);
}

.co-collapse-head:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(222, 2, 4, 0.25);
}

.product-detail-footer {
    margin-top: 30px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-content-section {
    padding: 24px 28px;
    border: 1px solid #ebeef3;
    border-radius: 16px;
    background-color: var(--white);
}

.product-content-section .section-title {
    position: relative;
    margin: 0 0 16px;
    padding-left: 14px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-main);
    text-transform: uppercase;
}

.product-content-section .section-title::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 4px;
    border-radius: 4px;
    background-color: var(--color-highlight);
}

.product-content-rte {
    font-size: 14px;
    line-height: 1.8;
    color: #414a5a;
    word-break: break-word;
}

.product-content-rte > *:first-child {
    margin-top: 0;
}

.product-content-rte > *:last-child {
    margin-bottom: 0;
}

.product-content-rte p {
    margin-bottom: 14px;
}

.product-content-rte h2,
.product-content-rte h3,
.product-content-rte h4 {
    margin: 26px 0 12px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-main);
}

.product-content-rte h2 {
    font-size: 18px;
}

.product-content-rte h3 {
    font-size: 16px;
}

.product-content-rte h4 {
    font-size: 15px;
}

.product-content-rte ul,
.product-content-rte ol {
    margin-bottom: 14px;
    padding-left: 20px;
}

.product-content-rte li {
    margin-bottom: 6px;
}

.product-content-rte ul {
    list-style: none;
    padding-left: 4px;
}

.product-content-rte ul li {
    position: relative;
    padding-left: 20px;
}

.product-content-rte ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-highlight);
}

.product-content-rte a {
    color: var(--color-highlight);
    text-decoration: underline;
}

.product-content-rte img {
    border-radius: 12px;
    margin: 6px 0;
}

.product-content-rte blockquote {
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--color-highlight);
    border-radius: 0 10px 10px 0;
    background-color: #fff6f6;
    color: var(--color-main);
    font-size: 14px;
}

.product-content-rte table {
    width: 100%;
    margin-bottom: 14px;
    border: 1px solid #ebeef3;
    border-radius: 12px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.product-content-rte table th,
.product-content-rte table td {
    padding: 10px 16px;
    border-bottom: 1px solid #ebeef3;
    text-align: left;
    vertical-align: top;
}

.product-content-rte table th {
    background-color: #f6f8fa;
    font-weight: 600;
    color: var(--color-main);
}

.product-content-rte table tr:last-child th,
.product-content-rte table tr:last-child td {
    border-bottom: 0;
}

.product-content-rte table td:first-child {
    width: 38%;
    color: var(--color-text);
}

.product-content-section .entire-file {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.product-content-section .product-tags {
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eef0f4;
}

.product-content-section .product-tags .tags-title label {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-text);
}

.km-bc { border-bottom: 1px solid #f0f0f0; }
.km-bc .breadcrumbs-section { margin-top: 1.4rem; margin-bottom: 1.4rem; }

.warp-km-about { padding: 3.5rem 0 4rem; }
.km-about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -1.5rem;
}
.km-about-body { flex: 1 1 42%; min-width: 0; padding: 0 1.5rem; }
.km-about-media { flex: 1 1 52%; min-width: 0; padding: 0 1.5rem; }

.km-eyebrow {
    display: block;
    color: var(--color-highlight);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .12rem;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}
.km-about-title {
    font-size: 3.2rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--km-dark);
    margin: 0 0 2.2rem;
}
.km-about-desc {
    font-size: 1.5rem;
    line-height: 1.9;
    color: var(--km-text);
    margin-bottom: 2.8rem;
}
.km-about-list { list-style: none; padding: 0; margin: 0; }
.km-about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.6rem;
}
.km-about-list li:last-child { margin-bottom: 0; }
.km-check {
    flex: 0 0 auto;
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 1.2rem;
    color: var(--color-highlight);
}
.km-check svg { display: block; width: 100%; height: 100%; }
.km-check-txt { font-size: 1.5rem; color: #333; }

.km-about-photo { position: relative; }
.km-about-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
}
.km-about-photo-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34rem;
    border: 1px dashed #dcdcdc;
    border-radius: 1.2rem;
    background: var(--km-soft);
}
.km-about-photo-empty svg {
    width: 6rem;
    height: 6rem;
    fill: none;
    stroke: #c9c9c9;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.km-sec-title {
    position: relative;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--km-dark);
    text-transform: uppercase;
    letter-spacing: .05rem;
    margin: 0 0 4.5rem;
    padding-bottom: 1.8rem;
}
.km-sec-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 6rem;
    height: .3rem;
    background: var(--color-highlight);
}

.warp-km-camket { padding-bottom: 5rem; }
.km-ck-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--light);
    border-radius: 1.2rem;
    background: #fff;
    padding: 3rem 1rem;
}
.km-ck-item {
    display: flex;
    align-items: flex-start;
    flex: 1 1 25%;
    max-width: 25%;
    min-width: 0;
    padding: .6rem 2rem;
    border-left: 1px solid var(--light);
}
.km-ck-item:first-child { border-left: 0; }
.km-ck-ico {
    flex: 0 0 auto;
    width: 4.2rem;
    height: 4.2rem;
    margin-right: 1.5rem;
    color: var(--km-red);
}
.km-ck-ico svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--color-highlight);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.km-ck-ico img { display: block; max-width: 100%; height: auto; }
.km-ck-txt { min-width: 0; }
.km-ck-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03rem;
    margin-bottom: .8rem;
}
.km-ck-desc {font-size: 14px;line-height: 1.75;}

.warp-km-hanhtrinh { padding: 2rem 0 4rem; }
.km-tl { display: flex; flex-wrap: wrap; }
.km-tl-item {
    position: relative;
    flex: 1 1 25%;
    max-width: 25%;
    min-width: 0;
    padding: 0 1.5rem;
    text-align: center;
}
.km-tl-item::before,
.km-tl-item::after {
    content: "";
    position: absolute;
    top: 2.8rem;
    height: 1px;
    background: #e3e3e3;
}
.km-tl-item::before { left: 0; right: 50%; }
.km-tl-item::after { left: 50%; right: 0; }
.km-tl-item:first-child::before,
.km-tl-item:last-child::after { display: none; }
.km-tl-dot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: var(--color-highlight);
    color: #fff;
}
.km-tl-dot svg {
    width: 2.6rem;
    height: 2.6rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.km-tl-dot img { max-width: 2.8rem; height: auto; }
.km-tl-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--km-dark);
    margin-bottom: .6rem;
}
.km-tl-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}
.km-tl-desc {font-size: 14px;line-height: 1.8;}

.warp-km-solieu { padding-bottom: 5rem; }
.km-st-box {
    display: flex;
    flex-wrap: wrap;
    background: var(--light);
    border-radius: 1.2rem;
    padding: 4rem 1rem;
}
.km-st-item {
    flex: 1 1 25%;
    max-width: 25%;
    min-width: 0;
    padding: 0 2rem;
    text-align: center;
    border-left: 1px solid #e4e4e4;
}
.km-st-item:first-child { border-left: 0; }
.km-st-num {
    display: block;
    font-size: 3.6rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: .8rem;
}
.km-st-label {display: block;font-size: 16px;}

.warp-km-doitac { padding-bottom: 6rem; }
.km-dt-grid { display: flex; flex-wrap: wrap; margin: 0 -.8rem; }
.km-dt-item {
    flex: 0 0 16.666%;
    max-width: 16.666%;
    min-width: 0;
    padding: 0 .8rem 1.6rem;
}
.km-dt-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8rem;
    padding: 1rem;
    border: 1px solid var(--light);
    border-radius: .8rem;
    background: #fff;
    transition: border-color .25s ease, box-shadow .25s ease;
}
a.km-dt-box:hover { border-color: var(--km-red); box-shadow: 0 .4rem 1.6rem rgba(0, 0, 0, .07); }
.km-dt-box img { max-height: 5rem; width: auto; }
.km-dt-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--km-dark);
    letter-spacing: .1rem;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .km-about-body,
    .km-about-media { flex: 1 1 100%; max-width: 100%; }
    .km-about-media { margin-top: 3rem; }
    .km-about-photo-empty { min-height: 26rem; }
    .km-ck-item,
    .km-st-item { flex: 0 0 50%; max-width: 50%; padding-top: 1.6rem; padding-bottom: 1.6rem; }
    .km-ck-item:nth-child(odd),
    .km-st-item:nth-child(odd) { border-left: 0; }
    .km-tl-item { flex: 0 0 50%; max-width: 50%; margin-bottom: 3.5rem; }
    .km-tl-item::before,
    .km-tl-item::after { display: none; }
    .km-dt-item { flex: 0 0 33.333%; max-width: 33.333%; }
}

@media (max-width: 575px) {
    .km-about-title { font-size: 2.6rem; }
    .km-sec-title { font-size: 2.2rem; margin-bottom: 3.5rem; }
    .km-ck-item,
    .km-st-item,
    .km-tl-item { flex: 0 0 100%; max-width: 100%; border-left: 0; }
    .km-dt-item { flex: 0 0 50%; max-width: 50%; }
    .km-st-item {padding-bottom: 1.6rem;flex: 0 0 50%;max-width: 50%;}
    .km-st-item:last-child { padding-bottom: 0; }
}

@media (max-width: 575.98px) {
    .product-detail-footer {
        margin-top: 0;
        margin-bottom: 30px;
        gap: 14px;
    }

    .product-content-section {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .product-content-section .section-title {
        font-size: 16px;
    }

    .product-content-rte table th,
    .product-content-rte table td {
        padding: 9px 12px;
    }
}

.co-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(222, 2, 4, 0.25);
    border-radius: 12px;
    background-color: rgba(222, 2, 4, 0.05);
    font-size: 14px;
    color: #b3172a;
}

.co-alert i {
    margin-top: 2px;
    font-size: 16px;
}

.co-subhead {
    margin: 20px 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--co-ink);
}

.co-pay-methods {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.co-pay-methods .nav-item {
    display: block;
    width: 100%;
}

.co-pay-methods .nav-item + .nav-item {
    margin-top: 10px;
}

.co-pay-method.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--co-line);
    border-radius: 12px;
    background-color: #fff;
    color: var(--co-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.co-pay-method.nav-link:hover {
    border-color: #c9ced8;
}

.co-pay-method.nav-link.active {
    border-color: var(--color-highlight);
    background-color: rgba(222, 2, 4, 0.03);
    box-shadow: 0 0 0 3px rgba(222, 2, 4, 0.08);
}

.co-pay-method-icon {
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 32px;
}

.co-pay-method-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.55;
    transition: all 0.2s ease;
}

.co-pay-method.active .co-pay-method-icon img {
    filter: none;
    opacity: 1;
}

.co-pay-method-body {
    flex: 1 1 auto;
    min-width: 0;
}

.co-pay-method-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.co-pay-method.active .co-pay-method-name {
    color: var(--color-highlight);
}

.co-pay-method-desc {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--co-muted);
}

.co-pay-method-radio {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #d3d8e0;
    border-radius: 50%;
}

.co-pay-method.active .co-pay-method-radio {
    border-color: var(--color-highlight);
}

.co-pay-method.active .co-pay-method-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    border-radius: 50%;
    background-color: var(--color-highlight);
}

.co-modal .modal-content {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.18);
    overflow: hidden;
}

.co-modal-head {
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--co-line);
}

.co-modal-icon {
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background-color: rgba(222, 2, 4, 0.08);
    color: var(--color-highlight);
    font-size: 16px;
}

.co-modal-heading {
    min-width: 0;
}

.co-modal-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--co-ink);
}

.co-modal-sub {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--co-muted);
}

.co-modal-close {
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 0 0 auto;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background-color: var(--co-soft);
    color: var(--co-muted);
    font-size: 16px;
    text-shadow: none;
    opacity: 1;
    transition: all 0.2s ease;
}

.co-modal-close:hover,
.co-modal-close:focus {
    background-color: rgba(222, 2, 4, 0.08);
    color: var(--color-highlight);
    opacity: 1;
    outline: 0;
}

.co-modal-body {
    padding: 22px;
}

.co-modal-tabs {
    display: flex;
    gap: 6px;
    margin: 0 0 20px;
    padding: 5px;
    border-radius: 12px;
    background-color: var(--co-soft);
    list-style: none;
}

.co-modal-tabs .nav-item {
    flex: 1 1 0;
}

.co-modal-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    color: var(--co-muted);
    transition: all 0.2s ease;
}

.co-modal-tabs .nav-link:hover {
    color: var(--co-ink);
}

.co-modal-tabs .nav-link.active {
    background-color: #fff;
    color: var(--co-ink);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 4px 10px rgba(16, 24, 40, 0.07);
}

.co-pick-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 52vh;
    overflow-y: auto;
}

.co-pick-list::-webkit-scrollbar {
    width: 4px;
}

.co-pick-list::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #d9dde5;
}

.co-pick-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--co-line);
    border-radius: 12px;
    background-color: #fff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.co-pick-item:hover {
    border-color: var(--color-highlight);
    box-shadow: var(--co-shadow);
}

.co-pick-item:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(222, 2, 4, 0.12);
}

.co-pick-item.is-current {
    border-color: var(--color-highlight);
    background-color: rgba(222, 2, 4, 0.04);
}

.co-pick-radio {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid #cfd5df;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.co-pick-item:hover .co-pick-radio,
.co-pick-item.is-current .co-pick-radio {
    border-color: var(--color-highlight);
}

.co-pick-item.is-current .co-pick-radio:after {
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    border-radius: 50%;
    background-color: var(--color-highlight);
}

.co-pick-body {
    flex: 1 1 auto;
    min-width: 0;
}

.co-pick-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.co-pick-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--co-ink);
}

.co-pick-tag {
    padding: 3px 9px;
    border-radius: 999px;
    background-color: var(--co-soft);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--co-muted);
    white-space: nowrap;
}

.co-pick-tag.is-on {
    display: none;
    background-color: rgba(222, 2, 4, 0.08);
    color: var(--color-highlight);
}

.co-pick-item.is-current .co-pick-tag.is-on {
    display: block;
}

.co-pick-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--co-muted);
}

.co-pick-line i {
    flex: 0 0 14px;
    margin-top: 3px;
    font-size: 13px;
    text-align: center;
}

.co-pick-go {
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--co-soft);
    color: var(--co-muted);
    font-size: 13px;
    transition: all 0.2s ease;
}

.co-pick-item:hover .co-pick-go,
.co-pick-item.is-current .co-pick-go {
    background-color: var(--color-highlight);
    color: #fff;
}

.co-pick-empty {
    padding: 34px 20px;
    border: 1px dashed #d9dde5;
    border-radius: 12px;
    background-color: var(--co-soft);
    text-align: center;
}

.co-pick-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--color-highlight);
    font-size: 22px;
}

.co-pick-empty-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--co-ink);
}

.co-pick-empty-text {
    margin: 4px 0 18px;
    font-size: 13px;
    color: var(--co-muted);
}

.co-modal-form .form-group {
    margin-bottom: 18px;
}

.co-modal-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--co-ink);
}

.co-modal-form .required {
    color: var(--color-highlight);
}

.co-modal-form input.form-control {
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--co-line);
    border-radius: 10px;
    background-color: var(--co-soft);
    box-shadow: none;
    font-size: 14px;
    color: var(--co-ink);
}

.co-modal-form input.form-control:focus {
    border-color: var(--color-highlight);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(222, 2, 4, 0.1);
}

.co-modal-form input.form-control::placeholder {
    color: #a2a9b6;
    opacity: 1;
}

.co-modal-form label.error {
    display: block;
    width: 100%;
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 400;
    color: #dc2626;
}

.co-modal-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 24px;
    border: 1px solid var(--color-highlight);
    border-radius: 10px;
    background-color: var(--color-highlight);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.co-modal-form .btn-submit:hover {
    color: #fff;
    filter: brightness(1.1);
    box-shadow: 0 10px 22px rgba(222, 2, 4, 0.25);
}

.co-form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--co-line);
}

@media (max-width: 575.98px) {
    .co-modal .modal-dialog {
        margin: 10px;
    }

    .co-modal-head {
        padding: 16px;
    }

    .co-modal-body {
        padding: 16px;
    }

    .co-modal-tabs .nav-link {
        padding: 9px 8px;
        font-size: 13px;
    }

    .co-pick-item {
        gap: 10px;
        padding: 14px;
    }

    .co-pick-go {
        display: none;
    }

    .co-modal-form .btn-submit {
        width: 100%;
    }
}

.co-bank-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid var(--co-line);
    border-radius: 12px;
    background-color: var(--co-soft);
}

.co-bank-item:last-child {
    margin-bottom: 0;
}

.co-bank-qr {
    flex: 0 0 130px;
    width: 130px;
    padding: 8px;
    border-radius: 10px;
    background-color: #fff;
}

.co-bank-rows {
    flex: 1 1 auto;
    min-width: 0;
}

.co-bank-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed #dfe3ea;
    font-size: 13.5px;
}

.co-bank-row:first-child {
    padding-top: 0;
}

.co-bank-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.co-bank-label {
    flex: 0 0 auto;
    color: var(--co-muted);
}

.co-bank-value {
    font-weight: 700;
    text-align: right;
    color: var(--co-ink);
    word-break: break-word;
}

.co-order-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px dashed var(--color-highlight);
    border-radius: 12px;
    background-color: rgba(222, 2, 4, 0.04);
    font-size: 14px;
    color: var(--co-muted);
}

.co-order-code b {
    font-size: 16px;
    color: var(--color-highlight);
}

@media (max-width: 575.98px) {
    .co-bank-item {
        flex-direction: column;
    }

    .co-bank-qr {
        flex: 0 0 auto;
        width: 160px;
        max-width: 100%;
        margin: 0 auto;
    }

    .co-pay-method.nav-link {
        gap: 10px;
        padding: 12px 14px;
    }
}

.error-page {
    display: flex;
    justify-content: center;
    padding: 60px 15px 80px;
    font-size: 14px;
}

.error-page .error-panel {
    width: 100%;
    max-width: 460px;
    padding: 40px 30px;
    border: 1px solid #ebeef3;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 18px 40px -30px rgba(17, 28, 45, 0.35);
    text-align: center;
}

.error-page .error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(222, 2, 4, 0.08);
    color: var(--color-highlight);
}

.error-page .error-icon i {
    font-size: 32px;
}

.error-page .error-btn i {
    font-size: 16px;
}

.error-page .error-message {
    margin-bottom: 26px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-main);
}

.error-page .error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.error-page .error-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.error-page .error-btn-primary {
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
    color: var(--white);
    box-shadow: 0 10px 22px -12px rgba(222, 2, 4, 0.75);
}

.error-page .error-btn-primary:hover {
    background-color: #c40204;
    border-color: #c40204;
    color: var(--white);
    transform: translateY(-1px);
}

.error-page .error-btn-ghost {
    background-color: var(--white);
    border-color: #e2e6ee;
    color: var(--color-main);
}

.error-page .error-btn-ghost:hover {
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    background-color: #fff6f6;
}

@media (max-width: 575.98px) {
    .error-page {
        padding: 36px 15px 50px;
    }

    .error-page .error-panel {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .error-page .error-message {
        font-size: 15px;
    }

    .error-page .error-btn {
        flex: 1 1 100%;
    }
}

.footer-koman-row {
  position: relative;
  overflow: hidden;
  background-color: #0e0e12;
  padding: 5.5rem 0 4.5rem;
  color: #b7bcc6;
  font-size: 1.4rem;
  line-height: 1.7;
}

.footer-koman-row::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(70rem 45rem at 100% 100%, rgba(222, 2, 4, 0.28), rgba(222, 2, 4, 0) 62%), radial-gradient(55rem 40rem at 0% 0%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 60%), linear-gradient(115deg, #0b0b0e 0%, #17171d 48%, #0e0e12 100%);
  pointer-events: none;
}

.footer-koman-row::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -6%;
  width: 55%;
  height: 130%;
  background-image: repeating-linear-gradient(115deg, rgba(222, 2, 4, 0.16) 0 0.2rem, rgba(222, 2, 4, 0) 0.2rem 2.6rem);
  transform: skewX(-6deg);
  opacity: 0.55;
  pointer-events: none;
}

.footer-koman-row > .container {
  position: relative;
  z-index: 1;
}

.footer-koman-row > .container > .row {
  margin-right: -2rem;
  margin-left: -2rem;
}

.footer-koman-row > .container > .row > [class*="col-"] {
  padding-right: 2rem;
  padding-left: 2rem;
}

.warp-kf-brand .kf-logo {
  margin-bottom: 2.2rem;
}

.warp-kf-brand .kf-logo img {
  max-width: 20rem;
  max-height: 7rem;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  height: 50px;
  background: #fff;
  padding: 5px;
}

.warp-kf-brand .kf-desc {
  margin: 0 0 2.4rem;
  color: #a7acb6;
  font-size: 1.4rem;
  line-height: 1.85;
}

.warp-kf-brand .kf-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0 0 2.8rem;
  padding: 0;
  list-style: none;
}

.warp-kf-brand .kf-social li {
  margin: 0;
}

.warp-kf-brand .kf-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.warp-kf-brand .kf-social a:hover {
  background-color: var(--color-highlight);
  border-color: var(--color-highlight);
  color: #fff;
  transform: translateY(-0.3rem);
}

.warp-kf-brand .kf-social svg {
  width: 1.9rem;
  height: 1.9rem;
  display: block;
}

.warp-kf-brand .kf-hotline {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  max-width: 100%;
  padding: 1.4rem 2.2rem 1.4rem 1.6rem;
  border: 1px solid rgba(222, 2, 4, 0.55);
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.04);
}

.warp-kf-brand .kf-hotline-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: var(--color-highlight);
  color: #fff;
}

.warp-kf-brand .kf-hotline-ico svg {
  width: 2rem;
  height: 2rem;
  display: block;
}

.warp-kf-brand .kf-hotline-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.warp-kf-brand .kf-hotline-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa0ab;
  line-height: 1.4;
}

.warp-kf-brand .kf-hotline-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-highlight);
  line-height: 1.35;
}

.warp-kf-brand .kf-hotline-time {
  font-size: 1.1rem;
  color: #8b909a;
  line-height: 1.4;
}

.footer-koman-row .kf-title {
  position: relative;
  margin: 0 0 2.6rem;
  padding-bottom: 1.2rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.footer-koman-row .kf-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.4rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: var(--color-highlight);
}

.footer-koman-row .kf-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: default;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.footer-koman-row .kf-toggle:focus {
  outline: none;
}

.footer-koman-row .kf-toggle-ico {
  display: none;
}

.warp-kf-menu .kf-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.warp-kf-menu .kf-links li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.warp-kf-menu .kf-links a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 0;
  color: #b7bcc6;
  font-size: 1.4rem;
  line-height: 1.6;
  transition: color 0.25s ease, transform 0.25s ease;
}

.warp-kf-menu .kf-links a:hover {
  color: #fff;
  text-decoration: none;
  transform: translateX(0.4rem);
}

.warp-kf-menu .kf-chevron {
  flex: 0 0 auto;
  width: 1rem;
  height: 1.7rem;
  color: var(--color-highlight);
}

.warp-kf-contact .kf-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.warp-kf-contact .kf-contact-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 0 0 2rem;
}

.warp-kf-contact .kf-contact-item > * {
  min-width: 0;
}

.warp-kf-contact .kf-contact-item:last-child {
  padding-bottom: 0;
}

.warp-kf-contact .kf-contact-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: var(--color-highlight);
  color: #fff;
}

.warp-kf-contact .kf-contact-ico svg {
  width: 2rem;
  height: 2rem;
  display: block;
}

.warp-kf-contact .kf-contact-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.warp-kf-contact .kf-contact-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.warp-kf-contact .kf-contact-value {
  font-size: 1.4rem;
  color: #a7acb6;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.warp-kf-contact a.kf-contact-value:hover {
  color: #fff;
  text-decoration: none;
}

.warp-kf-contact .kf-contact-value-hl {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-highlight);
  line-height: 1.5;
}

.warp-kf-contact a.kf-contact-value-hl:hover {
  color: var(--color-highlight);
  opacity: 0.85;
}

.warp-kf-contact .kf-contact-note {
  font-size: 1.2rem;
  color: #8b909a;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .footer-koman-row > .container > .row > .col-md-4 {
    flex: 0 0 26%;
    max-width: 26%;
  }
  .footer-koman-row > .container > .row > .col-md-3 {
    flex: 0 0 24%;
    max-width: 24%;
  }
  .footer-koman-row > .container > .row > .col-md-2 {
    flex: 0 0 19%;
    max-width: 19%;
  }
  .footer-koman-row > .container > .row > .col-md-3:last-child {
    flex: 0 0 31%;
    max-width: 31%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-koman-row > .container > .row > [class*="col-md-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer-koman-row > .container > .row > [class*="col-md-"]:nth-child(n + 3) {
    margin-top: 3.5rem;
  }
}

@media (max-width: 767px) {
  .footer-koman-row {
    padding: 4.5rem 0 5rem;
  }
  .footer-koman-row > .container > .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-koman-row > .container > .row > [class*="col-"] + [class*="col-"] {
    margin-top: 0;
  }
  .footer-koman-row::after {
    width: 80%;
    opacity: 0.35;
  }

  .warp-kf-brand {
    padding-bottom: 2.6rem;
    text-align: center;
  }

  .warp-kf-brand .kf-social {
      display: flex;
      justify-content: center;
  }

  .footer-koman-row .kf-acc {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-koman-row .kf-acc:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-koman-row .kf-acc .kf-title {
    margin: 0;
    padding: 1.7rem 0;
    font-size: 1.5rem;
  }

  .footer-koman-row .kf-acc .kf-title::after {
    display: none;
  }

  .footer-koman-row .kf-acc .kf-toggle {
    cursor: pointer;
    pointer-events: auto;
  }

  .footer-koman-row .kf-acc .kf-toggle-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: background-color 0.25s ease, border-color 0.25s ease;
  }

  .footer-koman-row .kf-acc .kf-toggle-ico svg {
    width: 1.6rem;
    height: 1.6rem;
    display: block;
    transition: transform 0.25s ease;
  }

  .footer-koman-row .kf-acc .kf-toggle[aria-expanded="true"] .kf-toggle-ico {
    border-color: var(--color-highlight);
    background-color: var(--color-highlight);
  }

  .footer-koman-row .kf-acc .kf-toggle[aria-expanded="true"] .kf-toggle-ico svg {
    transform: rotate(180deg);
  }

  .footer-koman-row .kf-acc .kf-panel {
    display: none;
    padding-bottom: 2rem;
  }

  .warp-kf-menu .kf-links li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.warp-news-list {
    --nl-accent: var(--color-highlight);
    --nl-ink: var(--co-ink, #101828);
    --nl-muted: var(--co-muted, #6f7787);
    --nl-line: var(--co-line, #e4e7ee);
}

.warp-news-list .nl-row {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
}

.warp-news-list .nl-col {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    margin-bottom: 2.4rem;
}

.warp-news-list .nl-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--white);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 .1rem .2rem rgba(16, 24, 40, .04), 0 1.2rem 2.8rem rgba(16, 24, 40, .06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.warp-news-list .nl-item:hover {
    transform: translateY(-.6rem);
    box-shadow: 0 .2rem .4rem rgba(16, 24, 40, .05), 0 2rem 4rem rgba(16, 24, 40, .12);
}

.warp-news-list .nl-thumb {
    position: relative;
    display: block;
    padding-bottom: 62%;
    background-color: #f1f2f4;
    overflow: hidden;
}

.warp-news-list .nl-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.warp-news-list .nl-item:hover .nl-thumb img {
    transform: scale(1.07);
}

.warp-news-list .nl-scrim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background-image: linear-gradient(180deg, rgba(16, 24, 40, .38) 0%, rgba(16, 24, 40, 0) 100%);
    pointer-events: none;
}

.warp-news-list .nl-date {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    z-index: 2;
    display: inline-block;
    padding: .5rem 1.2rem;
    border-radius: 10rem;
    background-color: rgba(16, 24, 40, .55);
    backdrop-filter: blur(.8rem);
    -webkit-backdrop-filter: blur(.8rem);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: .02em;
}

.warp-news-list .nl-body {
    flex: 1 1 auto;
    padding: 2rem 2rem 1.6rem;
}

.warp-news-list .nl-eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.warp-news-list .nl-cat {
    color: var(--nl-accent);
}

.warp-news-list .nl-sub {
    position: relative;
    padding-left: 1.4rem;
    color: var(--nl-muted);
    font-weight: 600;
}

.warp-news-list .nl-sub::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: .4rem;
    height: .4rem;
    margin-top: -.2rem;
    border-radius: 50%;
    background-color: var(--nl-line);
}

.warp-news-list .nl-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.6rem;
}

.warp-news-list .nl-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.2rem;
    color: var(--nl-ink);
    transition: color .25s ease;
}

.warp-news-list .nl-item:hover .nl-title a {
    color: var(--nl-accent);
}

.warp-news-list .nl-desc {
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.4rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: var(--nl-muted);
}

.warp-news-list .nl-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin: 0 2rem;
    padding: 1.6rem 0 2rem;
    border-top: .1rem solid var(--nl-line);
    color: var(--nl-accent);
}

.warp-news-list .nl-foot:hover {
    text-decoration: none;
}

.warp-news-list .nl-more {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2rem;
}

.warp-news-list .nl-arrow {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border: .1rem solid var(--nl-line);
    border-radius: 50%;
    color: var(--nl-accent);
    transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.warp-news-list .nl-arrow svg {
    width: 1.6rem;
    height: 1.6rem;
}

.warp-news-list .nl-item:hover .nl-arrow {
    background-color: var(--nl-accent);
    border-color: var(--nl-accent);
    color: var(--white);
    transform: translateX(.3rem);
}

.warp-news-list .pagination {
    margin-top: 1rem;
}

@media (max-width: 575.98px) {
    .warp-news-list .nl-row {
        margin-left: -.6rem;
        margin-right: -.6rem;
    }

    .warp-news-list .nl-col {
        padding-left: .6rem;
        padding-right: .6rem;
        margin-bottom: 1.6rem;
    }

    .warp-news-list .nl-body {
        padding: 1.8rem 1.8rem 1.4rem;
    }

    .warp-news-list .nl-foot {
        margin: 0 1.8rem;
    }
}

.warp-danh-muc-noi-bat {display: block;}

.warp-danh-muc-noi-bat .title-index { display: block; position: relative; text-align: left; margin-bottom: 4rem; }
.warp-danh-muc-noi-bat .title-index.center { text-align: center; }
.warp-danh-muc-noi-bat .title-index.center .title-small { justify-content: center; }
.warp-danh-muc-noi-bat .title-small { display: flex; align-items: center; gap: 1.5rem; color: var(--color-highlight); font-size: 1.8rem; font-weight: 700; }
.warp-danh-muc-noi-bat .title-small .triangle-left,
.warp-danh-muc-noi-bat .title-small .triangle-right { position: relative; display: inline-block; width: 4rem; height: 2px; background-color: var(--color-highlight); }
.warp-danh-muc-noi-bat .title-small .triangle-left:before { position: absolute; content: ""; right: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.warp-danh-muc-noi-bat .title-small .triangle-right:before { position: absolute; content: ""; left: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(0 0, 0 100%, 100% 50%); }
.warp-danh-muc-noi-bat .title-name { font-size: 3.6rem; font-weight: 700; color: var(--color-black); margin-bottom: 0; }

.warp-danh-muc-noi-bat .danhmuc-slider { position: relative; padding: 0.2rem; }
.warp-danh-muc-noi-bat .swiper-slide { height: auto; }
.warp-danh-muc-noi-bat .card-danh-muc { height: 100%; padding: 1.5rem; background: #eee; border-radius: 1.5rem; }
.warp-danh-muc-noi-bat .row-fix { display: flex; flex-wrap: wrap; margin: 0 -1rem; }
.warp-danh-muc-noi-bat .col-fix { width: 100%; padding: 0 1rem; }
.warp-danh-muc-noi-bat .card-danh-muc.khong-anh .col-menu { width: 100%; }

.warp-danh-muc-noi-bat .image {position: relative;display: flex;align-items: center;justify-content: center;width: 100%;height: auto;padding-bottom: 117%;overflow: hidden;border-radius: 1rem;background: var(--white);}
.warp-danh-muc-noi-bat .image img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.warp-danh-muc-noi-bat .card-danh-muc:hover .image img { transform: scale(1.06); }

.warp-danh-muc-noi-bat .menu .title {display: block;margin-bottom: 5px;font-size: 1.8rem;font-weight: 700;color: var(--color-black);}
.warp-danh-muc-noi-bat .menu .title:hover { color: var(--color-highlight); }
.warp-danh-muc-noi-bat .menu ul { margin: 0 0 1.5rem; padding: 0; list-style: none; }
.warp-danh-muc-noi-bat .menu ul li { display: flex; align-items: center; gap: 1rem; font-size: 1.4rem; line-height: 1.5; }
.warp-danh-muc-noi-bat .menu ul li svg { flex: 0 0 auto; width: 2rem; height: 2rem; min-width: 2rem; }
.warp-danh-muc-noi-bat .menu ul li svg path { fill: var(--color-highlight); }
.warp-danh-muc-noi-bat .menu ul li a { color: var(--color-black); }
.warp-danh-muc-noi-bat .menu ul li a:hover { color: var(--color-highlight); }

.warp-danh-muc-noi-bat .button-style a { display: inline-flex; align-items: center; gap: 1rem; padding: .5rem .5rem .5rem 2rem; border-radius: 2.5rem; background: var(--color-highlight); color: var(--white); font-size: 1.4rem; font-weight: 700; transition: background .3s ease; }
.warp-danh-muc-noi-bat .button-style a .icon {display: flex;align-items: center;justify-content: center;width: 25px;height: 25px;border-radius: 50%;background: var(--black);color: var(--white);transition: background .3s ease;}
.warp-danh-muc-noi-bat .button-style a .icon svg { width: 1.6rem; height: 1.6rem; }
.warp-danh-muc-noi-bat .button-style a:hover { background: var(--color-main); color: var(--white); }
.warp-danh-muc-noi-bat .button-style a:hover .icon { background: var(--color-highlight); }

.warp-danh-muc-noi-bat .swiper-button-next,
.warp-danh-muc-noi-bat .swiper-button-prev { width: 4rem; height: 4rem; border-radius: 50%; background: var(--color-highlight); color: var(--white); font-size: 1.8rem; box-shadow: 0 .2rem .8rem rgba(0, 0, 0, .15); }
.warp-danh-muc-noi-bat .swiper-button-next svg,
.warp-danh-muc-noi-bat .swiper-button-prev svg { width: 1.8rem; height: 1.8rem; }
.warp-danh-muc-noi-bat .swiper-button-next:hover,
.warp-danh-muc-noi-bat .swiper-button-prev:hover { background: var(--color-main); color: var(--white); }

.warp-danh-muc-noi-bat .row-fix { align-items: flex-start; }
.warp-danh-muc-noi-bat .col-fix.col-anh { width: 40%; }
.warp-danh-muc-noi-bat .col-fix.col-menu { width: 60%; }

@media (max-width: 767.98px) {
    .warp-danh-muc-noi-bat .title-index { margin-bottom: 3.1rem; }
    .warp-danh-muc-noi-bat .title-name { font-size: 2.4rem; }
    .warp-danh-muc-noi-bat .row-fix { margin: 0 -.5rem; }
    .warp-danh-muc-noi-bat .col-fix { padding: 0 .5rem; }
    .warp-danh-muc-noi-bat .card-danh-muc { padding: 1rem; }
    .warp-danh-muc-noi-bat .image { padding-bottom: 100%; }
    .warp-danh-muc-noi-bat .menu .title { font-size: 1.5rem; line-height: 1.35; }
    .warp-danh-muc-noi-bat .menu ul { margin-bottom: 1.2rem; }
    .warp-danh-muc-noi-bat .menu ul li { gap: .5rem; font-size: 1.2rem; }
    .warp-danh-muc-noi-bat .menu ul li svg { width: 1.4rem; height: 1.4rem; min-width: 1.4rem; }
    .warp-danh-muc-noi-bat .button-style a { gap: .6rem; padding: .4rem .4rem .4rem 1.2rem; font-size: 1.2rem; }
    .warp-danh-muc-noi-bat .button-style a .icon { width: 2.2rem; height: 2.2rem; }
    .warp-danh-muc-noi-bat .button-style a .icon svg { width: 1.4rem; height: 1.4rem; }
    .warp-danh-muc-noi-bat .swiper-button-next,
    .warp-danh-muc-noi-bat .swiper-button-prev { width: 3rem; height: 3rem; font-size: 1.4rem; }
}

.warp-shop-system {
    --shop-radius: 1.6rem;
    --shop-border: #e8e8ef;
    --shop-muted: #7b7b8a;
    --shop-tint: rgba(222, 2, 4, .07);
    --shop-tint-strong: rgba(222, 2, 4, .16);
    --shop-shadow: 0 .2rem 1.2rem rgba(17, 28, 45, .06);
    --shop-shadow-hover: 0 1rem 2.4rem rgba(17, 28, 45, .1);
    margin-bottom: 4rem;
}

.warp-shop-system .title-index { display: block; position: relative; text-align: left; margin-bottom: 4rem; }
.warp-shop-system .title-index.center { text-align: center; }
.warp-shop-system .title-index.center .title-small { justify-content: center; }
.warp-shop-system .title-small { display: flex; align-items: center; gap: 1.5rem; margin-bottom: .8rem; color: var(--color-highlight); font-size: 1.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.warp-shop-system .title-small .triangle-left,
.warp-shop-system .title-small .triangle-right { position: relative; display: inline-block; width: 4rem; height: 2px; background-color: var(--color-highlight); }
.warp-shop-system .title-small .triangle-left:before { position: absolute; content: ""; right: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.warp-shop-system .title-small .triangle-right:before { position: absolute; content: ""; left: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(0 0, 0 100%, 100% 50%); }
.warp-shop-system .title-name { font-size: 3.6rem; font-weight: 700; line-height: 1.3; color: var(--color-black); margin-bottom: 0; }
.warp-shop-system .title-name span { color: var(--color-highlight); }

.warp-shop-system .hethong-info {
    margin-bottom: 2rem;
}

.warp-shop-system .row-fix {
    margin: 0 -.8rem;
}

.warp-shop-system .col-fix {
    padding: 0 .8rem;
    margin-bottom: 1.6rem;
}

.warp-shop-system .hethong-info .item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem 2.2rem;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--shop-border);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.warp-shop-system .hethong-info .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: .4rem;
    background: linear-gradient(180deg, var(--color-highlight), #ff6a4d);
    opacity: 0;
    transition: opacity .25s ease;
}

.warp-shop-system .hethong-info .item:hover {
    transform: translateY(-.4rem);
    border-color: var(--shop-tint-strong);
    box-shadow: var(--shop-shadow-hover);
}

.warp-shop-system .hethong-info .item:hover::before {
    opacity: 1;
}

.warp-shop-system .hethong-info .thump {
    flex: 0 0 6rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
   background-color: rgb(183 39 40);
    transition: background-color .25s ease;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.warp-shop-system .hethong-info .item:hover .thump {
    background-color: var(--shop-tint-strong);
}

.warp-shop-system .hethong-info .thump img {
    width: 3.2rem;
    height: 3.2rem;
    object-fit: contain;
}

.warp-shop-system .hethong-info .info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
    text-align: left;
}

.warp-shop-system .hethong-info .label {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    color: var(--color-black);
}

.warp-shop-system .hethong-info .number {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--color-highlight);
}

.warp-shop-system .hethong-info .note {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: var(--shop-muted);
}

.warp-shop-system .option-chos1 {
    padding: 1.8rem;
    background-color: var(--white);
    border: 1px solid var(--shop-border);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
}

.warp-shop-system .group-option {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin: 0;
}

.warp-shop-system .group-option .group {
    flex: 1 1 16rem;
    min-width: 0;
    padding: 0;
    margin: 0;
}

.warp-shop-system .group-option .title {
    display: block;
    margin-bottom: .7rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.8rem;
    letter-spacing: .01em;
    color: var(--shop-muted);
}

.warp-shop-system .group-option .field {
    position: relative;
}

.warp-shop-system .group-option .field > svg {
    position: absolute;
    left: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 1.6rem;
    color: var(--shop-muted);
    pointer-events: none;
    transition: color .2s ease;
}

.warp-shop-system .group-option .select,
.warp-shop-system .group-option .form-control {
    width: 100%;
    height: 4.4rem;
    font-size: 1.4rem;
    line-height: 2.1rem;
    color: var(--color-black);
    background-color: var(--white);
    border: 1px solid var(--shop-border);
    border-radius: 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.warp-shop-system .group-option .select {
    padding: 0 3.4rem 0 1.4rem;
    font-weight: 600;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23de0204' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.warp-shop-system .group-option .select option {
    color: var(--color-black);
    background-color: var(--white);
}

.warp-shop-system .group-option .form-control {
    padding: 0 1.4rem 0 3.8rem;
}

.warp-shop-system .group-option .form-control::placeholder {
    color: #b4b4c0;
}

.warp-shop-system .group-option .select:focus,
.warp-shop-system .group-option .form-control:focus {
    outline: none;
    border-color: var(--color-highlight);
    box-shadow: 0 0 0 .3rem var(--shop-tint);
}

.warp-shop-system .group-option .field:focus-within > svg {
    color: var(--color-highlight);
}

.warp-shop-system .info-store {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.4rem;
    max-height: 64rem;
    overflow-y: auto;
    padding-right: .6rem;
    scrollbar-width: thin;
    scrollbar-color: #d5d5de transparent;
}

.warp-shop-system .info-store::-webkit-scrollbar {
    width: .5rem;
}

.warp-shop-system .info-store::-webkit-scrollbar-track {
    background-color: transparent;
}

.warp-shop-system .info-store::-webkit-scrollbar-thumb {
    background-color: #d5d5de;
    border-radius: .5rem;
}

.warp-shop-system .info-store::-webkit-scrollbar-thumb:hover {
    background-color: #b9b9c6;
}

.warp-shop-system .store-list {
    position: relative;
    padding: 1.6rem 1.8rem;
    margin: 0;
    overflow: hidden;
    line-height: 2.4rem;
    background-color: var(--white);
    border: 1px solid var(--shop-border);
    border-radius: 1.4rem;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.warp-shop-system .store-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.6rem;
    bottom: 1.6rem;
    width: .3rem;
    border-radius: 0 .3rem .3rem 0;
    background-color: var(--color-highlight);
    opacity: 0;
    transition: opacity .25s ease, top .25s ease, bottom .25s ease;
}

.warp-shop-system .store-list:hover,
.warp-shop-system .store-list:focus-visible {
    transform: translateY(-.2rem);
    border-color: var(--shop-tint-strong);
    box-shadow: var(--shop-shadow-hover);
    outline: none;
}

.warp-shop-system .store-list.active {
    background-color: #fffafa;
    border-color: var(--color-highlight);
    box-shadow: var(--shop-shadow);
}

.warp-shop-system .store-list.active::before {
    top: .8rem;
    bottom: .8rem;
    opacity: 1;
}

.warp-shop-system .name-cuahang {
    display: block;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.2rem;
    color: var(--color-black);
    transition: color .2s ease;
}

.warp-shop-system .store-list:hover .name-cuahang,
.warp-shop-system .store-list.active .name-cuahang {
    color: var(--color-highlight);
}

.warp-shop-system .store-name,
.warp-shop-system .store-phone,
.warp-shop-system .store-zalo-line {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: .8rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: var(--shop-muted);
}

.warp-shop-system .store-name b,
.warp-shop-system .store-phone b,
.warp-shop-system .store-zalo-line b {
    flex: 0 0 2.2rem;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .7rem;
    color: var(--color-highlight);
    background-color: var(--shop-tint);
}

.warp-shop-system .store-name b svg,
.warp-shop-system .store-phone b svg,
.warp-shop-system .store-zalo-line b svg {
    width: 1.3rem;
    height: 1.3rem;
}

.warp-shop-system .store-phone,
.warp-shop-system .store-zalo-line {
    align-items: center;
    margin-bottom: 0;
}

.warp-shop-system .store-phone {
    margin-bottom: .8rem;
}

.warp-shop-system .store-phone:last-of-type {
    margin-bottom: 0;
}

.warp-shop-system .store-zalo-line b {
    color: #0068ff;
    background-color: rgba(0, 104, 255, .08);
}

.warp-shop-system .zalo-url {
    font-weight: 600;
    color: var(--color-black);
    transition: color .2s ease;
}

.warp-shop-system .zalo-url:hover {
    color: #0068ff;
    text-decoration: none;
}

.warp-shop-system .phone-url {
    font-weight: 600;
    color: var(--color-black);
    transition: color .2s ease;
}

.warp-shop-system .phone-url:hover {
    color: var(--color-highlight);
    text-decoration: none;
}

.warp-shop-system .store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.4rem;
}

.warp-shop-system .store-call,
.warp-shop-system .store-zalo {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    height: 3.4rem;
    padding: 0 1.6rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-highlight);
    background-color: var(--shop-tint);
    border-radius: 3rem;
    transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.warp-shop-system .store-call b {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    color: inherit;
}

.warp-shop-system .store-call b svg {
    width: 1.4rem;
    height: 1.4rem;
}

.warp-shop-system .store-list.active .store-call,
.warp-shop-system .store-call:hover {
    color: var(--white);
    background-color: var(--color-highlight);
    box-shadow: 0 .4rem 1.2rem rgba(222, 2, 4, .28);
}

.warp-shop-system .store-list.active .store-call b,
.warp-shop-system .store-call:hover b {
    color: var(--white);
}

.warp-shop-system .store-zalo {
    color: #0068ff;
    background-color: rgba(0, 104, 255, .08);
}

.warp-shop-system .zalo-text-icon {
    flex: 0 0 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    background-color: #0068ff;
    border-radius: 50%;
    transition: color .2s ease, background-color .2s ease;
}

.warp-shop-system .store-zalo:hover {
    color: var(--white);
    background-color: #0068ff;
    box-shadow: 0 .4rem 1.2rem rgba(0, 104, 255, .3);
}

.warp-shop-system .store-zalo:hover .zalo-text-icon {
    color: #0068ff;
    background-color: var(--white);
}

.warp-shop-system .store-empty {
    padding: 3rem 1.5rem;
    margin-top: 1.4rem;
    font-size: 1.4rem;
    color: var(--shop-muted);
    text-align: center;
    background-color: var(--light);
    border: 1px dashed var(--shop-border);
    border-radius: 1.4rem;
}

.warp-shop-system .col-right {
    display: flex;
}

.warp-shop-system .wrapcontact {
    position: sticky;
    top: 1.5rem;
    width: 100%;
    align-self: stretch;
    overflow: hidden;
    border: 1px solid var(--shop-border);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
}

.warp-shop-system .iFrameMap,
.warp-shop-system .map {
    height: 100%;
}

.warp-shop-system .map {
    min-height: 56rem;
}

.warp-shop-system .map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 56rem;
    border: 0;
}

@media (max-width: 1199.98px) {
    .warp-shop-system .hethong-info .item {
        gap: 1.2rem;
        padding: 1.8rem 1.6rem;
    }

    .warp-shop-system .hethong-info .thump {
        flex: 0 0 5rem;
        width: 5rem;
        height: 5rem;
    }

    .warp-shop-system .hethong-info .thump img {
        width: 2.8rem;
        height: 2.8rem;
    }

    .warp-shop-system .hethong-info .number {
        font-size: 2.8rem;
    }
}

@media (max-width: 991.98px) {
    .warp-shop-system .info-store {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .warp-shop-system .col-right {
        margin-top: 2rem;
    }

    .warp-shop-system .wrapcontact {
        position: static;
    }

    .warp-shop-system .map,
    .warp-shop-system .map iframe {
        min-height: 40rem;
    }
}

@media (max-width: 767.98px) {
    .warp-shop-system .title-index {
        margin-bottom: 3.1rem;
    }

    .warp-shop-system .title-small {
        font-size: 1.5rem;
    }

    .warp-shop-system .title-name {
        font-size: 2.4rem;
    }

    .warp-shop-system .option-chos1 {
        padding: 1.4rem;
    }

    .warp-shop-system .store-list {
        padding: 1.4rem 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .warp-shop-system .group-option .group {
        flex: 1 1 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .warp-shop-system .hethong-info .item,
    .warp-shop-system .store-list {
        transition: none;
    }

    .warp-shop-system .hethong-info .item:hover,
    .warp-shop-system .store-list:hover {
        transform: none;
    }
}

.warp-khach-hang-chia-se {
    padding-top: 40px;
}

.warp-khach-hang-chia-se .title-index { display: block; position: relative; text-align: left; margin-bottom: 4rem; }
.warp-khach-hang-chia-se .title-index.center { text-align: center; }
.warp-khach-hang-chia-se .title-index.center .title-small { justify-content: center; }
.warp-khach-hang-chia-se .title-small { display: flex; align-items: center; gap: 1.5rem; color: var(--color-highlight); font-size: 1.8rem; font-weight: 700; }
.warp-khach-hang-chia-se .title-small .triangle-left,
.warp-khach-hang-chia-se .title-small .triangle-right { position: relative; display: inline-block; width: 4rem; height: 2px; background-color: var(--color-highlight); }
.warp-khach-hang-chia-se .title-small .triangle-left:before { position: absolute; content: ""; right: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.warp-khach-hang-chia-se .title-small .triangle-right:before { position: absolute; content: ""; left: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(0 0, 0 100%, 100% 50%); }
.warp-khach-hang-chia-se .title-name { font-size: 3.6rem; font-weight: 700; color: var(--color-black); margin-bottom: 0; }

.warp-khach-hang-chia-se .review-swiper { position: relative; }
.warp-khach-hang-chia-se .swiper-slide { display: flex; height: auto; padding-top: 4rem; }

.warp-khach-hang-chia-se .review-thumb {width: 100%;margin: auto;position: relative;background: var(--light);padding: 2rem;border-radius: 2rem;height: 100%;}

.warp-khach-hang-chia-se .review-info { display: flex; justify-content: space-between; align-items: flex-end; position: relative; top: -6rem; margin-bottom: -4rem; }
.warp-khach-hang-chia-se .review-info .info-content { min-width: 0; padding-bottom: .5rem; }
.warp-khach-hang-chia-se .review-info .content-name { font-size: 2.4rem; font-weight: 700; color: var(--color-highlight); line-height: 1.3; }
.warp-khach-hang-chia-se .review-info .content-type { font-size: 1.4rem; font-weight: 700; color: var(--color-black); margin-bottom: .5rem; }

.warp-khach-hang-chia-se .review-info .info-image { flex: 0 0 auto; }
.warp-khach-hang-chia-se .review-info .info-image .thumb { overflow: hidden; width: 9.6rem; height: 9.6rem; border-radius: 2rem; margin: auto; background: #ebebeb; }
.warp-khach-hang-chia-se .review-info .info-image .thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }

.warp-khach-hang-chia-se .kh-stars { display: flex; align-items: center; justify-content: center; gap: .2rem; margin: 1rem 0; }
.warp-khach-hang-chia-se .kh-stars svg { width: 1.8rem; height: 1.8rem; fill: #ffc800; }

.warp-khach-hang-chia-se .review-content {font-size: 14px;line-height: 1.7;color: var(--color-black);}

.warp-khach-hang-chia-se .swiper-button-next,
.warp-khach-hang-chia-se .swiper-button-prev { width: 4rem; height: 4rem; border-radius: 50%; background: var(--color-highlight); color: var(--white); box-shadow: 0 .2rem .8rem rgba(0, 0, 0, .15); }
.warp-khach-hang-chia-se .swiper-button-next svg,
.warp-khach-hang-chia-se .swiper-button-prev svg { width: 1.8rem; height: 1.8rem; }
.warp-khach-hang-chia-se .swiper-button-next:after,
.warp-khach-hang-chia-se .swiper-button-prev:after { content: none; }
.warp-khach-hang-chia-se .swiper-button-next:hover,
.warp-khach-hang-chia-se .swiper-button-prev:hover { background: var(--color-main); color: var(--white); }

@media (max-width: 767.98px) {
    .warp-khach-hang-chia-se { padding: 4rem 0; }
    .warp-khach-hang-chia-se .title-index { margin-bottom: 3.1rem; }
    .warp-khach-hang-chia-se .title-name { font-size: 2.4rem; }
    .warp-khach-hang-chia-se .review-info .content-name { font-size: 2rem; }
    .warp-khach-hang-chia-se .review-content { font-size: 1.6rem; }
    .warp-khach-hang-chia-se .swiper-button-next,
    .warp-khach-hang-chia-se .swiper-button-prev { width: 3rem; height: 3rem; }
    .warp-khach-hang-chia-se .swiper-button-next svg,
    .warp-khach-hang-chia-se .swiper-button-prev svg { width: 1.4rem; height: 1.4rem; }
}

.warp-giai-dap-thac-mac {padding: 5rem 0;}

.warp-giai-dap-thac-mac .title-index {display: block;position: relative;text-align: center;margin-bottom: 4rem;}
.warp-giai-dap-thac-mac .title-small {display: flex;align-items: center;gap: 1.5rem;color: var(--color-highlight);font-size: 1.8rem;font-weight: 700;justify-content: center;}
.warp-giai-dap-thac-mac .title-small .triangle-left,
.warp-giai-dap-thac-mac .title-small .triangle-right { position: relative; display: inline-block; width: 4rem; height: 2px; background-color: var(--color-highlight); }
.warp-giai-dap-thac-mac .title-small .triangle-left:before { position: absolute; content: ""; right: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.warp-giai-dap-thac-mac .title-small .triangle-right:before { position: absolute; content: ""; left: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(0 0, 0 100%, 100% 50%); }
.warp-giai-dap-thac-mac .title-name { font-size: 3.6rem; font-weight: 700; color: var(--color-black); margin-bottom: 0; }

.warp-giai-dap-thac-mac .faq { margin: 0; padding: 0; list-style: none; }
.warp-giai-dap-thac-mac .faq > li {padding: 1rem 2rem;margin-bottom: 2rem;border-radius: 1rem;border: 1px solid #eef2f7;box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);}
.warp-giai-dap-thac-mac .faq > li:last-child { margin-bottom: 0; }

.warp-giai-dap-thac-mac .faq-q {position: relative;display: flex;align-items: center;padding: 1rem 3.5rem 1rem 0;color: var(--color-black);font-size: 16px;font-weight: 700;line-height: 1.5;cursor: pointer;list-style: none;}
.warp-giai-dap-thac-mac .faq-q::-webkit-details-marker { display: none; }
.warp-giai-dap-thac-mac .faq-q::marker { content: ""; }
.warp-giai-dap-thac-mac .faq-q .q-text { min-width: 0; }

.warp-giai-dap-thac-mac .faq-q .icon {position: absolute;right: 0;top: 50%;transform: translate(0, -50%);display: flex;align-items: center;justify-content: center;width: 25px;height: 25px;border-radius: 50%;background: var(--color-highlight);transition: .5s;}
.warp-giai-dap-thac-mac .faq-q .icon svg {width: 1rem;height: 1rem;}
.warp-giai-dap-thac-mac .faq-q .icon svg path { fill: var(--white); }
.warp-giai-dap-thac-mac details[open] .faq-q .icon { transform: rotate(180deg) translate(0, 50%); background: #9c0103; }

.warp-giai-dap-thac-mac .content-faq {margin-top: 1rem;padding-top: 1rem;border-top: 1px solid #eee;color: var(--color-black);font-size: 14px;line-height: 1.7;}

.warp-giai-dap-thac-mac .gd-col-media { text-align: center; }
.warp-giai-dap-thac-mac .gd-photo img { display: block; width: 100%; height: auto; border-radius: 1rem; }

@media (max-width: 1199.98px) {
    .warp-giai-dap-thac-mac .gd-col-media { margin-bottom: 2rem; }
}

@media (max-width: 767.98px) {
    .warp-giai-dap-thac-mac { padding: 4rem 0; }
    .warp-giai-dap-thac-mac .title-index { margin-bottom: 3.1rem; }
    .warp-giai-dap-thac-mac .title-name { font-size: 2.4rem; }
    .warp-giai-dap-thac-mac .faq > li { padding: 1rem; }
    .warp-giai-dap-thac-mac .faq-q { font-size: 1.6rem; }
    .warp-giai-dap-thac-mac .faq-q .icon svg { width: 1.6rem; height: 1.6rem; }
    .warp-giai-dap-thac-mac .content-faq { font-size: 1.4rem; }
}

.box-home-05 {
    margin-bottom: 40px;
}

.warp-danh-muc-san-pham { margin-bottom: 3rem; background: var(--white); border: 1px solid #ececec; border-radius: 1.2rem; overflow: hidden; box-shadow: 0 .2rem 1.2rem rgba(17, 28, 45, .06); }

.warp-danh-muc-san-pham .dm-head { position: relative; display: flex; align-items: center; gap: 1.2rem; min-height: calc(var(--sp-toolbar-h) - 1px); padding: 1.5rem 1.8rem; background: var(--color-main); color: var(--white); }
.warp-danh-muc-san-pham .dm-head::after { content: ''; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--color-highlight); }
.warp-danh-muc-san-pham .dm-head-icon { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; color: var(--color-highlight); }
.warp-danh-muc-san-pham .dm-head-icon svg { width: 2rem; height: 2rem; }
.warp-danh-muc-san-pham .dm-head-title { flex: 1 1 auto; min-width: 0; font-size: 1.7rem; font-weight: 700; line-height: 1.35; text-transform: uppercase; letter-spacing: .05rem; }


.warp-danh-muc-san-pham .dm-body { padding: .5rem 0; }
.warp-danh-muc-san-pham .dm-empty { padding: 1.6rem 1.8rem; color: var(--color-text); font-size: 1.4rem; }

.warp-danh-muc-san-pham .dm-list,
.warp-danh-muc-san-pham .dm-list-child { margin: 0; padding: 0; list-style: none; }
.warp-danh-muc-san-pham .dm-item { position: relative; }
.warp-danh-muc-san-pham .dm-list > .dm-item + .dm-item { border-top: 1px dashed #ededed; }
.warp-danh-muc-san-pham .dm-row { display: flex; align-items: stretch; }

.warp-danh-muc-san-pham .dm-link { position: relative; flex: 1 1 auto; display: flex; align-items: center; gap: 1.2rem; min-width: 0; padding: 1.1rem 0 1.1rem 1.8rem; color: var(--color-black); font-size: 1.5rem; font-weight: 600; line-height: 1.45; transition: color .25s ease, background .25s ease; }
.warp-danh-muc-san-pham .dm-link::before { content: ''; position: absolute; top: 50%; left: 0; width: 3px; height: 0; background: var(--color-highlight); border-radius: 0 3px 3px 0; transform: translateY(-50%); transition: height .25s ease; }
.warp-danh-muc-san-pham .dm-link:hover { color: var(--color-highlight); background: #fafafa; }
.warp-danh-muc-san-pham .dm-link:hover::before,
.warp-danh-muc-san-pham .dm-link.active::before { height: 55%; }
.warp-danh-muc-san-pham .dm-link.active { color: var(--color-highlight); font-weight: 700; background: rgba(222, 2, 4, .04); }
.warp-danh-muc-san-pham .dm-name { min-width: 0; }

.warp-danh-muc-san-pham .dm-thumb { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 4.4rem; height: 4.4rem; overflow: hidden; border: 1px solid #eee; border-radius: .8rem; background: #f6f6f6; }
.warp-danh-muc-san-pham .dm-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.warp-danh-muc-san-pham .dm-item:hover .dm-thumb img { transform: scale(1.08); }
.warp-danh-muc-san-pham .dm-thumb-icon { width: 2rem; height: 2rem; color: #c7c7c7; }

.warp-danh-muc-san-pham .dm-toggle { flex: 0 0 auto; align-self: center; display: flex; align-items: center; justify-content: center; width: 2.6rem; height: 2.6rem; margin: 0 1.4rem 0 .6rem; border-radius: 50%; background: #f1f1f1; color: var(--color-main); cursor: pointer; transition: transform .3s ease, background .3s ease, color .3s ease; }
.warp-danh-muc-san-pham .dm-toggle svg { width: 1.5rem; height: 1.5rem; }
.warp-danh-muc-san-pham .dm-toggle:hover { background: var(--color-highlight); color: var(--white); }
.warp-danh-muc-san-pham .dm-toggle.open { transform: rotate(-180deg); background: var(--color-highlight); color: var(--white); }

.warp-danh-muc-san-pham .dm-list-child { --dm-rail: 2.3rem; --dm-indent: 1.4rem; display: none; position: relative; padding: .5rem 0 .8rem; background: #fbfbfc; border-top: 1px solid #f0f1f3; animation: dm-child-in .28s cubic-bezier(.2, .7, .3, 1) both; }
.warp-danh-muc-san-pham .dm-list-child::before { content: ''; position: absolute; top: 1rem; bottom: 1.4rem; left: var(--dm-rail); width: 2px; border-radius: 2px; background: #e4e6ea; }

.warp-danh-muc-san-pham .dm-list-child .dm-row { margin: .1rem 1rem .1rem var(--dm-indent); border-radius: .9rem; transition: background .22s ease; }
.warp-danh-muc-san-pham .dm-list-child .dm-row:hover { background: rgba(222, 2, 4, .05); }
.warp-danh-muc-san-pham .dm-list-child .dm-row:has(.dm-link.active) { background: rgba(222, 2, 4, .07); }

.warp-danh-muc-san-pham .dm-list-child .dm-link { padding: .85rem 0 .85rem 2.2rem; font-size: 1.4rem; font-weight: 500; color: #5a6272; background: transparent; }
.warp-danh-muc-san-pham .dm-list-child .dm-link::before { top: 50%; left: .7rem; width: .6rem; height: .6rem; border-radius: 1rem; background: #ccd0d7; transform: translateY(-50%); transition: height .25s ease, background .25s ease; }
.warp-danh-muc-san-pham .dm-list-child .dm-row:hover .dm-link { color: var(--color-highlight); background: transparent; }
.warp-danh-muc-san-pham .dm-list-child .dm-row:hover .dm-link::before,
.warp-danh-muc-san-pham .dm-list-child .dm-link.active::before { height: 1.8rem; background: var(--color-highlight); }
.warp-danh-muc-san-pham .dm-list-child .dm-link.active { color: var(--color-highlight); font-weight: 600; background: transparent; }

.warp-danh-muc-san-pham .dm-list-child .dm-toggle { width: 2.4rem; height: 2.4rem; margin: 0 .8rem 0 .4rem; border-radius: .7rem; background: transparent; color: #9aa2af; }
.warp-danh-muc-san-pham .dm-list-child .dm-toggle svg { width: 1.4rem; height: 1.4rem; }
.warp-danh-muc-san-pham .dm-list-child .dm-toggle:hover { background: rgba(222, 2, 4, .1); color: var(--color-highlight); }
.warp-danh-muc-san-pham .dm-list-child .dm-toggle.open { background: transparent; color: var(--color-highlight); }

.warp-danh-muc-san-pham .dm-item:has(> .dm-row .dm-toggle.open) > .dm-row .dm-link { color: var(--color-highlight); }

.warp-danh-muc-san-pham .dm-list-child .dm-list-child { --dm-rail: 3.9rem; --dm-indent: 3rem; padding: .2rem 0 .4rem; background: transparent; border-top: 0; }
.warp-danh-muc-san-pham .dm-list-child .dm-list-child::before { top: .6rem; bottom: .8rem; }
.warp-danh-muc-san-pham .dm-list-child .dm-list-child .dm-link { font-size: 1.3rem; }
.warp-danh-muc-san-pham .dm-list-child .dm-list-child .dm-list-child { --dm-rail: 5.5rem; --dm-indent: 4.6rem; }

@keyframes dm-child-in {
    from { opacity: 0; transform: translateY(-.6rem); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .warp-danh-muc-san-pham .dm-list-child { animation: none; }
}

@media (max-width: 767.98px) {
    .warp-danh-muc-san-pham { margin-bottom: 2rem; }
    .warp-danh-muc-san-pham .dm-head { padding: 1.3rem 1.5rem; }
    .warp-danh-muc-san-pham .dm-head-title { font-size: 1.6rem; }
    .warp-danh-muc-san-pham .dm-link { padding-left: 1.5rem; font-size: 1.4rem; }
    .warp-danh-muc-san-pham .dm-thumb { width: 4rem; height: 4rem; }
    .warp-danh-muc-san-pham .dm-toggle { margin-right: 1rem; }
    .warp-danh-muc-san-pham .dm-list-child { --dm-rail: 2.1rem; --dm-indent: 1.2rem; }
    .warp-danh-muc-san-pham .dm-list-child .dm-row { margin-right: .8rem; }
    .warp-danh-muc-san-pham .dm-list-child .dm-link { padding-left: 2.2rem; font-size: 1.3rem; }
    .warp-danh-muc-san-pham .dm-list-child .dm-list-child { --dm-rail: 3.5rem; --dm-indent: 2.6rem; }
}

.warp-san-pham-noi-bat { display: block; }

.warp-san-pham-noi-bat .title-index { display: block; position: relative; text-align: left; margin-bottom: 4rem; }
.warp-san-pham-noi-bat .title-index.center { text-align: center; }
.warp-san-pham-noi-bat .title-index.center .title-small { justify-content: center; }
.warp-san-pham-noi-bat .title-small { display: flex; align-items: center; gap: 1.5rem; color: var(--color-highlight); font-size: 1.8rem; font-weight: 700; }
.warp-san-pham-noi-bat .title-small .triangle-left,
.warp-san-pham-noi-bat .title-small .triangle-right { position: relative; display: inline-block; width: 4rem; height: 2px; background-color: var(--color-highlight); }
.warp-san-pham-noi-bat .title-small .triangle-left:before { position: absolute; content: ""; right: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.warp-san-pham-noi-bat .title-small .triangle-right:before { position: absolute; content: ""; left: 0; top: 50%; transform: translateY(-50%); width: 1.2rem; height: 1.2rem; background-color: var(--color-highlight); clip-path: polygon(0 0, 0 100%, 100% 50%); }
.warp-san-pham-noi-bat .title-name { font-size: 3.6rem; font-weight: 700; color: var(--color-black); margin-bottom: 0; }

.warp-san-pham-noi-bat .button-style { margin-top: 2rem; }
.warp-san-pham-noi-bat .button-style.center { text-align: center; }
.warp-san-pham-noi-bat .button-style a { display: inline-flex; align-items: center; gap: 1rem; padding: .5rem .5rem .5rem 2rem; border-radius: 2.5rem; background: var(--color-highlight); color: var(--white); font-size: 1.4rem; font-weight: 700; transition: background .3s ease; }
.warp-san-pham-noi-bat .button-style a .icon { display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 50%; background: var(--black); color: var(--white); transition: background .3s ease; }
.warp-san-pham-noi-bat .button-style a .icon svg { width: 1.6rem; height: 1.6rem; }
.warp-san-pham-noi-bat .button-style a:hover { background: var(--color-main); color: var(--white); }
.warp-san-pham-noi-bat .button-style a:hover .icon { background: var(--color-highlight); }

@media (max-width: 767.98px) {
    .warp-san-pham-noi-bat .title-index { margin-bottom: 3.1rem; }
    .warp-san-pham-noi-bat .title-name { font-size: 2.4rem; }
}

:root { --sp-toolbar-h: 6.2rem; }

.warp-sap-xep-san-pham {margin-bottom: 2.5rem;padding: 0 1.8rem;background: var(--white);border: 1px solid #ececec;border-radius: 1.2rem;box-shadow: 0 .2rem 1.2rem rgba(17, 28, 45, .06);display: flex;align-items: center;min-height: var(--sp-toolbar-h);}
.warp-sap-xep-san-pham .sx-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2.4rem; width: 100%; }
.warp-sap-xep-san-pham .sx-group { display: flex; align-items: center; gap: 1.2rem; min-width: 0; }

.warp-sap-xep-san-pham .sx-label { display: inline-flex; align-items: center; gap: .8rem; color: var(--color-main); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04rem; white-space: nowrap; }
.warp-sap-xep-san-pham .sx-label-icon { display: flex; align-items: center; justify-content: center; color: var(--color-highlight); }
.warp-sap-xep-san-pham .sx-label-icon svg { width: 1.8rem; height: 1.8rem; }

.warp-sap-xep-san-pham .sx-pills { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem; background: #f4f5f7; border-radius: 3rem; }
.warp-sap-xep-san-pham .sx-pill { display: inline-flex; align-items: center; justify-content: center; min-width: 4.4rem; height: 3.2rem; padding: 0 1.2rem; border-radius: 3rem; color: var(--color-main); font-size: 1.4rem; font-weight: 600; line-height: 1; transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
.warp-sap-xep-san-pham .sx-pill:hover { background: var(--white); color: var(--color-highlight); box-shadow: 0 .1rem .4rem rgba(17, 28, 45, .1); }
.warp-sap-xep-san-pham .sx-pill.active { background: var(--color-highlight); color: var(--white); box-shadow: 0 .2rem .6rem rgba(222, 2, 4, .28); }

.warp-sap-xep-san-pham .sx-dropdown { min-width: 0; }
.warp-sap-xep-san-pham .sx-toggle { display: inline-flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-width: 20rem; height: 4rem; padding: 0 1.4rem; border: 1px solid #e4e4e4; border-radius: .8rem; background: var(--white); color: var(--color-black); font-size: 1.4rem; font-weight: 600; line-height: 1.2; cursor: pointer; transition: border-color .25s ease, box-shadow .25s ease, color .25s ease; }
.warp-sap-xep-san-pham .sx-toggle:hover,
.warp-sap-xep-san-pham .sx-dropdown.show .sx-toggle { border-color: var(--color-highlight); color: var(--color-highlight); box-shadow: 0 .2rem .8rem rgba(222, 2, 4, .12); }
.warp-sap-xep-san-pham .sx-toggle:focus { outline: none; border-color: var(--color-highlight); }
.warp-sap-xep-san-pham .sx-toggle-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.warp-sap-xep-san-pham .sx-caret { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; color: var(--color-text); transition: transform .25s ease, color .25s ease; }
.warp-sap-xep-san-pham .sx-caret svg { width: 1.6rem; height: 1.6rem; }
.warp-sap-xep-san-pham .sx-dropdown.show .sx-caret { color: var(--color-highlight); transform: rotate(-180deg); }

.warp-sap-xep-san-pham .sx-menu { min-width: 22rem; margin-top: .8rem; padding: .6rem; border: 1px solid #ececec; border-radius: 1rem; box-shadow: 0 1rem 2.4rem rgba(17, 28, 45, .12); }
.warp-sap-xep-san-pham .sx-item { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; height: auto; padding: 1rem 1.2rem; border-radius: .8rem; color: var(--color-black); font-size: 1.4rem; font-weight: 500; line-height: 1.4; white-space: nowrap; transition: background .2s ease, color .2s ease; }
.warp-sap-xep-san-pham .sx-item + .sx-item { margin-top: .2rem; }
.warp-sap-xep-san-pham .sx-item:hover,
.warp-sap-xep-san-pham .sx-item:focus { background: #f6f6f7; color: var(--color-highlight); }
.warp-sap-xep-san-pham .sx-item.active { background: rgba(222, 2, 4, .06); color: var(--color-highlight); font-weight: 700; }
.warp-sap-xep-san-pham .sx-check { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s ease; }
.warp-sap-xep-san-pham .sx-check svg { width: 1.6rem; height: 1.6rem; }
.warp-sap-xep-san-pham .sx-item.active .sx-check { opacity: 1; }
.warp-danh-muc-noi-bat .col-fix .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
@media (max-width: 991.98px) {
    .warp-sap-xep-san-pham .sx-inner { gap: 1.2rem 1.6rem; }
    .warp-sap-xep-san-pham .sx-toggle { min-width: 18rem; }
}

@media (max-width: 767.98px) {
    .warp-sap-xep-san-pham { padding: 1.4rem 1.6rem; border-radius: 1rem; }
    .warp-sap-xep-san-pham .sx-inner { flex-direction: column; align-items: stretch; gap: 1rem; }
    /* Nhan giu nguyen mot hang voi o dieu khien; min-width de le trai cua mang nut
       va o sap xep thang cot. Moi thu duoi day phai la `flex: ... auto`: `.sx-group`
       van la hang ngang nen flex-basis co don vi se bop be ngang o dieu khien. */
    .warp-sap-xep-san-pham .sx-group { flex-wrap: nowrap; gap: 1.2rem; }
    .warp-sap-xep-san-pham .sx-label { flex: 0 0 auto; min-width: 9rem; font-size: 1.3rem; }
    .warp-sap-xep-san-pham .sx-pills { flex: 1 1 auto; justify-content: space-between; }
    .warp-sap-xep-san-pham .sx-pill { flex: 1 1 0; min-width: 0; }
    .warp-sap-xep-san-pham .sx-dropdown { flex: 1 1 auto; min-width: 0; }
    .warp-sap-xep-san-pham .sx-toggle { display: flex; width: 100%; min-width: 0; }
    .warp-sap-xep-san-pham .sx-menu { min-width: 100%; }
}

@media (max-width: 575.98px) {
    .warp-sap-xep-san-pham { padding: 1.2rem 1.4rem; }
    .warp-sap-xep-san-pham .sx-group { gap: 1rem; }
    .warp-sap-xep-san-pham .sx-label { min-width: 8.2rem; gap: .6rem; letter-spacing: 0; }
    .warp-sap-xep-san-pham .sx-label-icon svg { width: 1.6rem; height: 1.6rem; }
    .warp-sap-xep-san-pham .sx-pill { min-width: 3.6rem; padding: 0 .6rem; font-size: 1.3rem; }
    .warp-sap-xep-san-pham .sx-toggle { height: 3.8rem; padding: 0 1.2rem; }
}

.box-home-02 {
    padding: 50px 0;
}

.article-detail .ad-header {
    position: relative;
    margin-bottom: 2.8rem;
    padding: 4.4rem 4rem;
    border: 1px solid #f3d8d7;
    border-radius: 1.6rem;
    background: linear-gradient(160deg, var(--white) 0%, #fff4f3 45%, #ffe5e3 100%);
    box-shadow: 0 .8rem 3rem rgba(222, 2, 4, .1);
    text-align: center;
    overflow: hidden;
}

.article-detail .ad-header::before,
.article-detail .ad-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.article-detail .ad-header::before {
    top: -11rem;
    right: -8rem;
    width: 32rem;
    height: 32rem;
    background: radial-gradient(circle, rgba(222, 2, 4, .18) 0%, rgba(222, 2, 4, 0) 70%);
}

.article-detail .ad-header::after {
    bottom: -12rem;
    left: -9rem;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(255, 122, 69, .16) 0%, rgba(255, 122, 69, 0) 70%);
}

.article-detail .ad-header > * {
    position: relative;
    z-index: 1;
}

.article-detail .ad-cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
    margin-bottom: 2rem;
}

.article-detail .ad-cat {
    display: inline-flex;
    align-items: center;
    height: 3.4rem;
    padding: 0 1.8rem;
    border-radius: 3rem;
    background: var(--color-highlight);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .06rem;
    box-shadow: 0 .5rem 1.4rem rgba(222, 2, 4, .32);
    transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.article-detail .ad-cat:hover {
    background-color: var(--color-main);
    box-shadow: 0 .4rem 1.2rem rgba(17, 28, 45, .25);
    color: var(--white);
    transform: translateY(-.2rem);
    text-decoration: none;
}

.article-detail .ad-title {
    max-width: 90rem;
    margin: 0 auto;
    color: var(--color-black);
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.08rem;
}

.article-detail .ad-title::after {
    content: '';
    display: block;
    width: 10rem;
    height: .5rem;
    margin: 2.2rem auto 0;
    border-radius: 1rem;
    background: linear-gradient(90deg, var(--color-highlight) 0%, #ff7a45 100%);
    box-shadow: 0 .4rem 1.2rem rgba(222, 2, 4, .35);
}

.article-detail .ad-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.2rem;
    margin-top: 2.4rem;
    line-height: 1.4;
}

.article-detail .ad-meta-item {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.6rem;
    border: 1px solid rgba(222, 2, 4, .16);
    border-radius: 3rem;
    background-color: var(--white);
    color: var(--color-main);
    font-size: 1.4rem;
    font-weight: 500;
    box-shadow: 0 .2rem .8rem rgba(17, 28, 45, .05);
}

.article-detail .ad-meta-item i {
    color: var(--color-highlight);
    font-size: 1.6rem;
}

.article-detail .ad-meta-label {
    color: var(--color-text);
}

.article-detail .ad-meta-item b {
    color: var(--color-main);
    font-weight: 700;
}

.article-detail .ad-gallery {
    margin-bottom: 2.8rem;
}

.article-detail .ad-gallery-main {
    margin-bottom: 1.2rem;
    border: 1px solid #ebeef3;
    border-radius: 1.6rem;
    overflow: hidden;
    background-color: #f5f7fa;
    box-shadow: 0 .6rem 2.4rem rgba(17, 28, 45, .08);
}

.article-detail .ad-gallery-main img {
    transition: transform .6s ease;
}

.article-detail .ad-gallery-main:hover .swiper-slide-active img,
.article-detail .ad-gallery-main:hover .swiper-slide:only-child img {
    transform: scale(1.04);
}

.article-detail .ad-gallery .swiper-button-next,
.article-detail .ad-gallery .swiper-button-prev {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .92);
    color: var(--color-main);
    font-size: 1.8rem;
    box-shadow: 0 .4rem 1.6rem rgba(17, 28, 45, .18);
    opacity: 0;
    transition: opacity .25s ease, background-color .25s ease, color .25s ease;
}

.article-detail .ad-gallery-main:hover .swiper-button-next,
.article-detail .ad-gallery-main:hover .swiper-button-prev {
    opacity: 1;
}

.article-detail .ad-gallery .swiper-button-next:hover,
.article-detail .ad-gallery .swiper-button-prev:hover {
    background-color: var(--color-highlight);
    color: var(--white);
}

.article-detail .ad-gallery .swiper-button-next i,
.article-detail .ad-gallery .swiper-button-prev i {
    font-size: 1.8rem;
    line-height: 1;
}

.article-detail .ad-image-counter {
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 3;
    padding: .4rem 1.2rem;
    border-radius: 4rem;
    background-color: rgba(17, 28, 45, .55);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
}

.article-detail .ad-gallery-main .additional-action .btn-addition-action {
    height: 4rem;
    width: 4rem;
    margin-top: 0;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, .92);
    box-shadow: 0 .4rem 1.6rem rgba(17, 28, 45, .18);
}

.article-detail .ad-thumbs {
    padding: .2rem;
}

@media (min-width: 992px) {
    .article-detail .ad-gallery-main .ratio-16-9 {
        height: 48rem;
        padding-top: 0;
    }
}

.article-detail .ad-thumbs .swiper-slide .img {
    border-radius: 1rem;
}

.article-detail .ad-video {
    max-width: 88rem;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2.8rem;
    border: 1px solid #ebeef3;
    border-radius: 1.6rem;
    overflow: hidden;
    background-color: #0b1220;
}

.article-detail .table-content-section {
    margin-bottom: 2.4rem;
}

.article-detail .box-table-nav {
    border: 1px solid #ececec;
    border-radius: 1.2rem;
    background-color: var(--white);
    box-shadow: 0 .2rem 1.2rem rgba(17, 28, 45, .05);
}

.article-detail .box-table-nav .title-table-navigation {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1.4rem 1.8rem;
    color: var(--color-main);
    font-size: 1.6rem;
}

.article-detail .box-table-nav .title-table-navigation i {
    padding-right: 0;
    color: var(--color-highlight);
    font-size: 1.8rem;
    vertical-align: middle;
}

.article-detail .box-table-nav nav {
    padding: 0 1.8rem .6rem;
    border-top: 1px dashed #e6e8ec;
}

.article-detail .ad-body {
    margin-bottom: 2.8rem;
    padding: 3.2rem;
    border: 1px solid #ececec;
    border-radius: 1.6rem;
    background-color: var(--white);
    box-shadow: 0 .2rem 1.6rem rgba(17, 28, 45, .05);
}

.article-detail .ad-lead {
    margin-bottom: 2.4rem;
    padding: 1.8rem 2rem 1.8rem 2.4rem;
    border: 1px solid #f5dedd;
    border-left: .4rem solid var(--color-highlight);
    border-radius: 0 1.2rem 1.2rem 0;
    background: linear-gradient(135deg, #fff8f7 0%, #fff2f1 100%);
    color: var(--color-black);
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.7;
}

.article-detail .ad-lead p:last-child,
.article-detail .ad-content > *:last-child {
    margin-bottom: 0;
}

.article-detail .ad-content {
    color: var(--color-black);
    font-size: 1.6rem;
    line-height: 1.8;
    overflow-wrap: break-word;
}

.article-detail .ad-content p {
    margin-bottom: 1.6rem;
}

.article-detail .ad-content h1,
.article-detail .ad-content h2,
.article-detail .ad-content h3,
.article-detail .ad-content h4,
.article-detail .ad-content h5,
.article-detail .ad-content h6 {
    margin: 3.2rem 0 1.4rem;
    color: var(--color-main);
    font-weight: 700;
    line-height: 1.35;
    scroll-margin-top: 12rem;
}

.article-detail .ad-content h1 { font-size: 2.8rem; }

.article-detail .ad-content h2 {
    padding-left: 1.4rem;
    border-left: .4rem solid var(--color-highlight);
    font-size: 2.4rem;
}

.article-detail .ad-content h3 { font-size: 2rem; }
.article-detail .ad-content h4 { font-size: 1.8rem; }
.article-detail .ad-content h5,
.article-detail .ad-content h6 { font-size: 1.6rem; }

.article-detail .ad-content a {
    color: var(--color-highlight);
    text-decoration: underline;
    text-underline-offset: .3rem;
}

.article-detail .ad-content a:hover {
    color: var(--color-main);
}

.article-detail .ad-content ul,
.article-detail .ad-content ol {
    margin-bottom: 1.6rem;
    padding-left: 2.2rem;
}

.article-detail .ad-content li {
    margin-bottom: .8rem;
}

.article-detail .ad-content img,
.article-detail .ad-content iframe,
.article-detail .ad-content video {
    border-radius: 1.2rem;
}

.article-detail .ad-content img {
    margin: .6rem 0;
}

.article-detail .ad-content figure {
    margin: 2rem 0;
    text-align: center;
}

.article-detail .ad-content figcaption {
    margin-top: .8rem;
    color: var(--color-text);
    font-size: 1.3rem;
    font-style: italic;
}

.article-detail .ad-content blockquote {
    margin: 2.4rem 0;
    padding: 2rem 2.4rem;
    border-left: .4rem solid var(--color-highlight);
    border-radius: 0 1.2rem 1.2rem 0;
    background-color: #f6f7f9;
    color: var(--color-main);
    font-size: 1.6rem;
    font-style: italic;
}

.article-detail .ad-content blockquote p:last-child {
    margin-bottom: 0;
}

.article-detail .ad-content table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
    font-size: 1.5rem;
}

.article-detail .ad-content table th,
.article-detail .ad-content table td {
    padding: 1rem 1.2rem;
    border: 1px solid #e6e8ec;
    vertical-align: top;
}

.article-detail .ad-content table th {
    background-color: #f4f5f7;
    color: var(--color-main);
    font-weight: 700;
}

.article-detail .ad-content table tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.article-detail .ad-content hr {
    margin: 2.8rem 0;
    border: 0;
    border-top: 1px dashed #e6e8ec;
}

.article-detail .ad-files {
    margin-bottom: 2.8rem;
}

.article-detail .ad-section-title {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.2rem;
    color: var(--color-main);
    font-size: 1.6rem;
    font-weight: 700;
}

.article-detail .ad-section-title i {
    color: var(--color-highlight);
}

.article-detail .ad-file-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
    gap: 1.2rem;
}

.article-detail .ad-file {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
    padding: 1.2rem 1.4rem;
    border: 1px solid #ececec;
    border-radius: 1.2rem;
    background-color: var(--white);
    color: var(--color-black);
    transition: border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.article-detail .ad-file:hover {
    border-color: var(--color-highlight);
    box-shadow: 0 .4rem 1.4rem rgba(222, 2, 4, .12);
    color: var(--color-highlight);
    text-decoration: none;
}

.article-detail .ad-file-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background-color: rgba(222, 2, 4, .08);
    color: var(--color-highlight);
    font-size: 1.8rem;
}

.article-detail .ad-file-name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-detail .ad-file-go {
    flex: 0 0 auto;
    color: var(--color-text);
    font-size: 1.5rem;
}

.article-detail .ad-file:hover .ad-file-go {
    color: var(--color-highlight);
}

.article-detail .ad-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem 2.4rem;
    padding-top: 2rem;
    border-top: 1px solid #ececec;
}

.article-detail .ad-footer-label {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--color-main);
    font-size: 1.4rem;
    font-weight: 700;
}

.article-detail .ad-footer-label i {
    color: var(--color-highlight);
    font-size: 1.6rem;
}

.article-detail .ad-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem 1.2rem;
    min-width: 0;
}

.article-detail .ad-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.article-detail .ad-tag-list li a {
    display: inline-flex;
    align-items: center;
    height: 3rem;
    margin: 0;
    padding: 0 1.4rem;
    border: 1px solid #e6e8ec;
    border-radius: 3rem;
    background-color: #f6f7f9;
    color: var(--color-main);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.article-detail .ad-tag-list li a:hover {
    border-color: var(--color-highlight);
    background-color: var(--color-highlight);
    color: var(--white);
    text-decoration: none;
}

.article-detail .ad-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem 1.2rem;
    margin-bottom: 0;
}

.article-detail .ad-share .list-social {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.article-detail .ad-share .list-social .btn-social {
    float: none;
    margin: 0;
}

.article-detail .ad-share .list-social .btn-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    border: 1px solid #e6e8ec;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--color-main);
    font-size: 1.5rem;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.article-detail .ad-share .list-social .btn-social a:hover {
    border-color: transparent;
    color: var(--white);
    transform: translateY(-.2rem);
}

.article-detail .ad-share .btn-facebook a:hover { background-color: #1877f2; }
.article-detail .ad-share .btn-twitter a:hover { background-color: #1d9bf0; }
.article-detail .ad-share .btn-pinterest a:hover { background-color: #e60023; }
.article-detail .ad-share .btn-linkedin a:hover { background-color: #0a66c2; }
.article-detail .ad-share .btn-copy-link a:hover { background-color: var(--color-highlight); }

@media (max-width: 991.98px) {
    .article-detail .ad-header { padding: 3.4rem 2.6rem; }
    .article-detail .ad-title { font-size: 3.4rem; }
}

@media (max-width: 767.98px) {
    .article-detail .ad-header { margin-bottom: 2rem; padding: 2.6rem 1.8rem; border-radius: 1.2rem; }
    .article-detail .ad-header::before { top: -8rem; right: -6rem; width: 20rem; height: 20rem; }
    .article-detail .ad-header::after { bottom: -8rem; left: -6rem; width: 18rem; height: 18rem; }
    .article-detail .ad-cats { margin-bottom: 1.4rem; }
    .article-detail .ad-cat { height: 2.8rem; padding: 0 1.4rem; font-size: 1.2rem; }
    .article-detail .ad-title { font-size: 2.6rem; letter-spacing: -.03rem; }
    .article-detail .ad-title::after { width: 7rem; height: .4rem; margin-top: 1.6rem; }
    .article-detail .ad-meta { margin-top: 1.8rem; gap: .8rem; }
    .article-detail .ad-meta-item { padding: .5rem 1.2rem; font-size: 1.3rem; }
    .article-detail .ad-meta-item i { font-size: 1.4rem; }
    .article-detail .ad-gallery,
    .article-detail .ad-video,
    .article-detail .ad-body,
    .article-detail .ad-files { margin-bottom: 2rem; }
    .article-detail .ad-gallery-main { border-radius: 1.2rem; }

    .article-detail .ad-gallery .swiper-button-next,
    .article-detail .ad-gallery .swiper-button-prev { width: 3.6rem; height: 3.6rem; opacity: 1; }

    .article-detail .ad-body { padding: 2rem 1.6rem; border-radius: 1.2rem; }
    .article-detail .ad-lead { padding: 1.4rem 1.4rem 1.4rem 1.8rem; font-size: 1.6rem; }
    .article-detail .ad-content { font-size: 1.5rem; line-height: 1.75; }
    .article-detail .ad-content h1 { font-size: 2.2rem; }
    .article-detail .ad-content h2 { font-size: 2rem; }
    .article-detail .ad-content h3 { font-size: 1.8rem; }
    .article-detail .ad-content h4,
    .article-detail .ad-content h5,
    .article-detail .ad-content h6 { font-size: 1.6rem; }

    .article-detail .ad-content table { display: block; width: 100%; overflow-x: auto; }

    .article-detail .ad-file-list { grid-template-columns: 1fr; }
    .article-detail .ad-footer { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
}

.search-hero {
    position: relative;
    margin-bottom: 3.5rem;
    padding: 4.5rem 2rem 4rem;
    border: 1px solid #eceef3;
    border-radius: 2.4rem;
    background:
        radial-gradient(circle 31rem at 50% -1rem, rgba(222, 2, 4, .10) 0%, rgba(222, 2, 4, 0) 68%),
        linear-gradient(180deg, #fbfcfe 0%, #f3f5f9 100%);
    text-align: center;
}

.search-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 72rem;
    margin: 0 auto;
}

.search-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    margin-bottom: 1.6rem;
    border-radius: 50%;
    background: var(--white);
    color: var(--color-highlight);
    box-shadow: 0 .6rem 1.8rem rgba(17, 28, 45, .10);
}

.search-hero-title {
    margin: 0 0 1rem;
    color: var(--color-main);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.search-hero-desc {
    max-width: 52rem;
    margin: 0 auto 2.6rem;
    color: #6f7787;
    font-size: 1.5rem;
    line-height: 1.6;
}

.nh-search-page .input-group {
    padding: .6rem;
    border: 1px solid #e3e6ec;
    border-radius: 5rem;
    background: var(--white);
    box-shadow: 0 .4rem 1.6rem rgba(17, 28, 45, .06);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.nh-search-page .input-group:focus-within {
    border-color: var(--color-highlight);
    box-shadow: 0 .4rem 2rem rgba(222, 2, 4, .14);
}

.nh-search-page .form-control {
    height: 4.8rem;
    padding-left: 1.8rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color-main);
    font-size: 1.5rem;
}

.nh-search-page .form-control:focus {
    background: transparent;
    box-shadow: none;
}

.nh-search-page .form-control::placeholder {
    color: #a3a9b6;
}

.nh-search-page .btn-submit {
    height: 4.8rem;
    padding: 0 2.6rem;
    border: 0;
    border-radius: 5rem;
    background: var(--color-highlight);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.nh-search-page .btn-submit:hover,
.nh-search-page .btn-submit:focus {
    background: #b90204;
    color: var(--white);
}

.nh-search-page .wrap-suggestion {
    margin-top: .8rem;
    border-top: 1px solid #ececec;
    border-radius: 1.4rem;
    box-shadow: 0 1.2rem 3rem rgba(17, 28, 45, .14);
    text-align: left;
}

.search-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: .6rem 2rem;
    margin-bottom: 1.6rem;
}

.search-summary-text {
    color: var(--color-main);
    font-size: 1.8rem;
    font-weight: 700;
    min-width: 0;
}

.search-summary-kw {
    color: var(--color-highlight);
    word-break: break-word;
}

.search-summary-count {
    color: #7a8291;
    font-size: 1.4rem;
    white-space: nowrap;
}

.search-summary-count strong {
    color: var(--color-main);
    font-weight: 700;
}

.search-notes {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1.6rem;
}

.search-note {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.4rem;
    border: 1px solid #e9edf3;
    border-radius: 1rem;
    background: #f6f8fb;
    color: #5c6473;
    font-size: 1.35rem;
    line-height: 1.4;
}

.search-note svg {
    flex: 0 0 auto;
    color: var(--color-highlight);
}

.search-note strong {
    color: var(--color-main);
    font-weight: 700;
}

.search-panel {
    margin-bottom: 2.6rem;
    padding: .4rem 2rem;
    border: 1px solid #ebedf2;
    border-radius: 1.6rem;
    background: var(--white);
    box-shadow: 0 .2rem 1.2rem rgba(17, 28, 45, .05);
}

.search-panel .sf-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 0;
}

.search-panel .sf-row + .sf-row {
    border-top: 1px solid #f1f2f6;
}

.search-panel .sf-label {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    flex: 0 0 auto;
    min-width: 11rem;
    color: var(--color-main);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.search-panel .sf-label svg {
    flex: 0 0 auto;
    color: var(--color-highlight);
}

.search-panel .sf-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    flex: 1 1 0;
    min-width: 0;
}

.search-panel .sf-chip {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    max-width: 100%;
    min-height: 3.4rem;
    padding: .4rem 1.4rem;
    border: 1px solid #e4e7ee;
    border-radius: 3rem;
    background: var(--white);
    color: var(--color-main);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}

.search-panel .sf-chip:hover,
.search-panel .sf-chip:focus {
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    box-shadow: 0 .2rem .8rem rgba(222, 2, 4, .12);
}

.search-panel .sf-chip.is-active,
.search-panel .sf-chip.is-active:hover,
.search-panel .sf-chip.is-active:focus {
    border-color: var(--color-highlight);
    background: var(--color-highlight);
    color: var(--white);
    box-shadow: 0 .2rem .8rem rgba(222, 2, 4, .26);
}

.search-panel .sf-chip-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 24rem;
}

.search-panel .sf-chip-sub {
    color: #9aa1ae;
    font-style: normal;
    font-weight: 500;
}

.search-panel .sf-chip.is-active .sf-chip-sub {
    color: rgba(255, 255, 255, .75);
}

.search-panel .sf-chip-count {
    flex: 0 0 auto;
    padding: .1rem .7rem;
    border-radius: 2rem;
    background: #f2f4f7;
    color: #8c93a2;
    font-size: 1.2rem;
    font-weight: 600;
}

.search-panel .sf-chip.is-active .sf-chip-count {
    background: rgba(255, 255, 255, .22);
    color: var(--white);
}

.search-panel .sf-chip-clear {
    border-style: dashed;
    color: #7a8291;
}

.search-panel .sf-chip-x {
    color: #b6bcc8;
    font-size: 1.6rem;
    line-height: 1;
}

.search-panel .sf-chip-clear:hover .sf-chip-x {
    color: var(--color-highlight);
}

.search-panel .sf-reset {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    flex: 0 0 auto;
    margin-left: auto;
    height: 3.4rem;
    padding: 0 1.4rem;
    border: 1px solid #f4d5d5;
    border-radius: 3rem;
    background: #fff5f5;
    color: var(--color-highlight);
    font-size: 1.35rem;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.search-panel .sf-reset:hover,
.search-panel .sf-reset:focus {
    border-color: var(--color-highlight);
    background: var(--color-highlight);
    color: var(--white);
}

.search-panel .sf-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem;
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
}

.search-panel .sf-price-field {
    width: 13rem;
    height: 3.8rem;
    padding: 0 1.2rem;
    border: 1px solid #e4e7ee;
    border-radius: 1rem;
    background: var(--white);
    color: var(--color-main);
    font-size: 1.4rem;
}

.search-panel .sf-price-field:focus {
    outline: 0;
    border-color: var(--color-highlight);
    box-shadow: 0 0 0 .3rem rgba(222, 2, 4, .10);
}

.search-panel .sf-price-sep {
    color: #b6bcc8;
}

.search-panel .sf-apply {
    height: 3.8rem;
    padding: 0 2.2rem;
    border: 0;
    border-radius: 1rem;
    background: var(--color-main);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    transition: background .2s ease;
}

.search-panel .sf-apply:hover,
.search-panel .sf-apply:focus {
    background: var(--color-highlight);
}

.search-panel .sf-price-clear {
    color: #7a8291;
    font-size: 1.35rem;
    text-decoration: underline;
}

.search-panel .sf-price-clear:hover {
    color: var(--color-highlight);
}

.search-empty {
    margin-bottom: 3rem;
    padding: 5rem 2rem;
    border: 1px dashed #e0e4ec;
    border-radius: 1.6rem;
    background: var(--white);
    text-align: center;
}

.search-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    margin-bottom: 1.8rem;
    border-radius: 50%;
    background: #f5f7fa;
    color: #b9c0cc;
}

.search-empty-title {
    margin-bottom: .8rem;
    color: var(--color-main);
    font-size: 1.9rem;
    font-weight: 700;
}

.search-empty-desc {
    max-width: 46rem;
    margin: 0 auto 2rem;
    color: #7a8291;
    font-size: 1.45rem;
    line-height: 1.6;
}

.search-empty-action {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    height: 4.2rem;
    padding: 0 2.4rem;
    border-radius: 3rem;
    background: var(--color-highlight);
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 700;
}

.search-empty-action:hover,
.search-empty-action:focus {
    background: #b90204;
    color: var(--white);
}

@media (max-width: 767.98px) {
    .search-hero {
        margin-bottom: 2.5rem;
        padding: 3rem 1.6rem 2.8rem;
        border-radius: 1.8rem;
    }

    .search-hero-icon {
        width: 4.6rem;
        height: 4.6rem;
        margin-bottom: 1.2rem;
    }

    .search-hero-title {
        font-size: 2.4rem;
    }

    .search-hero-desc {
        margin-bottom: 2rem;
        font-size: 1.4rem;
    }

    .nh-search-page .form-control {
        height: 4.2rem;
        padding-left: 1.4rem;
        font-size: 1.4rem;
    }

    .nh-search-page .btn-submit {
        height: 4.2rem;
        padding: 0 1.6rem;
        font-size: 1.4rem;
    }

    .search-summary-text {
        font-size: 1.6rem;
    }

    .search-panel {
        padding: .2rem 1.4rem;
        border-radius: 1.4rem;
    }

    .search-panel .sf-row {
        gap: .8rem;
        padding: 1.2rem 0;
    }

    .search-panel .sf-label {
        min-width: 100%;
    }

    .search-panel .sf-chip-name {
        max-width: 17rem;
    }

    .search-panel .sf-price-field {
        width: calc(50% - 2.4rem);
        min-width: 10rem;
    }

    .search-empty {
        padding: 3.6rem 1.6rem;
    }

    .search-empty-title {
        font-size: 1.7rem;
    }
}

.top-title + .search-summary {
    margin-top: -.8rem;
}

.search-panel .sf-apply {
    cursor: pointer;
}

.search-panel .sf-price-field::-webkit-outer-spin-button,
.search-panel .sf-price-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.search-panel .sf-price-field {
    -moz-appearance: textfield;
    appearance: textfield;
}

@media (max-width: 575.98px) {
    .search-panel .sf-reset {
        justify-content: center;
    }
}

:root {
    --os-green: #16a34a;
    --os-green-soft: #e9f7ee;
    --os-green-line: #d7ecdd;
}

.os-hero {
    position: relative;
    margin-bottom: 20px;
    padding: 44px 24px 38px;
    overflow: hidden;
    border: 1px solid var(--co-line);
    border-radius: var(--co-radius);
    background-color: #fff;
    box-shadow: var(--co-shadow);
    text-align: center;
}

.os-hero::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 50%;
    width: 520px;
    height: 300px;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(22, 163, 74, 0.16) 0%, rgba(22, 163, 74, 0) 70%);
    pointer-events: none;
}

.os-hero > * {
    position: relative;
}

.os-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(140deg, #3ddc84 0%, var(--os-green) 100%);
    box-shadow:
        0 0 0 10px rgba(22, 163, 74, 0.09),
        0 0 0 20px rgba(22, 163, 74, 0.05),
        0 14px 30px rgba(22, 163, 74, 0.28);
    color: #fff;
    font-size: 32px;
    animation: os-pop 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.4) both;
}

@keyframes os-pop {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .os-hero-icon {
        animation: none;
    }
}

.os-hero-title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.2px;
    color: var(--co-ink);
}

.os-hero-text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    color: var(--co-muted);
}

.os-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.os-code {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 4px 7px 4px 16px;
    border: 1px solid var(--co-line);
    border-radius: 999px;
    background-color: #fff;
}

.os-code-label {
    font-size: 13px;
    color: var(--co-muted);
}

.os-code-value {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--co-ink);
}

.os-code-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--co-soft);
    color: var(--co-muted);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.os-code-copy:hover {
    background-color: var(--os-green-soft);
    color: var(--os-green);
}

.os-code-copy.is-done {
    background-color: var(--os-green);
    color: #fff;
}

.os-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 8px 18px;
    border: 1px solid var(--co-line);
    border-radius: 999px;
    background-color: #fff;
    font-size: 13px;
    color: var(--co-muted);
}

.os-meta-item b {
    font-weight: 600;
    color: var(--co-ink);
}

.os-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.os-actions .co-btn {
    min-width: 210px;
}

.os-btn-quiet {
    border-color: var(--co-line);
    background-color: #fff;
    color: var(--co-ink);
}

.os-btn-quiet:hover {
    border-color: var(--co-ink);
    background-color: #fff;
    color: var(--co-ink);
}

.os-row {
    margin-left: -10px;
    margin-right: -10px;
}

.os-row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.os-row > [class*="col-"] > .co-card {
    height: 100%;
    margin-bottom: 0;
}

.os-page > .container > .co-card:last-child {
    margin-bottom: 0;
}

.os-page .co-card > .co-address:last-child {
    margin-bottom: 0;
}

.os-support {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.os-support-icon {
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: var(--co-soft);
    color: var(--co-ink);
    font-size: 18px;
}

.os-support-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--co-ink);
}

.os-support-text {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--co-muted);
}

.os-support-body {
    flex: 1 1 180px;
}

.os-support-links {
    display: flex;
    flex-wrap: wrap;
    flex: 0 1 auto;
    gap: 8px 18px;
    margin-left: auto;
}

.os-support-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    word-break: break-all;
    color: var(--co-ink);
}

.os-support-links a:hover {
    color: var(--color-highlight);
}

@media (max-width: 767.98px) {
    .os-hero {
        padding: 34px 16px 28px;
    }

    .os-hero-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
        font-size: 27px;
        box-shadow:
            0 0 0 8px rgba(22, 163, 74, 0.09),
            0 0 0 15px rgba(22, 163, 74, 0.05),
            0 12px 24px rgba(22, 163, 74, 0.26);
    }

    .os-hero-title {
        font-size: 22px;
    }

    .os-hero-text {
        font-size: 14px;
    }

    .os-actions .co-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    .os-code {
        min-height: 42px;
        padding: 4px 6px 4px 12px;
        gap: 8px;
    }

    .os-code-value {
        font-size: 15px;
    }

    .os-meta-item {
        min-height: 42px;
        padding: 8px 14px;
    }
}

@media (max-width: 575.98px) {
    .os-page .co-step:last-child .co-step-text {
        display: inline;
    }
}

.os-page .co-address {
    border-style: solid;
    border-color: var(--co-line);
}

.os-page .co-sum-divider {
    border-top-style: solid;
    border-top-color: var(--co-line);
}

.ci-cols {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 120px 118px 132px 34px;
    grid-template-areas: "thumb body price qty total remove";
    align-items: center;
    gap: 16px;
}

.ci-cols-head {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--co-line);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--co-muted);
}

.ci-col-center {
    text-align: center;
}

.ci-col-right {
    text-align: right;
}

.ci-line {
    padding: 18px 0;
    border-bottom: 1px solid var(--co-line);
}

.ci-line:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ci-thumb {
    grid-area: thumb;
    display: block;
    width: 84px;
    height: 84px;
    padding: 4px;
    border: 1px solid var(--co-line);
    border-radius: 12px;
    background-color: #fff;
}

.ci-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
}

.ci-body {
    grid-area: body;
    min-width: 0;
}

.ci-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--co-ink);
}

.ci-name:hover {
    color: var(--color-highlight);
}

.ci-code {
    margin-top: 4px;
    font-size: 12px;
    color: var(--co-muted);
}

.ci-price {
    grid-area: price;
    text-align: center;
}

.ci-qty {
    grid-area: qty;
}

.ci-total {
    grid-area: total;
    text-align: right;
}

.ci-money {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--co-ink);
    white-space: nowrap;
}

.ci-money.is-strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-highlight);
}

.ci-money-sub {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--co-muted);
    white-space: nowrap;
}

.ci-label {
    display: none;
    font-size: 12px;
    color: var(--co-muted);
}

.ci-qty .product-quantity {
    width: -webkit-max-content;
    width: max-content;
    margin: 0 auto;
    justify-content: center;
}

.ci-remove {
    grid-area: remove;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background-color: var(--co-soft);
    font-size: 14px;
    color: var(--co-muted);
}

.ci-remove:hover {
    background-color: rgba(222, 2, 4, 0.08);
    color: var(--color-highlight);
}

.ci-aside {
    position: sticky;
    top: 20px;
}

.ci-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--co-muted);
}

.ci-secure i {
    font-size: 15px;
    color: #12b76a;
}

.ci-empty {
    padding: 56px 24px;
    text-align: center;
}

.ci-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: var(--co-soft);
    font-size: 34px;
    color: #b6bcc9;
}

.ci-empty-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--co-ink);
}

.ci-empty-text {
    max-width: 460px;
    margin: 10px auto 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--co-muted);
}

@media (max-width: 1199.98px) {
    .ci-cols {
        grid-template-columns: 72px minmax(0, 1fr) 104px 104px 118px 34px;
        gap: 12px;
    }

    .ci-thumb {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 991.98px) {
    .ci-aside {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .ci-cols.ci-cols-head {
        display: none;
    }

    .ci-cols {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 10px 12px;
    }

    .ci-thumb {
        order: 1;
        flex: 0 0 72px;
    }

    .ci-body {
        order: 2;
        flex: 1 1 0;
    }

    .ci-remove {
        order: 3;
        flex: 0 0 34px;
    }

    .ci-price {
        order: 4;
        flex: 1 1 100%;
        text-align: left;
    }

    .ci-qty {
        order: 5;
        flex: 0 0 auto;
    }

    .ci-total {
        order: 6;
        flex: 1 1 auto;
        align-self: center;
    }

    .ci-price,
    .ci-total {
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 4px 6px;
    }

    .ci-total {
        justify-content: flex-end;
    }

    .ci-label {
        display: inline;
    }

    .ci-money,
    .ci-money-sub {
        display: inline;
        margin-top: 0;
    }

    .ci-qty .product-quantity {
        margin: 0;
    }

    .ci-line {
        padding: 16px 0;
    }

    .ci-empty {
        padding: 40px 8px;
    }

    .ci-empty-icon {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
}

.nh-search-header .wrap-suggestion {
    border-radius: 12px;
}

.mc-empty {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px 44px;
    text-align: center;
}

.mc-empty-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin-bottom: 26px;
    border-radius: 50%;
    background-color: var(--co-soft);
    font-size: 38px;
    color: #b6bcc9;
}

.mc-empty-icon::before {
    content: "";
    position: absolute;
    top: -11px;
    right: -11px;
    bottom: -11px;
    left: -11px;
    border: 1px dashed var(--co-line);
    border-radius: 50%;
}

.mc-empty-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--co-ink);
}

.mc-empty-text {
    max-width: 300px;
    margin: 8px 0 26px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--co-muted);
}

.mc-empty-btn {
    min-width: 220px;
}

@media (min-width: 992px) {
    .mc-empty-icon {
        width: 108px;
        height: 108px;
        font-size: 42px;
    }

    .mc-empty-title {
        font-size: 19px;
    }

    .mc-empty-text {
        max-width: 340px;
        font-size: 15px;
    }
}

.sidebar-mini-cart .title-top-cart {
    margin: -15px -15px 0;
    padding: 10px 15px;
    gap: 8px;
    border-bottom: 1px solid var(--co-line);
}

.sidebar-mini-cart .title-top-cart .close-sidebar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 17px;
    color: var(--co-ink);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar-mini-cart .title-top-cart .close-sidebar:hover {
    background-color: var(--co-soft);
    color: var(--color-highlight);
}

.sidebar-mini-cart .title-top-cart .title-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--co-ink);
}

.sidebar-mini-cart .title-top-cart .title-cart-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-mini-cart .title-top-cart .cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 24px;
    height: 22px;
    padding: 0 7px;
    border-radius: 11px;
    background-color: var(--co-soft);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--co-muted);
}

.sidebar-mini-cart .title-top-cart .title-top-spacer {
    flex-shrink: 0;
    width: 36px;
}

@media (min-width: 992px) {
    .sidebar-mini-cart .title-top-cart {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .sidebar-mini-cart .title-top-cart .title-cart {
        font-size: 18px;
    }

    .sidebar-mini-cart .title-top-cart .cart-count-badge {
        min-width: 26px;
        height: 24px;
        border-radius: 12px;
        font-size: 13px;
    }
}

@media (max-width:767px){
    .quick-buy-left {
        width: 100%;
    }
    .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .row>div {
        padding-left: 5px;
        padding-right: 5px;
    }

    .mb-20 {
        margin-bottom: 10px;
    }
}

@media (min-width:768px) and (max-width:1200px){
    .row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .row>div {
        padding-left: 10px;
        padding-right: 10px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }
}


.swiper-slider-main .swiper-button-prev,
.swiper-slider-main .swiper-button-next {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: var(--color-main);
    box-shadow: 0 .4rem 1.6rem rgba(17, 28, 45, .2);
    transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.swiper-slider-main .swiper-button-prev {
    left: 2rem;
}

.swiper-slider-main .swiper-button-next {
    right: 2rem;
}

.swiper-slider-main .swiper-button-prev svg,
.swiper-slider-main .swiper-button-next svg {
    width: 2rem;
    height: 2rem;
}

.swiper-slider-main .swiper-button-prev:hover,
.swiper-slider-main .swiper-button-next:hover,
.swiper-slider-main .swiper-button-prev:focus-visible,
.swiper-slider-main .swiper-button-next:focus-visible {
    background-color: var(--color-highlight);
    color: var(--white);
    box-shadow: 0 .6rem 2rem rgba(222, 2, 4, .35);
    transform: translateY(-50%) scale(1.06);
}

.swiper-slider-main .swiper-pagination {
    left: 50%;
    bottom: 1.6rem;
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .7rem 1.1rem;
    border-radius: 5rem;
    background-color: rgba(17, 28, 45, .38);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
}

.swiper-slider-main .swiper-pagination:has(.swiper-pagination-bullet:only-child) {
    display: none;
}

.swiper-slider-main .swiper-pagination .swiper-pagination-bullet {
    width: .8rem;
    height: .8rem;
    margin: 0;
    border-radius: 5rem;
    background: var(--white);
    opacity: .5;
    transition: width .3s ease, opacity .3s ease;
}

.swiper-slider-main .swiper-pagination .swiper-pagination-bullet:hover {
    opacity: .8;
}

.swiper-slider-main .swiper-pagination .swiper-pagination-bullet-active {
    width: 2.6rem;
    background: var(--white);
    opacity: 1;
}

@media (max-width: 767.98px) {
    .swiper-slider-main .swiper-button-prev,
    .swiper-slider-main .swiper-button-next {
        width: 3.2rem;
        height: 3.2rem;
    }

    .swiper-slider-main .swiper-button-prev {
        left: 1rem;
    }

    .swiper-slider-main .swiper-button-next {
        right: 1rem;
    }

    .swiper-slider-main .swiper-button-prev svg,
    .swiper-slider-main .swiper-button-next svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .swiper-slider-main .swiper-pagination {
        bottom: .8rem;
        gap: .5rem;
        padding: .5rem .8rem;
    }

    .swiper-slider-main .swiper-pagination .swiper-pagination-bullet {
        width: .6rem;
        height: .6rem;
    }

    .swiper-slider-main .swiper-pagination .swiper-pagination-bullet-active {
        width: 1.8rem;
    }
}

.product-status .combo-badge {
    display: block;
    width: fit-content;
    max-width: 16rem;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
    border-radius: 0.5rem;
    background-color: var(--blue-black);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2rem;
    text-align: center;
}

@media (max-width: 767px) {
    .product-status .combo-badge {
        max-width: 12rem;
        padding: 0 0.6rem;
        font-size: 1.1rem;
    }
}

.wrap-suggestion .suggest-combo {
    display: inline-block;
    margin-bottom: 2px;
    padding: 0 6px;
    border: 1px solid rgba(37, 41, 132, .35);
    border-radius: 3px;
    background-color: rgba(37, 41, 132, .06);
    color: var(--blue-black);
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    white-space: nowrap;
}

.combo-items-section .combo-blocking-note {
    background-color: #fff8e1;
    color: #856404;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.combo-items-section .combo-lines {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 768px) {
    .combo-items-section .combo-lines {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .combo-items-section .combo-lines {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


.combo-items-section .combo-line {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.combo-items-section .combo-line.is-blocking {
    background-color: #fff8e1;
    border-color: #f5e0a3;
}

.combo-items-section .combo-line-image {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
}

.combo-items-section .combo-line-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.combo-items-section .combo-line-content {
    flex: 1;
    min-width: 0;
}

.combo-items-section .combo-line-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
}

.combo-items-section .combo-line-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    flex: 1;
    min-width: 0;
}

.combo-items-section a.combo-line-name:hover {
    color: #1877f2;
}

.combo-items-section .combo-line-stock {
    font-size: 11px;
    color: #2e7d32;
    white-space: nowrap;
    flex: 0 0 auto;
}

.combo-items-section .combo-line-stock.is-out {
    color: #c62828;
    font-weight: 600;
}

.combo-items-section .combo-line-code {
    font-size: 12px;
    color: #777;
    margin: 2px 0 2px 0;
}

.combo-items-section .combo-line-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.combo-items-section .combo-line-price {
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
}

.combo-items-section .combo-line-qty {
    font-size: 12px;
    color: #555;
}


@media (max-width: 575.98px) {
    .combo-items-section .combo-line-image,
    .combo-items-section .combo-line-image img {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }
}

.sidebar-mini-cart .content-mini-cart .cart-select-all-row {
    margin-bottom: 10px;
}

.sidebar-mini-cart .content-mini-cart .cart-select-all-row .nh-checkbox {
    font-weight: 600;
    color: var(--co-ink);
}

.sidebar-mini-cart .content-mini-cart .cart-remove-all {
    margin-right: -8px;
    padding: 6px 8px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--co-muted);
    transition: background-color 0.18s ease, color 0.18s ease;
}

.sidebar-mini-cart .content-mini-cart .cart-remove-all:hover,
.sidebar-mini-cart .content-mini-cart .cart-remove-all:focus {
    background-color: rgba(222, 2, 4, 0.07);
    color: var(--color-highlight);
    text-decoration: none;
}

.sidebar-mini-cart .content-mini-cart .nh-checkbox .checkbox-mark {
    border-color: #cfd4de;
}

.sidebar-mini-cart .content-mini-cart .warp-combor {
    border: 0;
    border-radius: 14px;
    background-color: var(--co-soft);
}

.sidebar-mini-cart .content-mini-cart .cart-list {
    padding: 10px;
}

.sidebar-mini-cart .content-mini-cart .product-combo {
    scrollbar-width: thin;
    scrollbar-color: #d5d9e2 transparent;
}

.sidebar-mini-cart .content-mini-cart .product-combo::-webkit-scrollbar {
    width: 6px;
}

.sidebar-mini-cart .content-mini-cart .product-combo::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #d5d9e2;
}

.sidebar-mini-cart .content-mini-cart .product-combo::-webkit-scrollbar-track {
    background-color: transparent;
    box-shadow: none;
}

.sidebar-mini-cart .content-mini-cart .cart-item {
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--co-line);
    border-radius: 12px;
    background-color: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.sidebar-mini-cart .content-mini-cart .cart-item:hover {
    border-color: #d7dce6;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.05);
}

.sidebar-mini-cart .content-mini-cart .cart-item-remove {
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 13px;
    color: #c4c9d4;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.sidebar-mini-cart .content-mini-cart .cart-item-remove:hover {
    background-color: rgba(222, 2, 4, 0.07);
    color: var(--color-highlight);
}

.sidebar-mini-cart .content-mini-cart .cart-item .inner-image {
    width: 80px;
    height: 80px;
    border-color: var(--co-line);
    border-radius: 10px;
    background-color: #fff;
}

.sidebar-mini-cart .content-mini-cart .cart-item .inner-image img {
    object-fit: contain;
}

.sidebar-mini-cart .content-mini-cart .cart-item .product-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding-right: 28px;
    margin-bottom: 5px;
    line-height: 1.45;
    color: var(--co-ink);
}

.sidebar-mini-cart .content-mini-cart .cart-item .product-code {
    margin-bottom: 0;
    color: var(--co-muted);
}

.sidebar-mini-cart .content-mini-cart .cart-item .product-price-quantity {
    gap: 10px;
    margin-top: 10px;
}

.sidebar-mini-cart .content-mini-cart .cart-item .price-amount .currency-symbol {
    margin-left: 1px;
    font-size: 0.78em;
    font-weight: 600;
}

.sidebar-mini-cart .content-mini-cart .cart-item .product-qty-row .product-quantity,
.sidebar-mini-cart .content-mini-cart .combo-item-qty .product-quantity {
    height: 32px;
    padding: 0;
    overflow: hidden;
    border-color: var(--co-line);
    border-radius: 10px;
    background-color: #fff;
}

.sidebar-mini-cart .content-mini-cart .product-quantity .btn-quantity {
    width: 30px;
    height: 100%;
    font-size: 11px;
    color: var(--co-muted);
}

.sidebar-mini-cart .content-mini-cart .product-quantity .btn-quantity:hover {
    background-color: var(--co-soft);
    color: var(--color-highlight);
}

.sidebar-mini-cart .content-mini-cart .cart-item .product-qty-row .product-quantity input,
.sidebar-mini-cart .content-mini-cart .combo-item-qty .product-quantity input {
    width: 34px;
    height: 100%;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--co-ink);
}

.sidebar-mini-cart .content-mini-cart .combo-items-toggle {
    border-color: var(--co-line);
    font-weight: 600;
    color: var(--co-muted);
}

.sidebar-mini-cart .content-mini-cart .combo-item {
    border-color: var(--co-line);
}

.sidebar-mini-cart .content-mini-cart .combo-item-image {
    border-color: var(--co-line);
    border-radius: 8px;
}

.sidebar-mini-cart .content-mini-cart .combo-item-title {
    color: var(--co-ink);
}

.sidebar-mini-cart .content-mini-cart .combo-item-code {
    color: var(--co-muted);
}

.sidebar-mini-cart .content-mini-cart .entire-bottom-minicart {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--co-line);
}

.sidebar-mini-cart .content-mini-cart .cart-summary-col {
    gap: 8px;
    padding: 0;
    border: 0;
}

.sidebar-mini-cart .content-mini-cart .cart-summary-row {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--co-muted);
}

.sidebar-mini-cart .content-mini-cart .cart-summary-row label {
    color: var(--co-muted);
}

.sidebar-mini-cart .content-mini-cart .cart-summary-row .price-amount {
    font-weight: 600;
    color: var(--co-ink);
}

.sidebar-mini-cart .content-mini-cart .cart-summary-row.cart-summary-total {
    padding: 10px 12px;
    border-top: 0;
    border-radius: 10px;
    background-color: var(--co-soft);
    font-size: 14px;
    color: var(--co-ink);
}

.sidebar-mini-cart .content-mini-cart .cart-summary-row.cart-summary-total label {
    font-weight: 700;
    color: var(--co-ink);
}

.sidebar-mini-cart .content-mini-cart .cart-summary-row.cart-summary-total .price-amount {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn {
    flex: 0 0 auto;
    max-width: none;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-checkout {
    flex-wrap: nowrap;
    gap: 8px;
    height: 50px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(222, 2, 4, 0.26);
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-checkout:hover,
.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-checkout:focus {
    background-color: var(--color-highlight);
    color: #fff;
    text-decoration: none;
    filter: brightness(1.06);
    box-shadow: 0 10px 24px rgba(222, 2, 4, 0.32);
}

.co-coupon-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 58vh;
    overflow-y: auto;
    padding-right: 6px;
    margin-right: -6px;
}

.co-coupon-list::-webkit-scrollbar {
    width: 4px;
}

.co-coupon-list::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #d9dde5;
}

.co-coupon {
    --co-coupon-stub: 136px;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--co-line);
    border-radius: var(--co-radius);
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.co-coupon:hover {
    border-color: rgba(222, 2, 4, 0.35);
    box-shadow: var(--co-shadow);
    transform: translateY(-1px);
}

.co-coupon::before,
.co-coupon::after {
    content: '';
    position: absolute;
    left: var(--co-coupon-stub);
    z-index: 2;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: inset 0 0 0 1px var(--co-line);
}

.co-coupon::before {
    top: 0;
    transform: translate(-50%, -50%);
}

.co-coupon::after {
    bottom: 0;
    transform: translate(-50%, 50%);
}

.co-coupon-stub {
    flex: 0 0 var(--co-coupon-stub);
    width: var(--co-coupon-stub);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 18px 12px;
    background: linear-gradient(150deg, #f5252a 0%, var(--color-highlight) 55%, #a30103 100%);
    color: #fff;
    text-align: center;
}

.co-coupon-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.5px;
    overflow-wrap: anywhere;
}

.co-coupon-unit {
    margin-left: 1px;
    font-size: 17px;
    font-weight: 700;
}

.co-coupon-value-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
}

.co-coupon-code {
    max-width: 100%;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.co-coupon-code strong {
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.co-coupon-main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-left: 2px dashed var(--co-line);
}

.co-coupon-body {
    flex: 1 1 auto;
    min-width: 0;
}

.co-coupon-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--co-ink);
}

.co-coupon-conds {
    max-height: 63px;
    margin: 6px 0 0;
    padding: 0;
    overflow-y: auto;
    list-style: none;
}

.co-coupon-conds::-webkit-scrollbar {
    width: 3px;
}

.co-coupon-conds::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #dfe3ea;
}

.co-coupon-conds li {
    display: flex;
    gap: 7px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--co-muted);
}

.co-coupon-conds i {
    flex: 0 0 auto;
    margin-top: 4px;
    font-size: 11px;
    color: #16a34a;
}

.co-coupon-max {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
    padding: 3px 10px;
    border-radius: 999px;
    background-color: rgba(222, 2, 4, 0.07);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-highlight);
}

.co-coupon-max i {
    font-size: 11px;
}

.co-coupon-action {
    flex: 0 0 auto;
}

.co-coupon-use {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    height: 40px;
    padding: 0 18px;
    border-radius: 10px;
    background-color: var(--color-highlight);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.co-coupon-use:hover,
.co-coupon-use:focus {
    color: #fff;
    text-decoration: none;
    filter: brightness(1.08);
    box-shadow: 0 8px 18px rgba(222, 2, 4, 0.28);
}

@media (max-width: 575.98px) {
    .co-coupon {
        flex-direction: column;
    }

    .co-coupon::before,
    .co-coupon::after {
        display: none;
    }

    .co-coupon-stub {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: row;
        align-items: baseline;
        justify-content: flex-start;
        gap: 12px;
        padding: 13px 16px;
        text-align: left;
    }

    .co-coupon-value {
        font-size: 24px;
    }

    .co-coupon-main {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 16px;
        border-top: 2px dashed var(--co-line);
        border-left: 0;
    }

    .co-coupon-use {
        width: 100%;
    }

    .product-title {
        font-size: 14px;
    }
}

@media (max-width: 1199.98px) {
    .menu-section {
        width: 300px;
        max-width: 84vw;
        padding: 16px 12px 24px;
    }

    .menu-section {
        transform: translate3d(-105%, 0, 0);
    }

    .menu-top {
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        padding-bottom: 14px;
        border-bottom: 1px solid #eceef2;
        display: flex;
        justify-content: space-between;
    }

    .menu-section .close-sidebar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        margin-left: -6px;
        border-radius: 50%;
        font-size: 18px;
        transition: background-color 0.18s ease, color 0.18s ease;
    }

    .menu-section .close-sidebar:hover,
    .menu-section .close-sidebar:active {
        background-color: #f4f5f7;
        color: var(--color-highlight);
    }

    .logo-menu img {
        height: 38px;
    }

    .menu-account {
        margin-bottom: 14px;
    }

    .menu-account-link {
        gap: 10px;
        padding: 10px;
        border-radius: 14px;
        background-color: #f6f7f9;
        transition: background-color 0.18s ease;
    }

    .menu-account-link:hover,
    .menu-account-link:active {
        background-color: #eef0f4;
    }

    .menu-account-avatar,
    .menu-account-avatar img {
        width: 42px;
        height: 42px;
    }

    .menu-account-avatar {
        border: 1px solid #e8eaef;
    }

    .menu-account-name {
        margin-bottom: 2px;
        font-size: 14.5px;
        font-weight: 600;
    }

    .menu-account-desc {
        font-size: 12px;
        color: #7c8291;
    }

    .menu-account-arrow {
        font-size: 13px;
        color: #9aa1b0;
    }

    .menu-section > ul > li {
        margin-bottom: 2px;
    }

    .menu-section > ul > li > a {
        height: 46px;
        line-height: 46px;
        padding: 0 12px !important;
        border-radius: 10px;
        font-size: 14.5px;
        transition: background-color 0.18s ease, color 0.18s ease;
    }

    .menu-section > ul > li.has-child > a {
        padding-right: 44px !important;
    }

    .menu-section > ul > li > a:hover,
    .menu-section > ul > li > a:active {
        background-color: #f6f7f9;
        color: var(--color-highlight);
    }

    .menu-section > ul > li > a.active {
        background-color: #fdebeb;
        border-radius: 10px;
        font-weight: 600;
    }

    .menu-section .grower {
        border-left: 0;
        color: #9aa1b0;
    }

    .menu-footer {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #eceef2;
    }

    .menu-footer-link {
        height: 46px;
        padding: 0 12px;
        border-radius: 10px;
        font-size: 14.5px;
        font-weight: 500;
        transition: background-color 0.18s ease, color 0.18s ease;
    }

    .menu-footer-link:hover,
    .menu-footer-link:active {
        background-color: rgba(222, 2, 4, 0.07);
        color: var(--color-highlight);
    }

    .menu-footer-link i {
        font-size: 16px;
        color: #9aa1b0;
        transition: color 0.18s ease;
    }

    .menu-footer-link:hover i,
    .menu-footer-link:active i {
        color: var(--color-highlight);
    }

    .back-drop {
        background-color: rgba(17, 28, 45, 0.38);
    }
}


/* Khay tai khoan o dau trang (block g1syznh) */
.member-dropdown {
    position: relative;
}

/* SVG trong nut dung `fill: var(--fillg)`; tro bien nay ve currentColor de icon doi mau theo chu. */
.member-dropdown-toggle,
.member-login-link {
    --fillg: currentColor;
}

.member-dropdown-toggle[aria-expanded="true"] {
    color: var(--color-highlight);
}

.member-dropdown-menu {
    min-width: 268px;
    max-width: calc(100vw - 32px);
    margin-top: 5px;
    padding: 0;
    border: 1px solid #eceef2;
    border-radius: 14px;
    background-color: var(--white);
    box-shadow: 0 18px 40px rgba(17, 28, 45, 0.14);
    overflow: hidden;
    top: 100% !important;
}

.member-dropdown-menu.show {
    animation: member_dropdown_in 0.18s ease both;
}

@keyframes member_dropdown_in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member-dropdown-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background-color: #f8fafc;
    border-bottom: 1px solid #eceef2;
    color: inherit;
    transition: background-color 0.2s;
}

.member-dropdown-head:hover,
.member-dropdown-head:focus {
    background-color: #f1f5f9;
    color: inherit;
    text-decoration: none;
}

.member-dropdown-head-arrow {
    flex: 0 0 auto;
    margin-left: auto;
    font-size: 11px;
    color: #cbd5e1;
    transition: transform 0.2s, color 0.2s;
}

.member-dropdown-head:hover .member-dropdown-head-arrow {
    color: var(--color-highlight);
    transform: translateX(3px);
}

.member-dropdown-avatar {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
}

.member-dropdown-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-dropdown-identity {
    min-width: 0;
}

.member-dropdown-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    word-break: break-word;
}

.member-dropdown-sub {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.member-dropdown-list {
    padding: 8px;
}

.member-dropdown-item.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.35;
    color: #334155;
    white-space: normal;
    transition: background-color 0.2s, color 0.2s;
}

/* Bootstrap to `.dropdown-item:active` xanh duong; chan luon ca `.active` keo theo. */
.member-dropdown-menu .member-dropdown-item.dropdown-item:hover,
.member-dropdown-menu .member-dropdown-item.dropdown-item:focus,
.member-dropdown-menu .member-dropdown-item.dropdown-item:active,
.member-dropdown-menu .member-dropdown-item.dropdown-item.active {
    background-color: #f8fafc;
    color: #0f172a;
    text-decoration: none;
}

.member-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 15px;
    transition: background-color 0.2s, color 0.2s;
}

.member-dropdown-item:hover .member-dropdown-icon,
.member-dropdown-item:focus .member-dropdown-icon {
    background-color: #fee2e2;
    color: var(--color-highlight);
}

.member-dropdown-text {
    flex: 1 1 auto;
    min-width: 0;
}

.member-dropdown-arrow {
    flex: 0 0 auto;
    font-size: 11px;
    color: #cbd5e1;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
}

.member-dropdown-item:hover .member-dropdown-arrow,
.member-dropdown-item:focus .member-dropdown-arrow {
    opacity: 1;
    transform: translateX(0);
}

.member-dropdown-divider {
    height: 1px;
    margin: 0 16px;
    background-color: #eceef2;
}

.member-dropdown-item-logout.dropdown-item {
    color: var(--color-highlight);
    font-weight: 500;
}

.member-dropdown-menu .member-dropdown-item-logout.dropdown-item:hover,
.member-dropdown-menu .member-dropdown-item-logout.dropdown-item:focus,
.member-dropdown-menu .member-dropdown-item-logout.dropdown-item:active,
.member-dropdown-menu .member-dropdown-item-logout.dropdown-item.active {
    background-color: rgba(222, 2, 4, 0.07);
    color: var(--color-highlight);
}

.member-dropdown-item-logout .member-dropdown-icon {
    background-color: #fee2e2;
    color: var(--color-highlight);
}


/* PhÃ¢n trang trang sáº£n pháº©m: dÃ¹ng láº¡i bá»™ giÃ¡ trá»‹ cá»§a `/dat-hang-nhanh`
   (`.quick-purchase .pagination` trong member.css). `body.product` lÃ  chá»— bÃ¡m duy nháº¥t â€”
   khá»‘i phÃ¢n trang á»Ÿ Ä‘Ã¢y khÃ´ng cÃ³ lá»›p bá»c riÃªng nÃ o. */
body.product .pagination {
    margin-top: 18px;
    margin-bottom: 0;
    justify-content: center;
    gap: 6px;
}

body.product .pagination .page-item .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 0;
    border-radius: 10px;
    background: #f5f6f9;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    transition: background .18s, color .18s;
}

body.product .pagination .page-item:not(.disabled):hover .page-link {
    background: rgba(222, 2, 4, 0.08);
    color: var(--color-highlight);
    border-color: transparent;
}

body.product .pagination .page-item.active .page-link {
    background: var(--color-highlight);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(222, 2, 4, 0.28);
}

body.product .pagination .page-item.disabled .page-link {
    background: transparent;
    color: #c1c5d0;
}

@media (max-width: 767.98px) {
    body.product .pagination .page-item .page-link {
        min-width: 30px;
        width: 30px;
        height: 30px;
        padding: 0 5px;
        border-radius: 5px;
    }
    .box-home-polici .section-chinh-sach .item {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .box-home-polici .section-chinh-sach .item .info-content .name {
        font-size: 13px;
    }

    .box-home-polici .section-chinh-sach .item .info-content .description {
        font-size: 12px;
    }

    .box-home-polici .section-chinh-sach {
        padding: 10px;
    }
}

/* Ghim header khi cuá»™n, chá»‰ á»Ÿ khá»• PC. `sticky` chá»© khÃ´ng `fixed` vÃ¬ header váº«n giá»¯ chá»—
   trong luá»“ng â€” khÃ´ng pháº£i bÃ¹ `padding-top` cho body. Ná»n tráº¯ng lÃ  báº¯t buá»™c: máº·c Ä‘á»‹nh
   header trong suá»‘t, ghim rá»“i thÃ¬ ná»™i dung trang cháº¡y xuyÃªn qua.
   z-index dÆ°á»›i 1050 Ä‘á»ƒ modal vÃ  `.sidebar-mini-cart` (1051) váº«n phá»§ lÃªn Ä‘Æ°á»£c. */
@media (min-width: 768px) {
    body:not(.is-mobile) > header {
        position: sticky;
        top: 0;
        z-index: 1030;
        background: #ffffff;
    }
}
/* ── Nút "Đăng nhập để xem giá" ─────────────────────────────────────────────
   Chiếm đúng chỗ khối giá cũ, nên phải cao xấp xỉ một dòng giá (19px/1.25):
   thấp hơn thì lưới thẻ sản phẩm so le giữa người đã đăng nhập và khách vãng lai. */
.btn-login-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 5px 14px;
    border: 1px solid rgba(222, 2, 4, 0.22);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-highlight);
    background-color: rgba(222, 2, 4, 0.06);
    white-space: nowrap;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-login-price i {
    font-size: 12px;
    opacity: 0.8;
}

.btn-login-price:hover,
.btn-login-price:focus {
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(222, 2, 4, 0.22);
}

.btn-login-price:hover i,
.btn-login-price:focus i {
    opacity: 1;
}

/* Trong thẻ sản phẩm, nút nằm ngay trên "Xem chi tiết" — nút đó rộng 100%.
   Không kéo bằng thì hai mép lệch nhau, trông như hai hộp rời. */
.product-item .price .btn-login-price {
    width: 100%;
}

.btn-login-price-lg {
    padding: 10px 20px;
    font-size: 15px;
}

.btn-login-price-lg i {
    font-size: 14px;
}

.product-price-box-login {
    margin-bottom: 20px;
}

.wrap-suggestion .suggest-price .price-locked {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-highlight);
}

/* ==========================================================================
   Bộ lọc danh mục — block product/view_bo_loc

   Dùng chung đúng bộ trị số với hai khối cùng trang: `.warp-danh-muc-san-pham`
   (thẻ ngay trên nó trong cột trái) và `.warp-sap-xep-san-pham` (thanh sắp xếp).
   Bo góc 1.2rem cho thẻ, .8rem cho hàng và nút, 3rem cho viên thuốc. Đơn vị rem
   chứ không phải px: gốc font tụt còn 9px dưới 1280px, để px thì bo góc của bộ
   lọc đứng yên trong khi thẻ bên cạnh co lại.
   ========================================================================== */

.content-filter-product .filter-panel-head {
    position: relative;
    display: none;
    align-items: center;
    gap: 1.2rem;
    min-height: calc(var(--sp-toolbar-h) - 1px);
    padding: 1.5rem 1.8rem;
    background: var(--color-main);
    color: var(--white);
}

.content-filter-product .filter-panel-head::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--color-highlight);
}

.content-filter-product .filter-panel-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    color: var(--color-highlight);
}

.content-filter-product .filter-panel-title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .05rem;
    text-transform: uppercase;
}

.content-filter-product .filter-group {
    margin-bottom: 2.2rem;
}

.content-filter-product .filter-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2rem;
    margin-bottom: 1rem;
}

.content-filter-product .filter-group-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .08rem;
    text-transform: uppercase;
    color: #7b8395;
}

.content-filter-product .filter-clear {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-highlight);
}

.content-filter-product .filter-clear:hover,
.content-filter-product .filter-clear:focus {
    color: var(--color-highlight);
    text-decoration: underline;
}

.content-filter-product .filter-list {
    margin: 0 -1.2rem;
    padding-left: 0;
    list-style: none;
}

.content-filter-product .filter-opt {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: .8rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-black);
    transition: background .2s ease, color .2s ease;
}

.content-filter-product .filter-opt:hover,
.content-filter-product .filter-opt:focus {
    background: #f6f6f7;
    color: var(--color-highlight);
    text-decoration: none;
}

/* Dấu chọn vẽ bằng CSS chứ không dùng Font Awesome: trang chỉ nạp light + solid,
   nhánh regular không có font nên ký tự rơi ra ô vuông rỗng. */
.content-filter-product .filter-opt-mark {
    position: relative;
    flex: 0 0 auto;
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid #d3d7e0;
    background: var(--white);
    transition: border-color .2s ease, background .2s ease;
}

.content-filter-product .filter-list--radio .filter-opt-mark {
    border-radius: 50%;
}

.content-filter-product .filter-list--check .filter-opt-mark {
    border-radius: .4rem;
}

.content-filter-product .filter-opt:hover .filter-opt-mark {
    border-color: var(--color-highlight);
}

.content-filter-product .filter-opt.active {
    background: rgba(222, 2, 4, .06);
    color: var(--color-highlight);
    font-weight: 700;
}

.content-filter-product .filter-opt.active .filter-opt-mark {
    border-color: var(--color-highlight);
    background: var(--color-highlight);
}

.content-filter-product .filter-list--radio .filter-opt.active .filter-opt-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: .6rem;
    height: .6rem;
    margin: -.3rem 0 0 -.3rem;
    border-radius: 50%;
    background: var(--white);
}

.content-filter-product .filter-list--check .filter-opt.active .filter-opt-mark::after {
    content: '';
    position: absolute;
    top: .2rem;
    left: .55rem;
    width: .4rem;
    height: .8rem;
    border: solid var(--white);
    border-width: 0 .2rem .2rem 0;
    transform: rotate(45deg);
}

.content-filter-product .filter-opt-name {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Số thương hiệu do người quản trị nhập; có danh mục trên 30 cái, không chặn thì
   nhóm này đẩy nút "Đặt lại" khỏi tầm nhìn. */
/* Bóng mờ hai mép báo "còn nữa": hai lớp nền `local` cuộn theo nội dung nên tự
   che bóng khi đã ở đầu hoặc cuối danh sách, và không hiện gì khi danh sách ngắn.
   Cần vì thanh cuộn ở Chrome/Windows là kiểu nổi, tắt sau một giây — 38 thương
   hiệu mà khung hở 8 dòng thì không còn gì báo là danh sách còn tiếp. */
.content-filter-product .filter-scroll {
    max-height: 30rem;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d3d7e0 #f2f3f6;
    background:
        linear-gradient(var(--white) 30%, rgba(255, 255, 255, 0)) top / 100% 1.6rem no-repeat local,
        linear-gradient(rgba(255, 255, 255, 0), var(--white) 70%) bottom / 100% 1.6rem no-repeat local,
        radial-gradient(farthest-side at 50% 0, rgba(17, 28, 45, .14), rgba(17, 28, 45, 0)) top / 100% .6rem no-repeat scroll,
        radial-gradient(farthest-side at 50% 100%, rgba(17, 28, 45, .14), rgba(17, 28, 45, 0)) bottom / 100% .6rem no-repeat scroll;
}

/* Thanh cuộn phải chiếm chỗ thật, không phải kiểu nổi: danh mục có 38 thương hiệu
   mà khung chỉ hở 8 dòng, thanh nổi thì tắt sau một giây và không còn gì báo là
   danh sách còn tiếp. */
.content-filter-product .filter-scroll::-webkit-scrollbar {
    width: .6rem;
}

.content-filter-product .filter-scroll::-webkit-scrollbar-track {
    border-radius: .4rem;
    background: #f2f3f6;
}

.content-filter-product .filter-scroll::-webkit-scrollbar-thumb {
    border-radius: .4rem;
    background: #d3d7e0;
}

.content-filter-product .filter-kind {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem;
    border-radius: 3rem;
    background: #f4f5f7;
}

.content-filter-product .filter-kind-chip {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-width: 0;
    height: 3.2rem;
    padding: 0 1.2rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-main);
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.content-filter-product .filter-kind-chip i {
    font-size: 1.3rem;
}

.content-filter-product .filter-kind-chip:hover {
    background: var(--white);
    color: var(--color-highlight);
    box-shadow: 0 .1rem .4rem rgba(17, 28, 45, .1);
    text-decoration: none;
}

.content-filter-product .filter-kind-chip.active,
.content-filter-product .filter-kind-chip.active:hover {
    background: var(--color-highlight);
    color: var(--white);
    box-shadow: 0 .2rem .6rem rgba(222, 2, 4, .28);
}

.content-filter-product .filter-foot {
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid #ececec;
}

.content-filter-product .filter-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    width: 100%;
    height: 4rem;
    padding: 0 1.4rem;
    border: 1px solid #e4e4e4;
    border-radius: .8rem;
    background: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    transition: border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.content-filter-product .filter-reset i {
    font-size: 1.3rem;
}

.content-filter-product .filter-reset:hover,
.content-filter-product .filter-reset:focus {
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    box-shadow: 0 .2rem .8rem rgba(222, 2, 4, .12);
    text-decoration: none;
}

.content-filter-product .price-slider {
    padding-top: .6rem;
}

.content-filter-product .price-track {
    position: relative;
    height: 1.8rem;
    margin: 0 .9rem;
}

.content-filter-product .price-track::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -.9rem;
    left: -.9rem;
    height: .4rem;
    margin-top: -.2rem;
    border-radius: 3rem;
    background: #e9eaee;
}

.content-filter-product .price-track-fill {
    position: absolute;
    top: 50%;
    height: .4rem;
    margin-top: -.2rem;
    border-radius: 3rem;
    background: var(--color-highlight);
}

/* Hai thanh chồng khít lên nhau, phần nền để `pointer-events: none` cho chuột
   rơi xuống thanh dưới — không thì thanh trên nuốt hết, tay kéo kia bấm không được. */
.content-filter-product .price-input {
    position: absolute;
    top: 50%;
    right: -.9rem;
    left: -.9rem;
    width: auto;
    height: 1.8rem;
    margin: -.9rem 0 0;
    padding: 0;
    border: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.content-filter-product .price-input:focus {
    outline: none;
}

.content-filter-product .price-input::-webkit-slider-runnable-track {
    height: 1.8rem;
    background: none;
    border: 0;
}

.content-filter-product .price-input::-webkit-slider-thumb {
    width: 1.8rem;
    height: 1.8rem;
    border: .2rem solid var(--color-highlight);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 .1rem .4rem rgba(17, 28, 45, .2);
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
}

.content-filter-product .price-input::-moz-range-track {
    height: 1.8rem;
    background: none;
    border: 0;
}

.content-filter-product .price-input::-moz-range-thumb {
    width: 1.4rem;
    height: 1.4rem;
    border: .2rem solid var(--color-highlight);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 .1rem .4rem rgba(17, 28, 45, .2);
    cursor: pointer;
    pointer-events: auto;
}

.content-filter-product .price-input:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 .3rem rgba(222, 2, 4, .2);
}

.content-filter-product .price-input:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 .3rem rgba(222, 2, 4, .2);
}

.content-filter-product .price-values {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.4rem;
}

.content-filter-product .price-value {
    flex: 1 1 0;
    min-width: 0;
    height: 3.2rem;
    padding: 0 .8rem;
    border: 1px solid #e4e4e4;
    border-radius: .8rem;
    background: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 3rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-main);
}

.content-filter-product .price-sep {
    flex: 0 0 auto;
    color: #b8bcc6;
}

.content-filter-product .price-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.6rem;
    margin-top: 1rem;
    border-radius: .8rem;
    background: var(--color-highlight);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    transition: box-shadow .25s ease, opacity .25s ease;
}

.content-filter-product .price-apply:hover,
.content-filter-product .price-apply:focus {
    color: var(--white);
    box-shadow: 0 .2rem .8rem rgba(222, 2, 4, .28);
    text-decoration: none;
}

/* Dưới 1200px `.content-filter-product` là ngăn kéo trượt (page.css), không phải
   thẻ trong cột trái — mọi thứ thuộc về khung thẻ phải nằm trong media này. */
@media (min-width: 1200px) {
    .content-filter-product {
        padding: 0;
        border: 1px solid #ececec;
        border-radius: 1.2rem;
        overflow: hidden;
        background: var(--white);
        box-shadow: 0 .2rem 1.2rem rgba(17, 28, 45, .06);
    }

    .content-filter-product .filter-panel-head {
        display: flex;
    }

    .content-filter-product .filter-panel-body {
        padding: 1.8rem;
    }
}

/* ==========================================================================
   Điện thoại: đầu trang và dải điều khiển trên lưới sản phẩm
   ========================================================================== */

/* Ba cột của `.header-menu-pc` là `col-md-*`, dưới md thì mỗi cột chiếm trọn một
   hàng: logo một hàng, nút menu một hàng, đăng nhập/giỏ hàng một hàng nữa. Dồn lại
   thành một hàng [☰] [logo] [đăng nhập] [giỏ], nhãn chữ rút thành biểu tượng. */
@media (max-width: 767.98px) {
    .header-menu-pc > .container > .row {
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    .header-menu-pc > .container > .row > div:nth-child(1) {
        order: 2;
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }

    .header-menu-pc > .container > .row > div:nth-child(2) {
        order: 1;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .header-menu-pc > .container > .row > div:nth-child(3) {
        order: 3;
        display: flex;
        align-items: center;
        gap: 4px;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .header-menu-pc .logo-section {
        text-align: center;
    }

    .header-menu-pc .logo-section img {
        max-height: 36px;
        width: auto;
    }

    .header-menu-pc .float-right,
    .header-menu-pc .float-lg-right {
        float: none !important;
    }

    .header-menu-pc .float-lg-right {
        order: 1;
    }

    .header-menu-pc .float-right {
        order: 2;
    }

    .header-menu-pc .btn-action-header {
        justify-content: center;
        width: 4rem;
        height: 4rem;
        gap: 0;
    }

    header .btn-action-header .title {
        display: none;
    }

    .header-menu-pc .items-number {
        top: .2rem;
        right: .2rem;
    }

    .header-search {
        padding-bottom: 1rem;
    }
}

/* Nút "Bộ lọc" trên điện thoại đứng một mình giữa hai thẻ, trước chỉ là dòng chữ
   trần cao 21px. Cho nó cùng chiều cao và bo góc với thanh "Danh mục" ngay trên. */
@media (max-width: 1199.98px) {
    .filter-url .btn-filter-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .8rem;
        width: 100%;
        min-height: 4.8rem;
        padding: 0 1.6rem;
        border: 1px solid #ececec;
        border-radius: 1.2rem;
        background: var(--white);
        box-shadow: 0 .2rem 1.2rem rgba(17, 28, 45, .06);
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: .05rem;
        text-transform: uppercase;
        color: var(--color-main);
        transition: border-color .25s ease, color .25s ease, box-shadow .25s ease;
    }

    .filter-url .btn-filter-mobile i {
        margin-right: 0;
        font-size: 1.6rem;
        color: var(--color-highlight);
    }

    .filter-url .btn-filter-mobile:hover,
    .filter-url .btn-filter-mobile:focus {
        border-color: var(--color-highlight);
        color: var(--color-highlight);
        box-shadow: 0 .2rem .8rem rgba(222, 2, 4, .12);
        text-decoration: none;
    }

    .filter-url {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    /* Nút menu đang là khối hồng `#f443364a` — màu material đỏ lạc khỏi bảng màu,
       lại to hơn hai biểu tượng bên phải. Kéo về cùng nền xám với dải viên thuốc.
       Không khoá vào `.header-menu-pc`: máy chủ đổi sang `.header-menu-mobile` khi
       nhận ra thiết bị, nút menu nằm ở cả hai. */
    .btn-menu-mobile {
        width: 4rem;
        height: 4rem;
        border-radius: 1.2rem;
        background: #f4f5f7;
        font-size: 2.2rem;
        color: var(--color-main);
    }
    .km-st-box {
    padding: 2rem 1rem;
}
    .btn-menu-mobile:hover,
    .btn-menu-mobile:focus {
        background: #ececf1;
        color: var(--color-highlight);
    }

    /* Khối bọc do hệ thống sinh ra mang sẵn `mb-5`, cộng với lề của từng thẻ thành
       ba khoảng hở lệch nhau. Gom về một khoảng 1.2rem cho cả dải. */
    [nh-block]:has(> .dm-wrap),
    [nh-block]:has(> .filter-url) {
        margin-bottom: 0 !important;
    }

    .warp-sap-xep-san-pham {
        margin-bottom: 1.6rem;
    }
}

/* ==========================================================================
   Danh mục sản phẩm — ngăn kéo trượt từ mép phải dưới 1200px
   Đối xứng với bộ lọc (trượt từ mép trái, page.css), dùng chung mốc 1200px.
   ========================================================================== */

.dm-open,
.dm-back-drop,
.warp-danh-muc-san-pham .dm-close {
    display: none;
}

@media (max-width: 1199.98px) {
    .dm-wrap {
        margin-bottom: 1.2rem;
    }

    .dm-open {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .8rem;
        width: 100%;
        min-height: 4.8rem;
        padding: 0 1.6rem;
        border: 1px solid #ececec;
        border-radius: 1.2rem;
        background: var(--color-main);
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: .05rem;
        text-transform: uppercase;
        color: var(--white);
        box-shadow: 0 .2rem 1.2rem rgba(17, 28, 45, .06);
        transition: background .25s ease, box-shadow .25s ease;
    }

    .dm-open:hover,
    .dm-open:focus {
        background: #1b2942;
        color: var(--white);
        box-shadow: 0 .4rem 1.4rem rgba(17, 28, 45, .18);
        text-decoration: none;
    }

    .dm-open-icon {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        color: var(--color-highlight);
    }

    .dm-open-icon svg {
        width: 2rem;
        height: 2rem;
    }

    .dm-open-text {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dm-back-drop {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1020;
        background: rgba(17, 28, 45, .38);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
    }

    .dm-back-drop.open {
        opacity: 1;
        visibility: visible;
    }

    .warp-danh-muc-san-pham {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        width: 29rem;
        max-width: 85vw;
        height: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: .1rem 0 .3rem rgba(0, 0, 0, .2);
        overflow-x: hidden;
        overflow-y: auto;
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
        transition: transform .3s cubic-bezier(.65, .05, .51, .82), visibility .3s cubic-bezier(.65, .05, .51, .82);
    }

    .warp-danh-muc-san-pham.open {
        visibility: visible;
        transform: translate3d(0, 0, 0);
    }

    /* Đầu ngăn kéo dính trên: cây danh mục dài, cuộn xuống vẫn phải thấy nút đóng. */
    .warp-danh-muc-san-pham .dm-head {
        position: sticky;
        top: 0;
        z-index: 1;
        min-height: 5.4rem;
        padding: 1.2rem 1.6rem;
    }

    .warp-danh-muc-san-pham .dm-head-title {
        font-size: 1.5rem;
    }

    .warp-danh-muc-san-pham .dm-close {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.2rem;
        height: 3.2rem;
        margin-right: -.6rem;
        border-radius: 50%;
        color: var(--white);
        transition: background .25s ease;
    }

    .warp-danh-muc-san-pham .dm-close:hover,
    .warp-danh-muc-san-pham .dm-close:focus {
        background: rgba(255, 255, 255, .14);
        color: var(--white);
    }

    .warp-danh-muc-san-pham .dm-close svg {
        width: 1.8rem;
        height: 1.8rem;
    }
}

/* ==========================================================================
   Dải điều khiển trên lưới sản phẩm, bản điện thoại

   Máy chủ nhận ra thiết bị và gắn `.is-mobile`; ở bản này "Danh mục" và "Bộ lọc"
   nằm trong MỘT hàng riêng hai cột `col-6`, khác hẳn bản desktop thu hẹp (hai khối
   xếp dọc trong cột trái). Đo bằng trình duyệt phải đặt User-Agent điện thoại, chỉ
   thu hẹp bề ngang thì ra bố cục kia.
   ========================================================================== */

@media (max-width: 767.98px) {
    /* Hai nút gộp thành một thẻ chia đôi, cùng vỏ với thẻ "Hiển thị / Sắp xếp"
       ngay trên: trước là hai hộp rời, một đặc màu một viền trắng, cao thấp khác
       thẻ kia — ba hình dạng cho cùng một việc. */
    .is-mobile .row:has(.dm-wrap):not(:has(.product-item)) {
        margin-right: 0;
        margin-left: 0;
        border: 1px solid #ececec;
        border-radius: 1.2rem;
        background: var(--white);
        box-shadow: 0 .2rem 1.2rem rgba(17, 28, 45, .06);
        overflow: hidden;
    }

    .is-mobile .row:has(.dm-wrap):not(:has(.product-item)) > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

    .is-mobile .row:has(.dm-wrap):not(:has(.product-item)) > [class*="col-"] + [class*="col-"] {
        border-left: 1px solid #ececec;
    }

    .is-mobile .row:has(.dm-wrap):not(:has(.product-item)) .dm-wrap,
    .is-mobile .row:has(.dm-wrap):not(:has(.product-item)) .filter-url {
        margin-bottom: 0;
    }

    .is-mobile .row:has(.dm-wrap) .dm-open,
    .is-mobile .row:has(.dm-wrap) .btn-filter-mobile {
        min-height: 5.2rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        color: var(--color-main);
    }

    .is-mobile .row:has(.dm-wrap) .dm-open:hover,
    .is-mobile .row:has(.dm-wrap) .dm-open:focus,
    .is-mobile .row:has(.dm-wrap) .btn-filter-mobile:hover,
    .is-mobile .row:has(.dm-wrap) .btn-filter-mobile:focus {
        background: #f6f6f7;
        color: var(--color-highlight);
        box-shadow: none;
    }

    /* Thẻ "Hiển thị / Sắp xếp" gộp hai hàng thành một: nhãn chữ nói lại đúng thứ
       mà ô điều khiển bên cạnh đã nói, bỏ đi còn biểu tượng là đủ. */
    .is-mobile .warp-sap-xep-san-pham {
        margin-bottom: 1.2rem;
        padding: 1.2rem 1.4rem;
    }

    .is-mobile .warp-sap-xep-san-pham .sx-inner {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .is-mobile .warp-sap-xep-san-pham .sx-group {
        flex: 1 1 0;
        min-width: 0;
        gap: .8rem;
    }

    .is-mobile .warp-sap-xep-san-pham .sx-group:first-child {
        flex: 0 0 auto;
    }

    .is-mobile .warp-sap-xep-san-pham .sx-label {
        min-width: 0;
        font-size: 0;
        letter-spacing: 0;
    }

    .is-mobile .warp-sap-xep-san-pham .sx-label-icon svg {
        width: 1.8rem;
        height: 1.8rem;
    }

    .is-mobile .warp-sap-xep-san-pham .sx-pill {
        min-width: 3.2rem;
        padding: 0 .8rem;
        font-size: 1.3rem;
    }

    .is-mobile .warp-sap-xep-san-pham .sx-toggle {
        height: 3.4rem;
    }
}

/* ============================================================
   Thanh mua hàng ghim đáy — chi tiết sản phẩm ở khổ điện thoại

   Ghim chính `.product-purchase` chứ không dựng thanh thứ hai: mọi móc
   `nh-quantity-product` và `nh-btn-action="add-cart"` trong khối là duy nhất trên
   trang, nhân bản thì `product.js` bắt phải ô số lượng của bản kia.

   Giấu thanh điều hướng đáy bằng `:has(.product-purchase)`: khách chưa đăng nhập
   không thấy giá nên cũng không có khối mua hàng — bỏ thanh ấy đi là trang không
   còn lối nào ở đáy. Dò bằng `.toolbar` chứ không bằng mã block: mã do admin sinh.
   ============================================================ */
body.is-mobile.product_detail:has(.product-purchase) .toolbar {
    display: none;
}

body.is-mobile.product_detail .product-purchase {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--pd-line);
    background-color: var(--white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
}

body.is-mobile.product_detail .product-purchase .product-quantity-wrap {
    flex: 0 0 auto;
    gap: 0;
}

body.is-mobile.product_detail .product-purchase .quantity-label {
    display: none;
}

body.is-mobile.product_detail .product-purchase .product-quantity {
    padding: 2px 4px;
    border-radius: 10px;
}

body.is-mobile.product_detail .product-purchase .product-quantity .btn-quantity {
    width: 28px;
    height: 28px;
}

body.is-mobile.product_detail .product-purchase .product-quantity input {
    width: 34px;
    height: 30px;
    font-size: 14px;
}

body.is-mobile.product_detail .product-purchase .btn-cart-buy {
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: 0;
}

/* `line-height` gốc là 4.8rem, cao hơn cả nút — không đặt lại thì chữ đẩy nút phình
   quá 36px. */
body.is-mobile.product_detail .product-purchase .add-to-cart {
    flex: 1 1 auto;
    height: 36px;
    line-height: 1;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: none;
}

body.is-mobile.product_detail .product-purchase .add-to-cart.add-to-wishlist {
    flex: 0 0 36px;
    width: 36px;
    padding: 0;
}

body.is-mobile.product_detail .product-purchase .wishlist-label {
    display: none;
}

body.is-mobile.product_detail .product-purchase .add-to-cart.add-to-wishlist i {
    margin: 0;
    font-size: 16px;
}

body.is-mobile.product_detail .product-purchase .btn-contact-order,
body.is-mobile.product_detail .product-purchase .out-of-stock {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 14px;
    border-radius: 12px;
}

/* Thanh thanh toán ghim đáy — trang thông tin đơn hàng ở điện thoại.
   Giống thanh "Thêm giỏ hàng" của chi tiết sản phẩm: thay thanh điều hướng đáy bằng hành
   động chính của trang, còn phần tổng kết đầy đủ vẫn nằm trong nội dung để kiểm tra. */
.co-mobile-checkout {
    display: none;
}

@media (max-width: 767.98px) {
    body.is-mobile:has(.co-mobile-checkout) .toolbar {
        display: none;
    }

    body.is-mobile:has(.co-mobile-checkout) [nh-order-info],
    body.is-mobile:has(.co-mobile-checkout) .co-page {
        padding-bottom: 30px;
    }

    #order-info-right .co-sticky-summary .co-pay,
    .co-card-payment .co-pay {
        display: none;
    }

    .co-mobile-checkout {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--co-line);
        background: #fff;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, .12);
    }

    .co-mobile-checkout-total {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        min-width: 0;
        margin: 0;
        padding: 0;
        border: 0;
    }

    .co-mobile-checkout-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--co-muted);
    }

    .co-mobile-checkout-value {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--color-highlight);
        white-space: nowrap;
    }

    .co-mobile-checkout .co-btn-lg {
        flex: 0 0 45%;
        width: auto;
        min-width: 140px;
        height: 42px;
        padding: 0 12px;
        border-radius: 10px;
        font-size: 13px;
        box-shadow: none;
    }
}

@media (max-width:576px){
  [nh-order-info], .co-page {
        padding-bottom: 20px;
    }
    .co-btn-lg {
        height: 46px;
        font-size: 14px;
    }
}
