input[type="text"],
input[type="tel"],
input[type="search"],
textarea {
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
}

a {
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

.gap-25 {
  gap: 15px;
}

.small-scrollbar::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: transparent;
}

.small-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.small-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: transparent;
  transition: background-color 0.3s;
}

.small-scrollbar:hover::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.small-scrollbar:hover::-webkit-scrollbar-thumb {
  background-color: #e5e5e5;
}

@media (max-width: 767px) {
  .wolf-scroll-mb {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
}

@media (max-width: 991px) {
  .wolf-scroll-tab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
  }

  .wolf-scroll-tab::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px;
    height: 4px;
  }

  .wolf-scroll-tab::-webkit-scrollbar-thumb {
    background-color: #828282;
    background-clip: padding-box;
  }

  .wolf-scroll-tab::-webkit-scrollbar-track {
    background-color: #e0e0e0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .wolf-scroll-tab-not-mb {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
  }

  .wolf-scroll-tab-not-mb::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px;
    height: 4px;
  }

  .wolf-scroll-tab-not-mb::-webkit-scrollbar-thumb {
    background-color: #828282;
    background-clip: padding-box;
  }

  .wolf-scroll-tab-not-mb::-webkit-scrollbar-track {
    background-color: #e0e0e0;
  }
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #ffffff;
  color: var(--main-text-color);
  transition: all 0.3s ease;
  overflow-x: hidden;
}

body.nav-is-active .nav-main-backdrop {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-out;
}

body.nav-is-active .wolf-nav-main {
  z-index: 99;
  transform: translateY(-1px);
}

.wolf-main-title {
  font-weight: 600;
}

.wolf-btn {
  color: #fff;
  background-color: var(--second-color);
  border: 1px solid var(--second-color);
  font-weight: 600;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.wolf-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background-color: var(--second-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.wolf-btn:hover,
.wolf-btn:focus {
  color: #fff;
}

.wolf-btn:hover:after,
.wolf-btn:focus:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}

@media (min-width: 992px) {
  .col-20-percent {
    flex: 0 0 auto;
    width: 20%;
  }

  .col-40-percent {
    flex: 0 0 auto;
    width: 40%;
  }
}

.swiper .swiper-pagination {
  bottom: 14px;
  top: auto;
  height: 2px;
  background-color: #dcdcdc;
  margin-left: 40px;
  margin-right: 40px;
  width: calc(100% - 80px);
}

.swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #333;
}

.swiper .swiper-pagination-bullet-active {
  background: var(--main-color);
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  z-index: 2;
  bottom: 0;
  top: auto;
}

.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
  font-size: 15px;
  color: var(--main-text-color);
}

.swiper .swiper-button-prev.swiper-button-disabled,
.swiper .swiper-button-next.swiper-button-disabled {
  display: none;
}

@media (min-width: 992px) {
  .swiper .swiper-button-prev:hover,
  .swiper .swiper-button-next:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
  }

  .swiper .swiper-button-prev:hover:after,
  .swiper .swiper-button-next:hover:after {
    color: #fff;
  }
}

.swiper .swiper-button-prev {
  left: 5px;
}

.swiper .swiper-button-next {
  right: 5px;
}

.swiper.wolf-swiper .swiper-button-prev,
.swiper.wolf-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: #fff;
  color: #000;
  border-radius: 100%;
  box-shadow: 0 0.125rem 0.625rem rgba(28, 28, 28, 0.15);
  place-items: center;
  border: none;
  top: var(--swiper-navigation-top-offset, 50%);
  bottom: auto;
  opacity: 0;
  z-index: 3;
}

.swiper.wolf-swiper .swiper-button-prev:after,
.swiper.wolf-swiper .swiper-button-next:after {
  font-size: 18px;
  transition: transform 0.2s;
}

@media (min-width: 992px) {
  .swiper.wolf-swiper .swiper-button-prev:hover,
  .swiper.wolf-swiper .swiper-button-prev:focus,
  .swiper.wolf-swiper .swiper-button-next:hover,
  .swiper.wolf-swiper .swiper-button-next:focus {
    background-color: #fff;
  }

  .swiper.wolf-swiper .swiper-button-prev:hover:after,
  .swiper.wolf-swiper .swiper-button-prev:focus:after,
  .swiper.wolf-swiper .swiper-button-next:hover:after,
  .swiper.wolf-swiper .swiper-button-next:focus:after {
    color: var(--main-text-color);
    animation-direction: reverse;
    animation: 0.35s ease-in-out forwards animateIconInline;
  }
}

.swiper.wolf-swiper .swiper-pagination:not(.swiper-pagination-progressbar) {
  bottom: 15px;
  background-color: rgba(9, 13, 20, 0.5);
  border-radius: 50px;
  padding: 10px;
  width: auto;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translate(-50%, 0);
  margin-left: 0;
  margin-right: 0;
}

.swiper.wolf-swiper
  .swiper-pagination:not(.swiper-pagination-progressbar)
  .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.8);
  transition-delay: 0s;
  transition-duration: 0.3s;
  transition-property: all;
}

.swiper.wolf-swiper
  .swiper-pagination:not(.swiper-pagination-progressbar)
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
  width: 16px;
  border-radius: 30px;
}

@media (min-width: 992px) {
  .swiper.wolf-swiper:hover .swiper-button-prev,
  .swiper.wolf-swiper:hover .swiper-button-next {
    opacity: 1;
  }
}

@keyframes animateIconInline {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }

  50% {
    opacity: 0;
    transform: translateX(100%);
  }

  51% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.wolf-header {
  background-color: transparent;
  color: var(--text-header-color);
  z-index: 100;
  position: absolute;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wolf-header .wolf-logo img {
  max-height: 30px;
  width: auto;
}

@media (max-width: 991px) {
  .wolf-header .wolf-logo img {
    max-height: 25px;
  }
}

.wolf-header .wolf-logo .wolf-category-mobile-button {
  color: #fff;
}

.wolf-header .wolf-function-group .btn-header {
  color: var(--text-header-color);
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width: 1024px) {
  .wolf-header .wolf-function-group .btn-header {
    font-size: 15px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.wolf-header .wolf-function-group .btn-header .cart-item-count {
  color: #000;
  top: 0;
  right: -10px;
}

.wolf-header .wolf-function-group .btn-header #wishlistCountBadge {
  top: 0;
  right: -15px;
}

.wolf-header .wolf-function-group .btn-header .cart-text {
  font-size: 14px;
}

@media (min-width: 992px) {
  .wolf-header .wolf-function-group .btn-header:hover,
  .wolf-header .wolf-function-group .btn-header:focus {
    color: var(--second-color);
  }
}

@media (min-width: 1200px) and (max-width: 1250px) {
  .wolf-header .wolf-function-group .btn-header .cart-text {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .wolf-header .wolf-function-group .btn-header .cart-text {
    display: none;
  }
}

@media (max-width: 569px) {
  .wolf-header .wolf-function-group .btn-header .cart-text {
    display: none;
  }
}

.wolf-header .wolf-function-group .wolf-account > a:before {
  content: "";
  width: 200px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  bottom: -14px;
  z-index: 999;
  left: auto;
  right: -50px;
  display: none;
}

.wolf-header .wolf-function-group .wolf-account ul {
  list-style: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  width: auto;
  min-width: 196px;
  z-index: 15;
  top: 51px;
  left: calc(50%);
  transform: translateX(-50%);
  display: none;
}

.wolf-header .wolf-function-group .wolf-account ul::before {
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent #fff;
  border-image: initial;
  margin-left: -9px;
  bottom: 100%;
  left: 50%;
  content: " ";
  height: 0px;
  width: 0px;
  position: absolute;
  pointer-events: none;
}

.wolf-header .wolf-function-group .wolf-account ul li a {
  color: var(--main-text-color);
}

@media (min-width: 992px) {
  .wolf-header .wolf-function-group .wolf-account ul li a:hover,
  .wolf-header .wolf-function-group .wolf-account ul li a:focus {
    color: var(--second-color);
  }
}

.wolf-header .wolf-function-group .wolf-account:hover > a:before {
  display: block;
}

.wolf-header .wolf-function-group .wolf-account:hover ul {
  display: block;
}

.wolf-header .wolf-bottom-header-content {
  position: relative;
}

@media (max-width: 991px) {
  .wolf-header .wolf-bottom-header-content {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background-color: var(--second-color);
    z-index: 1041;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .wolf-header .wolf-bottom-header-content.is-active {
    transform: translateX(0);
  }

  .wolf-header .wolf-bottom-header-content .mobile-menu-header {
    padding: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #9d6800;
  }

  .wolf-header .wolf-bottom-header-content .mobile-menu-header .logo-black img {
    max-height: 22px;
    width: auto;
  }

  .wolf-header
    .wolf-bottom-header-content
    .mobile-menu-header
    .close-menu-button {
    color: #fff;
  }
}

.wolf-header .wolf-bottom-header-content .scroll-container {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex-grow: 1;
}

.wolf-header .wolf-bottom-header-content .scroll-container::-webkit-scrollbar {
  display: none;
}

@media (max-width: 991px) {
  .wolf-header .wolf-bottom-header-content .scroll-container {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
  }
}

.wolf-header .wolf-bottom-header-content .second-nav {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  overflow: visible;
  position: static;
  transition: margin-left 300ms ease-in-out;
}

@media (max-width: 991px) {
  .wolf-header .wolf-bottom-header-content .second-nav {
    flex-direction: column !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 0 10px 10px 10px;
  }
}

@media (max-width: 991px) {
  .wolf-header .wolf-bottom-header-content .second-nav .nav-second-root {
    position: relative !important;
  }
}

.wolf-header .wolf-bottom-header-content .second-nav .nav-second-root > a {
  color: var(--text-header-color);
  font-weight: 700;
  padding: 9px 3px;
  font-size: 15px;
}

@media (min-width: 992px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root
    > a:hover,
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root
    > a:focus {
    color: var(--second-color);
  }
}

@media (max-width: 991px) {
  .wolf-header .wolf-bottom-header-content .second-nav .nav-second-root > a {
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root
    > a
    svg {
    margin-left: auto;
  }
}

.wolf-header
  .wolf-bottom-header-content
  .second-nav
  .nav-second-root.nav-has-sub-menu
  .wolf-bottom-header-menu {
  font-size: 15px;
}

@media (min-width: 992px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu
    .wolf-bottom-header-menu {
    box-shadow: 0 -2px 15px 0 rgba(0, 0, 0, 0.078);
    padding: 0;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    top: 100%;
    z-index: 999;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: none;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
    transform-origin: top;
  }
}

@media (max-width: 991px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu
    .wolf-bottom-header-menu {
    position: relative !important;
    display: none;
    padding-left: 10px;
    background-color: transparent;
    box-shadow: none;
    list-style: none;
  }

  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu
    .wolf-bottom-header-menu.submenu-is-active {
    display: block;
  }
}

.wolf-header
  .wolf-bottom-header-content
  .second-nav
  .nav-second-root.nav-has-sub-menu
  .wolf-bottom-header-menu:before {
  content: "";
  width: 100%;
  height: 22px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  top: -16px;
  z-index: 999;
  left: 0;
  display: none;
}

.wolf-header
  .wolf-bottom-header-content
  .second-nav
  .nav-second-root.nav-has-sub-menu
  .wolf-bottom-header-menu
  li
  a {
  padding: 8px;
  color: var(--main-text-color);
}

@media (min-width: 992px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu
    .wolf-bottom-header-menu
    li
    a:hover {
    background-color: var(--second-color);
    color: #fff;
  }
}

@media (max-width: 991px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu
    .wolf-bottom-header-menu
    li
    a {
    color: var(--text-header-color);
  }
}

.wolf-header
  .wolf-bottom-header-content
  .second-nav
  .nav-second-root.nav-has-sub-menu
  .wolf-bottom-header-menu
  li
  + li {
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 991px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu
    .wolf-bottom-header-menu
    li
    + li {
    border-color: rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 992px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu:hover
    .wolf-bottom-header-menu {
    display: block;
    animation: showAnimation 0.5s ease-in-out;
    opacity: 1;
    transform: scaleY(1);
    transition: max-height 2s ease-in-out;
    visibility: visible;
  }

  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu:hover
    .wolf-bottom-header-menu:before {
    display: block;
  }
}

@media (max-width: 991px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu
    > a
    > .icon {
    transition: transform 0.3s ease;
  }

  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root.nav-has-sub-menu
    > a.is-open
    > .icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
}

.wolf-header
  .wolf-bottom-header-content
  .second-nav
  .nav-second-root
  .nav-second-menu-has-sub
  .wolf-bottom-header-menu-2 {
  font-size: 15px;
}

@media (min-width: 992px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root
    .nav-second-menu-has-sub
    .wolf-bottom-header-menu-2 {
    box-shadow: 0 -2px 15px 0 rgba(0, 0, 0, 0.078);
    padding: 0;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    top: 0;
    left: 100%;
    z-index: 999;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: none;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
    transform-origin: top;
  }
}

@media (max-width: 991px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root
    .nav-second-menu-has-sub
    .wolf-bottom-header-menu-2 {
    position: relative !important;
    display: none;
    padding-left: 10px;
    background-color: transparent;
    box-shadow: none;
    list-style: none;
  }

  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root
    .nav-second-menu-has-sub
    .wolf-bottom-header-menu-2.submenu-is-active {
    display: block;
  }
}

@media (min-width: 992px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root
    .nav-second-menu-has-sub:hover
    .wolf-bottom-header-menu-2 {
    display: block;
    animation: showAnimation 0.5s ease-in-out;
    opacity: 1;
    transform: scaleY(1);
    transition: max-height 2s ease-in-out;
    visibility: visible;
  }
}

@media (max-width: 991px) {
  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root
    .nav-second-menu-has-sub
    > a
    > .icon {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }

  .wolf-header
    .wolf-bottom-header-content
    .second-nav
    .nav-second-root
    .nav-second-menu-has-sub
    > a.is-open
    > .icon {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
  }
}

.wolf-header .wolf-bottom-header-content .wolf-navigation-arrows {
  display: none;
}

.wolf-header .wolf-bottom-header-content .wolf-navigation-arrows button {
  color: var(--btn-header-color);
  padding-left: 6px;
  padding-right: 6px;
}

.wolf-header .wolf-bottom-header-content .wolf-navigation-arrows button:hover {
  color: var(--second-color);
}

.wolf-header .wolf-bottom-header-content .wolf-navigation-arrows.active {
  display: flex;
}

.wolf-header .wolf-bottom-header-content .wolf-navigation-arrows.active .btn {
  padding-left: 6px;
  padding-right: 6px;
}

@keyframes showAnimation {
  0% {
    opacity: 0;
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.04);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.02);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.search-body {
  position: fixed;
  top: 20px !important;
  right: 20px;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  min-width: 160px;
  padding: 20px;
  background: #fff;
  backdrop-filter: blur(15px);
  box-shadow:
    0px 4px 12px rgba(0, 0, 0, 0.2),
    0px 1px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.95) translateY(-5px);
  pointer-events: none;
  transform-origin: top right;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 1001;
  max-height: 30%;
  overflow-y: scroll;
}

.search-body .close-search-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--main-text-color);
}

.search-body .close-search-button:hover,
.search-body .close-search-button:focus {
  color: var(--second-color);
}

@media (max-width: 767px) {
  .search-body {
    padding: 15px;
  }
}

.search-body.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.search-body::-webkit-scrollbar {
  width: 0;
}

.search-body .smart-search {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.search-body .smart-search input {
  border-color: var(--border-color);
  color: var(--main-text-color);
  padding-right: 40px;
}

.search-body .smart-search .btn-search {
  z-index: 5;
  padding: 5px 10px;
}

.search-body .smart-search .btn-search:hover,
.search-body .smart-search .btn-search:focus {
  color: var(--second-color);
  background-color: transparent;
}

.search-body .spinner-border {
  border-color: var(--main-color);
  border-right-color: transparent;
}

.search-body #searchHistoryBox h6 {
  color: var(--main-text-color);
}

@media (min-width: 992px) {
  .search-body #searchHistoryBox .clear-history:hover,
  .search-body #searchHistoryBox .clear-history:focus {
    color: var(--second-color) !important;
  }
}

.search-body #searchHistoryBox .recent-keywords-wrapper .recent-term {
  background-color: #edf2f7;
  padding: 5px 15px;
  color: #4a5568;
}

@media (min-width: 992px) {
  .search-body #searchHistoryBox .recent-keywords-wrapper .recent-term:hover {
    background-color: #e2e8f0;
  }
}

.search-body #defaultCategoryModule h6 {
  color: var(--main-text-color);
}

.search-body #defaultCategoryModule .default-keywords-wrapper .default-term {
  border: 1px solid var(--border-color);
}

.search-body
  #defaultCategoryModule
  .default-keywords-wrapper
  .default-term:hover,
.search-body
  #defaultCategoryModule
  .default-keywords-wrapper
  .default-term:focus {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.search-body #searchResultsBox .title {
  color: var(--main-text-color);
}

.search-body #searchResultsBox ul {
  padding: 0;
  list-style: none;
}

.search-body #searchResultsBox ul li .image {
  overflow: hidden;
  width: 120px;
  aspect-ratio: 1;
  flex: 0 0 auto;
}

.search-body #searchResultsBox ul li .image img {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  object-fit: contain;
  width: auto;
  max-height: 100%;
}

.search-body #searchResultsBox ul li .content {
  min-width: 0;
}

.search-body #searchResultsBox ul li .content .title {
  color: var(--main-text-color);
  font-size: 15px;
  font-weight: 600;
}

.search-body #searchResultsBox ul li .content .date {
  color: #848484;
  font-size: 14px;
}

.search-body #searchResultsBox ul li .content .summary {
  color: #333;
  font-size: 14px;
  line-height: 1.3;
}

.search-body #searchResultsBox ul li + li {
  border-top: 1px solid var(--border-color);
  margin-top: 7px;
  padding-top: 7px;
}

.search-body #searchResultsBox ul li a:hover .content .title {
  color: var(--second-color);
}

#search-backdrop {
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#search-backdrop.show {
  visibility: visible;
  opacity: 1;
}

.menu-backdrop {
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 96;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.menu-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.wolf-footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.wolf-footer .h5,
.wolf-footer .h3 {
  font-weight: 700;
  color: var(--footer-text-color);
}

.wolf-footer a {
  transition: all 0.3s ease-in-out;
}

.wolf-footer .zalo_ft {
  font-weight: 700;
}

.wolf-footer .zalo_ft a img {
  margin-right: 10px;
}

.wolf-footer .footer-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .wolf-footer .footer-header .footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }
}

.wolf-footer .footer-header .footer-logo img {
  padding: 5px;
  background-color: #fff;
  max-height: 65px;
  width: auto;
}

.wolf-footer .wolf-footer-information a {
  color: var(--footer-text-color);
}

@media (min-width: 992px) {
  .wolf-footer .wolf-footer-information a:hover,
  .wolf-footer .wolf-footer-information a:focus {
    color: var(--footer-hover-color);
  }
}

.wolf-footer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.wolf-footer .footer-social a {
  background-color: #fff;
  height: 45px;
  width: 45px;
  padding: 4px;
}

.wolf-footer .footer-social a svg {
  width: 30px;
  height: 30px;
  color: var(--footer-bg-color);
  transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) {
  .wolf-footer .footer-social a:hover {
    background-color: var(--footer-hover-color);
  }

  .wolf-footer .footer-social a:hover svg {
    color: #fff;
  }
}

.wolf-footer .footer-information svg {
  flex: 0 0 auto;
  width: 20px;
}

.wolf-footer .wolf-footer-menu a {
  color: var(--footer-text-color);
}

@media (min-width: 992px) {
  .wolf-footer .wolf-footer-menu a:hover {
    color: var(--footer-hover-color);
  }
}

.wolf-footer .wolf-footer-menu .language-select a {
  color: var(--main-text-color);
}

.wolf-footer .copyright a {
  color: var(--footer-text-color);
}

@media (min-width: 992px) {
  .wolf-footer .copyright a:hover {
    color: var(--footer-hover-color);
  }
}

.wolf-footer .border-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .wolf-footer .copyright-bct {
    text-align: center;
  }
}

.wolf-breadcrumb {

  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 200px 0 110px;
  text-align: center;
  color: #fff;
}

@media (max-width: 991px) {
  .wolf-breadcrumb {
    padding: 150px 0 80px;
  }
}

@media (max-width: 767px) {
  .wolf-breadcrumb {
    padding: 120px 0 50px;
  }
}

.wolf-breadcrumb .wolf-breadcrumb-title {
  font-weight: 700;
  font-size: 40px;
}

@media (max-width: 1024px) {
  .wolf-breadcrumb .wolf-breadcrumb-title {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .wolf-breadcrumb .wolf-breadcrumb-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .wolf-breadcrumb .wolf-breadcrumb-title {
    font-size: 20px;
    line-height: 1.3;
  }
}

.wolf-breadcrumb .breadcrumb {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .wolf-breadcrumb .breadcrumb {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .wolf-breadcrumb .breadcrumb {
    font-size: 14px;
  }
}

.wolf-breadcrumb .breadcrumb a {
  color: #fff;
}

@media (min-width: 992px) {
  .wolf-breadcrumb .breadcrumb a:hover,
  .wolf-breadcrumb .breadcrumb a:focus {
    color: var(--second-color);
  }
}

.wolf-breadcrumb .breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.wolf-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.wolf-product-item-card.product-card-fluent {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.65rem;
  transition: all 0.25s ease-in-out;
  background-color: #fff;
}

.wolf-product-item-card.product-card-fluent:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.wolf-product-item-card.product-card-fluent .product-card-img-container {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
}

.wolf-product-item-card.product-card-fluent
  .product-card-img-container
  .sale-tag {
  background-color: var(--color_tag_sale);
  color: #fff;
}

.wolf-product-item-card.product-card-fluent
  .product-card-img-container
  .card-img-top {
  border-radius: 0.65rem 0.65rem 0 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  object-fit: contain;
  width: auto;
  max-height: 100%;
}

.wolf-product-item-card.product-card-fluent
  .product-card-img-container
  .product-card-actions {
  opacity: 0;
  transition: all 0.25s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wolf-product-item-card.product-card-fluent
  .product-card-img-container
  .product-card-actions
  .btn-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.wolf-product-item-card.product-card-fluent
  .product-card-img-container
  .product-card-actions
  .btn-icon:hover,
.wolf-product-item-card.product-card-fluent
  .product-card-img-container
  .product-card-actions
  .btn-icon:focus {
  color: #fff;
  background-color: var(--second-color);
}

.wolf-product-item-card.product-card-fluent
  .product-card-img-container:hover
  .product-card-actions {
  opacity: 1;
}

.wolf-product-item-card.product-card-fluent .product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  min-height: 36px;
}

@media (max-width: 480px) {
  .wolf-product-item-card.product-card-fluent .product-title {
    font-size: 14px;
    min-height: 34px;
  }
}

.wolf-product-item-card.product-card-fluent .product-title a {
  color: var(--main-text-color);
}

.wolf-product-item-card.product-card-fluent .product-title:hover {
  color: var(--second-color);
}

.wolf-product-item-card.product-card-fluent .product-title:hover a {
  color: var(--second-color);
}

.wolf-product-item-card.product-card-fluent
  .product-rating
  .sapo-product-reviews-badge
  .sapo-product-reviews-star
  i {
  font-size: 14px;
}

.wolf-product-item-card.product-card-fluent
  .product-rating
  .wolf-proudct-rating-star {
  font-size: 14px;
}

.wolf-product-item-card.product-card-fluent
  .product-rating
  .wolf-proudct-rating-star
  svg {
  color: #ffbe00;
}

.wolf-product-item-card.product-card-fluent
  .product-rating
  .wolf-proudct-rating-star
  .zero-rate {
  color: #ffbe00;
  font-weight: 600;
}

.wolf-product-item-card.product-card-fluent
  .product-rating
  .wolf-proudct-rating-star
  .zero-text {
  color: #6d6e72;
}

@media (max-width: 1024px) {
  .wolf-product-item-card.product-card-fluent
    .product-rating
    .wolf-proudct-rating-star
    .zero-text {
    display: none;
  }
}

.wolf-product-item-card.product-card-fluent .product-price {
  line-height: 1.1;
}

@media (min-width: 992px) and (max-width: 1024px) {
  .wolf-product-item-card.product-card-fluent .product-price {
    min-height: 36px;
  }
}

@media (max-width: 480px) {
  .wolf-product-item-card.product-card-fluent .product-price {
    min-height: 36px;
  }
}

.wolf-product-item-card.product-card-fluent .product-price .main-price {
  color: var(--price-color);
  font-weight: 700;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .wolf-product-item-card.product-card-fluent .product-price .main-price {
    font-size: 14px;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .wolf-product-item-card.product-card-fluent .product-price .main-price {
    font-size: 14px;
  }
}

.wolf-product-item-card.product-card-fluent .product-price .sale-price {
  color: #6d6e72;
  font-size: 13px;
}

@media (max-width: 480px) {
  .wolf-product-item-card.product-card-fluent .product-price .sale-price {
    font-size: 12px;
  }
}

.wolf-product-item-card.product-card-fluent .deal-progress-bar .progress {
  background-color: #ffe7df;
  height: 12px;
}

.wolf-product-item-card.product-card-fluent .deal-progress-bar .sold-text {
  font-size: 12px;
  color: var(--second-color);
  margin-bottom: 4px;
  font-weight: 500;
}

.wolf-product-item-card.product-card-fluent
  .deal-progress-bar
  .sold-text
  .urgent-text {
  animation: pulse 1.5s infinite;
  color: #dc3545;
}

.wolf-product-item-card.product-card-fluent .wolf-product-action button {
  width: 100%;
  color: var(--main-color);
  background-color: #fff;
  border-color: var(--main-color);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .wolf-product-item-card.product-card-fluent .wolf-product-action button {
    font-size: 14px;
  }
}

.wolf-product-item-card.product-card-fluent .wolf-product-action button:hover,
.wolf-product-item-card.product-card-fluent .wolf-product-action button:focus {
  color: #fff;
  background-color: var(--main-color);
}

@media (max-width: 480px) {
  .wolf-product-item-card.product-card-fluent .wolf-product-action button {
    font-size: 14px;
    padding: 6px;
  }
}

.wolf-product-item-card.product-card-fluent
  .wolf-product-action
  button
  .text-center.d-flex {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.wolf-product-item-card.product-card-fluent
  .wolf-product-action
  button
  .text-center.d-flex
  .spinner-border {
  width: 24px;
  height: 24px;
  color: var(--second-color) !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.paginate-pages .pagination {
  margin-bottom: 0;
  margin-top: 10px;
}

.paginate-pages .pagination .page-item .page-link {
  background-color: #fff;
  color: var(--main-text-color);
  font-size: 16px;
  border: 1px solid transparent;
  padding: 5px 10px;
  text-align: center;
  font-weight: 500;
  min-width: 50px;
}

@media (min-width: 992px) {
  .paginate-pages .pagination .page-item .page-link:hover,
  .paginate-pages .pagination .page-item .page-link:focus {
    background-color: rgba(19, 19, 19, 0.06);
    border-color: var(--border-color);
    color: var(--main-text-color);
    box-shadow: none;
    outline: none;
  }
}

.paginate-pages .pagination .page-item.disabled .page-link {
  background-color: #e9ecef;
  color: #212529;
}

.paginate-pages .pagination .page-item.active .page-link {
  background-color: rgba(19, 19, 19, 0.06);
  border-color: var(--border-color);
  color: var(--main-text-color);
  box-shadow: none;
  outline: none;
}

#promoBannerPopup {
  top: 0 !important;
  background-color: transparent;
}

#promoBannerPopup .modal-content {
  background-color: transparent;
}

#promoBannerPopup .modal-content img {
  max-width: 350px;
}

#promoBannerPopup .btn-close {
  color: #fff;
  opacity: 1;
  filter: invert(1);
  z-index: 99;
}

#toastNotification {
  z-index: 999 !important;
  right: 15px;
}

#popup-cart-mobile .modal-content {
  border: none;
}

#popup-cart-mobile .modal-content .modal-header {
  background-color: var(--second-color);
  color: #fff;
  padding: 10px 16px;
}

#popup-cart-mobile .modal-content .modal-header .modal-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

#popup-cart-mobile .modal-content .modal-header .btn-close {
  filter: invert(1);
  opacity: 0.9;
}

@media (min-width: 992px) {
  #popup-cart-mobile .modal-content .modal-header .btn-close:hover {
    opacity: 0.5;
  }
}

#popup-cart-mobile
  .modal-content
  .bodycart-mobile
  .body_content
  .product-title {
  font-size: 16px;
}

#popup-cart-mobile
  .modal-content
  .bodycart-mobile
  .body_content
  .product-title
  a {
  color: var(--main-text-color);
}

@media (min-width: 992px) {
  #popup-cart-mobile
    .modal-content
    .bodycart-mobile
    .body_content
    .product-title
    a:hover,
  #popup-cart-mobile
    .modal-content
    .bodycart-mobile
    .body_content
    .product-title
    a:focus {
    color: var(--main-color);
  }
}

#popup-cart-mobile
  .modal-content
  .bodycart-mobile
  .body_content
  .product-new-price
  b {
  color: var(--main-color);
  font-weight: 500;
}

@media (min-width: 992px) {
  #popup-cart-mobile .modal-content .noti-cart-count:hover {
    color: var(--second-color) !important;
  }

  #popup-cart-mobile .modal-content .noti-cart-count:hover svg {
    color: var(--second-color) !important;
  }
}

.js-free-shipping {
  position: relative;
  height: 25px;
  margin: 10px 0;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .js-free-shipping {
    margin-top: 0;
  }
}

.js-free-shipping .free-shipping-content {
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 25px;
  color: #333;
  font-weight: 500;
  left: 0;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 5px;
}

.js-free-shipping .free-shipping-content .white {
  color: #fff;
}

.popup-sapo {
  position: fixed;
  bottom: 135px;
  left: 17px;
  margin: 0;
  z-index: 90;
  top: auto !important;
}

@media (max-width: 767px) {
  .popup-sapo {
    bottom: 165px;
  }
}

.popup-sapo .icon {
  position: relative;
  z-index: 4;
  height: 48px;
  width: 48px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--second-color);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  animation: pulse 2s infinite;
  color: #fff;
  line-height: 44px;
}

.popup-sapo .content {
  background-color: var(--second-color);
  color: #fff;
  padding: 20px 10px 40px;
  border-radius: 10px;
  width: 300px;
  position: absolute;
  bottom: 27px;
  left: 20px;
  -webkit-transform-origin: 100% bottom;
  transform-origin: 0 bottom;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: -webkit-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition:
    transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 500px) {
  .popup-sapo .content {
    width: 250px;
  }
}

.popup-sapo .content .title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 8px;
  color: #fff;
}

.popup-sapo .content .close-popup-sapo {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
}

.popup-sapo .content .close-popup-sapo svg {
  width: 15px;
  height: 15px;
}

.popup-sapo .content .close-popup-sapo svg path {
  fill: #fff;
}

.popup-sapo .content ul {
  margin-bottom: 20px;
  list-style: none;
  padding-left: 0;
}

.popup-sapo .content ul li {
  margin-bottom: 10px;
}

.popup-sapo .content ul li a {
  color: #fff;
}

@media (min-width: 992px) {
  .popup-sapo .content ul li a:hover {
    color: #fff;
    text-decoration: underline;
  }
}

.popup-sapo .content .ghichu {
  font-style: italic;
  font-size: 14px;
}

.popup-sapo.active .content {
  -ms-transition-delay: 0.1s;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.1s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

#wishlistCountBadge {
  z-index: 1;
}

.main-widget {
  position: fixed;
  z-index: 90;
  top: auto !important;
  right: 20px;
  bottom: 130px;
  width: auto !important;
}

@media (max-width: 767px) {
  .main-widget {
    bottom: 160px;
  }
}

.main-widget .out-circle {
  overflow: hidden;
  padding: 17px;
  border-radius: 100%;
  background-color: var(--popup-color);
  width: 60px;
  height: 60px;
}

.main-widget .out-circle:hover {
  background-color: rgba(193, 128, 0, 0.7);
}

.main-widget .img {
  width: 25px;
  height: 25px;
}

.main-widget .img svg {
  width: 100%;
  height: 100%;
}

.main-widget .main-icon {
  line-height: 0;
  color: #fff;
  width: 100%;
  height: 32px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.main-widget .main-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-bottom: 5px;
}

.main-widget .main-icon p {
  font-size: 10px;
  color: #fff;
  margin: 0px;
}

.main-widget .main-icon i {
  width: 26px;
  height: 26px;
  transform: translateX(2px);
}

.main-widget .ser-icon {
  display: inline-flex;
  position: absolute;
  font-size: 30px;
  top: 0;
  left: 0;
  padding: 10%;
  background: #fff;
  max-width: 100%;
  overflow: hidden;
  border-radius: 100%;
  color: var(--popup-color);
  width: 70%;
  height: 70%;
  margin: 15%;
  transition: 0.2s all;
}

.main-widget .ser-icon .item {
  margin-right: 40px;
  width: 30px;
  height: 30px;
  color: var(--popup-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-widget .ser-icon .item svg {
  width: 25px;
  height: 25px;
  color: var(--popup-color);
}

.main-widget .ser-icon i:nth-child(2n) {
  color: #000;
}

.main-widget .process {
  display: inline-flex;
  transform: translateX(0px);
  transition: 0.15s linear transform;
  line-height: 0;
}

.main-widget .unsee {
  opacity: 0;
  transform: scale(0);
}

.main-widget .def-content {
  position: absolute;
  bottom: 62px;
  right: 0;
  background-color: #fff;
  border-radius: 8px;
  transition: 0.2s all;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 300px;
  z-index: 1;
}

.main-widget .def-content:before {
  position: absolute;
  bottom: -8px;
  right: 22px;
  left: auto;
  display: inline-block !important;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  content: "";
}

.main-widget .def-content .def-header {
  background-color: var(--popup-color);
  padding: 10px;
  border-radius: 8px 8px 0 0px;
  color: #fff;
  position: relative;
}

.main-widget .def-content .def-header .close-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 10px;
  left: initial;
  padding: 0;
  margin: 0;
  border: 0 none;
  background: none;
  line-height: 1;
  width: 26px;
  height: 26px;
  cursor: pointer;
  color: #fff;
  background-color: var(--popup-color);
  border-radius: 50%;
  text-align: center;
}

.main-widget .def-content .item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 10px;
  transition: 0.3s linear all;
}

.main-widget .def-content .item > a .img {
  flex-grow: 0;
  flex: none;
  height: 34px;
  width: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff !important;
}

.main-widget .def-content .item > a .img svg {
  height: 20px;
  width: 20px;
}

.main-widget .def-content .item > a .detail {
  flex-grow: 1;
  line-height: normal;
}

.main-widget .def-content .item > a .detail .arcu-item-title {
  font-weight: 500;
  font-size: 15px;
  display: block;
  line-height: normal;
  color: var(--popup-color);
}

.main-widget .def-content .item > a .detail .arcu-item-subtitle {
  font-size: 14px;
  color: #787878;
}

.main-widget .def-content .item.phone > a .img {
  background: #4eb625;
}

.main-widget .def-content .item.mess > a .img {
  background: #31adff;
}

.main-widget .def-content .item.zalo > a .img {
  background: #0165f8;
}

.main-widget .def-content .item.map > a .img {
  background: #d94234;
}

.main-widget .def-content .item:last-child {
  margin-bottom: 0;
}

.main-widget .close-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 25px;
  top: 0;
  padding: 10px;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: var(--popup-color);
  border-radius: 100%;
  transition: 0.2s all;
  transform: rotate(0);
  cursor: pointer;
}

.main-widget .close-icon svg {
  width: 25px;
  height: 25px;
}

.close-icon.unsee {
  transform: rotate(180deg);
}

.pregan {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--popup-color);
  z-index: -2;
  border-radius: 100%;
  animation: zoomzoom 3s linear 0.2s infinite;
}

.pregan:nth-child(1) {
  animation-delay: 0.5s;
}

.main-widget .item svg {
  fill: var(--popup-color);
}

.def-content .item svg {
  fill: #fff;
}

.def-content .item:hover {
  background-color: #f1f1f1;
}

.comparison-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto !important;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #ddd;
  padding: 10px;
  display: flex;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 90;
}

.comparison-bar.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.comparison-bar-main {
  display: flex;
}

.comparison-bar-main .compare-button-group .btn {
  max-height: 40px;
}

#compareToast .toast-body {
  color: #fff;
}

@media (max-width: 480px) {
  .comparison-bar-slots {
    width: 100%;
  }
}

.comparison-slot {
  width: 100px;
  height: 100px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f8f8f8;
}

@media (max-width: 480px) {
  .comparison-slot {
    flex: 1 1 0;
    height: 87px;
  }
}

.comparison-slot .product-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.comparison-slot .product-item img {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  object-fit: contain;
  width: auto;
  max-height: 100%;
}

.comparison-slot .remove-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  color: var(--main-text-color);
}

@media (min-width: 992px) {
  .comparison-slot .remove-btn:hover {
    color: var(--main-color);
    cursor: pointer;
  }
}

.add-slot {
  font-size: 26px;
  cursor: pointer;
  color: #007bff;
}

.add-slot:hover {
  color: var(--main-color);
}

#compareModal {
  top: 0 !important;
}

#comparison-table-body .comparison-table-title {
  width: 200px;
  font-weight: 500;
}

#comparison-table-body .product-summary-content {
  text-align: left;
  font-size: 15px;
}

#comparison-table-body .product-summary-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#comparison-table-body .product-summary-content ul li + li {
  margin-top: 5px;
}

#comparison-table-body .product-name {
  color: var(--main-text-color);
  max-width: 300px;
  font-weight: 500;
}

@media (min-width: 992px) {
  #comparison-table-body .product-name:hover {
    color: var(--main-color);
  }
}

#comparison-table-body .product-img {
  max-width: 200px;
}

#comparison-table-body .price {
  color: var(--price-color);
  font-weight: 600;
  font-size: 17px;
}

#comparison-table-body .old-price {
  color: #a1a1aa;
  text-decoration: line-through;
  font-size: 14px;
}

#comparison-table-body .color-comparison {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 0;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

#comparison-table-body .color-comparison.color-tim {
  background-color: #800080;
}

#comparison-table-body .color-comparison.color-nau {
  background-color: #8b4513;
}

#comparison-table-body .color-comparison.color-xanh {
  background-color: #2196f3;
}

#comparison-table-body .color-comparison.color-den {
  background-color: #000000;
}

#comparison-table-body .color-comparison.color-trang {
  background-color: #ffffff;
}

#comparison-table-body .color-comparison.color-xanh-la {
  background-color: #4caf50;
}

#comparison-table-body .color-comparison.color-xanh-coban {
  background-color: #0047ab;
}

#comparison-table-body .color-comparison.color-xam {
  background-color: #9e9e9e;
}

#comparison-table-body .color-comparison.color-cam {
  background-color: #ff9800;
}

#comparison-table-body .color-comparison.color-hong {
  background-color: #e91e63;
}

#comparison-table-body .color-comparison.color-be {
  background-color: #f5f5dc;
}

#comparison-table-body .color-comparison.color-do {
  background-color: #f44336;
}

#comparison-table-body .color-comparison.color-o-liu {
  background-color: #808000;
}

#comparison-table-body .color-comparison.color-vang {
  background-color: #ffeb3b;
}

#comparison-table-body .color-comparison.color-xanh-mint {
  background-color: #98ff98;
}

#comparison-table-body .color-comparison.color-ghi {
  background-color: #b0bec5;
}

#comparison-table-body .color-comparison.color-than-chi {
  background-color: #2f4f4f;
}

#comparison-table-body .color-comparison.color-oliu {
  background-color: #6b8e23;
}

#comparison-table-body .color-comparison.color-xanh-da-troi {
  background-color: #87ceeb;
}

#comparison-table-body .color-comparison.color-tim-than {
  background-color: #4b0082;
}

#comparison-table-body .color-comparison.color-ghi-nhat {
  background-color: #eceff1;
}

#comparison-table-body .color-comparison.color-hong-phan {
  background-color: #ffc0cb;
}

#comparison-table-body .color-comparison.color-xanh-nhat {
  background-color: #add8e6;
}

#comparison-table-body .color-comparison.color-navy {
  background-color: #000080;
}

#comparison-table-body .color-comparison.color-ke-xanh {
  background-image: url("https://bizweb.dktcdn.net/100/583/209/files/ke-xanh.png");
  background-size: cover;
  background-position: center;
}

#comparison-table-body .color-comparison.color-soc-trang-xanh {
  background-image: url("https://bizweb.dktcdn.net/100/583/209/files/soc-trang-xanh.png");
  background-size: cover;
  background-position: center;
}

#comparison-table-body .size-comparison {
  width: auto;
  border-radius: 5px;
  border: 1px solid #dee2e6;
  text-align: center;
  padding: 2px 10px;
  line-height: 23px;
}

.comparison-table th,
.comparison-table td {
  text-align: center;
  vertical-align: middle;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
}

.restore-btn {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background-color: var(--second-color);
  color: #fff;
  width: 60px;
  height: 60px;
  display: none;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  font-size: 24px;
  z-index: 93;
  top: auto !important;
  align-items: center;
  justify-content: center;
}

.restore-btn:hover {
  background-color: rgba(193, 128, 0, 0.7);
}

@media (min-width: 580px) {
  #searchResults {
    max-height: 350px;
    overflow-y: scroll;
  }
}

#searchResults::-webkit-scrollbar {
  width: 0;
}

#searchResults::-webkit-scrollbar-track {
  background: #f5f5f5;
}

#searchResults::-webkit-scrollbar-thumb {
  background: #e5e5e5;
}

#searchResults::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#searchResults:hover::-webkit-scrollbar {
  width: 5px;
}

#searchResults
  .compare-search-product-item
  .compare-search-product-item-image
  img {
  max-width: 85px;
}

#searchResults
  .compare-search-product-item
  .compare-search-product-item-content
  .compare-search-product-item-name {
  color: var(--main-text-color);
  line-height: 1.3;
  font-size: 15px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#searchResults
  .compare-search-product-item
  .compare-search-product-item-content
  .compare-search-product-item-name
  span {
  font-style: italic;
}

#searchResults
  .compare-search-product-item
  .compare-search-product-item-content
  .compare-search-product-item-price {
  color: var(--price-color);
  font-weight: 600;
  font-size: 17px;
}

#searchResults
  .compare-search-product-item
  .compare-search-product-item-content
  .add-to-compare {
  max-width: 100px;
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

@media (min-width: 992px) {
  #searchResults
    .compare-search-product-item
    .compare-search-product-item-content
    .add-to-compare:hover {
    border-color: var(--main-color);
    background-color: #fff;
    color: var(--main-color);
  }
}

.slide-cart {
  position: fixed;
  top: 0 !important;
  right: -400px;
  width: 380px;
  height: 100%;
  background: #fff;
  backdrop-filter: blur(10px);
  transition: right 0.3s ease-in-out;
  z-index: 1002;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .slide-cart {
    width: 100%;
    right: -100%;
  }
}

.slide-cart.is-open {
  right: 0;
}

.slide-cart .slide-cart-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.slide-cart .slide-cart-header h2 {
  margin: 0;
  font-size: 20px;
}

.slide-cart .slide-cart-header .slide-cart-close {
  position: absolute;
  top: 7px;
  left: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #777;
}

.slide-cart .slide-cart-header .slide-cart-close:hover {
  color: var(--main-color);
}

.slide-cart .slide-cart-header .shipping-countdown {
  margin-top: 15px;
  font-size: 14px;
}

.slide-cart .slide-cart-header .shipping-countdown .progress-bar-container {
  width: 100%;
  background-color: #e0e0e0;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 5px;
}

.slide-cart
  .slide-cart-header
  .shipping-countdown
  .progress-bar-container
  .progress-bar {
  height: 100%;
  width: 0%;
  background-color: #28a745;
  border-radius: 5px;
  transition: width 0.5s ease-in-out;
}

.slide-cart .slide-cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.slide-cart .slide-cart-body .cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

.slide-cart .slide-cart-body .cart-item.last-added {
  background-color: #e6f7ff;
  border: 1px solid #91d5ff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.slide-cart .slide-cart-body .cart-item .cart-item-image {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-right: 15px;
}

.slide-cart .slide-cart-body .cart-item .cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide-cart .slide-cart-body .cart-item .cart-item-details {
  flex-grow: 1;
}

.slide-cart .slide-cart-body .cart-item .cart-item-details h4 {
  margin: 0 0 5px 0;
  font-size: 15px;
}

.slide-cart .slide-cart-body .cart-item .cart-item-details h4 a {
  text-decoration: none;
  color: var(--main-text-color);
}

@media (min-width: 768px) {
  .slide-cart .slide-cart-body .cart-item .cart-item-details h4 a:hover {
    color: var(--main-color);
  }
}

.slide-cart .slide-cart-body .cart-item .cart-item-details p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.slide-cart .slide-cart-body .cart-item .cart-item-price {
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-top: 5px;
  color: var(--price-color);
}

.slide-cart .slide-cart-body .cart-item .cart-item-actions {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 13px;
}

.slide-cart .slide-cart-body .cart-item .cart-item-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 0;
  overflow: hidden;
  margin-right: 10px;
}

.slide-cart .slide-cart-body .cart-item .cart-item-quantity button {
  background-color: #f8f8f8;
  border: none;
  padding: 5px 8px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

@media (min-width: 768px) {
  .slide-cart .slide-cart-body .cart-item .cart-item-quantity button:hover,
  .slide-cart .slide-cart-body .cart-item .cart-item-quantity button:focus {
    background-color: var(--second-color);
    color: #fff;
  }
}

.slide-cart .slide-cart-body .cart-item .cart-item-quantity input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 13px;
  padding: 5px 0;
  -moz-appearance: textfield;
}

.slide-cart
  .slide-cart-body
  .cart-item
  .cart-item-quantity
  input::-webkit-outer-spin-button,
.slide-cart
  .slide-cart-body
  .cart-item
  .cart-item-quantity
  input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.slide-cart .slide-cart-body .cart-item .cart-item-quantity input:focus {
  border: none;
  outline: none;
}

.slide-cart .slide-cart-body .cart-item .cart-item-remove {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 13px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .slide-cart .slide-cart-body .cart-item .cart-item-remove:hover {
    color: var(--second-color);
  }
}

.slide-cart .slide-cart-body .cart-item.is-gift .cart-item-actions {
  justify-content: center;
}

.slide-cart .slide-cart-body .cart-item.is-gift .cart-item-quantity,
.slide-cart .slide-cart-body .cart-item.is-gift .cart-item-remove {
  display: none;
}

.slide-cart .slide-cart-body .cart-item.is-gift .gift-price {
  font-weight: 600;
  color: var(--second-color);
  font-size: 14px;
}

.slide-cart .slide-cart-body .cart-item.is-gift .gift-quantity {
  font-size: 13px;
  color: #777;
  display: none;
}

.slide-cart .slide-cart-body .cart-empty-message {
  padding-top: 40px;
  color: var(--main-text-color);
}

.slide-cart .slide-cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.slide-cart .slide-cart-footer .cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.slide-cart .slide-cart-footer .cart-total #cart-total-price {
  color: var(--price-color);
}

.slide-cart .slide-cart-footer .btn {
  display: block;
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
}

.slide-cart .slide-cart-footer .btn.btn-checkout {
  background-color: var(--main-color);
  color: #fff;
  margin-bottom: 10px;
}

.slide-cart .slide-cart-footer .btn.btn-checkout:hover,
.slide-cart .slide-cart-footer .btn.btn-checkout:focus {
  background-color: #d65700;
  color: #fff;
}

.slide-cart .slide-cart-footer .btn.btn-view-cart {
  background-color: #6c757d;
  color: #fff;
}

.slide-cart .slide-cart-footer .btn.btn-view-cart:hover,
.slide-cart .slide-cart-footer .btn.btn-view-cart:focus {
  background-color: var(--second-color);
  color: #fff;
}

.slide-cart-overlay {
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
}

.slide-cart-overlay.is-visible {
  display: block;
}

.recommended-products-section {
  position: fixed;
  top: 50% !important;
  transform: translateY(-50%);
  left: 10px;
  right: 10px;
  width: calc(100% - 410px);
  background: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease-in-out;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  display: none;
}

#recommended-products-mobile-section
  .recommended-product-card-mobile
  a
  .product-image-small
  img {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  object-fit: contain;
  width: auto;
  max-height: 100%;
  border-radius: 5px;
}

#recommended-products-mobile-section
  .recommended-product-card-mobile
  a
  .product-details-small
  .product-name-small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
}

#recommended-products-mobile-section
  .recommended-product-card-mobile
  a
  .product-details-small
  .product-price-small {
  font-size: 14px;
}

#recommended-products-mobile-section
  .recommended-product-card-mobile
  a
  .product-details-small
  .product-price-small
  .price {
  color: var(--price-color);
  font-weight: 600;
}

#recommended-products-mobile-section
  .recommended-product-card-mobile
  a
  .product-details-small
  .product-price-small
  .old-price {
  color: #6d6e72;
}

.slide-cart.is-open + .slide-cart-overlay + .recommended-products-section {
  left: 0;
}

#recommended-products-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

#recommended-products-swiper .swiper-wrapper {
  align-items: stretch;
}

.wolf-back-top {
  position: fixed;
  bottom: 200px;
  right: 20px;
  background-color: var(--second-color);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 90;
  top: auto !important;
  height: 60px;
  width: 60px;
  line-height: 57px;
  text-align: center;
}

@media (max-width: 767px) {
  .wolf-back-top {
    bottom: 230px;
  }
}

.wolf-back-top:hover {
  color: #fff;
  background-color: rgba(193, 128, 0, 0.7);
  cursor: pointer;
}

.wolf-back-top.active {
  opacity: 1;
  pointer-events: auto;
}

.skeleton-loading .skeleton-box {
  background-color: #e2e8f0;
  border-radius: 0.375rem;
  position: relative;
  overflow: hidden;
}

.skeleton-loading .skeleton-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 1.5s infinite;
  transform: translateX(-100%);
}

.skeleton-product-item .skeleton-image {
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 0.75rem;
}

.skeleton-product-item .skeleton-text {
  height: 1em;
  margin-bottom: 0.5rem;
}

.skeleton-product-item .skeleton-text.short {
  width: 60%;
}

.skeleton-image-container {
  display: block;
  overflow: hidden;
  background-color: #e2e8f0;
  position: relative;
  border-radius: 0.5rem;
}

.skeleton-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 1.5s infinite;
  transform: translateX(-100%);
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.skeleton-image-container img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.skeleton-image-container.image-is-loaded::after {
  display: none;
}

.skeleton-image-container.image-is-loaded img {
  opacity: 1;
}

.warranty-lookup-container {
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.warranty-lookup-container .title {
  font-size: 22px;
}

div#histats_counter {
  display: none !important;
}

.evo-product-review-content img {
  max-width: 100% !important;
}

.sticky {
  position: fixed !important;
  z-index: 999;
  width: 100%;
  top: 0px !important;
  background: #0b7a3b;
}

.text_logo {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
}

.wolf-footer-information .footer-logo {
  padding: 5px;
  background: white;
  margin-bottom: 15px;
}
