@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.section-p1 {
  margin-top: 20px;
}

#product1 {
  text-align: center;
}
#product1 .pro-container {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  flex-wrap: wrap;
}
#product1 h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}
#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}
#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.6);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
  height: 250px;
}
#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}
#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}
#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}
#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700px;
  color: #088178;
}

#mobile {
  display: none;
  align-items: center;
}
#close {
  display: none;
}

/*Start media query*/
@media (max-width: 850px) {
}

@media (max-width: 799px) {
  .section-p1 {
    padding: 40px 40px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }
  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }
  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }
  #lg-bag {
    display: none;
  }

  #product1 .pro-container {
    justify-content: space-around;
  }

  #product1 .pro {
    margin: 15px;
  }
}

@media (max-width: 477px) {
  h2 {
    font-size: 32px;
  }
  h1 {
    font-size: 38px;
  }
  h4 {
    font-size: 25px;
  }
  #product1 h2 {
    font-size: 30px;
  }
  .section-p1 {
    padding: 20px;
  }
  #product .pro {
    width: 100%;
  }
}
/* end media query*/

#product1 h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px; /* Spacing between text and border */
}

#product1 h2::after {
  content: "";
  display: block;
  width: 200px; /* Adjust width as needed */
  height: 4px; /* Border thickness */
  background: linear-gradient(to right, #ff6600, #003366); /* Gradient effect */
  margin: 10px auto 0;
  border-radius: 2px; /* Soft edges */
}
