* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
   font-family: 'DM Sans', sans-serif;
}



.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #563A8A;
  color: #fff;
  padding: 1.8rem;
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #563A8A;
 
}

.zoom {
  padding: 15px 30px;
  font-size: 18px;
  background-color: #563A8A;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  animation: zoomPulse 1.5s infinite ease-in-out;
}

@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.foot {
  background-color: #563A8A;
}

.glass-red {
  background: linear-gradient(
    135deg,
    rgba(171, 48, 39, 0.85),
    rgba(171, 51, 42, 0.65)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}


.grad{
  background: linear-gradient(135deg, #9A7FD1, #563A8A);

}
.grad1{
  background: linear-gradient(300deg, #563A8A, #135d8b);
}

