/* RaviFaNum-Thin */
@font-face {
  font-family: "RaviFaNum";
  src: url("/fonts/RaviFaNum-Thin.woff2") format("woff2"),
    url("/fonts/RaviFaNum-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

/* RaviFaNum-Light */
@font-face {
  font-family: "RaviFaNum";
  src: url("/fonts/RaviFaNum-Light.woff2") format("woff2"),
    url("/fonts/RaviFaNum-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

/* RaviFaNum-Regular */
@font-face {
  font-family: "RaviFaNum";
  src: url("/fonts/RaviFaNum-Regular.woff2") format("woff2"),
    url("/fonts/RaviFaNum-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* RaviFaNum-Medium */
@font-face {
  font-family: "RaviFaNum";
  src: url("/fonts/RaviFaNum-Medium.woff2") format("woff2"),
    url("/fonts/RaviFaNum-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

/* RaviFaNum-SemiBold */
@font-face {
  font-family: "RaviFaNum";
  src: url("/fonts/RaviFaNum-SemiBold.woff2") format("woff2"),
    url("/fonts/RaviFaNum-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

/* RaviFaNum-Bold */
@font-face {
  font-family: "RaviFaNum";
  src: url("/fonts/RaviFaNum-Bold.woff2") format("woff2"),
    url("/fonts/RaviFaNum-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* RaviFaNum-Black */
@font-face {
  font-family: "RaviFaNum";
  src: url("/fonts/RaviFaNum-Black.woff2") format("woff2"),
    url("/fonts/RaviFaNum-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
/* RaviFaNum-ExtraBlack */
@font-face {
  font-family: "RaviFaNum";
  src: url("/fonts/RaviFaNum-ExtraBlack.woff2") format("woff2"),
    url("/fonts/RaviFaNum-ExtraBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
/* RaviFaNum-ExtraBlack */
@font-face {
  font-family: "inspiron";
  src: url("/fonts/Inspiron.woff2") format("woff2"),
    url("/fonts/Inspiron.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

:root {
  --bgClr: #f4f4f5;
  --colorPrimiary: #511c27;
  --colorPrimiary2: #49111c;
  --neutral: #efeded;
  --white: #fff;
  --secondary: #11493e;
  --whiteClrOp12: rgba(255, 255, 255, 0.12);
  --blackOp45: rgba(17, 17, 17, 0.45);
  --blackOp12: rgba(17, 17, 17, 0.12);
  --blackOp08: rgba(17, 17, 17, 0.08);
  --clr1C: #1c1c1c;
  --grey72: #726f6f;
  --clr54: #5a5757;
  --clr31: #31302f;
  --clrFA: #fafafa;
  --neutral2: #d6d3d4;
  --clrCE: #ceced1;
  --clr5A: #5a5757;
  --clr45: #454342;
  --clr65: #656363;
  --clrBA: #bab9b9;
  --clr2a: #2a1f21;
  --greenClr: #1fcb4d;
  --orangeClr: #fca120;
  --redClr: #de1e31;
}
body,
html {
  background-color: var(--bgClr);
  max-width: 100vw;
  min-width: 320px;
  overflow-x: clip;
  direction: rtl;
  scroll-behavior: smooth;
  font-family: "RaviFaNum", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: #e9e9e9;
}
body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background: #bec0c0;
}
body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
  background: #adafaf;
}
@media screen and (min-width: 1200px) {
  body,
  html {
    max-width: 1600px;
    margin: 0 auto;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "RaviFaNum", sans-serif;
  font-weight: 400;
}
.container {
  width: 93%;
  margin: 0 auto;
  max-width: 1350px;
}
.flex {
  display: -webkit-flex;
  display: flex;
}
.grid {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
}
.flexCenter {
  justify-content: center;
  align-items: center;
}
.flexCol {
  flex-direction: column;
}
.justifyBetween {
  justify-content: space-between;
}
.alignCenter {
  align-items: center;
}
.hideText {
  color: transparent !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.hideScrollbar::-webkit-scrollbar {
  display: none;
}
.hideScrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.rel {
  position: relative;
}
.gap5 {
  gap: 5px;
}
.gap10 {
  gap: 10px;
}
.gap20 {
  gap: 20px;
}
.justifyText {
  text-align: justify;
}
button {
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.ltr {
  direction: ltr;
}
.customScrollbar::-webkit-scrollbar {
  width: 10px;
}
.customScrollbar::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.customScrollbar::-webkit-scrollbar-thumb {
  background: #bec0c0;
}
.customScrollbar::-webkit-scrollbar-thumb:hover {
  background: #adafaf;
}
.hideOverflow {
  overflow: hidden;
}
.grabbing * {
  pointer-events: none;
}
@media screen and (min-width: 968px) {
  .hideOverflow {
    overflow: unset;
  }
}
/* header */
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 800;
  width: 100%;
}
.headerRow1 {
  background-image: linear-gradient(120deg, #4d212a 20%, #571f2a 70%, #501c27);
  padding: 30px 40px;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  transition: padding-top 0.2s, padding-bottom 0.2s;
}
.showHeaderNavBtn {
  height: 40px;
  width: 40px;
  border-radius: 7px;
  transition: background-color 0.4s;
}
.showHeaderNavBtn:hover {
  background-color: var(--whiteClrOp12);
}
.showHeaderNavBtn .hamb2 {
  display: none;
}
.showHeaderNavBtn.toggle .hamb1 {
  display: none;
}
.showHeaderNavBtn.toggle .hamb2 {
  display: block;
}
.goldPriceDiv {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--neutral);
  grid-template-columns: 40px 1fr 40px;
  gap: 5px;
  z-index: 802;
  width: 75%;
  bottom: 0;
  align-items: center;
  padding: 7px;
  border-radius: 56px;
  max-width: 400px;
  box-shadow: 0 5px 30px rgba(51, 51, 51, 0.3);
  transition: opacity 0.2s;
}
header.scrolled .goldPriceDiv {
  opacity: 0;
  pointer-events: none;
}
header.scrolled .headerRow1 {
  padding: 10px 40px;
}
.goldPriceIcon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
}
.goldPriceText1 {
  font-weight: 500;
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: center;
  color: #726f6f;
}
.goldPriceText2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0px;
  text-align: center;
  color: #31302f;
}
.headerInfoDiv {
  background-image: linear-gradient(120deg, #4d212a 20%, #571f2a 70%, #501c27);
  border-bottom: 1px solid rgba(238, 236, 236, 0.19);
  display: none;
}
.headerDeskRightLinks {
  display: none;
}
.headerHoverMenuHolder {
  display: none;
}
.cartMega {
  display: none;
}
/* navigation */
.navSection {
  background-color: rgba(28, 28, 28, 0.308);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 900;
  animation: fadein 0.4s;
  display: none;
}
.navSection.showNav {
  display: -webkit-flex;
  display: flex;
}
.navContentDiv {
  height: calc(92% - 110px);
  top: 110px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-radius: 16px;
  background-color: var(--white);
  grid-template-rows: 40px 1fr;
  padding: 32px 0 20px;
  max-width: 380px;
  gap: 25px;
}
.navDiv1 {
  padding: 0 17px;
}
.navUserImg {
  border-radius: 50%;
  border: 1px solid #ddd;
  width: 50px;
  height: 50px;
}
.showNavUserLinkBtn {
  gap: 10px;
  margin-right: 10px;
}
.showNavUserLinkBtn svg {
  transition: transform 0.4s;
}
.showNavUserLinkBtn.toggle svg {
  transform: rotate(180deg);
}
.navUserName {
  max-width: 180px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 0px;
  color: var(--clr1C);
}
.closeNavBtn {
  margin-left: 10px;
  height: 30px;
  width: 30px;
  border-radius: 6px;
}
.navContenSubDiv {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  gap: 16px;
  padding: 0 17px;
}
.navUserList,
.navMainList {
  padding: 0 5px;
  gap: 24px;
  display: none;
  animation: fadein 0.4s;
}
.navUserList.showList,
.navMainList.showList {
  display: -webkit-flex;
  display: flex;
}
.navUserListItem,
.logOutBtn {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}
.navListItemName,
.userNavCredit .navUserListItem {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: var(--clr1C);
}
.navListItemCount {
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  text-transform: capitalize;
  color: #726f6f;
}
.navListItemCount.red {
  color: #de1e31;
}
.navUserListItem::after,
.userNavCredit::after,
.navMainLink::after,
.navMainListItem::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  left: 0;
  bottom: -12px;
}
.navCreditText {
  gap: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: #726f6f;
}
.navCreditText .value {
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
}
.userNavCredit {
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
.userNavCredit .navUserListItem::after {
  display: none;
}
.logOutBtn {
  color: #de1e31;
}
.navUserListItem.disabled,
.userNavCredit.disabled,
.logOutBtn.disabled {
  pointer-events: none;
}
.navUserListItem.disabled svg,
.userNavCredit.disabled svg,
.logOutBtn.disabled svg,
.navUserListItem.disabled span,
.userNavCredit.disabled span,
.logOutBtn.disabled span,
.navUserListItem.disabled p,
.userNavCredit.disabled p,
.logOutBtn.disabled p,
.navUserListItem.disabled a,
.userNavCredit.disabled a,
.logOutBtn.disabled a {
  opacity: 0.4;
}
.navMainLink,
.navSubLink {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: var(--clr1C);
}
.navMainListItem {
  position: relative;
  background-color: var(--white);
}
.navMainListItem .navMainLink::after,
.navMainLink:last-child::after {
  display: none;
}
.navMainListItem .navMainLink {
  width: fit-content;
}
.showNavSubListBtn {
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
}
.showNavSubListBtn svg {
  transition: transform 0.4s;
}
.showNavSubListBtn.toggle svg {
  transform: rotate(180deg);
}
.navSubList {
  gap: 16px;
  padding-right: 15px;
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 0.4s ease-out;
}
.showNavSubListBtn.toggle + .navSubList {
  transition: max-height 0.4s ease-in;
  max-height: 450px;
}
.navSubList .navSubLink:first-child {
  margin-top: 16px;
}
.recomendedDiv {
  margin-top: 7px;
}
.recomendedTitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: #8a8a8a;
}
.recomendedImg {
  height: auto;
  width: 100%;
  aspect-ratio: 2.9/2;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-top: 10px;
}
.recomendedTitle1 {
  font-weight: 600;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: #31302f;
  margin-top: 7px;
}
.recomendedTitle2 {
  font-weight: 400;
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: #726f6f;
}
.recomendedLink {
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  color: var(--colorPrimiary2);
  text-align: center;
  margin: 15px auto 0;
  gap: 7px;
}
.navHintDiv {
  border-top: 1px solid #dddddd;
  margin-top: 5px;
  padding-top: 25px;
}
.navHintTitle {
  grid-template-columns: 35px 1fr;
  gap: 7px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: #484848;
}
.navHintTitle svg {
  transform: translateY(3px);
}
.navHintLink {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  color: #1139ff;
  margin: 16px auto 0;
}
@media screen and (min-width: 968px) {
  .navSection.showNav {
    display: none !important;
  }
  .headerLogoImg {
    height: 55px;
  }
  .showHeaderNavBtn {
    display: none;
  }
}
/* mobileSearchSection */
.mobileSearchBtn,
.deskCartLink {
  height: 40px;
  width: 40px;
  border-radius: 7px;
  transition: background-color 0.4s;
}
.mobileSearchBtn:hover,
.deskCartLink:hover {
  background-color: var(--whiteClrOp12);
}
.mobileSearchSection {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 890;
  background-color: rgba(28, 28, 28, 0.308);
  animation: fadein 0.4s;
  display: none;
}
.mobileSearchSection.showNav {
  display: -webkit-flex;
  display: flex;
}
.mobileSearchContent {
  height: fit-content;
  max-height: 90dvh;
  overflow-y: auto;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  border-radius: 16px;
  background-color: var(--white);
  grid-template-rows: 40px 1fr;
  padding: 32px 0 30px;
  max-width: 380px;
  gap: 25px;
}
.mobileSearchForm {
  margin: 0 18px;
}
.mobileSearchInput {
  height: 48px;
  padding: 0 42px 0 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: #9b9999;
}
.mobileSearchForm .icon {
  position: absolute;
  right: 18px;
  top: 15px;
}
.mobileSearchPopularTitle {
  margin: 0 18px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: #23242e;
}
.mobileSearchPopularList {
  flex-wrap: nowrap;
  gap: 15px;
  margin-top: 20px;
  overflow-x: auto;
  padding: 0 18px;
}
.mobileSearchPopularItem {
  white-space: nowrap;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  background-color: #f4f4f5;
  color: #31302f;
  padding: 8px 12px 8px 8px;
  border-radius: 99px;
  gap: 6px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.mobileSearchPopularList::-webkit-scrollbar {
  height: 0;
}
.mobileSearchFavoriteHeader {
  margin: 25px 18px 0;
  padding-top: 22px;
  border-top: 1px solid #e7e7e8;
}
.mobileSearchFavoriteHeader h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: #23242e;
}
.mobileSearchFavoriteHeader a,
.mobileResultState a {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #31302f;
}
.mobileSearchFavoriteList,
.mobileResultFavoriteList {
  flex-wrap: nowrap;
  gap: 25px;
  margin-top: 25px;
  overflow-x: auto;
  padding: 0 18px;
}
.mobileSearchFavoriteList::-webkit-scrollbar,
.mobileResultFavoriteList::-webkit-scrollbar {
  height: 0;
}
.mobileResultFavoriteList {
  padding: 0;
}
.mobileFavoriteItem {
  flex-direction: column;
}
.mobileFavoriteImg {
  border-radius: 16px;
  height: auto;
  width: 205px;
  aspect-ratio: 2.2/2;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.mobileFavoriteLink {
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: var(--clr1C);
  margin-top: 15px;
}
.mobileFavoriteItem p {
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: #31302f;
  margin-top: -2px;
}
.mobileResultDiv {
  margin: 0 18px;
}
.mobileResultDiv h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: var(--clr1C);
}
.mobileResultList {
  margin-top: 18px;
  gap: 5px;
}
.mobileSearchResultItem {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: var(--clr1C);
  width: fit-content;
}
.mobileResultState {
  margin-top: 22px;
}
.mobileResultState p {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: var(--clr1C);
}
@media screen and (min-width: 968px) {
  header {
    background-image: linear-gradient(
      120deg,
      #4d212a 20%,
      #571f2a 70%,
      #501c27
    );
    padding: 10px 0 10px;
    border-radius: 0 0 50px 50px;
  }
  .headerInfoDiv {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }
  .headerRow1 {
    width: 93%;
    margin: 0 auto;
    max-width: 1350px;
    padding: 20px 0 20px;
    background-image: unset;
    overflow: unset;
    display: -ms-grid;
    display: -moz-grid;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  header.scrolled .headerRow1 {
    padding: 0 0;
  }
  .headerRow1LeftDiv {
    justify-content: flex-end;
  }
  .mobileSearchBtn,
  .deskCartLink {
    height: 40px;
    width: 40px;
    border-radius: 50%;
  }
  .headerLogo {
    width: fit-content;
    margin: 0 auto;
    transform: translateY(-10px);
    transition: transform 0.2s;
  }
  header.scrolled .headerLogo {
    transform: translateY(5px) scale(0.8);
  }
  .headerInfoLeftDiv {
    gap: 20px;
    align-items: center;
  }
  .headerInfoTell {
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0px;
    color: #d6d3d4;
  }
  .headerDescription {
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: var(--neutral);
    max-width: 50%;
  }
  .headerDeskRightLinks {
    gap: 15px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
  }
  .headerDeskRightLinkItem {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: var(--white);
    position: relative;
    transition: background-color 0.4s;
    padding: 2px 7px;
    border-radius: 5px;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    gap: 8px;
  }
  .headerDeskRightLinkItem:hover {
    background-color: #ffffff1a;
  }
  .headerDeskRightLinkItem.activeLink::after {
    content: "";
    width: calc(100% - 8px);
    height: 1px;
    background-color: var(--white);
    position: absolute;
    left: 3px;
    bottom: -5px;
  }
  .headerDeskRightLinkItem.activeLink::before {
    content: "";
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
  }
  .headerHoverMenuHolder {
    position: absolute;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 30px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0s 0.3s;
    display: -webkit-flex;
    display: flex;
    max-width: 1350px;
  }
  .headerStoreMegaMenu {
    background-color: var(--white);
    margin-top: 110px;
    padding: 25px;
    border-radius: 16px;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    max-height: 80dvh;
    overflow-y: auto;
  }
  header.scrolled .headerStoreMegaMenu {
    margin-top: 60px;
  }
  .headerStoreTopGrid {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
  .headerDeskStoreHolderDiv:hover .headerHoverMenuHolder {
    opacity: 1;
    pointer-events: unset;
    z-index: 902;
    transition: opacity 0s;
  }
  .headerDeskStoreHolderDiv:hover .headerStoreMegaMenu {
    opacity: 1;
    transform: translateY(0);
  }
  .headerStoreRightDiv h3 {
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: #8a8a8a;
  }
  .headerStoreRightList {
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
    padding: 10px 7px;
    border-radius: 12px;
    margin-top: 15px;
  }
  .headerRightListItem {
    padding: 7px 60px 7px 15px;
    flex-direction: column;
    position: relative;
    transition: background-color 0.4s;
    border-radius: 7px;
    cursor: pointer;
    width: fit-content;
  }
  .headerRightListItem:hover {
    background-color: #f4f4f5;
  }
  .headerRightListItem span {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    flex-direction: column;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .headerRightListItem .titleText {
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: var(--clr1C);
  }
  .headerRightListItem .descText {
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: #726f6f;
  }
  .headerStoreLeftDiv .recomendedLink {
    margin: 15px 0 0;
  }
  .headerStoreHintDiv {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    gap: 7px;
  }
  .headerStoreHintText {
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0px;
    color: #9b9999;
  }
  .headerStoreHintLink {
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0px;
    color: #1139ff;
  }
  .deskSearchInput {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0 40px 0 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: var(--clr1C);
  }
  .deskSearchForm svg {
    position: absolute;
    right: 15px;
    top: 15px;
  }
  .headerStoreMegaMenu .mobileRecomendedSearch {
    margin-top: 30px;
  }
  .headerStoreMegaMenu .mobileSearchPopularList {
    flex-wrap: wrap;
    overflow: unset;
  }
  .headerStoreMegaMenu .mobileSearchFavoriteList {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
  }
  .headerStoreMegaMenu .mobileFavoriteItem {
    width: 100%;
  }
  .headerStoreMegaMenu .mobileFavoriteImg {
    width: 100%;
    aspect-ratio: 2/1.9;
  }
  .headerStoreMegaMenu .mobileFavoriteLink {
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
  }
  .headerStoreMegaMenu .mobileFavoriteItem p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
  }
  .deskSearchResultGrid {
    grid-template-columns: 1fr 4fr;
    gap: 20px;
  }
  .deskSearchRecomendedItems {
    margin-top: 40px;
  }
  .deskSearchRecomendedItems h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: var(--clr1C);
  }
  .deskSearchResultGrid .mobileResultFavoriteList {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .deskSearchResultGrid .mobileFavoriteItem {
    width: 100%;
  }
  .deskSearchResultGrid .mobileFavoriteImg {
    width: 100%;
    aspect-ratio: 2/1.82;
  }
  .deskSearchResultGrid .mobileResultState p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: var(--clr1C);
  }
  .deskSearchResultGrid .mobileResultState a {
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: capitalize;
    color: #31302f;
  }
  .goldPriceIcon {
    height: 62px;
    width: 62px;
  }
  .goldPriceIcon svg {
    width: 25px;
    height: 25px;
  }
  .goldPriceText1 {
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: center;
  }
  .goldPriceText2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0px;
  }
  .cartMega {
    display: -webkit-flex;
    display: flex;
    position: relative;
  }
  .cartMega .headerHoverMenuHolder {
    width: fit-content;
    left: 0;
    transform: translate(0, 40px);
  }
  .userMegaMenu {
    margin-top: 20px;
    width: 300px;
    gap: 10px;
  }
  header.scrolled .userMegaMenu {
    margin-top: 20px;
  }
  .userMegaTopDiv {
    flex-direction: column;
    gap: 3px;
    padding: 16px 0 20px;
  }
  .userDeskImg {
    border-radius: 50%;
    border: 3px solid #5c212d20;
  }
  .userDeskName {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0px;
    color: var(--clr1C);
  }
  .userDeskList {
    gap: 10px;
  }
  .userDeskItem {
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
    padding: 7px 15px;
    border-radius: 7px;
    position: relative;
    transition: background-color 0.4s;
  }
  .userDeskItem:hover {
    background-color: #f4f4f5;
  }
  .userDeskItem::after {
    content: "";
    width: 90%;
    height: 1px;
    position: absolute;
    left: 5%;
    bottom: -5px;
    background-color: #ddd;
  }
  .userDeskItem:last-child:after {
    display: none;
  }
  .userDeskTitle {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: var(--clr1C);
  }
  .userDeskItem.flexStart {
    align-items: flex-start;
  }
  .userDeskItem .userDescValue {
    font-weight: 500;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: #726f6f;
  }
  .userDeskItem .userDescValue.redText {
    color: #de1e31;
  }
  .userDeskItem .userDescValue {
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    color: #726f6f;
  }
  .userDeskItem .userDescValue span {
    font-weight: 500;
    font-size: 14px !important;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
  }
  .userDeskItem.logOut {
    color: #de1e31;
  }
  .userDeskItem.disabled {
    pointer-events: none;
  }
  .userDeskItem.disabled svg,
  .userDeskItem.disabled p {
    opacity: 0.4;
  }
  .mobileSearchSection.showNav {
    display: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .headerStoreLeftDiv .recomendedImg {
    max-width: 300px;
  }
  .headerStoreRightList {
    gap: 35px 20px;
  }
  .headerStoreMegaMenu .mobileSearchFavoriteList {
    gap: 20px;
  }
}
/* footer */
footer {
  margin-top: 60px;
  background-color: var(--colorPrimiary2);
  border-radius: 40px 40px 0 0;
  padding: 0 4%;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.footerEngLogo {
  font-family: inspiron, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--colorPrimiary2);
  background-color: var(--neutral);
  padding: 0 56px;
  height: 66px;
  width: fit-content;
  margin: -33px auto 0;
  border-radius: 96px;
}
.footerTopDiv {
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
.footerLogo {
  height: 53px;
  width: auto;
}
.footerDescription {
  font-weight: 400;
  font-size: 16px;
  line-height: 28.8px;
  letter-spacing: 0px;
  text-align: justify;
  color: var(--white);
}
.footerGridLinks {
  width: 100%;
  gap: 30px;
  margin-top: 15px;
}
.footerLinkList {
  gap: 10px;
}
.footerLinkItem {
  width: fit-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.8px;
  letter-spacing: 0px;
  text-align: right;
  color: var(--neutral);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-bottom-color 0.4s;
  gap: 7px;
}
.footerLinkItem:hover {
  border-bottom-color: #efeded4b;
}
.footerLinkItem svg {
  transform: translateY(4px);
  min-width: 19px;
}
.footerFloatDiv {
  width: 86%;
  max-width: 86%;
  overflow: hidden;
  margin: 0 auto;
}
.footerLicenceText {
  font-weight: 300;
  font-size: 12px;
  line-height: 21.6px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--white);
}
.licenceListHolder {
  background-color: var(--bgClr);
  margin-top: 5px;
  padding: 10px 20px;
  border-radius: 7px;
  overflow: hidden;
  width: 100%;
}
.footerLicenceList {
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  pointer-events: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}
.footerLicenceList::-webkit-scrollbar {
  display: none;
}
.footerLogoDiv {
  border-radius: 7px;
  overflow: hidden;
  height: 90px;
  min-width: calc(100% / 3);
  width: calc(100% / 3);
  flex: calc(100% / 3);
}
.licenceImage {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.footerDlApp {
  background-color: var(--secondary);
  border-radius: 7px;
  padding: 12px 28px;
  grid-template-columns: 24px 1px auto;
  font-weight: 400;
  font-size: 18px;
  line-height: 32.4px;
  letter-spacing: 0px;
  text-align: right;
  color: var(--white);
  gap: 30px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}
.line {
  height: 25px;
  background-color: var(--white);
  width: 1px;
}
.footerCopyWrite {
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--white);
  margin: 40px auto 20px;
  width: 87%;
  flex-direction: column;
}
.footerCopyWrite a {
  color: var(--white);
}
.footerCopyWrite::before {
  content: "";
  width: 90%;
  height: 1px;
  position: absolute;
  left: 5%;
  top: -20px;
  background-color: var(--neutral);
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .footerEngLogo {
    font-weight: 400;
    font-size: 56px;
    line-height: 78.4px;
    letter-spacing: 16px;
    text-align: center;
    width: fit-content;
    padding: 5px 120px;
    height: fit-content;
  }
  .footerDescription {
    font-weight: 400;
    font-size: 16px;
    line-height: 28.8px;
    letter-spacing: 0px;
    text-align: center;
  }
  .footerLogo {
    height: 76px;
  }
  .footerGridLinks {
    grid-template-columns: 1fr 1fr;
    margin-top: 25px;
  }
  .footerLinkItem {
    font-weight: 400;
    font-size: 16px;
    line-height: 28.8px;
    letter-spacing: 0px;
    text-align: right;
  }
  .footerLinkItem svg {
    width: 18px;
  }
  .footerFloatDiv {
    width: 100%;
    margin: 0;
  }
  .footerLicenceText {
    font-weight: 300;
    font-size: 12px;
    line-height: 21.6px;
    letter-spacing: 0px;
    text-align: center;
  }
  .licenceListHolder {
    border-radius: 16px;
    width: 100%;
  }
  .footerDlApp {
    border-radius: 16px;
    width: 100%;
  }
}
@media screen and (min-width: 968px) {
  footer {
    padding: 0;
  }
  .footerContainer {
    width: 96%;
    margin: 0 auto;
    max-width: 1250px;
  }
  .footerGridLinks {
    grid-template-columns: 1fr 1fr 2fr;
    position: relative;
    margin-top: 60px;
  }
  .footerFloatDiv {
    position: absolute;
    left: 0;
    top: -20px;
    width: 25%;
    max-width: 400px;
  }
  .footerCopyWrite {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 21.6px;
    letter-spacing: 0px;
    text-align: center;
    margin: 60px 0 30px;
  }
  .footerCopyWrite::before {
    width: 100%;
    left: 0;
    top: -30px;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* modalSection */
.modalSection {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100dvh;
  background-color: var(--blackOp45);
  display: none;
  animation: showModal 0.4s;
}
.modalSection.showModal {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modalMainDiv {
  background-color: var(--bgClr);
  border-radius: 5px;
  max-height: 80dvh;
  min-height: 250px;
  height: fit-content;
  width: 94%;
  padding: 15px;
  box-shadow: 0 0 45px #33333362;
  animation: modalMainDivAnim 0.4s;
}
.modalHeader {
  padding: 10px 0;
  border-bottom: 1px solid var(--blackOp08);
  margin-bottom: 10px;
}
.modalContent {
  max-height: calc(100%);
  overflow-y: auto;
}
.modalCloserBtn {
  height: 35px;
  width: 35px;
  border-radius: 5px;
  background-color: #00000007;
}
@keyframes showModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalMainDivAnim {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
.whatsappLinkBtn {
  position: fixed;
  right: 25px;
  bottom: 110px;
  z-index: 801;
}
.whatsappImg {
  height: 50px;
  width: 50px;
  padding: 8px;
  border-radius: 50%;
  background-color: #25d366;
}
.wave {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fixedNavDiv {
  position: fixed;
  width: calc(100% - 30px);
  left: 15px;
  bottom: 15px;
  background-color: var(--colorPrimiary2);
  border-radius: 18px;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  height: 78px;
  padding: 15px;
  justify-content: space-around;
  z-index: 800;
}
.fixedNavItem {
  display: -webkit-flex;
  display: flex;
}
.fixedNavItem span {
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0px;
  color: #faeef1;
}
.fixedNavItem.activeItem {
  gap: 15px;
  position: relative;
  border-radius: 140px;
  padding: 10px 25px;
  background-image: linear-gradient(to right, #faeef14f, #faeef100);
}
.fixedNavItem.activeItem span {
  display: block;
}
@media screen and (min-width: 968px) {
  .fixedNavDiv {
    display: none;
  }
  .whatsappLinkBtn {
    right: 40px;
    bottom: 40px;
  }
}
/* pathSection */
.pathSection {
  margin-top: 50px;
  width: 100%;
  overflow-x: auto;
  padding-right: 3%;
}
.pathDiv {
  flex-wrap: wrap;
  gap: 35px;
  align-items: center;
}
.pathItem {
  font-weight: 400;
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 0%;
  color: var(--grey72);
  position: relative;
}
.pathItem svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-150%, -50%);
  height: 16px;
  width: 16px;
  pointer-events: none;
}
.pathItem:last-child {
  font-weight: 600;
  color: var(--colorPrimiary2);
}
@media screen and (min-width: 968px) {
  .pathSection {
    margin-top: 70px;
    width: 94%;
    padding: 0;
  }
  .pathDiv {
    gap: 40px;
  }
  .pathItem {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0px;
  }
  .pathItem svg {
    transform: translate(-175%, -50%);
  }
}
.elementor-7910 .listItem {
  padding: 15px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0px 5px 15px 0px #0000000f;
  direction: rtl;
  width: 240px;
}
.elementor-7910 .jet-listing-grid__item {
  max-width: unset;
}
.elementor-7910 .suggestImg {
  height: auto;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
}
.elementor-7910 .listItemImgLink {
  border-radius: 16px;
  border: 1px solid var(--neutral2);
}
.elementor-7910 .listItemImg {
  height: auto;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
}
.elementor-7910 .popularImgSvg {
  position: absolute;
  left: -9.5px;
  top: 30px;
  z-index: 40;
  width: 20px;
  height: auto;
}
.elementor-7910 .listItemLink {
  font-weight: 600;
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: var(--clr31);
  margin-top: 10px;
}
.elementor-7910 .listItemWeight {
  font-weight: 500;
  font-size: 8px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: #726f6f;
}
.elementor-7910 .listItemFeeDiv {
  position: absolute;
  left: 15px;
  bottom: 15px;
  gap: 10px;
  align-items: flex-end;
}
.elementor-7910 .suggestFeeItem {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 4px 12px;
  border-radius: 48px;
  font-weight: 500;
  font-size: 10px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  align-items: center;
}
.elementor-7910 .suggestFeeItem span {
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.4s, padding-left 0.3s;
  padding-left: 0;
}
.elementor-7910 .suggestFeeItem:hover span {
  max-width: 200px;
  padding-left: 5px;
}
.elementor-7910 .suggestLink {
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  text-align: right;
  color: var(--clr1C);
}
.elementor-7910 .suggestWeight {
  font-weight: 500;
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: #31302f;
  margin: 3px;
}
.elementor-7910 .suggestActionDiv {
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}
.elementor-7910 .suggestAddToCart,
.elementor-7910 .listAddToCart,
.elementor-7910 .notExistText {
  height: 38px;
  padding: 3px 20px;
  background-color: var(--secondary);
  border-radius: 8px;
  color: var(--white);
}
.elementor-7910 .suggestPrice {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: var(--grey72);
}
.elementor-7910 .suggestPrice span {
  font-weight: 400;
  font-size: 10px;
}
.elementor-7910 .suggestText {
  position: absolute;
  top: 15%;
  right: 50%;
  width: 90px;
  height: auto;
  aspect-ratio: 8.5/5.6;
  transform: translateX(154px);
}
.elementor-7910 .suggestSection2 .suggestText {
  top: 17%;
}
.elementor-7910 .priceItemDiv {
  margin-top: 8px;
  justify-content: space-between;
  align-items: center;
}
.elementor-7910 .listItemPrice {
  font-weight: 600;
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: right;
  color: var(--secondary);
}
.elementor-7910 .listItemPrice span {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: var(--secondary);
}
.elementor-7910 .priceText {
  display: none;
}
.elementor-7910 .suggestSlider .aatcbx {
  margin-top: 15px;
}
.elementor-7910 .jet-listing-grid__item {
  position: relative;
  margin: 0 !important;
  padding: 0;
}
.elementor-7910 .elementor-widget-wlfmc-add-to-wish-list {
  position: absolute;
  right: 5px !important;
  top: 10px !important;
  height: 30px;
  width: 30px !important;
  z-index: 10;
}
.elementor-7910 .jet-listing-grid__items {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 10px 0 0;
  gap: 10px;
}
@media screen and (min-width: 968px) {
  .elementor-7910 .listItemFeeDiv {
    display: -webkit-flex;
    display: flex;
  }
  .elementor-7910 .listItemLink {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
  }
  .elementor-7910 .listItemWeight {
    font-weight: 500;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
    margin-top: 7px;
  }
  .elementor-7910 .priceText {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: right;
  }
  .elementor-7910 .listItemPrice {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
  }
  .elementor-7910 .listItemPrice span {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
  }
  .elementor-7910 .listAddToCart,
  .elementor-7910 .notExistText {
    font-weight: 500;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    margin-top: 15px;
    height: 45px;
    border-radius: 12px;
  }
  .elementor-7910 .listItem {
    width: 100%;
  }
  .elementor-7910 .jet-listing-grid__items {
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 7px;
    padding: 0;
  }
}
