/*=== products style start ===*/
.sjst-product-container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.sjst-product-item {
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: 0.3s;
  position: relative;
}
.sjst-product-item:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}
.sjst-product-item:hover .sjst-product-image img {
  transform: scale(1.1);
}
.sjst-product-item .onsale {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #cf3375;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.sjst-product-image {
  overflow: hidden;
  width: 100%;
  height: auto;
}
.sjst-product-image img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.sjst-product-content {
  padding: 10px 10px 20px;
  text-align: center;
}

.sjst-product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sjst-product-rating .star-rating {
  display: block;
  margin: 0 0 0.5em;
  float: none;
  position: relative;
  overflow: hidden;
  font-family: star;
  font-size: 0.857em;
  width: 5.4em;
  height: 25px;
}
.sjst-product-rating .star-rating::before {
  position: absolute;
  content: "sssss";
  top: 0;
  left: 0;
  color: #cfc8d8;
  float: left;
}
.sjst-product-rating .star-rating span {
  padding-top: 1.5em;
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  overflow: hidden;
}
.sjst-product-rating .star-rating span::before {
  position: absolute;
  content: "SSSSS";
  top: 0;
  left: 0;
  color: #f2b827;
}

.sjst-product-title a {
  font-size: 15px;
  color: #000000;
  transition: 0.3s;
}
.sjst-product-title a:hover {
  color: #0b9511;
}

.sjst-product-price {
  font-size: 15px;
  font-weight: 700;
  color: #669900;
}

.sjst-product-action {
  margin-top: 5px;
}

.sjst-btn {
  border-radius: 5px;
  background-color: #f1f1f1;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #003315;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: 0.3s;
}

@media (max-width: 480px) {
  .sjst-product-container {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .sjst-product-container .sjst-product-content {
    padding: 10px;
  }
  .sjst-product-container .sjst-product-content h5 {
    font-size: 14px;
  }
  .sjst-product-container .sjst-product-title {
    margin-bottom: 0;
  }
  .sjst-product-container .sjst-product-title a {
    font-size: 14px;
  }
  .sjst-product-container .sjst-product-price {
    font-size: 14px;
  }
  .sjst-product-container .sjst-product-action {
    margin-top: 5px;
  }
  .sjst-product-container .sjst-btn {
    padding: 2px 10px;
  }
}
/*=== products style start ===*/
/*=== pagination style start ===*/
.sjst-pagination {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sjst-pagination .page-numbers {
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #32325d;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
.sjst-pagination .page-numbers.current {
  background-color: rgb(141, 91, 130);
}

@media (max-width: 480px) {
  .sjst-pagination {
    gap: 10px;
  }
  .sjst-pagination .page-numbers {
    padding: 2px 15px;
    font-size: 14px;
  }
}
/*=== pagination style end ===*/
/*=== video style start ===*/
.sjst-video-content {
  border-radius: 0px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.sjst-video-content .video-content-header {
  aspect-ratio: 16/9;
}
.sjst-video-content .video-content-header iframe {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.sjst-video-content .video-content-body {
  padding: 20px;
}

/*=== video style end ===*/
.sjst-account-card input {
  width: 100%;
}

.sjst-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sjst-blog-grid.grid-blog-1 {
  grid-template-columns: repeat(1, 1fr);
}
.sjst-blog-grid.grid-blog-2 {
  grid-template-columns: repeat(2, 1fr);
}
.sjst-blog-grid.grid-blog-3 {
  grid-template-columns: repeat(3, 1fr);
}
.sjst-blog-grid.grid-blog-4 {
  grid-template-columns: repeat(4, 1fr);
}
.sjst-blog-grid .sjst-post-item {
  margin-bottom: 0;
}

.sjst-contact-button {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sjst-contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #c93e35;
}
.sjst-contact-button a i {
  font-size: 16px;
  color: #ffffff;
}
.sjst-contact-button a::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 0;
  background-color: red;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.sjst-contact-button a.whatsapp-btn {
  background-color: #056905;
}
.sjst-contact-button a.whatsapp-btn::before {
  background-color: rgb(14, 139, 10);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.sjst-contact-button a.mobile-btn::before {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  animation-delay: 0.75s;
}
.sjst-contact-button a .icon {
  width: 20px;
  height: 20px;
}
.sjst-contact-button a .icon svg {
  vertical-align: top;
  fill: #ffffff;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.sjst-user-account .user-account-dropdown button {
  border: 0;
  background-color: transparent;
  transition: 0.3s;
}
.sjst-user-account .user-account-dropdown button::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: middle;
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: 2px solid #0b1530;
  border-right: 2px solid #0b1530;
  transform: rotate(45deg);
  transition: 0.3s;
}
.sjst-user-account .user-account-dropdown button.show::after {
  transform: rotate(220deg);
}
.sjst-user-account .user-account-dropdown button img {
  width: 30px;
  height: 30px;
}
.sjst-user-account .user-account-dropdown-menu {
  position: absolute;
  min-width: 220px;
  overflow: hidden;
  inset: 0px 0px auto auto !important;
  margin: 0px;
  transform: translateY(50px);
  transition: 0.3s;
}
.sjst-user-account .user-account-info {
  padding: 10px;
  border-bottom: 1px solid #dddddd;
  text-align: right;
}
.sjst-user-account .user-account-info-name {
  color: rgb(12, 74, 154);
}
.sjst-user-account .user-account-info-roles {
  color: rgb(12, 125, 131);
}

.sjst-product-slider-card .product-slider-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dddddd;
}
.sjst-product-slider-card .product-slider-header-right {
  padding-right: 105px;
}
.sjst-product-slider-card .btn-view {
  display: flex;
  color: #ffffff;
  background-color: #61ce70;
  padding: 8px 20px;
  border-radius: 5px;
  border: 0;
}
.sjst-product-slider-card .sjst-product-item {
  margin-bottom: 0;
}

.product-slider .slick-slide {
  margin-left: 15px;
  margin-right: 15px;
}
.product-slider .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}
.product-slider .slick-track {
  padding-bottom: 20px;
}
.product-slider .slick-arrow {
  position: absolute;
  z-index: 1;
  top: -62px;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border: 1px solid #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s;
}
.product-slider .slick-arrow:hover {
  background-color: #dddddd;
}
.product-slider .slick-arrow::before {
  display: none;
}
.product-slider .slick-arrow.slick-prev {
  left: unset;
  right: 50px;
  background-image: url("../images/icons/tabler_chevron-left.png");
}
.product-slider .slick-arrow.slick-next {
  right: 0;
  background-image: url("../images/icons/tabler_chevron-right.png");
}

@media (max-width: 480px) {
  .sjst-product-slider-card .sjst-product-content {
    padding: 10px;
  }
  .sjst-product-slider-card .sjst-product-content h5 {
    font-size: 14px;
  }
  .sjst-product-slider-card .sjst-product-title {
    margin-bottom: 0;
  }
  .sjst-product-slider-card .sjst-product-title a {
    font-size: 14px;
  }
  .sjst-product-slider-card .sjst-product-price {
    font-size: 14px;
  }
  .sjst-product-slider-card .sjst-product-action {
    margin-top: 5px;
  }
  .sjst-product-slider-card .sjst-btn {
    padding: 2px 10px;
  }
  .product-slider .slick-slide {
    margin-left: 10px;
    margin-right: 10px;
  }
  .product-slider .slick-list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .product-slider .slick-track {
    padding-bottom: 0px;
  }
}
/*=== products category style start ===*/
.sjst-category-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}

.sjst-category-item {
  border-radius: 10px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #191919;
  transition: 0.3s;
}
.sjst-category-item:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
  color: #318350;
}
.sjst-category-item .category-image {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.sjst-category-item .category-image img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.sjst-category-item .category-text {
  word-break: break-word;
}

/*=== products category style end ===*/
.sidebar__widget {
  border-radius: 10px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 30px 60px rgba(26, 47, 4, 0.07);
  margin-bottom: 10px;
}

.sidebar__widget__title {
  font-size: 24px;
  font-weight: 500;
  color: #3c3664;
  margin-bottom: 10px;
}

.sidebar__widget__desc {
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  color: #718096;
  line-height: 24px;
}

.sidebar__widget__search {
  position: relative;
}

.sidebar__widget__search input {
  border-radius: 5px;
  width: 100%;
  border: 1px solid #ddd;
  background: transparent;
  padding: 10px 50px 10px 15px;
  font-weight: 400;
  font-size: 15px;
  color: #595954;
}
.sidebar__widget__search input:focus {
  outline: none;
  border: 1px solid #e68046;
}

.btn.btn-search {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 100%;
  transform: translateY(-50%);
  border: 0;
  background-color: transparent;
  text-align: center;
  transition: 0.3s;
  color: #3c3664;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-search:focus {
  outline: none;
}

.sidebar__widget__cat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar__widget__cat li a {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: #191919;
  transition: 0.3s;
}

.sidebar__widget__cat li a i {
  padding-right: 5px;
  color: #e68046;
  transition: 0.3s;
}

.sidebar__widget__cat li a:hover {
  color: #e68046;
}

.sidebar__widget__cat li a:hover i {
  padding-right: 0px;
  color: #e68046;
}

.sidebar__widget__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.sidebar__widget__tags li a {
  display: flex;
  padding: 5px 10px;
  background-color: #f8f9fc;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
  color: #191919;
  transition: 0.3s;
}
.sidebar__widget__tags li a:hover {
  background-color: #e68046;
  color: #fff;
}

.sjst-shopping-adds {
  overflow: hidden;
}
.sjst-shopping-adds.has-overlay {
  position: relative;
  z-index: 0;
}
.sjst-shopping-adds.has-overlay::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.sjst-header-mobile-menu .menu-sidebar-toggle {
  border: 0;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
}
.sjst-header-mobile-menu .btn-close:focus {
  outline: none;
  box-shadow: none;
}
.sjst-header-mobile-menu .menu-sidebar {
  height: 100vh;
}
.sjst-header-mobile-menu .menu-sidebar.show_menu_sidebar {
  visibility: visible;
  transform: none;
}
.sjst-header-mobile-menu .menu-sidebar-title a {
  display: flex;
  width: 120px;
}
.sjst-header-mobile-menu .menu-sidebar-title a img {
  width: 100%;
}
.sjst-header-mobile-menu .menu-sidebar-body {
  margin-top: 10px;
  padding: 0;
}

.sjst-header-mobile-menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #dddddd;
}
.sjst-header-mobile-menu .menu-list li a {
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  color: #0b1530;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition: 0.3s;
  opacity: 0.7;
}
.sjst-header-mobile-menu .menu-list li a:hover {
  background-color: #f7f7f7;
  opacity: 1;
}
.sjst-header-mobile-menu .menu-list .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
  border-bottom: 1px solid #dddddd;
}
.sjst-header-mobile-menu .menu-list .sub-menu li a {
  border: 0;
  padding: 5px 20px;
}
.sjst-header-mobile-menu .menu-list .menu-item-has-children > a {
  position: relative;
}
.sjst-header-mobile-menu .menu-list .menu-item-has-children > a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0;
  border-bottom: 2px solid #0b1530;
  border-right: 2px solid #0b1530;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.sjst-header-mobile-menu .menu-list .menu-item-has-children:hover {
  background-color: #f7f7f7;
}
.sjst-header-mobile-menu .menu-list .menu-item-has-children:hover > a {
  color: #61ce70;
}
.sjst-header-mobile-menu .menu-list .menu-item-has-children:hover > a::before {
  transform: translateY(-50%) rotate(220deg);
}
.sjst-header-mobile-menu .menu-list .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  display: block;
}

.sjst-header-mobile-menu .social-links {
  list-style: none;
  padding: 20px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}
.sjst-header-mobile-menu .social-links li a {
  color: #444444;
  transition: 0.3s;
}
.sjst-header-mobile-menu .social-links li a i {
  font-size: 20px;
  transition: 0.3s;
}
.sjst-header-mobile-menu .social-links li a:hover {
  color: #61ce70;
}

.sjst-header-mobile-menu .menu-info {
  list-style: none;
  padding: 0px 20px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.sjst-header-mobile-menu .menu-info li {
  font-size: 16px;
  font-weight: 500;
  color: #0b1530;
}
.sjst-header-mobile-menu .menu-info li i {
  color: #61ce70;
}
.sjst-header-mobile-menu .menu-info li a {
  color: #0b1530;
}

.sjst-mobile-menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-around;
}
.sjst-mobile-menu .menu-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  font-size: 12px;
  color: #0b1530;
  transition: 0.3s;
}
.sjst-mobile-menu .menu-list li a i {
  font-size: 20px;
  color: #0b1530;
}
.sjst-mobile-menu .menu-list-dropdown {
  width: 175px;
}
.sjst-mobile-menu .menu-list-dropdown li a {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
}
.sjst-mobile-menu .user-account-info {
  padding: 10px;
  border-bottom: 1px solid #dddddd;
  text-align: right;
}
.sjst-mobile-menu .user-account-info-name {
  color: rgb(12, 74, 154);
}
.sjst-mobile-menu .user-account-info-roles {
  color: rgb(12, 125, 131);
}

.sjst-category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sjst-category-list ul li a {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
  transition: 0.3s;
}
.sjst-category-list ul li a:hover {
  color: #61ce70;
}