/* Hero Banner */
#hero {
  background-color: #E2E7F3;
  height: 90vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  z-index: 1;
  width: 34%;
}

.indicators {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: #088178;
}

/* Keep existing hero styles for text and button */
#hero h4 { padding-bottom: 15px; }
#hero h1 { color: #088178; }
#hero button {
  background-image: url('../img/button.png');
  background-color: transparent;
  color: #088178;
  border: 0;
  padding: 14px 80px 14px 65px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  z-index: 1;
}


/* Feature Products  */

.new-arrivals{
  padding-top: 0px !important;
}

#product1{
  text-align: center;
}

#product1 .pro-container{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
  align-items: center;
}

#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.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img{
 width: 100%;
}

#product1 .pro-container .pro .images{
  width: 100%;
  height: 296px;
  background-color: #f3f3f3;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

#product1 .pro .des{
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span{
  color: #606063;
  font-size: 12px;
}
#product1 .pro .des h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  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: 700;
  color: #088178;
}

#product1 .pro .cart{
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  border-color: #e8f6ea;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
  transition: 0.2s ease-in-out;
}

#product1 .pro .cart:hover{
  background-color: #cce7d0;
}

#product1 button{
  background-image: url('../img/button.png');
  background-color: transparent;
  color: #088178;
  border: 0;
  padding: 14px 80px 14px 65px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  margin-top: 20px;
}


/* Add these media queries at the end of your existing CSS */
@media (max-width: 1000px) { /* Tablet */
  #hero {
      height: 100vh !important;
      padding: 0 40px;
  }

  .slide {
      padding: 60px 40px;
      justify-content: start;
      align-items: center;
      text-align: center;
  }

  .slide img {
      position: absolute;
      bottom: 0;
      width: 40%;
      right: auto;
      transform: translateY(0);
  }

  #hero h1 {
      font-size: 32px;
  }

  #hero h2 {
      font-size: 24px;
  }

  #hero h4 {
      font-size: 16px;
  }

  #hero button {
      padding: 12px 40px;
      margin: 0 auto;
  }

  .indicators {
      bottom: 40px;
  }
}

@media (max-width: 660px) { /* Mobile */
  #hero {
      height: 110vh;
      padding: 0 30px;
  }

  .slide {
      padding: 40px 30px !important;
  }

  .slide img {
    margin-top: 20px;
    width: 60%;
  }

  #hero h1 {
      font-size: 28px;
      line-height: 1.2;
  }

  #hero h2 {
      font-size: 20px;
  }

  #hero h4 {
      font-size: 14px;
      padding-bottom: 10px;
  }

  #hero p {
      font-size: 14px;
      margin: 10px 0;
  }

  #hero button {
      padding: 10px 30px;
      font-size: 14px;
      margin-top: 15px;
  }

  .indicators {
      bottom: 20px;
      gap: 8px;
  }

  .indicator {
      width: 10px;
      height: 10px;
  }
}


