@charset "UTF-8";
/*********************************************************************
************************* Style Global Rouls *************************
*********************************************************************/
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Josefin Sans", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p,
address,
figure {
  margin: 0;
}

.rtl input,
.rtl textarea {
  direction: rtl !important;
}

button {
  background: none;
  border: none;
}

button:focus {
  outline: none;
}

ul {
  list-style-position: inside;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

.container-lg {
  --bs-gutter-x: 32px;
}
@media (min-width: 1400px) {
  .container-lg {
    max-width: 1404px;
  }
}

.main-space {
  margin: var(--main-space) 0;
}

.offcanvas {
  z-index: 9999;
}

/********************** Start style component ************************/
.main-accordion {
  margin-top: 0;
}
.main-accordion .accordion-item {
  border: none;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .main-accordion .accordion-item {
    padding-bottom: 15px;
  }
}
.main-accordion .accordion-item:not(:last-child) {
  border-bottom: 1px solid #ced4da;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .main-accordion .accordion-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.main-accordion .accordion-button {
  background-color: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  color: var(--primary-color);
  cursor: pointer;
}
@media (max-width: 767px) {
  .main-accordion .accordion-button {
    font-size: 13px;
    line-height: 24px;
  }
}
.main-accordion .accordion-button::after {
  background-size: 20px;
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .main-accordion .accordion-button::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
  }
}
.main-accordion .accordion-body {
  padding: 0;
  padding-top: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #141414;
}
@media (max-width: 767px) {
  .main-accordion .accordion-body {
    font-size: 11px;
    line-height: 19px;
    padding-top: 15px;
  }
}

.hero-page {
  height: 700px;
  max-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 150px;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .hero-page {
    padding-top: 72px;
  }
}
.hero-page::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.3019607843);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-page .hero-page-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.hero-page .hero-page-content .title {
  font-size: 44px;
  font-weight: 400;
  line-height: 58px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .hero-page .hero-page-content .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
}
.hero-page .hero-page-content .describtion {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.hero-page .hero-page-content .describtion::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item {
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  color: #fff !important;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb-item:first-child {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.breadcrumb-item:nth-child(2):not(:last-child) {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 45%;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #000;
  content: '•';
  padding-inline: 8px;
  font-size: 18px;
}

.breadcrumb-item+.breadcrumb-item {
  padding: 0 !important;
}

.breadcrumb-item a {
  color: #343434;
  font-size: 16px;
  line-height: inherit;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

.breadcrumb-item a:hover {
  color: #000;
  font-weight: bold;
}

[data-template="blog"] .breadcrumb-item,
[data-template="404"] .breadcrumb-item {
  color: #000 !important;
}

.custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: #000000 #e2e2e2;
}
.custom-scroll::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: #e2e2e2;
  border-radius: 10px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 10px;
  border: 2px solid #e2e2e2;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #222222;
}
.custom-scroll::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

.products-page-section {
  margin: 24px 0 40px;
}
@media (max-width: 767px) {
  .products-page-section {
    margin: 16px 0 24px;
  }
}

.products-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px 8px;
}
.products-list.shape-1 {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
@media (max-width: 767px) {
  .products-list {
    -ms-grid-columns: calc((100% - 12px) / 2) 12px calc((100% - 12px) / 2);
    grid-template-columns: repeat(2, calc((100% - 12px) / 2));
    gap: 24px 12px;
  }
}

@media (max-width: 767px) {
  .shape-2 .product-item .product-card-bundle-offer {
    font-size: 10px;
    line-height: 14px;
    left: -5px;
    height: 35px;
    background-size: 100%;
    padding: 6px 3px;
  }
  .shape-2 .product-item .product-card-bundle-offer::before {
    border: 2.5px solid;
    border-color: transparent var(--product-label-color) var(--product-label-color) transparent;
    left: 0;
    top: -4px;
  }
  .shape-2 .product-item .product-card-bundle-offer::after {
    border: 2.5px solid;
    border-color: var(--product-label-color) var(--product-label-color) transparent transparent;
    left: 0;
    bottom: -4px;
  }
}

@media (max-width: 767px) {
  .shape-2 .product-item.product-item-out-of-stock .product-image::after {
    font-size: 10px;
    line-height: 14px;
  }
}

@media (max-width: 767px) {
  .shape-2 .product-item .product-title {
    font-size: 14px;
    line-height: 19px;
  }
}
@media (max-width: 767px) {
  .shape-2 .product-item .section-product-price {
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .shape-2 .product-item .product-price {
    font-size: 12px;
    line-height: 14px;
  }
}
@media (max-width: 767px) {
  .shape-2 .product-item .product-prev-price {
    font-size: 10px;
    line-height: 14px;
  }
}
@media (max-width: 767px) {
  .shape-2 .product-item .product-price-offer {
    font-size: 10px;
    line-height: 12px;
    margin: 0 !important;
  }
}
@media (max-width: 767px) {
  .shape-2 .product-item .product-item-colors .color-item {
    width: 16px;
  }
}

.rtl .shape-2 .product-item .product-card-bundle-offer {
  left: auto;
  right: -5px;
}

.home-section-sub-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #212121;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
@media (max-width: 767px) {
  .home-section-sub-title {
    font-size: 16px;
    line-height: 24px;
  }
}

.home-section-title {
  font-size: 46px;
  font-weight: 400;
  line-height: 58px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .home-section-title {
    font-size: 24px;
    line-height: 36px;
  }
}

.more-products-button {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #1e1e2c;
  margin: 24px auto 0;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 2px;
  position: relative;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .more-products-button {
    margin-top: 24px;
  }
}
.more-products-button::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #212121;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.more-products-button:hover {
  opacity: 0.7;
}

/********************** End style component ************************/
/*********************************************************************
*************************** Style to theme ***************************
*********************************************************************/
/*********************** Start style Header *************************/
.announcement-bar {
  background: var(--background-color);
  padding: 12px 16px;
  position: relative;
  z-index: 999;
}
@media (max-width: 767px) {
  .announcement-bar {
    padding: 12px 16px;
    height: 56px;
  }
}

.availability-bar {
  background-color: var(--background-color);
}

.availability-bar .announcement-text,
.announcement-bar .announcement-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: var(--primary-color);
  text-align: center;
}
@media (max-width: 767px) {
  .availability-bar .announcement-text,
  .announcement-bar .announcement-text {
    font-size: 12px;
    line-height: 18px;
  }
}

.search-popup {
  position: absolute !important;
  bottom: 0 !important;
  top: auto !important;
  -webkit-transform: translateY(100%) !important;
  transform: translateY(100%) !important;
  padding: 0 !important;
  overflow: hidden;
}

#fixed-header {
  padding: 24px 0 8px;
  -webkit-transition: background-color 400ms linear 0s;
  transition: background-color 400ms linear 0s;
}
#fixed-header * {
  transition: none !important;
}
@media (max-width: 767px) {
  #fixed-header {
    padding: 0;
  }
}

.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1;
  background-color: #fff;
}

.account-lang-currency {
  border-bottom: 1px solid var(--primary-color);
  padding: 9px 0px;
}
@media (max-width: 991px) {
  .account-lang-currency {
    display: none;
  }
}

.account-lang-currency .account-btn {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  outline: none;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  min-width: 124px;
  padding: 5px 12px;
  height: 30px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.account-lang-currency .account-btn:hover {
  opacity: 0.7;
  border-color: var(--primary-color);
}

.slide-menu .account-area .dropdown-menu {
  top: 0px !important;
  right: 0 !important;
  left: auto !important;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  width: 170px !important;
}

.language-currency {
  max-height: 30px;
  background-color: transparent !important;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
  position: relative;
}
.language-currency .dropdown-menu {
  top: 100%;
}

.search-input-input {
  border-left: none;
  border-right: none;
}

.image-logo {
  height: 60px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .image-logo {
    padding: 6px 0;
  }
}
.image-logo.main-logo {
  display: none;
}

ul.main-nav > li > a,
.item-all-categories a {
  display: block;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #000000;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  padding: 2px 10px;
  text-transform: uppercase;
}
ul.main-nav > li > a:hover,
.item-all-categories a:hover {
  opacity: 0.7;
}

ul.main-nav > li {
  padding-bottom: 16px;
}

.main-dropdown-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 100%;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--main-transition) ease;
  transition: var(--main-transition) ease;
  padding: 30px 0;
  z-index: -1;
}
.main-dropdown-menu .top-level-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1d1d1b;
}
.main-dropdown-menu .top-level-link .mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.main-dropdown-menu .top-level-link .mega-menu svg {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main-dropdown-menu .top-level-link .mega-menu span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main-dropdown-menu .top-level-link .mega-menu:hover svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-dropdown-menu .top-level-link a {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.main-dropdown-menu .top-level-link a:hover {
  text-decoration: underline;
}

.top-level-link:hover + .main-dropdown-menu,
.main-dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
  top: 100%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.top-level-link:hover + .main-dropdown-menu .top-level-link,
.top-level-link:hover + .main-dropdown-menu .main-links a,
.main-dropdown-menu:hover .top-level-link,
.main-dropdown-menu:hover .main-links a {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-name: fadeInUpMenu;
  animation-name: fadeInUpMenu;
}

@-webkit-keyframes fadeInUpMenu {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpMenu {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.main-dropdown-menu-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.sub-menu-lists {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 16px;
  height: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  width: 250px;
}
.sub-menu-lists a {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #1d1d1b;
  margin-bottom: 16px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.sub-menu-lists a:hover {
  text-decoration: underline;
}
.sub-menu-lists.level-2 {
  padding-top: 0 !important;
}
.sub-menu-lists.level-2 a {
  color: #848484;
  font-size: 14px;
  line-height: 19px;
}

.top-level-link .mega-menu:hover + .sub-menu-lists,
.sub-menu-lists:hover {
  padding-top: 16px;
  height: 100%;
}

.main-dropdown-menu .main-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-dropdown-menu .main-links a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1d1d1b;
  text-transform: uppercase;
  text-decoration: underline;
  display: block;
}
.main-dropdown-menu .main-links a:hover {
  text-decoration: none;
}

.user-dropdown-menu {
  width: 200px;
  bottom: -20px;
  padding: 0;
  border-radius: 0;
}
.user-dropdown-menu .user-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1d1d1b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px;
  gap: 10px;
}

.slide-menu {
  width: 305px !important;
  max-width: 100% !important;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 9999;
  background-color: #fff;
}
.slide-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.slide-menu a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #1d1d1b;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.slide-menu .slide-menu-list > .slide-menu-ul-li {
  margin: 0 16px;
  margin-bottom: 20px;
}
.slide-menu .slide-menu-list > .slide-menu-ul-li > a,
.slide-menu .slide-menu-list > .slide-menu-ul-li div,
.slide-menu .slide-menu-list > .slide-menu-ul-li > div a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1d1d1b;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: block;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.slide-menu .slide-menu-list > .slide-menu-ul-li > a::after,
.slide-menu .slide-menu-list > .slide-menu-ul-li div::after,
.slide-menu .slide-menu-list > .slide-menu-ul-li > div a::after {
  display: block;
}
.slide-menu .slide-menu-list > .slide-menu-ul-li .link-level-2::after {
  background-size: 12px;
}
.slide-menu .slide-menu-list > .slide-menu-ul-li .level-2 {
  padding: 0 16px;
}
.slide-menu .slide-menu-list > .slide-menu-ul-li:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}
.slide-menu .accordion-collapse {
  margin-top: 20px;
}
.slide-menu .accordion-collapse .slide-menu-ul-li:not(:last-child) {
  margin-bottom: 16px;
}
.slide-menu .accordion-collapse ul {
  margin-top: 16px;
}

.slide-menue-header {
  padding: 16px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(201, 201, 201, 0.2);
  background-color: #fff;
  position: sticky;
  top: 0;
  margin-bottom: 24px;
  z-index: 99;
}

.slide-menue-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 28px !important;
  color: #fff !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.slide-menu-static {
  margin-top: auto;
  position: sticky;
  bottom: -1px;
  background-color: #fff;
  z-index: 10;
}
.slide-menu-static .account-lang-currency {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.slide-menu-static .account-lang-button {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  height: 60px;
  padding: 20px 16px;
  cursor: pointer;
  width: 100%;
}

/************************ End style Header **************************/
/*********************** Start style footer *************************/
.main-footer {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .main-footer {
    padding: 16px 0;
  }
}

.footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 39px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer-box {
    gap: 36px;
  }
}

.footer-logo {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}

.footer-logo img {
  width: 120px;
  height: auto;
}

@media (max-width: 991px) {
  .footer-section {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .footer-section.accordion-item {
    padding: 12px 0;
    border-bottom: 1px solid #e1e1e1;
  }
  .footer-section:first-child,
  .footer-section:last-child {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .footer-section {
    width: 100% !important;
  }
}

.footer-heading {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  color: #ffffff;
  max-width: 440px;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu .footer-link {
  padding: 7px 0;
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.footer-menu .footer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-left: -4px;
  margin-right: -4px;
}
.social-icons a svg {
  width: 48px;
  height: 48px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.social-icons a:hover {
  opacity: 0.6;
}

.logistics-pay-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.logistics-pay-icons img {
  height: 25px;
  width: unset !important;
}
@media (max-width: 767px) {
  .logistics-pay-icons img {
    height: 22px;
  }
}

.vat-crn-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .vat-crn-sections {
    gap: 8px;
  }
}

.footer-icons,
.vat-crn-sections {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .footer-icons,
  .vat-crn-sections {
    width: auto;
  }
}

@media (max-width: 1199px) {
  .footer-icons {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

.footer-vat-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .footer-vat-box {
    font-size: 8px;
    line-height: 8px;
  }
}

.maroof-icon {
  display: -ms-grid;
  display: grid;
}

.footer-copyrights {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .footer-copyrights {
    font-size: 10px;
    line-height: 14px;
  }
}
.footer-copyrights span {
  display: block;
  font-size: inherit;
}

.footer-line {
  border-color: #ffffff;
  margin: 24px 0;
}

.footer-accordion,
.footer-accordion .footer-section,
.footer-accordion .accordion-button {
  background-color: transparent;
  color: #fff;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.footer-accordion .accordion-item {
  padding: 0;
}
.footer-accordion .accordion-item.accordion-item:not(:last-child) {
  margin-bottom: 36px;
  border-bottom: none;
}

/************************ End style footer **************************/
/********************* Start style product-item **********************/
.product-item {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product-item .product-image {
  margin-bottom: 16px;
  position: relative;
}
.product-item .product-image img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1;
  background-color: #f2f2f2;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.product-item .product-image .next-image {
  width: 0;
  opacity: 0;
}
.product-item .product-image:hover img.main-image {
  width: 0;
  opacity: 0;
}
.product-item .product-image:hover img.next-image {
  width: 100%;
  opacity: 1;
}
/* Product Image Hover Spans (Desktop) */
.product-item .product-image-desktop {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-item .product-image-hover-spans {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  z-index: 5;
  pointer-events: none;
}
.product-item .product-hover-span {
  flex: 1;
  height: 100%;
  cursor: pointer;
  pointer-events: all;
  position: relative;
}

/* Product Image Mobile Swiper */
.product-item .product-image-mobile {
  width: 100%;
  height: 100%;
}
.product-item .product-image-mobile .swiper {
  width: 100%;
  height: 100%;
}
.product-item .product-image-mobile .swiper-slide {
  width: 100%;
  height: 100%;
}
.product-item .product-image-mobile .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
.product-item.product-item-out-of-stock .product-image > a {
  position: relative;
}
.product-item.product-item-out-of-stock .product-image > a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1019607843);
  position: absolute;
  top: 0;
  left: 0;
}
.product-item.product-item-out-of-stock .product-image > a::after {
  content: "Not available";
  position: absolute;
  bottom: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black-color);
}
.product-item .product-item-content {
  padding: 0 8px;
}
.product-item .product-item-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}
.product-item .product-item-actions > a:first-child {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.product-item .product-image-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 33;
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.product-item .add-to-wishlist {
  cursor: pointer;
}
.product-item .add-to-wishlist .heart-loader {
  width: 36px !important;
  height: 36px !important;
  padding: 8px;
  background: #fff;
  border-radius: 50%;
}
.product-item .add-to-wishlist.filled svg path {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}
.product-item .product-item-colors {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .product-item .product-item-colors {
    gap: 12px;
  }
}
.product-item .product-item-colors::-webkit-scrollbar {
  display: none !important;
}
.product-item .product-item-colors .color-item {
  width: 20px;
  border-radius: 50%;
  max-width: calc((100% - 36px) / 3.8);
  aspect-ratio: 1;
  background-color: #fff;
  outline: 1px solid #dddddd;
  border: 3px solid #fff;
  margin: 1px;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.product-item .product-item-colors .color-item.active {
  outline-color: var(--primary-color);
}
.product-item .product-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--primary-color);
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-item .section-product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.product-item .product-price {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #1d1d1b;
  white-space: nowrap;
}
.product-item .product-prev-price {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #c7c7c7;
  text-decoration: line-through;
  white-space: nowrap;
}
.product-item .product-price-offer {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #000000;
  white-space: nowrap;
}
.product-item .product-card-bundle-offer {
  position: absolute;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--product-text-label-color);
  text-transform: capitalize;
  overflow: visible;
  left: -6px;
  top: 16px;
  height: 58px;
  padding: 16px 8px;
  white-space: nowrap;
  border-radius: 0;
  text-align: center;
}
.product-item .product-card-bundle-offer span {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
}
.product-item .product-card-bundle-offer::before {
  content: "";
  border: 3.5px solid;
  border-color: transparent var(--product-label-color) var(--product-label-color) transparent;
  position: absolute;
  left: 0;
  top: -6px;
}
.product-item .product-card-bundle-offer::after {
  content: "";
  border: 3.5px solid;
  border-color: var(--product-label-color) var(--product-label-color) transparent transparent;
  position: absolute;
  left: 0;
  bottom: -6px;
}
@media (min-width: 768px) {
  .product-item .product-item-section {
    width: 50%;
  }
}

.rtl .product-item .product-card-bundle-offer {
  left: auto;
  right: -6px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.rtl .product-item .product-card-bundle-offer span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.rtl .product-item .product-image-actions {
  right: auto;
  left: 12px;
}
.rtl .product-item .product-image-thumbnails {
  left: 60px;
  right: 0;
}
.rtl .product-item.product-item-out-of-stock .product-image > a::after {
  content: "غير متوفر";
}

.product-custom-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 19px;
  font-weight: 300;
  color: #2d2a38;
}

/* General Styles */
.quickview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.36);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
}

.quickview-popup {
  max-height: 90vh;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: white;
  position: relative;
  overflow: auto;
  width: calc(100% - 32px);
  padding: 72px 24px 24px;
}

@media (min-width: 768px) {
  .quickview-popup {
    width: 90%;
    min-height: 570px;
  }
}
@media (min-width: 1024px) {
  .quickview-popup {
    max-width: 1381px;
  }
}

.quickview-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .quickview-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
/* Media Section */
.media-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .media-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 640px;
    height: 640px;
  }
}
.media-container .swiper-button-next,
.media-container .swiper-button-prev {
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
}
.media-container .swiper-button-next::after,
.media-container .swiper-button-prev::after {
  font-size: 12px;
  font-weight: bold;
  color: #000000;
}

.media-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 256px;
  background-color: #f3f4f6;
}

.placeholder-img {
  width: 160px;
  height: auto;
}

.thumbs-wrapper {
  width: 100%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  z-index: 3;
}

@media (min-width: 1024px) {
  .thumbs-wrapper {
    width: 45px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    position: absolute;
    top: 50%;
    left: 23px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.thumbsSwiper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 300px;
}

.thumb-slide {
  width: 45px !important;
  height: 45px !important;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.thumb-slide.thums-slide-quick-view.swiper-slide-thumb-active {
  border: 1px solid #1f4385 !important;
}

.thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.video-icon {
  width: 20px;
  height: 20px;
}

.main-wrapper {
  width: 100%;
}

.main-slide {
  height: 310px !important;
  width: 310px !important;
  position: relative;
}

@media (min-width: 768px) {
  .main-slide {
    height: 640px !important;
    width: 640px !important;
  }
}
.main-img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
  background-color: #f2f2f2;
}

.video-frame {
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px;
}

/* Product Info Section */
.quickview-popup .icon-star1 {
  font-family: icomoon !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.quickview-popup .icon-star1,
.quickview-popup .icon-border-star {
  margin-right: 2px;
  margin-left: 2px;
  margin-top: 1px;
}
.quickview-popup .icon-star1.deactive:before {
  color: #cccccc;
}
.quickview-popup .icon-star1:before {
  content: "\e930";
  color: #000000;
}
.quickview-popup .product-info {
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 8px;
  background-color: white;
  overflow: hidden;
}
.quickview-popup .product-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  color: #000;
}
@media (min-width: 768px) {
  .quickview-popup .product-title {
    font-size: 18px;
    line-height: 30px;
  }
}
.quickview-popup .price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .quickview-popup .price-container {
    gap: 9px;
  }
}
.quickview-popup .original-price {
  color: #d7d7d7;
  font-size: 12px;
  text-decoration: line-through;
}
@media (min-width: 768px) {
  .quickview-popup .original-price {
    font-size: 16px;
  }
}
.quickview-popup .current-price {
  color: #15181b;
}
.quickview-popup .sale-price {
  font-size: 16px;
}
@media (min-width: 768px) {
  .quickview-popup .sale-price {
    font-size: 24px;
  }
}
.quickview-popup .product-description {
  color: #15181b;
  font-size: 16px;
  margin-bottom: 24px;
  margin-top: 24px;
}
.quickview-popup .icon-star1 {
  font-family: icomoon !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.quickview-popup .product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .quickview-popup .product-meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.quickview-popup .badges-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .quickview-popup .badges-container {
    max-width: 413px;
  }
}
.quickview-popup .discount-badge,
.quickview-popup .sold-badge,
.quickview-popup .quantity-badge,
.quickview-popup .custom-badge,
.quickview-popup .bundle-badge,
.quickview-popup .tax-badge {
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}
.quickview-popup .discount-badge {
  background-color: #fee4e2;
  color: #d92c20;
  gap: 8px;
}
.quickview-popup .sold-badge,
.quickview-popup .quantity-badge,
.quickview-popup .tax-badge {
  color: #475569;
  border: 1px solid #cbd5e1;
  padding: 4px 8px;
}
.quickview-popup .quantity-badge,
.quickview-popup .tax-badge {
  background-color: #f8fafc;
}
.quickview-popup .custom-badge {
  background-color: #1f4385;
  color: white;
  font-weight: normal;
  padding: 3px 10px;
  border-radius: 8px;
  line-height: normal;
  max-width: 162px;
  overflow: hidden;
}
.quickview-popup .bundle-badge {
  color: #4b1fec;
  background-color: #f7f5fe;
  border: 1px solid #987ff4;
}
.quickview-popup .product-ratings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .quickview-popup .product-ratings {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.quickview-popup .rating-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.quickview-popup .rating-value {
  color: #757674;
  font-size: 14px;
}
.quickview-popup .stars-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 2px;
}
.quickview-popup .rating-count {
  padding-left: 4px;
  border-left: 1px solid;
}
.quickview-popup [dir="rtl"] .rating-count {
  padding-right: 4px;
  padding-left: 0;
  border-right: 1px solid;
  border-left: none;
}
.quickview-popup .low-stock {
  display: inline-block;
}
.quickview-popup .low-stock-text {
  font-size: 16px;
  color: #ec5550;
}
.quickview-popup .product-options {
  margin-bottom: 24px;
}
.quickview-popup .option-group {
  margin-bottom: 24px;
}
.quickview-popup .option-group:last-child {
  margin-bottom: 0;
}
.quickview-popup .option-title {
  font-size: 16px;
  margin-bottom: 16px;
}
.quickview-popup .option-choices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  overflow: hidden;
  position: relative;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .quickview-popup .option-choices {
    overflow: visible;
  }
}
.quickview-popup .option-choices .choice-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1d1d1b;
  border: 1px solid transparent;
  cursor: pointer;
}

.quickview-popup .option-choices .choice-item.selected-border {
  border-color: #452E2EEE !important;
}

.quickview-popup .option-choices .choice-item:not(.disable, .active):hover {
  border-color: #d9d9d9;
}

.quickview-popup .option-choices .choice-item.active {
  border-color: var(--black-color);
}
.quickview-popup .option-choices .choice-item.disable {
  color: #d9d9d9;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.quickview-popup .option-choices .choice-item img {
  width: 94px;
  height: 94px;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #d9d9d9;
}
.quickview-popup .option-choices .choice-item .color-item {
  width: 20px;
  border-radius: 50%;
  aspect-ratio: 1;
  background-color: #fff;
  outline: 1px solid #dddddd;
  border: 3px solid #fff;
  margin: 1px;
  cursor: pointer;
  margin-bottom: 16px;
  display: block;
}
.quickview-popup .option-choices .choice-item.active .color-item {
  outline-color: var(--primary-color);
}
@media (max-width: 767px) {
  .quickview-popup .option-choices .choice-item .color-item {
    width: 16px;
  }
}
.quickview-popup .option-choices .choice-item.disable::after {
  content: "";
  width: 1px;
  height: 200%;
  background-color: #d9d9d9;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(50deg);
  transform: translate(-50%, -50%) rotate(50deg);
}
.quickview-popup .option-choices .choice-item.choice-color.disable::after {
  background-color: #fff;
}
.quickview-popup .option-choices-button {
  background-color: #f8f8f8;
  border: 1px solid #eeeeee;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: var(--black-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.quickview-popup .option-choice {
  padding: 7px;
  border-bottom: 1px solid #e5e4e4;
  cursor: pointer;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.quickview-popup .color-choice {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.quickview-popup .text-choice {
  background-color: white;
  color: #eeeeee;
  border-color: #eeeeee;
  padding: 8px 10px;
  border-radius: 2px;
  min-width: 36px;
  min-height: 36px;
}
.quickview-popup .box-qty-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  border: 1px solid #eeeeee;
  padding: 16px;
  height: 48px;
  width: 117px;
}
.quickview-popup .input-number {
  border: none;
  outline: none;
  text-align: center;
  max-width: 70px;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--black-color);
  padding: 0;
}
.quickview-popup .product-quantity-box {
  border: 1px solid #eeeeee;
  padding: 10px;
  min-width: 130px;
  height: 48px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .quickview-popup .product-quantity-box {
    min-width: 115px;
  }
}
.quickview-popup .btn-add-to-cart {
  background-color: var(--primary-color) !important;
  color: #fff;
  width: 100%;
  padding: 12px 24px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  font-size: 16px;
  line-height: 22px;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
}
.quickview-popup .btn-add-to-cart:hover {
  opacity: 0.7;
}
.quickview-popup .quantity-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
}
.quickview-popup .quantity-btn {
  color: #000;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
.quickview-popup .quantity-input {
  background: transparent;
  width: 27px;
  text-align: center;
  font-size: 15px;
  border: none;
}
.quickview-popup .actions-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.quickview-popup .add-to-cart-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
  color: white;
  border-radius: 8px;
  width: 265px;
  background-color: #1f4385;
  text-decoration: none;
}
.quickview-popup .cart-loader {
  display: none;
}
.quickview-popup .wishlist-btn-container {
  position: relative;
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 50%;
}
.quickview-popup .wishlist-loader {
  display: none;
}

/********************** End style product-item ***********************/
/*********************************************************************
*********************** Style to Home Modules ************************
*********************************************************************/
/********************* Start style Main Slider **********************/
.main-slider {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  overflow-y: hidden;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  aspect-ratio: 1.54;
}
@media (max-width: 767px) {
  .main-slider {
    aspect-ratio: 0.53;
    max-height: 100vh;
  }
}
.main-slider .slider-item {
  position: relative;
}
.main-slider img {
  aspect-ratio: 1.54;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}
@media (max-width: 767px) {
  .main-slider img {
    aspect-ratio: 0.53;
    max-height: 100vh;
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
}
.main-slider .slick-dots {
  bottom: 135px;
  max-width: 1404px;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  right: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .main-slider .slick-dots {
    max-width: 1140px;
  }
}
@media (min-width: 992px) {
  .main-slider .slick-dots {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .main-slider .slick-dots {
    bottom: 70px;
  }
}
.main-slider .slick-dots li {
  margin: 0;
}
.main-slider .slick-dots li button:before {
  color: #fff;
  opacity: 0.5;
}
.main-slider .slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

.scroll-down {
  position: absolute;
  bottom: 56px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
  cursor: pointer;
}
@media (max-width: 767px) {
  .scroll-down {
    bottom: 24px;
  }
}

.main-slider-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 110px;
}
@media (max-width: 767px) {
  .main-slider-content {
    padding-bottom: 85px;
  }
}

.main-slider-title {
  font-size: 44px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  max-width: 460px;
}
@media (max-width: 991px) {
  .main-slider-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 6px;
  }
}

.main-slider-des {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  max-width: 460px;
  text-align: center;
}
@media (max-width: 991px) {
  .main-slider-des {
    font-size: 12px;
    margin-bottom: 0;
  }
}

.main-slider-button {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 2px;
  position: relative;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .main-slider-button {
    font-size: 12px;
  }
}
.main-slider-button::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  border: 0.5px solid;
}
.main-slider-button:hover {
  opacity: 0.7;
}

/********************** End style Main Slider ***********************/
/********************* Start style banner **********************/
.home-banner {
  position: relative;
}
.home-banner .main-slider-content {
  padding-bottom: 0;
}

/********************** End style banner ***********************/
/********************* Start style Home products **********************/
.home-products {
  padding: 40px 0;
  background-image: url(home-products-background.svg);
  background-position: -200px bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-products {
    padding: 24px 0;
    background-size: 275px;
    background-position: -60px bottom;
  }
}

.home-products-swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 27px;
  overflow: visible;
  margin: 0 -8px;
  --swiper-scrollbar-size: 3px;
  --swiper-scrollbar-bg-color: #0000001a;
  --swiper-scrollbar-drag-bg-color: #212121;
}
@media (max-width: 767px) {
  .home-products-swiper {
    padding-bottom: 19px;
    overflow: visible;
  }
}
.home-products-swiper .swiper-scrollbar {
  width: 100%;
  left: 0;
}
.home-products-swiper .swiper-wrapper {
  padding: 0 8px;
}

/********************** End style Home products ***********************/
/********************* Start style home-video-section **********************/
.home-video-section {
  padding: 34px;
  background-color: #f2f2f2;
  position: relative;
}
.home-video-section .plyr video {
  aspect-ratio: 1.75;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) {
  .home-video-section {
    padding: 23px 16px;
  }
  .home-video-section .plyr video {
    aspect-ratio: 0.57;
  }
}
.home-video-section .plyr__poster {
  background-size: cover;
}
.home-video-section .home-products-swiper {
  padding: 14px;
}
@media (max-width: 767px) {
  .home-video-section .home-products-swiper {
    padding: 8px;
    overflow: hidden;
  }
}
.home-video-section .product-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
  background: #fff;
  padding: 16px;
}
.home-video-section .product-item .product-image {
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
}
.home-video-section .product-item .product-card-bundle-offer {
  display: none !important;
}
.home-video-section .product-item .product-image-actions,
.home-video-section .product-item .add-to-cart-button {
  display: none;
}
.home-video-section .product-item .product-item-content {
  overflow: hidden;
}

.home-video-products {
  position: absolute;
  bottom: 34px;
  right: 0;
  width: 100%;
}

.plyr--playing .plyr__control--overlaid {
  visibility: visible !important;
}

@media (max-width: 768px) {
  .home-video-products {
    bottom: 24px;
  }
  .home-video-section .product-item {
    width: 95% !important;
  }
}
/* @media (min-width: 768px) {
  [dir=rtl] .home-video-section .home-products-swiper .swiper-wrapper {
    direction: rtl;
    -webkit-animation: marquee-rtl 16s linear infinite alternate;
            animation: marquee-rtl 16s linear infinite alternate;
  }
}

@media (min-width: 768px) {
  [dir=ltr] .home-video-section .home-products-swiper .swiper-wrapper {
    direction: ltr;
    -webkit-animation: marquee-ltr 16s linear infinite alternate;
            animation: marquee-ltr 16s linear infinite alternate;
  }
}

.home-video-section .home-products-swiper .swiper-wrapper:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
} */

@-webkit-keyframes marquee-ltr {
  0% {
    -webkit-transform: translate(-125%, 0);
    transform: translate(-125%, 0);
  }
  100% {
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
  }
}

@keyframes marquee-ltr {
  0% {
    -webkit-transform: translate(-125%, 0);
    transform: translate(-125%, 0);
  }
  100% {
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
  }
}
@-webkit-keyframes marquee-rtl {
  0% {
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
  }
  100% {
    -webkit-transform: translate(125%, 0);
    transform: translate(125%, 0);
  }
}
@keyframes marquee-rtl {
  0% {
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
  }
  100% {
    -webkit-transform: translate(125%, 0);
    transform: translate(125%, 0);
  }
}
/********************** End style home-video-section ***********************/
/********************** Start style home-categories-section ***********************/
.home-categories-section {
  margin: 4px 0;
  overflow: hidden;
}
.home-categories-section .category-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.home-categories-section .category-item > a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.home-categories-section .category-item > a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.home-categories-section .category-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.home-categories-section .category-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.home-categories-section .category-item .category-item-content-box {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 1;
}
@media (max-width: 767px) {
  .home-categories-section .category-item .category-item-content-box {
    left: 12px;
    bottom: 32px;
  }
}
.home-categories-section .category-item h3 {
  font-size: 44px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: initial;
}
@media (max-width: 767px) {
  .home-categories-section .category-item h3 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.home-categories-section .category-item span {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #fff;
  text-align: initial;
  text-transform: uppercase;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 2px;
  position: relative;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .home-categories-section .category-item span {
    font-size: 12px;
  }
}
.home-categories-section .category-item span::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.home-categories-section .category-item span:hover {
  opacity: 0.7;
}

.main-categories-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  aspect-ratio: 2.81;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .main-categories-box {
    aspect-ratio: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main-categories-box .category-item:nth-child(1) {
  -ms-flex-negative: 2;
  flex-shrink: 2;
}
.main-categories-box .category-item:nth-child(2) {
  -ms-flex-negative: 3;
  flex-shrink: 3;
}

.rtl .category-item .category-item-content-box {
  left: auto;
  right: 40px;
}
@media (max-width: 767px) {
  .rtl .category-item .category-item-content-box {
    left: auto;
    right: 12px;
  }
}

.home-categories-swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 27px;
  --swiper-scrollbar-size: 3px;
  --swiper-scrollbar-bg-color: #0000001a;
  --swiper-scrollbar-drag-bg-color: #212121;
}
@media (max-width: 767px) {
  .home-categories-swiper {
    padding-bottom: 19px;
    overflow: visible;
  }
}
.home-categories-swiper .swiper-scrollbar {
  width: 100%;
  left: 0;
}
.home-categories-swiper .swiper-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  aspect-ratio: 2.81;
}
@media (max-width: 767px) {
  .home-categories-swiper .swiper-wrapper {
    aspect-ratio: 1;
  }
}
.home-categories-swiper .swiper-slide {
  aspect-ratio: 1.15625;
  height: auto;
  width: auto !important;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .home-categories-swiper .swiper-slide {
    aspect-ratio: 1;
    width: 100% auto;
  }
}
.home-categories-swiper .swiper-slide:nth-child(2) {
  aspect-ratio: 1.6484375;
}
@media (max-width: 767px) {
  .home-categories-swiper .swiper-slide:nth-child(2) {
    aspect-ratio: 1;
  }
}

/********************** End style home-categories-section ***********************/
/********************** Start style home-products-sellers **********************/
@media (max-width: 767px) {
  .home-products-sellers {
    margin: 24px 0;
  }
}

.products-sellers-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 0 50%;
  grid-template-columns: 50% 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
}
@media (max-width: 767px) {
  .products-sellers-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
}
@media (max-width: 767px) {
  .products-sellers-box.box-end {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.products-sellers-image {
  position: relative;
}
.products-sellers-image img {
  width: 100%;
  aspect-ratio: 0.77;
  width: 50vw;
  margin-left: calc(-50vw + 100%);
}
@media (max-width: 767px) {
  .products-sellers-image img {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    aspect-ratio: 0.77;
  }
}

.rtl .products-sellers-image img {
  margin-right: 0;
  margin-right: calc(-50vw + 100%);
}
@media (max-width: 767px) {
  .rtl .products-sellers-image img {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
}

@media (max-width: 767px) {
  .products-sellers-content {
    padding-inline: 23px;
    position: relative;
    z-index: 1;
  }
}
.products-sellers-content .products-sellers-slider {
  max-width: 388px;
  margin: auto;
}
.products-sellers-content .slick-prev {
  left: -70px;
  width: 36px;
  height: 36px;
}
@media (max-width: 1199px) {
  .products-sellers-content .slick-prev {
    left: -45px;
  }
}
@media (max-width: 767px) {
  .products-sellers-content .slick-prev {
    left: 9px;
    z-index: 1;
    top: 35%;
  }
}
.products-sellers-content .slick-next {
  right: -70px;
  width: 36px;
  height: 36px;
}
@media (max-width: 1199px) {
  .products-sellers-content .slick-next {
    right: -45px;
  }
}
@media (max-width: 767px) {
  .products-sellers-content .slick-next {
    right: 9px;
    z-index: 1;
    top: 35%;
  }
}

.rtl .products-sellers-content .slick-prev {
  left: auto;
  right: -70px;
}
@media (max-width: 1199px) {
  .rtl .products-sellers-content .slick-prev {
    left: auto;
    right: -45px;
  }
}
@media (max-width: 767px) {
  .rtl .products-sellers-content .slick-prev {
    left: auto;
    right: 9px;
  }
}
.rtl .products-sellers-content .slick-next {
  right: auto;
  left: -70px;
}
@media (max-width: 1199px) {
  .rtl .products-sellers-content .slick-next {
    right: auto;
    left: -45px;
  }
}
@media (max-width: 767px) {
  .rtl .products-sellers-content .slick-next {
    right: auto;
    left: 9px;
  }
}

.products-sellers-box.box-end .products-sellers-image img {
  margin-right: calc(-50vw + 100%);
}
@media (max-width: 767px) {
  .products-sellers-box.box-end .products-sellers-image img {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.products-sellers-box.box-end .products-sellers-content {
  padding-right: 64px;
}
@media (max-width: 1199px) {
  .products-sellers-box.box-end .products-sellers-content {
    padding-right: 32px;
  }
}
@media (max-width: 991px) {
  .products-sellers-box.box-end .products-sellers-content {
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .products-sellers-box.box-end .products-sellers-content {
    padding-right: 0;
  }
}

.rtl .products-sellers-box.box-end .products-sellers-image img {
  margin-right: 0;
  margin-left: calc(-50vw + 100%);
}
@media (max-width: 767px) {
  .rtl .products-sellers-box.box-end .products-sellers-image img {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.rtl .products-sellers-box.box-end .products-sellers-content {
  padding-right: 0;
  padding-left: 64px;
}
@media (max-width: 1199px) {
  .rtl .products-sellers-box.box-end .products-sellers-content {
    padding-right: 0;
    padding-left: 32px;
  }
}
@media (max-width: 991px) {
  .rtl .products-sellers-box.box-end .products-sellers-content {
    padding-right: 0;
    padding-left: 24px;
  }
}
@media (max-width: 767px) {
  .rtl .products-sellers-box.box-end .products-sellers-content {
    padding-right: 0;
    padding-left: 0;
  }
}

.more-products-icon {
  text-align: center;
  margin-top: 40px;
}
.more-products-icon svg {
  -webkit-animation: infiniteRotate 2s linear infinite;
  animation: infiniteRotate 2s linear infinite;
  margin: auto;
}
@media (max-width: 767px) {
  .more-products-icon {
    margin-top: 24px;
  }
}

@-webkit-keyframes infiniteRotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes infiniteRotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/********************** End style home-products-sellers ***********************/
/********************* Start style home-testimonials-section **********************/
.home-testimonials-section {
  padding: 100px 0;
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .home-testimonials-section {
    padding: 150px 0;
  }
}
.home-testimonials-section .testimonials-slider {
  padding-bottom: 16px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .home-testimonials-section .testimonials-slider {
    padding-bottom: 36px;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .home-testimonials-section .slick-dots li {
    margin: 0 2px;
  }
}
.home-testimonials-section .slick-dots li button::before {
  color: #2d2d2d;
  opacity: 0.3;
  font-size: 12px;
}
@media (max-width: 767px) {
  .home-testimonials-section .slick-dots li button::before {
    font-size: 10px;
  }
}
.home-testimonials-section .slick-dots li.slick-active button::before {
  color: #2d2d2d;
  opacity: 1;
}

.testimonial-item {
  text-align: center;
}
.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: block;
}
@media (max-width: 767px) {
  .testimonial-item img {
    width: 68px;
    height: 68px;
    margin-bottom: 36px;
  }
}
.testimonial-item .testimonial-item-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  color: #151515;
  max-width: 1040px;
  margin: 0 auto 16px;
  white-space: initial;
}
@media (max-width: 767px) {
  .testimonial-item .testimonial-item-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 36px;
  }
}
.testimonial-item .testimonial-item-text::before {
  content: '"';
}
.testimonial-item .testimonial-item-text::after {
  content: '"';
}
.testimonial-item .testimonial-item-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #151515;
}

/********************** End style home-testimonials-section ***********************/
/********************** Staret style selected-products ***********************/
.home-selected-products {
  position: relative;
  overflow: hidden;
}
.home-selected-products .point-item {
  position: absolute;
  background-color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 18.4px 0px rgba(219, 219, 219, 0.2509803922);
  box-shadow: 0px 4px 18.4px 0px rgba(219, 219, 219, 0.2509803922);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.home-selected-products .point-item:not(.active)::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home-selected-products .point-item.active {
  border: 4px solid rgba(0, 0, 0, 0.2705882353);
}
.home-selected-products .point-item.active::before {
  content: url("./close_icon.svg");
  position: absolute;
  width: 10px;
  height: 14px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home-selected-products .point-product {
  position: absolute;
  width: 375px;
  -webkit-transform: translate(calc(-100% - 36px), -50%);
  transform: translate(calc(-100% - 36px), -50%);
}
@media (max-width: 767px) {
  .home-selected-products .point-product {
    width: 330px;
    max-width: 100%;
    -webkit-transform: translate(-50%, 36px);
    transform: translate(-50%, 36px);
  }
}
.home-selected-products .point-product::after {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: -14px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .home-selected-products .point-product::after {
    top: 0;
    right: calc(50% - 12px);
  }
}
.home-selected-products .product-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
  background: #fff;
  padding: 16px;
}
.home-selected-products .product-item .product-image {
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
}
.home-selected-products .product-item .product-card-bundle-offer {
  display: none !important;
}
.home-selected-products .product-item .product-image-actions,
.home-selected-products .product-item .add-to-cart-button {
  display: none;
}
.home-selected-products .product-item .product-item-content {
  overflow: hidden;
}

/********************** End style selected-products ***********************/
/********************** Staret style products-display  ***********************/
.home-products-display .swiper {
  width: 100%;
  padding-top: 36px;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .home-products-display .swiper {
    padding-top: 12px;
  }
}

.home-products-display .swiper .swiper-slide {
  position: relative;
  width: 365px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.4, 0.45, 1.4);
  transition: all 0.8s cubic-bezier(0.25, 0.4, 0.45, 1.4);
}
@media (max-width: 767px) {
  .home-products-display .swiper .swiper-slide {
    width: 288px;
  }
}
.home-products-display .swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #f2f2f2;
}
.home-products-display .swiper .swiper-pagination-bullet-active {
  background-color: #212121 !important;
}
.home-products-display .swiper .swiper-pagination-bullet {
  background-color: grey;
}
.home-products-display .swiper .swiper-button-prev,
.home-products-display .swiper .swiper-button-next {
  top: 42%;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  color: #000;
  font-weight: 700;
  outline: 0;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (max-width: 767px) {
  .home-products-display .swiper .swiper-button-prev,
  .home-products-display .swiper .swiper-button-next {
    display: none;
  }
}
.home-products-display .swiper .swiper-button-prev::after,
.home-products-display .swiper .swiper-button-next::after {
  font-size: 14px;
}
.home-products-display .swiper .swiper-button-prev:after {
  position: relative;
  left: -1px;
}
.home-products-display .swiper .swiper-button-next:after {
  position: relative;
  left: 1px;
}
.home-products-display .swiper .swiper-button-prev,
.home-products-display .swiper .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.home-products-display .swiper .swiper-button-next,
.home-products-display .swiper .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.home-products-display .swiper .swiper-button-prev.swiper-button-disabled,
.home-products-display .swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.home-products-display .product-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
  background: #fff;
  padding: 16px;
  height: auto;
  -webkit-box-shadow: 0px 4px 60.7px 0px rgba(177, 177, 177, 0.2509803922);
  box-shadow: 0px 4px 60.7px 0px rgba(177, 177, 177, 0.2509803922);
  margin-top: 24px;
  display: none;
}
.home-products-display .product-item .product-image {
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
}

.home-products-display .product-item .is-not-taxable,
.home-video-products .product-item .is-not-taxable,
.home-selected-products .product-item .is-not-taxable {
  display: none;
}

.home-products-display .product-item .product-card-bundle-offer {
  display: none !important;
}
.home-products-display .product-item .product-image-actions,
.home-products-display .product-item .add-to-cart-button {
  display: none;
}
.home-products-display .product-item .product-item-content {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.home-products-display .product-item .product-rating {
  order: 7;
  margin-bottom: 0 !important;
  margin-top: 12px;
}


.home-products-display .swiper-slide-active .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgb(0 0 0 / 16%), rgba(0, 0, 0, 0)) !important;
}

@media (max-width: 767px) {
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-left {
    display: none;
  }
}

/********************** End style products-display  ***********************/
/********************** End style features  ***********************/
.home-features-section {
  background-color: #f2f2f2;
  padding: 48px 0;
}
.home-features-section .features-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.box-feat {
  width: calc((100% - 144px) / 4);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .box-feat {
    width: calc((100% - 48px) / 2);
  }
}
@media (max-width: 767px) {
  .box-feat {
    width: 100%;
  }
}

.box-feat .feature-image {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  margin-bottom: 16px;
}

.box-feat .feature-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #333333;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.box-feat .feature-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #1c1c1e;
  text-align: inherit;
}

/********************** End style features  ***********************/
/************ start faqs modul ************/
.home-faqs-section {
  padding: 36px 0;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .home-faqs-section {
    padding: 24px 0;
    margin: 24px 0;
  }
}
.home-faqs-section .accordion {
  max-width: 920px;
}
@media screen and (min-width: 768px) {
  .home-faqs-section .accordion {
    overflow: hidden;
  }
}
.home-faqs-section .accordion .accordion-item {
  border: none;
  padding: 16px 0;
  width: 100%;
  border-bottom: 1px solid rgba(219, 219, 219, 0.9333333333);
}
.home-faqs-section .accordion .accordion-item .accordion-body {
  font-size: 16px;
  font-weight: 300;
  color: #1d1d1b;
  line-height: 24px;
  padding: 16px 24px;
}
.home-faqs-section .accordion .accordion-button {
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  line-height: 30px;
  padding: 0;
}
.home-faqs-section .accordion .accordion-button::after {
  display: none;
}
.home-faqs-section .accordion .accordion-button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.home-faqs-section .accordion .accordion-button:not(.collapsed) {
  border-bottom: 1px solid rgba(219, 219, 219, 0.9333333333);
  padding-bottom: 16px !important;
}
@media screen and (max-width: 767px) {
  .home-faqs-section .accordion .accordion-button {
    font-size: 16px;
    padding: 0;
  }
}
.home-faqs-section .accordion .accordion-button.collapsed .close {
  display: none;
}
.home-faqs-section .accordion .accordion-button:not(.collapsed) .open {
  display: none;
}
.home-faqs-section .accordion .accordion-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
}

/************ End faqs modul **************/
/************ End partners modul **************/
.home-partners-section {
  padding: 175px 0;
  background-color: #f2f2f2;
}
.home-partners-section .partners-slider-wrapper {
  max-width: 920px;
  margin: auto;
}
.home-partners-section img {
  max-width: 152px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

/************ End partners modul **************/
/*********************************************************************
************************** Style to Pages ****************************
*********************************************************************/
/********************* Start style products page **********************/
.products-filter-section {
  -webkit-box-shadow: 0px -1px 0px 0px #d9d9d9, 0px 1px 0px 0px #d9d9d9;
  box-shadow: 0px -1px 0px 0px #d9d9d9, 0px 1px 0px 0px #d9d9d9;
}
@media (max-width: 767px) {
  .products-filter-section .container-lg {
    padding: 0;
  }
}

.products-filter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 56px;
}
@media (max-width: 767px) {
  .products-filter-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.product-list-shape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 104px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100%;
  border-right: 1px solid #d9d9d9;
}
@media (max-width: 767px) {
  .product-list-shape {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.product-list-shape .shape-item svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.product-list-shape .shape-item.active svg path,
.product-list-shape .shape-item:hover svg path,
.product-list-shape .shape-item[data-shape="shape-1"].active svg rect,
.product-list-shape .shape-item[data-shape="shape-1"]:hover svg rect {
  fill: #000;
}

.rtl .product-list-shape {
  border-right: none;
  border-left: 1px solid #d9d9d9;
}

.sort-by-filter {
  height: 100%;
  border-left: 1px solid #d9d9d9;
  width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.sort-by-filter .btn-filter {
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  color: #7f7f7f;
}
@media (max-width: 767px) {
  .sort-by-filter {
    border-left: none;
    border-right: 1px solid #d9d9d9;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.rtl .sort-by-filter {
  border-left: none;
  border-right: 1px solid #d9d9d9;
}
@media (max-width: 767px) {
  .rtl .sort-by-filter {
    border-left: 1px solid #d9d9d9;
    border-right: none;
  }
}

.btn-filter {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: #000;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.btn-filter svg {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  height: 10px;
}
.btn-filter.show svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.btn-filter-mobile {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-right: 1px solid #d9d9d9;
  border-radius: 0;
}
@media (min-width: 768px) {
  .btn-filter-mobile {
    display: none;
  }
}

.rtl .btn-filter-mobile {
  border-right: none;
  border-left: 1px solid #d9d9d9;
}

.sort-by-filter .dropdown-menu,
.filter-item .dropdown-menu,
#attribute_form .dropdown-menu {
  width: 180px !important;
  -webkit-transform: translate(0, 56px) !important;
  transform: translate(0, 56px) !important;
  width: 180px !important;
  transform: translate(0, 56px) !important;
  border-radius: 0 !important;
  border: 1px solid #d9d9d9 !important;
  padding: 8px 0 !important;
}
.sort-by-filter .dropdown-menu .dropdown-item,
.filter-item .dropdown-menu .dropdown-item,
#attribute_form .dropdown-menu .dropdown-item {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  color: #333333;
  cursor: pointer;
}

@media (max-width: 768px) {
  .filter-item .dropdown-menu,
  #attribute_form .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    border: none !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
}

.filters-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-left: none !important;
  z-index: 1;
}
@media (max-width: 768px) {
  .filters-box {
    z-index: 9999;
  }
}
.filters-box .offcanvas-header {
  padding: 20px 0;
  margin: 0 16px 20px;
  border-bottom: 1px solid #d9d9d9;
}
.filters-box .offcanvas-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1d1d1b;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .filters-box .btn-filter {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .filters-box {
    position: unset;
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border: none;
  }
  .filters-box .offcanvas-header {
    display: none;
  }
}
@media (max-width: 767px) {
  .filters-box {
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    gap: 0;
  }
}

.clear-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: #fff;
  background-color: var(--primary-color);
  padding: 18px;
  margin: 16px;
}
@media (min-width: 768px) {
  .clear-filters {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 16px;
  }
  .clear-filters svg {
    display: none;
  }
}

.filter-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .filter-item {
    height: auto;
    padding: 0 0 20px;
    margin: 0 16px 20px;
    border-bottom: 1px solid #d9d9d9;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .filter-item:last-child {
    border-bottom: none;
  }
  .filter-item .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    border: none !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
}

.product-attributes {
  min-width: auto !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  padding: 0 !important;
  height: 100%;
}
@media (max-width: 768px) {
  .product-attributes {
    position: initial !important;
    -webkit-transform: none !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
  }
  .product-attributes .product-attributes-light-box {
    position: initial;
    height: auto;
    background-color: transparent;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
  .product-attributes .product-attributes-light-box-top-section {
    height: auto;
  }
  .product-attributes .products-filters-container {
    height: auto;
    overflow-y: initial;
    background-color: transparent;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    opacity: initial;
  }
  .product-attributes .products-filters-attribute-form {
    margin: 0;
    padding: 0;
  }
}

.products-filters-container {
  margin: 0 !important;
}

.filtration-header {
  display: none !important;
}

#attribute_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  height: 56px;
}
@media (max-width: 768px) {
  #attribute_form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    gap: 0;
    margin: 0 16px;
  }
}
#attribute_form .attribute-group {
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  height: 100% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
@media (max-width: 768px) {
  #attribute_form .attribute-group {
    width: 100% !important;
    height: auto !important;
    padding: 0 0 20px !important;
    margin: 0 0 20px !important;
    border-bottom: 1px solid #d9d9d9 !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
}
#attribute_form .attribute-group:last-of-type {
  display: none !important;
}
#attribute_form .attribute-header {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0 !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  #attribute_form .attribute-header {
    width: 100%;
  }
}
#attribute_form .attribute-header .attribute-arrow {
  display: block !important;
}
#attribute_form .attribute-header .attribute-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: #000;
}
#attribute_form .attribute-header svg {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  height: 10px;
}
#attribute_form .attribute-header.show svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#attribute_form .attribute-body {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  max-height: -webkit-fit-content !important;
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
  opacity: 1 !important;
}
@media (max-width: 768px) {
  #attribute_form .attribute-body {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#attribute_form .filter-row:not(.attribute-label-hidden) {
  padding: 8px 16px !important;
}
#attribute_form .filter-row input {
  display: none;
}
#attribute_form .attribute-label {
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  color: #333333;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  #attribute_form .attribute-label {
    background-color: transparent;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}

.irs--round .irs-handle {
  border: 1px solid #000000 !important;
  -webkit-box-shadow: 0px 0px 0px 1px #000000;
  box-shadow: 0px 0px 0px 1px #000000;
  cursor: pointer;
}

.irs--round .irs-bar {
  background-color: #000000 !important;
  height: 7px !important;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single,
.irs--round .irs-min,
.irs--round .irs-max {
  display: none;
}

/* noUiSlider: same look as previous round slider + RTL */
.js-price-range-slider-wrapper .noUi-target {
  direction: ltr;
}
.js-price-range-slider-wrapper .noUi-horizontal {
  height: 8px !important;
}
.js-price-range-slider-wrapper .noUi-connect {
  background: #000;
}
.js-price-range-slider-wrapper .noUi-handle {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  border: 1px solid #000 !important;
  cursor: pointer;
  top: -7px !important;
  right: -10px !important;
}
.js-price-range-slider-wrapper .noUi-handle::before,
.js-price-range-slider-wrapper .noUi-handle::after {
  display: none;
}
[dir="rtl"] .js-price-range-slider-wrapper .noUi-handle {
  right: auto !important;
  left: -10px !important;
}

.price-filter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.box-break {
  font-size: 14px;
  line-height: 24px;
  padding: 2px;
}

.price-filter-submit {
  background-color: var(--primary-color);
  color: #fff;
  width: 100%;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  cursor: pointer;
  border-radius: 0;
  display: block;
  margin: 24px 0;
}

.price-filter-submit:hover {
  opacity: 0.7;
}

.form-fillter-max-min {
  height: 48px;
}

.form-fillter-max-min span {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #64748b;
  display: none;
}

.form-fillter-max-min input {
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  color: var(--black-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d9d9d9 !important;
}

.home-categories-section {
  margin: 24px 0;
}
.home-categories-section .categories-slider {
  margin: 0 -2px;
}

.categories-slider .cat-col {
  padding-left: 2px;
  padding-right: 2px;
}

.category-item h3 {
  font-size: 12px;
  font-weight: 600;
  line-height: 21px;
  color: #000;
  text-transform: uppercase;
  margin-top: 12px;
}

.page-categories-section {
  margin: 24px 0;
  overflow: hidden;
}
.page-categories-section .category-item {
  position: relative;
  width: 100%;
}
.page-categories-section .category-item > a {
  display: block;
  width: 100%;
  height: 100%;
}
.page-categories-section .category-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-categories-section .category-item h3 {
  font-size: 12px;
  font-weight: 600;
  line-height: 21px;
  color: #000;
  margin-top: 12px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .page-categories-section .categories-slider-wrapper,
  .page-categories-section .categories-slider,
  .page-categories-section .slick-list {
    overflow: visible;
  }
}
.page-categories-section .slick-track {
  margin: 0 -2px;
}
.page-categories-section .category-item {
  margin: 0 2px;
}
.page-categories-section button.slick-prev {
  left: -48px;
  width: 36px;
  height: 36px;
}
.page-categories-section button.slick-next {
  right: -48px;
  width: 36px;
  height: 36px;
}

[dir="rtl"] .page-categories-section .slick-prev {
  right: -48px;
  left: auto;
}

[dir="rtl"] .page-categories-section .slick-next {
  left: -48px;
  right: auto;
}

/********************** End style  products page **********************/
/********************** Start style Additional Page page ********************/
#blog-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
  min-height: 631px;
}

@media (max-width: 1024px) {
  #blog-post {
    min-height: 464px;
  }
}
@media (max-width: 767px) {
  #blog-post {
    min-height: 452px;
  }
}
.blog-text > * {
  max-width: 100%;
  word-wrap: break-word;
}

.blog-text h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: var(--black-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
  margin-bottom: 10px;
}

.blog-text h3,
.blog-text h4,
.blog-text h5,
.blog-text h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 10px;
}

.blog-text p,
.blog-text ul li,
.blog-text ol li {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--black-color);
}

.blog-text p:not(:last-child),
.blog-text ul li:not(:last-child),
.blog-text ol li:not(:last-child) {
  margin-bottom: 24px;
}

.blog-text ul,
.blog-text ol {
  list-style-position: inside !important;
  padding: 0;
}

.blog-text ul:not(:last-child),
.blog-text ol:not(:last-child) {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .blog-text h2 {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 5px;
  }
  .blog-text h3,
  .blog-text h4,
  .blog-text h5,
  .blog-text h6 {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 5px;
  }
  .blog-text p,
  .blog-text ul li,
  .blog-text ol li {
    font-size: 14px;
    line-height: 24px;
  }
  .blog-text p:not(:last-child),
  .blog-text ul li:not(:last-child),
  .blog-text ol li:not(:last-child) {
    margin-bottom: 15px;
  }
  .blog-text ul:not(:last-child),
  .blog-text ol:not(:last-child) {
    margin-bottom: 20px;
  }
}
/********************** End style Additional Page page **********************/
/********************** Start style Faqs page ********************/
/********************** End style Faqs page **********************/