@font-face {
  font-family: 'yekanbakh';
  font-weight: normal;
  src: url('../fonts/woff/YekanBakhFaNum-Regular.woff'), format('.woff'), url('../fonts/woff2/YekanBakhFaNum-Regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'yekanbakh';
  font-weight: bold;
  src: url('../fonts/woff/YekanBakhFaNum-ExtraBold.woff') format('woff'), url('../fonts/woff2/YekanBakhFaNum-ExtraBold.woff2') format('woff2');
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'yekanbakh' !important;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

html,
body {
  scrollbar-color: var(--primary-color) #d1d5db;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #d1d5db;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0e2db1;
}

:root {
  --primary-color: #832d6a;
  --secondary-green: #b64094;
  --secondary-color: #ffeefa;
  --orange-color: #FFD7F3;
  --color-three: #f5f5f5;
  --mainWhite: #ffffff;
  --mainGrey: #b1b1b1;
  --secondaryGrey: #dadada;
  --thirdGrey: #f4f4f4;
  --color-text: #686868;
  --color-danger: #173087;
  --mainSpacing: 0.1rem;
  --mainTransition: all 0.2s ease-in-out;
  --spacer: 1rem;
  --font-size-small: 0.625rem;
  --font-size-0: 0.75rem;
  --font-size-1: 0.875rem;
  --font-size-2: 1rem;
  --font-size-3: 1.125rem;
  --font-size-4: 1.25rem;
  --font-size-5: 1.375rem;
  --line-height-28: 1.75rem;
}

.owl-stage {
  display: flex;
}

.owl-stage-outer {
  overflow-x: clip;
}

a {
  color: unset;
  text-decoration: none;
}

a:hover,
a:focus,
a:active,
a:active:focus {
  color: unset;
  text-decoration: none;
}

img {
  width: 100%;
}

p {
  margin: 0;
  text-align: justify;
  color: #515152;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

svg path {
  transition: var(--mainTransition);
}

.text-justify {
  text-align: justify;
}

.centering {
  display: flex;
  align-items: center;
  justify-content: center;
}

#mainBg {
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background-color: #000;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.separator {
  display: flex;
  width: 1.5px;
  height: inherit;
  background-color: #909090;
  border-radius: 25px;
}


.btn__primary__content {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    gap: 0 5px;
    border: 2px solid transparent;
    background-color: var(--mainWhite);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: var(--mainTransition);
    width: max-content;
    min-width: 120px;
}

    .btn__primary__content:hover {
        background-color: var(--primary-color);
        color: var(--mainWhite);
    }

.btn__primary {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    gap: 0 5px;
    background-color: var(--mainWhite);
    color: var(--primary-color);
    border-radius: 25px;
    transition: var(--mainTransition);
    width: max-content;
}


.btn__primary.btn__header {
  background-color: #f4f4f4;
  border: 2px solid transparent;
  height: 50px;
  width: unset;
  background-color: var(--secondary-green);
  color: #fff;
}

.btn__primary:hover {
  background-color: var(--primary-color);
  color: var(--mainWhite);
}

.btn__primary svg {
  width: 28px;
  height: 28px;
}

.btn__primary svg path {
  transition: var(--mainTransition);
}

.btn__primary:hover svg path {
  /* fill: var(--mainWhite); */
}

.btn__secondary {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  gap: 0 5px;
  border: 2px solid transparent;
  background-color: var(--primary-color);
  color: var(--mainWhite);
  border-radius: 25px;
  transition: var(--mainTransition);
  width: max-content;
  min-width: 120px;
}

.btn__secondary:hover {
  background-color: var(--mainWhite);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn__secondary svg {
  width: 20px;
  height: 20px;
}

.btn__secondary svg path {
  fill: var(--mainWhite);
  transition: var(--mainTransition);
}

.btn__secondary:hover svg path {
  fill: var(--primary-color);
}

.btn__primary.light {
  background-color: #d9d9d9;
}

.btn__primary.green {
  background-color: var(--primary-color);
}

.btn__primary.small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0;
}

.btn__primary.light:hover {
  background-color: #000;
}

.btn__primary.light svg {
  width: 28px;
  height: 28px;
}

.btn__primary.light svg path {
  fill: none;
  transition: var(--mainTransition);
}

.btn__primary.light:hover svg path {
  stroke: var(--mainWhite);
}

.text-primary-color {
  color: var(--primary-color) !important;
}

.more-product {
  display: flex;
  justify-content: center;
  width: 100%;
}

.more-product-button {
  background-color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 40px;
  color: white !important;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.3s ease-in-out;
  box-shadow: 0 5px 20px #832d6ba0;
}

.more-product-button:hover {
  transform: translatey(-6px);
  color: white;
}

.gap-15 {
  gap: 15px !important;
}

.breadcrumb__section {
  padding: 16px 0;
}

.breadcrumb__menu::before {
  content: ' ';
  margin-left: 5px;
  width: 40px;
  height: 40px;
  background: #f0ebeb url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAT5QTFRFAAAAgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgSxqgS1qgy1qgy1qgy1qgi1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qhC1rgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qo84CWgAAAGp0Uk5TACRhZy0EfPL/9gwGcf38lKzRErsXDp7BIb4VIsz7DYsmGP6YB9gvQul/A1r57EZA4vp1AWrtVmn11/jk1XKvtrGmjpUFAQFXoGMBrQ8108lfdufPjYDcB7iqidl7SJCIw+6Kh961xc4IeASUMvkAAAFTSURBVHicZdHLS0JREAbw86X3phWJkJskIcgiIcIMrCwIpQghUTLoSdv+rjQqqBAyrMiIiKIokhYm5UJcSKCQGtrjerNzxNfVbzVnfgzMYUCqAU2h9qoUHG0TiPJ8A7QDAk9+uZZCTgJt/DdRptXIEYU8VQcafAkqvJMuWZ50IFEFLVKaz844rXT4SypVsTL0CqluZJOl2b5iMdGD1xIMIMZrES5vYQCiejxTGEZkENlo9QMmiC9DuIcZIWK8JfUZfyIjIiyPhIxeS2Dygc1NAXdNMIYCTBHzTRNY8EG3slZgBmcVCJIacFb8KM6FJrAjSHs2+Bth/lKYxSln8zWCK2C/yjiOp09q4PYzWDxyYG/J59ph0JphsHK4sC2B1YOJCwZr+3oxXAcG2Zvby2DdJzh5YHeZXt1r7M+pPZzTw0A3t0Wk2QjES4faRFrSD2Xocf8BA1OC+3TRQsIAAAAASUVORK5CYII=') no-repeat center;
  border-radius: 50%;
  transition: all 0.3s;
}

.breadcrumb__item {
  font-size: 13px;
  margin-left: 5px;
  color: var(--color-text);
  font-weight: 600;
}

.breadcrumb__item::after {
  content: '/';
}

.breadcrumb__item.active::after {
  content: ' ';
}

.breadcrumb__item.active {
  color: var(--primary-color);
}

.checkbox__label::before {
  content: ' ';
  width: 16px !important;
  height: 16px !important;
  display: inline-block !important;
  background-color: #fff !important;
  vertical-align: middle !important;
  margin-left: 3px !important;
  border: 2px solid var(--primary-color) !important;
  border-radius: 3px !important;
  background-position: center;
  background-repeat: no-repeat;
}

.remember-checkbox:checked~.checkbox__label::before,
.form__checkbox:checked~.checkbox__label::before {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAUklEQVR4nGNgoCv4X/+f6XDk61kHwt9o4lV0KPL13EORryJIV3Q46vWq/dFvZODWRb2efTjqTRCGCSBFhyNf7TkS/lKZoHUgxYciX53CahJNAACIATXz2s/pTQAAAABJRU5ErkJggg==') no-repeat center !important;
}

.checkbox__label {
  font-size: 15px;
  position: relative;
}

.remember-checkbox,
.form__checkbox {
  z-index: 10;
  cursor: pointer;
  margin-bottom: 3px;
  opacity: 0;
  position: absolute;
}

.form__row {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.form__input {
  flex-grow: 1;
  height: 40px;
  background-color: var(--color-three) !important;
  padding: 9px;
  border: 1px solid transparent;
  transition: all 0.3s;
  border-radius: 10px;
}

.form__input:focus-visible {
  outline: none;
}

.form__label {
  color: var(--color-text);
  margin-bottom: 0;
  min-width: 130px;
  position: relative;
  font-size: 14px;
}

.form__input:focus {
  border-color: var(--primary-color);
}

.form__textarea {
  min-height: 180px;
  resize: none;
}

.form__send-btn {
  border: 0;
  min-width: 150px;
  display: table;
  margin: auto;
  font-size: 18px;
  cursor: pointer;
  height: 48px;
}

.form__star {
  color: var(--primary-color);
  font-size: 13px;
  position: absolute;
  top: -4px;
}

.form__textarea:focus-visible {
  outline: 0;
}

.form__input:focus {
  border-color: var(--primary-color);
}

.swiper {
  right: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '' !important;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: var(--mainWhite);
  border: 1px solid #7b7d7e;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  padding: 3px;
}

.swiper-slide img {
  display: block;
}

.header {
  position: relative;
  transition: all 0.2s ease-in-out;
}

.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0px 0px 7px 4px rgba(0, 0, 0, 0.1);
  z-index: 9;
}

.header-fixed .navbar__bottom--parent {
  background-color: var(--mainWhite);
}

.navbar__top--parent {
  background-color: var(--mainWhite);
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.15);
}

.navbar__top {
  display: grid;
  grid-template-columns: 75px 2fr 380px max-content;
  grid-template-rows: auto;
  column-gap: 1.5rem;
  align-items: center;
}

.navbar__top-logo {
  display: block;
}

.top-text__img img {
  max-width: 250px;
}

.navbar__top-searchbar {
  max-width: 550px;
}

.navbar__top-searchbar .form-control:focus {
  background-color: #fff;
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 1px 1px var(--primary-color);
}

.navbar__top-searchbar input {
  display: block;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: none;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #111827;
  background-color: #f5f5f5;
  height: 50px;
}

input,
input::placeholder {
  color: #909090 !important;
}

.search-btn {
  display: flex;
  position: absolute;
  padding: 0;
  left: 5px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  width: 42px;
  height: 42px;
  background: linear-gradient(180deg, var(--secondary-green) 0%, var(--primary-color) 100%);
  cursor: pointer;
}

.top-text {
  color: #7b7d7e;
  font-size: 1rem;
}

.top-text a {
  transition: var(--mainTransition);
}

.top-text a:hover {
  color: var(--primary-color);
}

.search-btn svg {
  width: 22px;
  height: 22px;
}

.navbar__top-actions {
  display: grid;
  grid-template-columns: 1fr 145px;
  grid-template-rows: auto;
  column-gap: 0.5rem;
  align-items: center;
}

.action__btns--parent {
  display: flex;
  gap: 0 7px;
}

.action__btns--parent .action__btns {
  border: none;
  box-shadow: none;
  background-color: var(--color-three);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.action__btns svg {
  width: 25px;
  height: 25px;
}

.action__btns.cart svg path {
  stroke: var(--secondary-green);
}

.action__btns.favourites svg path {
  stroke: var(--primary-color);
}

/* .action__btns.cart:hover svg path {
  stroke: var(--primary-color);
}
.action__btns.favourites:hover svg path {
  stroke: var(--orange-color);
} */
.navbar__bottom--parent {
  /* background-color: var(--mainWhite); */
  padding: 0.75rem 1rem !important;
}

.navbar__bottom {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.navbar__bottom .action__btns {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0 7px;
  color: var(--primary-color);
  font-size: 1rem;
}

.navbar__bottom .action__btns svg {
  width: 28px;
  height: 28px;
}

.navbar__bottom .action__btns svg path {
  fill: var(--primary-color);
}

.main-nav__list {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0 3.5%;
}

.main-nav__list .separator {
  height: 25px;
}

.main-nav__item.active .main-nav__link {
  color: var(--primary-color);
  font-weight: bold;
}

.main-nav__link {
  font-size: 1rem;
  color: #989898;
  transition: var(--mainTransition);
  padding: 0 0.75rem;
  border-radius: 15px;
}

.main-nav__link.category {
  background: linear-gradient(-90deg, var(--secondary-green), var(--primary-color));
  height: 36px;
  display: flex;
  align-items: center;
  color: var(--mainWhite) !important;
  border-radius: 25px;
  transition: 0.2s ease-in-out;
  /* font-weight: bold; */
}

.main-nav__item:hover .main-nav__link.category {
  background: linear-gradient(-90deg, var(--primary-color), var(--secondary-green));
}

.main-nav__item:hover .main-nav__link {
  color: var(--primary-color);
}

.main-nav__item .main-nav__link:focus,
.main-nav__item .main-nav__link:active {
  color: #000;
}

.main-nav__item .main-nav__link.category svg path {
  fill: var(--mainWhite);
  stroke: var(--mainWhite);
}

/* .main-nav__item:hover .main-nav__link.category svg path {
  fill: var(--primary-color);
  stroke: var(--primary-color);
} */
.social-links {
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: 100%;
  max-width: 350px;
  padding: 0.85rem 0.75rem;
  border-radius: 25px;
  background: linear-gradient(-90deg, var(--secondary-green), var(--primary-color));
}

.social-links span {
  color: var(--mainWhite);
}

.social__items {
  display: grid;
  grid-template-columns: repeat(4, 18px);
  gap: 0 3px;
  align-items: center;
}

.social__items a img {
  transition: var(--mainTransition);
}

.social__items a:hover img {
  filter: brightness(0);
}

.bannerSlider {
  border-radius: 20px;
}

.bannerSlider .swiper-button-prev,
.bannerSlider .swiper-button-next {
  background-color: transparent;
  border: none;
}

.blogSlider {
  padding: 0 0 4rem 0 !important;
}

.swiper .swiper-pagination {
  display: flex;
  width: max-content !important;
  margin: 0 auto;
  left: 0 !important;
  right: 0;
}

.bannerSlider .swiper-pagination {
  bottom: 20px !important;
}

.swiper .swiper-pagination-bullet {
  background-color: var(--primary-color);
  width: 14px;
  height: 10px;
  border-radius: 20px;
  margin: 0 2px !important;
  opacity: 0.2;
  transition: var(--mainTransition);
}

.swiper .swiper-pagination-bullet-active {
  width: 40px;
  opacity: 1;
}

.bannerSlider .bannerSliderItem img {
  object-fit: cover;
  object-position: bottom;
  max-height: 420px;
  min-height: 180px;
}

.sec_between {
  padding-bottom: 5.5rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  color: #7b7d7e;
}

.product-category__parent {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* column-gap: 1rem; */
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 20px;
  position: relative;
  justify-content: space-between;
  justify-items: center;
  top: -5.5rem;
}

.product-category__item {
  cursor: pointer;
  background-color: var(--color-three);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--mainTransition);
}

.product-category__item .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.product-category__item .inner img {
  width: 100%;
  max-width: 95px;
  height: 80px;
}

.product-category__item .inner h2 {
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  color: #000;
  margin: 0;
  position: relative;
  transition: var(--mainTransition);
}

.categories__tabs__tab.active {
  background-color: var(--mainWhite);
  box-shadow: 0 0 40px 0 #b6409586;
}

.product-category__item:not(.active):hover {
  box-shadow: 0 0 40px 0 #b6409586;
  transform: translateY(-5px);
}

.categories__tabs__tab.active h2 {
  font-weight: bold;
}

.categories__tabs__content__item {
  display: none;
}

.categories__tabs__content__item.active {
  display: block !important;
}

.bg__body__orange {
  background-color: var(--orange-color);
}

.bg__body__secondary {
  background-color: var(--secondary-green);
}

.sec__title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #959595;
}

.products-sec {
  padding-bottom: 4.5rem !important;
}

.product__container {
  margin-top: -3rem;
}

.products__center {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem 1.25rem;
}

.product__card {
  display: flex;
  flex-direction: column;
  background-color: var(--mainWhite);
  gap: 0.75rem 0;
  border-radius: 20px;
  height: 100%;
  padding: 1rem;
  transition: var(--mainTransition);
  position: relative;
  padding-bottom: 1.75rem;
}

.bestSellerProductsSlider,
.newProductsSlider {
  padding: 2rem 3rem !important;
}

.bestSellerProductsSlider .product__card,
.newProductsSlider .product__card {
  background-color: var(--color-three);
  direction: rtl;
}

.product__card:hover {
  box-shadow: 0 3px 15px 0 #b6409586;
  transform: translateY(-5px);
}

.product__card img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.product__card h3 {
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
  color: #686868;
}

.product__card .category-name {
  font-size: 0.65rem;
  color: #aaa8a8;
  margin: 1rem 0;
  text-align: center;
  width: 100%;
  display: block;
}

.product__card .btns {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
}

.product__show__more {
  position: absolute;
  height: 50px;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: 0 0 40px 0 #b6409586;
  color: var(--color-text);
  background-color: var(--mainWhite);
}

.product__show__more svg {
  width: 28px;
  height: 28px;
}

.order__steps__parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 2.5rem;
  margin-top: 2.5rem;
  justify-content: space-between;
  justify-items: center;
  padding-bottom: 3rem;
}

.order__steps__item {
  background-color: var(--mainWhite);
  border: 5px solid #ebeaea;
  width: 100%;
  height: 100%;
  /* max-width: 202px;
  max-height: 202px; */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
}

.order__steps__item img {
  width: 100%;
  max-width: 85px;
  position: relative;
  z-index: 3;
  transition: var(--mainTransition);
}

.order__steps__item:hover img {
  animation: float 1.2s ease-in-out infinite;
}

.order__steps__item span {
  color: #777777;
  font-size: 1rem;
  font-weight: bold;
  z-index: 3;
  position: relative;
}

.order__steps__parent svg {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -25px;
  z-index: 2;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-7.5px);
  }

  100% {
    transform: translatey(0px);
  }
}

.submenu-products {
  display: none;
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  text-align: center;
  margin: 0 auto;
  margin-top: 0px;
  padding: 30px 0 0;
  background: transparent;
  top: 20px;
  z-index: 99;
  min-width: 900px;
  width: fit-content;
}

.header-fixed .submenu-products {
  top: 23px;
}

.submenu-products .submenu-products-inner {
  display: grid;
  grid-template-columns: max-content 1fr;
  position: relative;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 20px;
  list-style-type: none;
  box-shadow: 0 3px 15px 0 #34b4546a;
}

.submenu-products .submenu-products-inner>li {
  width: 100%;
  padding: 1rem;
}

.submenu-products .submenu-products-inner>li>a {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 0.75rem;
  border-radius: 20px;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

.submenu-products .submenu-products-inner>li>a:hover {
  box-shadow: -3px 3px 20px -11px rgba(0, 0, 0, 0.1);
}

.submenu-products-tabs {
  width: 100%;
  border-radius: 5px 5px 5px 5px;
  display: flex;
}

.submenu-products-tabs ul#tabs-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  border-left: 2px solid var(--primary-color);
  max-height: 385px;
  overflow-y: auto;
}

#SubmenuProductsTabsContent {
  width: 100%;
  padding-right: 1rem;
  max-height: 385px;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-left: 10px;
}

.submenu-products-tabs ul#tabs-nav li {
  font-weight: bold;
  margin-right: 2px;
  border-radius: 20px;
  cursor: pointer;
  display: block;
  margin-bottom: 0.75rem;
  text-align: right;
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.2s ease-in-out;
  margin-left: 7px;
  padding: 0.25rem 0;
  padding-left: 2rem;
}

.submenu-products-tabs ul#tabs-nav li a {
  text-decoration: none;
  color: #737375;
  gap: 10px;
  display: flex;
  align-items: center;
  transition: var(--mainTransition);
}

.submenu-products-tabs ul#tabs-nav li a .img-parent {
  background-color: #d9d9d9;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: var(--mainTransition);
  outline: 1px solid transparent;
  outline-offset: 2px;
  position: relative;
  z-index: 1;
}

.submenu-products-tabs ul#tabs-nav li a img {
  width: 22px;
  height: 22px;
}

.submenu-products-tabs ul#tabs-nav li:hover {
  background-color: #fff;
}

.submenu-products-tabs ul#tabs-nav li:hover a,
.submenu-products-tabs ul#tabs-nav li.active a {
  color: var(--primary-color);
}

.submenu-products-tabs ul#tabs-nav li:hover a .img-parent,
.submenu-products-tabs ul#tabs-nav li.active a .img-parent {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}

.submenu-products-tab-content {
  border-radius: 15px;
  display: grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
  position: relative;
}

.submenu-products-tab-content .tab-content__item {
  width: 100%;
}

.submenu-products-tab-content .tab-content__item span {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}

.submenu-products-tab-content .tab-content__item ul {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
  gap: 10px;
  align-items: center;
}

.submenu-products-tab-content .tab-content__item ul li {
  position: relative;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
}

.submenu-products-tab-content .tab-content__item ul li::before {
  content: '';
  position: absolute;
  display: block;
  background-color: var(--primary-color);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  right: 0;
  transition: var(--mainTransition);
  opacity: 0;
  visibility: hidden;
}

.submenu-products-tab-content .tab-content__item ul li a {
  display: block;
  font-size: 0.85rem;
  color: #737375;
  transition: var(--mainTransition);
  text-align: right;
}

.submenu-products-tab-content .tab-content__item ul li:hover::before {
  opacity: 1;
  visibility: visible;
}

.submenu-products-tab-content .tab-content__item ul li:hover a {
  color: var(--primary-color);
  transform: translateX(-5px);
}

#submenuMobile {
  list-style-type: none;
  width: 100%;
  color: var(--mainGrey);
  display: none;
}

#submenuMobile.active {
  display: block;
}

#submenuMobile li {
  padding: 10px 10px 10px 0;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  color: var(--mainGrey);
  font-size: 0.9rem;
  transition: var(--mainTransition);
}

#submenuMobile li:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.submenu,
.sub-submenu {
  display: none;
  list-style-type: none;
}

.submenu {
  padding-right: 7px;
}

.sub-submenu {
  padding-right: 12px;
  margin-top: 0.5rem;
}

.submenu li {
  border-bottom: 1px solid #ccc;
}

.submenu li {
  padding: 8px !important;
}

.sub-submenu li {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 0.8rem;
  border: none !important;
  padding: 5px 10px 5px 5px !important;
}

.sub-submenu li::before {
  content: '';
  position: absolute;
  display: block;
  background-color: #737375;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  right: 0;
  transition: var(--mainTransition);
}

.sub-submenu li:hover::before {
  background-color: var(--primary-color);
}

.chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(135deg);
  margin-left: 10px;
  transition: transform 0.3s ease;
  margin-right: auto;
}

.submenu.active>li>.chevron,
.sub-submenu.active>li>.chevron {
  transform: rotate(45deg);
  margin-right: auto;
}

.blogs__parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.article-card {
  position: relative;
  gap: 15px;
}

.blogSlider .article-card {
  direction: rtl;
}

.article-card .card-breadcrumb {
  padding-right: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
}

.article-card .card-breadcrumb p {
  color: var(--primary-color);
}

.article-card .card-breadcrumb::before {
  content: '';
  position: absolute;
  display: block;
  background-color: var(--primary-color);
  width: 5px;
  height: 5px;
  right: 0;
  border-radius: 50%;
}

.article-card .date svg {
  width: 20px;
  height: 20px;
}

.article-card .date p {
  color: #c8c8c8;
  font-size: 0.8rem;
}

.article-card .creator svg {
  width: 20px;
  height: 20px;
}

.article-card .creator p {
  color: #c8c8c8;
  font-size: 0.8rem;
}

.article-card img {
  height: auto;
  min-height: 190px;
  max-height: 250px;
  border-radius: 30px;
}

.article-card .internal-card {
  border-radius: 20px;
  color: #6c6c6c;
  font-size: 10px;
}

.article-card .internal-card .details {
  text-align: right;
}

.article-card .internal-card .details p {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  line-height: 1.9;
}

.article-card .internal-card h4,
.article-card .internal-card .article__title {
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
}

.article-card .internal-card .read-more {
  color: var(--primary-color);
  font-size: 10px;
  font-weight: bold;
}

.our__customers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.our__customers .item {
  padding: 1.25rem;
  background-color: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__us__parent {
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr 1fr;
  column-gap: 2.5rem;
}

.our__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.our__brand h1 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 2rem;
  margin: 0;
}

.our__brand span {
  color: #686868;
  font-size: 1.5rem;
}

.about__us__parent .item {
  padding: 1.5rem 1rem;
  border-radius: 25px;
  border: 2px solid var(--orange-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about__us__parent .item img {
  max-width: 92px;
}

.about__us__parent .item .about-us-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
}

.footer {
  background-color: #f2f2f2;
  margin-top: 3rem;
}

.footer .footer__line {
  width: 100%;
  height: 5px;
  background-color: var(--orange-color);
}

.footer__content {
  display: grid;
  grid-template-columns: 4fr 2fr max-content;
  gap: 15px;
  padding: 1.5rem 0;
}

.footer__content-about {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__content-about a {
  width: 100%;
  height: max-content;
  display: block;
  max-width: 120px;
  min-width: 100px;
}

.footer__content-about .about-us-text {
  display: flex;
  flex-direction: column;
  color: #686868;
  font-weight: bold;
  font-size: 1rem;
  gap: 0.5rem;
}

.footer__content-about .about-us-text p {
  font-weight: normal;
  font-size: 0.85rem;
  color: #686868;
  line-height: 2;
}

.footer__content-links {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  width: max-content;
}

.footer__content-links .list {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}

.footer .list__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #686868;
  margin-bottom: 0.5rem;
}

.footer__content-links .list__item {
  position: relative;
  display: flex;
  align-items: center;
  color: #686868;
  padding-right: 1rem;
  transition: var(--mainTransition);
}

.footer__content-links .list__item:hover {
  color: var(--primary-color);
}

.footer__content-links .list__item::before {
  content: '';
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  right: 0;
  background-color: #686868;
  border-radius: 50%;
  transition: var(--mainTransition);
}

.footer__content-links .list__item:hover::before {
  background-color: var(--primary-color);
}

.footer__content-social {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
}

.footer__content-social .socials__support {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.footer__content-social .socials__support .support {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.cetificate__parent {
  background-color: var(--mainWhite);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  padding: 0.5rem;
}

.footer__cpr {
  background: linear-gradient(-90deg, var(--secondary-green), var(--primary-color));
  position: relative;
  border: none;
  padding: 0.5rem 0;
}

.footer__cpr .cpr__right,
.footer__cpr .cpr__left {
  color: var(--mainWhite);
}

.footer__cpr .cpr__right a {
  color: var(--orange-color);
}

.footer__cpr .cpr__right a,
.footer__cpr .cpr__left a {
  font-weight: bold;
  position: relative;
}

.footer__cpr .cpr__right a::after,
.footer__cpr .cpr__left a::after {
  content: '';
  position: absolute;
  display: block;
  background-color: var(--mainWhite);
  width: 0;
  height: 2px;
  border-radius: 20px;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: var(--mainTransition);
}

.footer__cpr .cpr__right a::after {
  background-color: var(--orange-color);
}

.footer__cpr .cpr__right a:hover::after,
.footer__cpr .cpr__left a:hover::after {
  width: 100%;
}

@media only screen and (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

@media only screen and (max-width: 1200px) {
  .container {
    max-width: 100%;
  }

  .navbar__top {
    grid-template-columns: 70px 2fr 275px max-content;
  }

  .main-nav__list {
    gap: 0 1rem;
  }

  .product-category__item .inner img {
    height: 50px;
  }

  .product-category__item .inner h2 {
    font-size: 1rem;
  }

  .footer__content {
    gap: 25px;
    padding: 2rem 1rem;
  }

  .order__steps__item img {
    max-width: 60px;
  }

  .about__us__parent {
    grid-template-columns: max-content 1fr 1fr 1fr 1fr;
    column-gap: 1rem;
  }

  .our__brand h1 {
    font-size: 1.5rem;
  }

  .our__brand span {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 991px) {
  .navbar__top--parent {
    /* background-color: #f5f5f5; */
  }

  .navbar__top {
    grid-template-columns: max-content 55px auto;
    column-gap: 0.75rem;
  }

  .navbar__top-actions {
    margin-right: auto;
    grid-template-columns: max-content max-content;
    grid-template-rows: auto;
    column-gap: 0.5rem;
  }

  .navbar__bottom--parent {
    position: fixed;
    display: flex;
    width: 280px;
    height: 100%;
    right: -100%;
    top: 0;
    transition: all 0.3s ease-in-out;
    background-color: #f5f5f5;
    z-index: 99;
    border-top-left-radius: 25px;
    overflow-y: auto;
  }

  .navbar__bottom--parent .navbar__top-logo {
    max-width: 190px;
    background-color: #fff;
    padding: 5px;
    border-radius: 7px;
  }

  .navbar__bottom {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem 0;
  }

  .main-nav__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem 0;
    padding-top: 1.75rem;
  }

  .main-nav__list>* {
    width: 100%;
  }

  .main-nav__link {
    display: flex;
    padding: 0.5rem 0.75rem;
    gap: 0 3px;
    width: 100%;
    position: relative;
    align-items: center;
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 7px;
  }

  .main-nav__item.favourites {
    padding-bottom: 1rem;
  }

  .mobile__menu-search {
    width: 100%;
    background-color: transparent;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--primary-color) !important;
  }

  .mobile__menu-search:focus {
    border-color: var(--primary-color) !important;
  }

  #openNavBtn svg {
    width: 40px;
    height: 40px;
  }

  #openNavBtn svg path {
    stroke: var(--primary-color);
  }

  .closeNavBtn {
    position: absolute;
    left: 10px;
    top: 12px;
  }

  .closeNavBtn svg {
    width: 25px;
    height: 25px;
  }

  .closeNavBtn svg path {
    fill: var(--primary-color);
  }

  .open__Main__Nav {
    right: 0;
  }

  .search-btn {
    width: 30px;
    height: 30px;
  }

  .search-btn svg {
    width: 15px;
    height: 15px;
  }

  /* .social__items {
    grid-template-columns: repeat(5, 25px);
    gap: 0 10px;
    background-color: var(--primary-color);
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    justify-content: space-between;
    border-radius: 7px;
  } */
  .bannerSlider {
    border-radius: 15px;
  }

  .product-category__parent {
    width: 95%;
    column-gap: 1rem;
    /* top: -4.5rem; */
    grid-template-columns: repeat(6, 170px);
    overflow-x: auto;
    padding-top: 1.5rem;
  }

  .product-category__item {
    width: 150px;
    height: 150px;
  }

  /* .product__container {
    margin-top: -2rem;
  } */
  .products__center {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 1rem;
  }

  .blogs__parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__content {
    grid-template-columns: repeat(1, 100%);
    row-gap: 2rem;
    justify-items: center;
  }

  .footer__content-about {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer__content-about .about-us-text {
    text-align: center;
  }

  .footer__content-about .about-us-text p {
    max-width: 550px;
    text-align-last: center;
  }

  /* .footer__content-about p {
    max-width: unset;
  } */
  .footer__content-links {
    width: 100%;
  }

  .footer__content-social {
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .footer__content-social .socials__support {
    width: 100%;
    align-items: center;
  }

  .cetificate__parent {
    background-color: var(--mainWhite);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .social-links {
    justify-content: center;
  }

  .social__items {
    grid-template-columns: repeat(4, 25px);
    gap: 0 7px;
  }

  /* .footer__content-about a {
    margin: -5.5rem auto 0 auto;
  } */
  .bestSellerProductsSlider,
  .newProductsSlider {
    padding: 2rem 0.5rem !important;
  }

  .order__steps__parent {
    column-gap: 1rem;
  }

  .order__steps__item img {
    max-width: 55px;
  }

  .order__steps__item span {
    font-size: 0.8rem;
  }

  .our__customers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .our__brand {
    gap: 1rem;
  }

  .about__us__parent .item {
    padding: 1rem;
  }

  .about__us__parent .item h5 {
    text-align: center;
  }

  .about__us__parent .item img {
    max-width: 75px;
  }
}

@media only screen and (max-width: 768px) {
  .product-category__item .inner {
    gap: 1rem 0;
  }

  .products__center {
    gap: 2.75rem 0.75rem;
  }

  .products-sec {
    margin-top: -4.5rem;
  }

  .btn__primary.small {
    width: 40px;
    height: 40px;
  }

  /* .article-card {
    border-radius: 15px;
  }
  .article-card .internal-card {
    padding: 0.75rem;
    bottom: 7.5px;
    width: calc(100% - 15px);
    border-radius: 15px;
  } */
  .article-card img {
    min-height: 250px;
    max-height: 300px;
    border-radius: 15px;
  }

  .faq__accordion__parent {
    grid-template-columns: 1fr;
  }

  .footer__cpr .cpr__right,
  .footer__cpr .cpr__left {
    width: 100%;
    margin: 0.25rem 0;
    text-align: center;
    font-size: 0.75rem;
  }

  .action__btns--parent .action__btns,
  .btn__primary.btn__header {
    width: 40px;
    height: 40px;
  }

  .bestSellerProductsSlider,
  .newProductsSlider {
    padding: 2rem 0.5rem !important;
  }

  .order__steps__parent {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    justify-items: center;
    gap: 1.5rem;
  }

  .order__steps__parent svg {
    display: none;
  }

  .order__steps__item img {
    margin-top: -1rem;
  }

  .order__steps__item .step-number {
    position: absolute;
    bottom: 5%;
    color: var(--primary-color);
    font-size: 2rem;
    border-bottom: 3px solid;
    line-height: 0.6;
    padding: 0 2px;
  }

  .our__customers {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .our__customers .item {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }

  .about__us__parent {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__us__parent .item img {
    max-width: 60px;
  }
}

@media only screen and (max-width: 576px) {
  .navbar__top-actions {
    display: flex;
    column-gap: 0.25rem;
  }

  #openNavBtn svg {
    width: 35px;
    height: 35px;
  }

  .main-nav__link svg,
  .navbar__bottom .action__btns svg {
    width: 25px;
    height: 25px;
  }

  .main-nav__link svg path {
    fill: var(--primary-color);
  }

  .navbar__bottom .action__btns {
    gap: 0 3px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 27px !important;
    height: 27px !important;
  }

  .product-category__parent {
    grid-template-columns: repeat(6, max-content);
    /* top: 0; */
    width: 100%;
    border-radius: 15px;
    scroll-behavior: smooth;
  }

  .product-category__item {
    width: 130px;
    height: 130px;
  }

  .product-category__item .inner h2 {
    font-size: 0.85rem;
  }

  .product-category__item .inner img {
    height: 45px;
  }

  /* .product__container {
    margin-top: 0;
    padding-top: 2rem !important;
  } */
  .products__center {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product__card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 0.25rem;
    padding-bottom: 1rem;
  }

  .product__card .btns {
    position: relative;
    bottom: unset;
    grid-area: 3 / 2 / 6 / 3;
    align-items: end;
    gap: 10px !important;
  }

  .product__card__img {
    grid-area: 1 / 1 / 6 / 2;
    display: flex !important;
  }

  .product__card__caption {
    grid-area: 1 / 2 / 3 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product__card .btns .btn {
    width: 95%;
  }

  .product__card h3 {
    font-size: 1rem;
  }

  .product__card .category-name {
    margin: 0.25rem 0;
  }

  .center__banner img {
    border-radius: 15px;
  }

  .blogs__parent {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq__accordion__header p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .customer__card {
    border-radius: 15px;
  }

  .cetificate__parent {
    grid-template-columns: repeat(2, auto);
  }

  .form__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .form__input {
    width: 100%;
    max-width: 100%;
  }

  .banner__slider .slick-list {
    padding-bottom: 1rem !important;
  }

  .order__steps__parent {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .order__steps__item img {
    max-width: 45px;
  }

  .about__us__parent {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}