* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: unset;
}
body {
  font-family: Montserrat, sans-serif;
  background-color: #0000;
}
main {
  padding: 0;
  margin: 0;
  width: 100%;
  height:  100%;
  background-color: #0000;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.flex {
  display: flex;
  align-items: center;
}
.f-clmn {
  flex-direction: column;
}
.sb {
  justify-content: space-between;
}
.jc {
  justify-content: center;
}
.ac {
  align-items: center;
}
li {
  list-style: none;
}
span {
  display: inline-block;
}

/*-------
  Header
 ------ */

header {
  background-color: #0000003b;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 10px;
  backdrop-filter: blur(10px);
  left: 0;
  border: 1px solid #ffffff17;
  right: 0;
  border-radius: 0px 0px 30px 30px;
  color: #3a3a3a;
  height: 70px;
  z-index: 999;
  user-select: none;
}
.nav {
  gap: 10px;
}
.nav li {
  padding: 8px 16px;
  font-size: 14px;
  transition: 0.3s ease;
  border-radius: 50px;
}
.nav li:active {
  transform: scale(0.9);
}
.nav li:hover {
  color: #000000;
  background-color: #fff;
}
.loginCol i {
  font-size: 18px;
  margin-right: 10px;
}
.login {
  margin-left: 20px;
  padding: 10px 25px;
  font-size: 16px;
  background-color: #fff;
  color: #000;
  border: unset;
  transition: 0.3s ease;
  border-radius: 50px;
  box-shadow: 2px 2px 5px -5px #000;
  font-family: Montserrat;
}
.login:hover {
  transform: scale(1.1);
}
.login:active {
  transform: scale(0.9);
}
.iconCol {
  display: none;
}

/*---------------
 SECTION - 1 Hero 
 --------------*/

.hero {
  min-height: 100vh;
  padding-top: 120px;
  user-select: none;
  position: relative;
}
.hero picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.heroContent p {
  color: rgb(104, 104, 104);
  width: 40%;
}
.heroContent h1 {
  width: 60%;
  font-size: 80px;
  line-height: 6rem;
  margin-bottom: 50px;
  color: #000000;
  margin-top: 40px;
}
.order {
  color: #fff;
  background-color: #000;
  padding: 15px 30px;
  border: unset;
  margin-right: 15px;
  transition: 0.3s ease;
  font-size: 15px;
  border-radius: 50px;
  box-shadow: 2px 2px 5px -5px #000;
  font-family: Montserrat;
}
.see {
  color: #000;
  background-color: #fff;
  padding: 15px 30px;
  margin-right: 15px;
  font-size: 15px;
  transition: 0.3s ease;
  border-radius: 50px;
  box-shadow: 2px 2px 5px -5px #000;
  font-family: Montserrat;
  border: unset;
}
.order:hover,
.see:hover {
  transform: scale(1.1);
}
.order:active,
.see:active {
  transform: scale(0.9);
}

/*------------------------------
 SECTION - 2 Build Trust Section
 ---------------------------- */

.build-trust {
  background-color: #000;
  color: #fff;
  padding: 100px 0px 50px 0px;
}
.trustRow {
  gap: 10px;
}
.gemStone {
  height: 162px;
  gap: 20px;
  padding: 30px;
  width: 70%;
  background-color: rgb(51 48 48);
  border-radius: 20px;
  color: #fff;
}
.gemStone img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
.gemStone p {
  width: 100%;
  color: #ffecd1;
}
.gemStone h2 {
  font-size: 30px;
}
.trust {
  height: 162px;
  padding: 30px;
  background-color: #3e000c;
  color: #ffecd1;
  width: 30%;
  border-radius: 20px;
}
.trust h2 {
  font-size: 60px;
}
.trust img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

/*-----------------
 SECTION - 3 SHAPES
 --------------- */

.shapes {
  background-color: #000;
  color: #fff;
  padding: 50px 0px;
  overflow: hidden;
  min-height: 100vh;
}
.shapes h2 {
  font-size: 119px;
}
.arrival p {
  width: 100%;
  color: #ffecd1;
}
.carousel {
  width: 250px;
  height: 300px;
  perspective: 1000px;
  margin: auto;
  margin-top: 150px;
}
.cards {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 50s linear infinite;
}
.card {
  position: absolute;
  width: 200px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card:nth-child(1) {
  transform: rotateY(0deg) translateZ(400px);
}
.card:nth-child(2) {
  transform: rotateY(45deg) translateZ(400px);
}
.card:nth-child(3) {
  transform: rotateY(90deg) translateZ(400px);
}
.card:nth-child(4) {
  transform: rotateY(135deg) translateZ(400px);
}
.card:nth-child(5) {
  transform: rotateY(180deg) translateZ(400px);
}
.card:nth-child(6) {
  transform: rotateY(225deg) translateZ(400px);
}
.card:nth-child(7) {
  transform: rotateY(270deg) translateZ(400px);
}
.card:nth-child(8) {
  transform: rotateY(315deg) translateZ(400px);
}

@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.shapesbtn {
  margin-top: 80px;
}
.shapesbtn button {
  border: 1px solid #ffffff23;
  background-color: #ffffff3d;
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  transition: 0.3s ease;
  font-size: 16px;
}
.shapesbtn button:active {
  transform: scale(0.9);
}

/*-------------------
 SECTION - 4 CATEGORY
 ------------------ */

.category {
  overflow-x: hidden;
  padding: 50px 0px;
  min-height: 100vh;
  background-color: #000000;
  color: #ffffff;
}
.category h2 {
  font-size: 119px;
}
.categoryRow p {
  width: 100%;
  color: #ffecd1;
}
.carousel2 {
  width: 100% !important;
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}

.carousel-item {
  --items: 10;
  --width: clamp(180px, 30vw, 300px);
  --height: clamp(300px, 40vw, 400px);
  --x: calc(var(--active) * 450%);
  --y: calc(var(--active) * 80%);
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 20px;
  top: 50%;
  left: 50%;
  user-select: none;
  transform-origin: 0% 100%;
  box-shadow: 2px 2px 50px -20px goldenrod;
  background: black;
  pointer-events: all;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);

  .carousel-box {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);

    &:before {
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.5)
      );
    }
  }

  .title {
    position: absolute;
    z-index: 1;
    color: #fff;
    font-weight: 600;
    bottom: 20px;
    left: 20px;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 3vw, 30px);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  }

  .num {
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 10px;
    left: 20px;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 10vw, 80px);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
}

.layout {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  &:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 90px;
    width: 10px;
    height: 100%;
    border: 1px solid #fff;
    border-top: none;
    border-bottom: none;
    opacity: 0.15;
  }

  .box {
    position: absolute;
    bottom: 0;
    left: 30px;
    color: #fff;
    transform-origin: 0% 10%;
    transform: rotate(-90deg);
    font-size: 9px;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 0.4;
  }
}
.categoryBtn {
  margin: 30px 0px 0px 0px;
}
.categoryBtn button {
  border: 1px solid #ffffff23;
  background-color: #ffffff3d;
  color: #fff;
  padding: 13px 35px;
  border-radius: 30px;
  transition: 0.3s ease;
}
.categoryBtn button:active {
  transform: scale(0.9);
}

/*---------------
 SECTION - 5 SHOP
 -------------- */
.shop h2 {
  font-size: 119px;
}
.sellerRow {
  margin-bottom: 30px;
}
.sellerRow p {
  width: 100%;
  color: #ffecd1;
}
.shop {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  padding: 50px 0px;
  position: relative;
}
.allproducts {
  position: relative;
  gap: 100px;
}
.product1,
.product2,
.product3,
.product4,
.product5 {
  height: 90vh;
  padding: 0px;
  align-items: flex-start;
  position: sticky;
  overflow: hidden;
  border-radius: 30px;
  width: 100%;
  border: 1px solid #ffffff21;
}
.inner-product {
  height: 100%;
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
  background: transparent;
  display: flex;
}
.product1 {
  top: 10px;
}
.product1 .product-content {
  background-color: #b58c6c;
}
.product2 {
  top: 20px;
}
.product2 .product-content {
  background-color: #5b8a97;
}
.product3 {
  top: 30px;
}
.product3 .product-content {
  background-color: #4e4e4e;
}
.product4 {
  top: 40px;
}
.product4 .product-content {
  background-color: #5b8a97;
}
.product5 {
  top: 50px;
}
.product5 .product-content {
  background-color: #3e000c;
}

.product-content {
  display: flex;
  flex-direction: column;
  padding: 30px 10px 0px 30px;
}
.label-p {
  padding: 2px 10px;
  border: 1px solid #ffffff2b;
  width: fit-content;
  border-radius: 30px;
  font-size: 12px;
}
.label-p i {
  font-size: 16px;
  color: goldenrod;
  margin-right: 10px;
}
.ri-star-s-fill {
  color: goldenrod;
  font-size: 20px;
}
.ri-star-half-s-line {
  color: goldenrod;
  font-size: 20px;
}
.product-content h2 {
  font-size: 50px;
  width: 70%;
}
.product-content p {
  line-height: 1.6rem;
  text-align: left;
}
.product-content h3 {
  margin-top: 20px;
  font-size: 30px;
}
.stars {
  margin-top: 20px;
}
.p1,
.p2 {
  margin: 15px 0px;
  font-weight: 100;
}
.p2 {
  display: none;
}
.product-content button {
  padding: 12px 25px;
  border-radius: 30px;
  background-color: #ffffff4c;
  font-size: 14px;
  border: unset;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s ease;
}
.product-content button:hover {
  transform: scale(1.1);
}
.product-content button:active {
  transform: scale(0.9);
}
.product-content button i {
  font-size: 16px;
  color: #3baf00;
}
.product-img img {
  width: 600px;
  height: 100%;
  object-fit: cover;
}

/*----------------------
 SECTION - 6 TESTIMONIAL
 --------------------- */

.testimonials {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  padding: 50px 0px;
}
.testimonials h2 {
  font-size: 119px;
}
.exp p {
  width: 100%;
  color: #ffecd1;
}
.exp {
  margin-bottom: 50px;
}
.outter {
  width: 100%;
  gap: 30px;
  overflow-x: hidden;
  white-space: nowrap;
  background-color: transparent;
  margin-bottom: 30px;
}
.review {
  display: flex;
  gap: 20px;
  border: 1px solid #ffffff31;
  border-radius: 84px;
  background-color: #000;
  backdrop-filter: blur(10px);
  padding: 10px;
  width: 500px;
  transform: translateX(-330%);
}
.review2 {
  display: flex;
  gap: 20px;
  border: 1px solid #ffffff31;
  border-radius: 84px;
  background-color: #000;
  backdrop-filter: blur(10px);
  padding: 10px;
  width: 500px;
}
.review2 img {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  object-fit: cover;
}
.review img {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  object-fit: cover;
}
.review h4 {
  font-size: 15px;
  color: #fff;
  text-align: left;
  width: 100%;
  font-weight: 300;
}
.review2 h4 {
  font-size: 15px;
  color: #fff;
  text-align: left;
  width: 100%;
  font-weight: 300;
}
.review p {
  font-size: 16px;
  color: #ffff;
  text-align: left;
  width: 100%;
  background-color: unset;
  font-weight: 300;
}
.review2 p {
  font-size: 16px;
  color: #ffff;
  background-color: unset;
  text-align: left;
  width: 100%;
  font-weight: 300;
}

/*-------------------------
 SECTION - 7 ADVERTISEMENT
 ------------------------ */

.advertisement {
  min-height: 100vh;
  padding: 50px 0px;
  color: #fff;
  text-align: center;
  background-color: #000;
}
.add {
  background-image: url(Images/Advertisement-Sec/add-main.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  text-align: center;
  border-radius: 30px;
  gap: 0px;
}
.add h3 {
  font-size: 50px;
  color: #ebebeb;
}
.add h2 {
  opacity: 0.5;
  font-size: 120px;
  color: #ffffff98;
}
.add button {
  border-radius: 50px;
  border: 1px solid #ffffff54;
  backdrop-filter: blur(3px);
  font-size: 16px;
  background: #00000014;
  padding: 15px 70px;
  color: #ffffff;
  transition: 0.3s ease;
}
.add button:hover {
  transform: scale(1.1);
}
.add button:active {
  transform: scale(0.9);
}

/*-----
 FOOTER
 ---- */

footer {
  background: #000;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 10px;
}
footer h2 {
  font-size: 83px;
  line-height: 5rem;
  margin-bottom: 2rem;
}
.email {
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #bbbbbb58;
}
.email p {
  text-align: end;
  padding-left: 25%;
}
.mail-col {
  position: relative;
}
.mail-col i {
  position: absolute;
  right: 10px;
  top: 9%;
  color: #000000;
  font-size: 30px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 50%;
}
#mail {
  height: 4rem;
  width: 30rem;
  font-size: 16px;
  border: unset;
  border-radius: 50px;
  padding: 0px 20px;
  background-color: rgb(51 48 48);
  color: #fff;
}
#mail::placeholder {
  color: #ffffff;
}
.markup {
  padding-top: 30px;
}
.links {
  gap: 15px;
}
.links i {
  font-size: 30px;
  transition: 0.3s ease;
}
.links i:hover {
  transform: scale(1.2);
}
.markup a {
  color: #fff5d5;
  text-decoration: underline;
  font-size: 18px;
  display: inline-block;
  text-align: right;
  width: 100%;
}
.ri-menu-2-line {
  display: none;
}
.ri-eye-close-line {
  display: none;
}

@media (max-width: 576px) {
  .login:hover,
  .order:hover,
  .see:hover,
  .add button:hover {
    transform: unset;
  }
  .login:active,
  .order:active,
  .see:active,
  .add button:active {
    transform: scale(0.9);
  }

  /*------
    Header
  ----- */
  header {
    background-color: #c1c1c13b;
  }
  .ri-menu-2-line {
    display: block;
    color: #ffff;
    font-size: 20px;
    margin-right: 15px;
  }
  .ri-eye-close-line {
    color: #ffff;
    font-size: 20px;
    margin-right: 20px;
  }
  .siteName {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
  .navCol {
    position: absolute;
    top: 75px;
    left: 0px;
    right: 0px;
    background: linear-gradient(37deg, black, transparent);
    backdrop-filter: blur(5px);
    border-radius: 0px 0px 30px 30px;
    transform: translateY(-150%);
  }
  .nav {
    flex-direction: column;
    padding: 30px 0px;
    border-radius: 0px 0px 30px 30px;
    width: 100%;
    border: 1px solid #ffffff4f;
    backdrop-filter: blur(5px);
  }
  .nav li a {
    color: #ffff;
    font-weight: 400;
    font-size: 20px;
  }
  .iconCol {
    gap: 8px;
    display: flex;
  }
  .iconCol i {
    color: #fff;
    font-size: 20px;
  }
  .loginCol {
    display: none;
  }

  /*---------------
   SECTION - 1 HERO
   -------------- */

  .hero {
    padding-top: 10rem;
    background-color: unset;
  }
  .heroContent p {
    color: #ffffff;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
  }
  .heroContent h1 {
    width: 100%;
    font-size: 43px;
    color: #fff;
    line-height: 3rem;
    margin-bottom: 3rem;
    margin-top: 8px;
    text-align: left;
  }
  .btnSet {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 60%;
    gap: 12px;
  }
  .order,
  .see {
    font-size: 14px;
  }

  /*----------------------
   SECTION - 2 BUILD TRUST 
   ---------------------*/
  .build-trust {
    padding: 100px 0px 50px 0px;
  }
  .trustRow {
    flex-direction: column;
  }
  .gemStone {
    gap: 10px;
    padding: 20px;
    height: 170px;
    width: 100%;
  }
  .gemStone h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .gemStone p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .gemStone img {
    width: 80px;
    height: 80px;
  }
  .trust {
    padding: 20px;
    height: 170px;
    width: 100%;
  }
  .trust h2 {
    font-size: 85px;
  }

  /*-----------------
   SECTION - 3 SHAPES
   ---------------- */

  .shapes {
    height: unset;
    padding: 50px 0px;
  }
  .shapes h2 {
    font-size: 50px;
    width: 100%;
  }
  .shapesbtn {
    margin-top: 8rem;
  }
  .shapesbtn button {
    font-size: 14px;
  }
  .arrival {
    flex-direction: column-reverse;
  }
  .arrival p {
    margin-top: 20px;
    margin-bottom: 75px;
    width: 100%;
  }
  .carousel {
    width: 200px;
    height: 220px;
    perspective: 1000px;
    margin: auto;
    margin-top: 30px;
  }
  .card {
    position: absolute;
    width: 150px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
  }

  .card:nth-child(1) {
    transform: rotateY(0deg) translateZ(250px);
  }
  .card:nth-child(2) {
    transform: rotateY(45deg) translateZ(250px);
  }
  .card:nth-child(3) {
    transform: rotateY(90deg) translateZ(250px);
  }
  .card:nth-child(4) {
    transform: rotateY(135deg) translateZ(250px);
  }
  .card:nth-child(5) {
    transform: rotateY(180deg) translateZ(250px);
  }
  .card:nth-child(6) {
    transform: rotateY(225deg) translateZ(250px);
  }
  .card:nth-child(7) {
    transform: rotateY(270deg) translateZ(250px);
  }
  .card:nth-child(8) {
    transform: rotateY(315deg) translateZ(250px);
  }
  .categoryBtn {
    margin: 30px 0px 0px 0px;
  }

  /*--------------------
   SECTION - 4 CATEGORY 
   --------------------*/

  .category {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .category h2 {
    font-size: 50px;
    width: 100%;
  }
  .categoryRow {
    margin-bottom: 0px;
    flex-direction: column-reverse;
  }
  .categoryRow p {
    margin-top: 20px;
    margin-bottom: 50px;
    width: 100%;
  }
  .categoryBtn button {
    font-size: 14px;
  }
  .carousel2 {
    height: 75vh;
  }
  .carousel-item {
    --width: clamp(250px, 30vw, 300px);
    --height: clamp(400px, 40vw, 400px);
    --x: calc(var(--active) * 450%);
    --y: calc(var(--active) * 80%);
  }

  /*---------------
   SECTION - 5 SHOP
   -------------- */
  .shop h2 {
    font-size: 50px;
    width: 100%;
    text-align: left;
  }
  .sellerRow {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
  .sellerRow p {
    margin: 20px 0px 50px 0px;
  }
  .allproducts {
    position: relative;
    gap: 100px;
  }
  .product1,
  .product2,
  .product3,
  .product4,
  .product5 {
    height: 80vh;
    padding: 0px;
    align-items: flex-start;
    position: sticky;
    overflow: hidden;
    border-radius: 30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    flex-direction: column-reverse;
    border: 1px solid #ffffff96;
  }
  .inner-product {
    height: 100%;
    width: 100%;
    padding: 0px;
    margin: 0px;
    position: relative;
    background: transparent;
  }
  .p1 {
    display: none;
  }
  .p2 {
    display: block;
    margin: 10px 0px 20px 0px;
    line-height: 1.2rem;
  }
  .inner-product h2 {
    width: fit-content;
    font-size: 25px;
  }
  .product1 {
    background-image: url(Images/Shop-Sec/necklace-mobile.webp);
    top: 50px;
  }
  .product2 {
    background-image: url(Images/Shop-Sec/earring-mobile.webp);
    top: 60px;
  }
  .product3 {
    background-image: url(Images/Shop-Sec/bracelet-mobile.webp);
    top: 70px;
  }
  .product4 {
    background-image: url(Images/Shop-Sec/rings-mobile.webp);
    top: 80px;
  }
  .product5 {
    background-image: url(Images/Shop-Sec/bride-mobile.webp);
    top: 100px;
  }
  .product-content {
    background: linear-gradient(0deg, black, transparent);
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 10;
    text-align: left;
    padding: 15px;
  }
  .product-img {
    display: none;
  }
  .product1 .product-content,
  .product2 .product-content,
  .product3 .product-content,
  .product4 .product-content,
  .product5 .product-content {
    background-color: unset;
  }
  .label-p i {
    font-size: 10px;
    color: goldenrod;
    margin-right: 5px;
  }
  .label-p {
    padding: 4px 10px;
    border: 1px solid #ffffff2b;
    width: fit-content;
    border-radius: 30px;
    font-size: 10px;
    background: #0000004f;
    margin-bottom: 5px;
  }
  .product-content button {
    padding: 12px 15px;
    border-radius: 30px;
    background-color: #ffffff4c;
    font-size: 14px;
    border: unset;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s ease;
  }
  .stars {
    margin-top: 10px;
    font-size: 14px;
  }
  .product-content h3 {
    margin-top: 10px;
    font-size: 25px;
  }
  .ri-star-s-fill {
    font-size: 16px;
  }
  .ri-star-half-s-line {
    font-size: 16px;
  }
  .product-content button:hover {
    transform: scale(1.1);
  }
  .product-content button:active {
    transform: scale(0.9);
  }
  .product-content button i {
    font-size: 16px;
    color: #3baf00;
  }

  /*----------------------
   SECTION - 6 TESTIMONIAL
   --------------------- */

  .testimonials {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .testimonials h2 {
    font-size: 50px;
    width: 100%;
  }
  .exp {
    margin-bottom: 0px;
    flex-direction: column-reverse;
  }
  .exp p {
    margin-top: 20px;
    margin-bottom: 75px;
    width: 100%;
  }
  .review {
    padding: 10px 20px;
  }
  .review p {
    font-size: 14px;
  }
  .review img {
    width: 120px;
    height: 120px;
  }
  .review2 {
    padding: 10px 20px;
  }
  .review2 p {
    font-size: 14px;
  }
  .review2 img {
    width: 120px;
    height: 120px;
  }

  /*-------------------------
   SECTION - 7 ADVERTISEMENT
   ------------------------ */

  .add {
    background-image: url(Images/Advertisement-Sec/add-mobile.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .add {
    gap: 0px;
  }
  .add h3 {
    font-size: 30px;
    color: #ffffff;
  }
  .add h2 {
    opacity: 0.5;
    font-size: 75px;
    color: #ffffff;
    margin: 50px 0px;
  }

  /*------
   FOOTER
   ------ */

  footer h2 {
    font-size: 30px;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
  .email {
    flex-direction: column;
  }
  .mail-col {
    width: 100%;
  }
  #mail {
    height: 4rem;
    width: 100%;
    border: unset;
    border-radius: 50px;
    padding: 0px 20px;
    background-color: rgb(51 48 48);
    color: #fff;
  }
  .email p {
    text-align: start;
    padding: 0;
  }
  .markup {
    gap: 10px;
  }
  .copyright {
    width: 30%;
  }
  .markup p {
    font-size: 12px;
  }
  .links {
    gap: 5px;
  }
  .links i {
    font-size: 25px;
  }
  .sign {
    width: 31%;
  }
  .sign a {
    font-size: 16px;
  }
}
@media (min-width: 577px) and (max-width: 1024px) {
  /*-----
    Header
  ----- */

  header {
    height: 70px;
  }
  .siteName {
    font-size: 30px;
  }
  .ri-menu-2-line {
    display: block;
    color: #ffff;
    font-size: 30px;
    margin-right: 30px;
  }
  .ri-eye-close-line {
    color: #ffff;
    font-size: 35px;
    margin-right: 30px;
  }
  .siteName {
    font-size: 35px;
    color: #fff;
  }
  .navCol {
    position: absolute;
    top: 75px;
    left: 0px;
    right: 0px;
    background: linear-gradient(37deg, black, #00000040);
    backdrop-filter: blur(5px);
    border-radius: 0px 0px 30px 30px;
    transform: translateY(-150%);
    opacity: 0;
  }
  .nav {
    flex-direction: column;
    padding: 30px 0px;
    border-radius: 0px 0px 30px 30px;
    width: 100%;
    border: 1px solid #ffffff4f;
  }
  .nav li a {
    color: #ffff;
    font-weight: 600;
    font-size: 20px;
  }
  .login {
    display: none;
  }
  .loginCol{
    display: none;
  }
  .iconCol {
    gap: 10px;
    display: flex;
  }
  .iconCol i {
    color: #fff;
    font-size: 25px;
  }

  /*---------------
   SECTION - 1 HERO
   -------------- */

  .hero {
    padding-top: 13rem;
    padding-bottom: 7rem;
  }
  .heroContent p {
    color: #ffffff;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
  }
  .heroContent h1 {
    font-size: 120px;
    color: #fff;
    line-height: 120px;
    margin-bottom: 4rem;
    margin-top: 2rem;
    text-align: left;
    width: 100%;
  }
  .btnSet {
    display: flex;
    justify-content: left;
    flex-direction: column;
    width: 46%;
    gap: 20px;
  }
  .see,
  .order {
    font-size: 22px;
  }

  /*----------------------
   SECTION - 2 BUILD TRUST
   -------------------- */
  .build-trust {
    padding: 100px 0px 50px 0px;
  }
  .trustRow {
    flex-direction: column;
  }
  .gemStone {
    gap: 10px;
    padding: 20px;
    height: 170px;
    width: 100%;
  }
  .gemStone h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .gemStone p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .gemStone img {
    width: 130px;
    height: 130px;
  }
  .trust {
    padding: 20px;
    height: 170px;
    width: 100%;
  }
  .trust h2 {
    font-size: 85px;
  }

  /*-----------------
   SECTION - 3 SHAPES
   ---------------- */

  .shapes {
    height: unset;
    padding: 50px 0px;
  }
  .shapes h2 {
    font-size: 70px;
    width: 100%;
  }
  .shapesbtn {
    margin-top: 140px;
  }
  .arrival {
    flex-direction: column-reverse;
  }
  .arrival p {
    margin-top: 20px;
    margin-bottom: 75px;
    width: 100%;
  }
  .carousel {
    width: 200px;
    height: 250px;
    perspective: 1000px;
    margin: auto;
    margin-top: 30px;
  }
  .card:nth-child(1) {
    transform: rotateY(0deg) translateZ(300px);
  }
  .card:nth-child(2) {
    transform: rotateY(45deg) translateZ(300px);
  }
  .card:nth-child(3) {
    transform: rotateY(90deg) translateZ(300px);
  }
  .card:nth-child(4) {
    transform: rotateY(135deg) translateZ(300px);
  }
  .card:nth-child(5) {
    transform: rotateY(180deg) translateZ(300px);
  }
  .card:nth-child(6) {
    transform: rotateY(225deg) translateZ(300px);
  }
  .card:nth-child(7) {
    transform: rotateY(270deg) translateZ(300px);
  }
  .card:nth-child(8) {
    transform: rotateY(315deg) translateZ(300px);
  }

  /*-------------------
   SECTION - 4 CATEGORY
   ----------------- */

  .category {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .category h2 {
    font-size: 70px;
    width: 100%;
    text-align: left;
  }
  .categoryRow {
    flex-direction: column-reverse;
  }
  .categoryRow p {
    width: 100%;
    margin: 30px 0px;
    color: #ffecd1;
  }
  .carousel2 {
    height: 80vh;
  }
  .carousel-item {
    --width: clamp(250px, 30vw, 300px);
    --height: clamp(400px, 40vw, 400px);
    --x: calc(var(--active) * 450%);
    --y: calc(var(--active) * 80%);
  }
  .categoryBtn {
    margin: 60px 0px 0px 0px;
  }

  /*---------------
   SECTION - 5 SHOP
   -------------- */
  .shop h2 {
    font-size: 70px;
    width: 100%;
    text-align: left;
  }
  .sellerRow {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
  .sellerRow p {
    margin: 30px 0px;
  }
  .product1,
  .product2,
  .product3,
  .product4,
  .product5 {
    height: 80vh;
    flex-direction: column-reverse;
  }
  .p2 {
    display: none;
  }
  .p1 {
    margin: 15px 0px;
    font-size: 20px;
  }
  .product-content p {
    line-height: 1.9rem;
    text-align: left;
  }
  .product1 {
    top: 50px;
  }
  .product2 {
    top: 60px;
  }
  .product3 {
    top: 70px;
  }
  .product4 {
    top: 80px;
  }
  .product-content {
    padding: 15px;
  }
  .product-content h2 {
    width: fit-content;
    font-size: 40px;
  }
  .product-content h3 {
    font-size: 40px;
  }
  .product-img img {
    width: 400px;
  }
  .stars {
    font-size: 20px;
  }
  .label-p {
    margin-bottom: 10px;
  }
  .product-content button {
    padding: 9px 15px;
  }

  /*----------------------
   SECTION - 6 TESTIMONIALS
   -------------------- */

  .testimonials {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .testimonials h2 {
    font-size: 70px;
    width: 100%;
    text-align: left;
  }
  .exp {
    flex-direction: column-reverse;
  }
  .exp p {
    width: 100%;
    margin: 30px 0px;
    color: #ffecd1;
  }
  .exp h2 {
    width: 100%;
    text-align: left;
  }
  .review {
    padding: 10px 20px;
  }
  .review img {
    width: 150px;
    height: 150px;
  }
  .review2 {
    padding: 10px 20px;
  }
  .review2 img {
    width: 150px;
    height: 150px;
  }

  /*-------------------------
   SECTION - 7 ADVERTISEMENT
   ------------------------ */

  .add {
    background-image: url(Images/Advertisement-Sec/add-main.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .add {
    gap: 0px;
  }
  .add h3 {
    font-size: 35px;
    color: #ffffff;
  }
  .add h2 {
    opacity: 0.5;
    font-size: 75px;
    color: #ffffff;
    margin: 50px 0px;
  }

  /*-----
   FOOTER
   -----*/

  footer h2 {
    font-size: 40px;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
  .email {
    flex-direction: column;
  }
  .mail-col {
    width: 100%;
  }
  #mail {
    height: 4rem;
    width: 100%;
    border: unset;
    border-radius: 50px;
    padding: 0px 20px;
    background-color: rgb(51 48 48);
    color: #fff;
  }
  .email p {
    text-align: start;
    padding: 0;
  }
  .markup {
    gap: 10px;
  }
  .copyright {
    width: 30%;
  }
  .markup p {
    font-size: 12px;
  }
  .links {
    gap: 5px;
  }
  .links i {
    font-size: 25px;
  }
  .sign {
    width: 31%;
  }
  .sign a {
    font-size: 16px;
  }
}
