.rootSection {
  padding: 0 15px;
  position: relative;
}
.rootList {
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0 15px;
}
.rootSection::after {
  content: "";
  width: 30%;
  max-width: 80px;
  height: calc(100% - 40px);
  background: -o-linear-gradient(
    90deg,
    rgba(242, 243, 247, 0) 0%,
    #f2f3f7 85.42%
  );
  background: -moz-linear-gradient(
    90deg,
    rgba(242, 243, 247, 0) 0%,
    #f2f3f7 85.42%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(242, 243, 247, 0) 0%,
    #f2f3f7 85.42%
  );
  background: linear-gradient(90deg, rgba(242, 243, 247, 0) 0%, #f2f3f7 85.42%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.rtl .rootSection::after {
  right: unset;
  left: 0;
}
.rootList::-webkit-scrollbar,
.productPagDiv::-webkit-scrollbar {
  height: 7px;
}
.rootList::-webkit-scrollbar-track,
.productPagDiv::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.rootList::-webkit-scrollbar-thumb,
.productPagDiv::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 7px;
}
.rootList::-webkit-scrollbar-thumb:hover,
.productPagDiv::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.rooteItem {
  white-space: nowrap;
  gap: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  align-items: center;
}
.rooteItem:last-child svg {
  display: none;
}
/* stonesSection */
.stonesSection {
  border: 1px solid var(--clrBlue1);
}
.cutStoneSection {
  margin-top: 20px;
}
.leftDivGrid {
  background: radial-gradient(
    100.28% 1304.01% at 76.89% 50.51%,
    #004bd7 0%,
    #002771 100%
  );
  background-image: -webkit-radial-gradient(
    100.28% 1304.01% at 76.89% 50.51%,
    #004bd7 0%,
    #002771 100%
  );
  background-image: -webkit-radial-gradient(
    100.28% 1304.01% at 76.89% 50.51%,
    #004bd7 0%,
    #002771 100%
  );
  padding: 15px;
}
.titleDiv {
  align-items: center;
  gap: 20px;
}
.leftDivTitle {
  font-weight: 800;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clrF);
}
.resultList {
  padding: 15px;
  gap: 10px;
  flex-wrap: wrap;
}
.resultItem {
  width: calc(100% / 2 - 10px / 2);
  background-color: var(--clrF);
  padding: 10px;
}
.resultImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border: 1px solid var(--clrE2);
}
.itemLink {
  margin-top: 10px;
  font-weight: 400;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: center;
  color: var(--clr21);
}
.seeMoreLink {
  width: 100%;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: var(--clrBlue1);
  margin-top: 15px;
  gap: 7px;
}
@media screen and (min-width: 550px) {
  .resultItem {
    width: calc(100% / 3 - 10px * 2 / 3);
  }
}
@media screen and (min-width: 768px) {
  .resultGrid {
    grid-template-columns: 1fr 3fr;
  }
  .leftDivGrid {
    justify-content: center;
  }
  .titleDiv {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .titleImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    order: 2;
  }
  .cutStoneSection .leftDivGrid {
    order: 2;
  }
  .cutStoneSection .resultGrid {
    grid-template-columns: 3fr 1fr;
  }
}
@media screen and (min-width: 968px) {
  .resultGrid {
    grid-template-columns: 280px 1fr;
  }
  .cutStoneSection .resultGrid {
    grid-template-columns: 1fr 280px;
  }
  .itemLink {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-top: 15px;
  }
  .seeMoreLink {
    display: none;
  }
  .leftDivGrid {
    padding: 5px;
  }
}
@media screen and (min-width: 1150px) {
  .resultList {
    gap: 15px;
  }
  .resultItem {
    width: calc(100% / 4 - 15px * 3 / 4);
    padding: 15px 30px;
  }
}
