*{
  scrollbar-width: thin;
  scrollbar-color: #fb8500 #222;
  scroll-behavior: smooth;
}
.products-section {
  background: transparent;
  color: gray;
  margin-top: 5rem;

}
.product-card {
  background: transparent;
  width: 250px;
  height: 320px;
  border: 1px solid gray;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.product-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
}
.wave-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    transparent,
    #fb8500,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 1;
  animation: none;
  pointer-events: none;
}

.product-card:hover .wave-background {
  animation: wave-effect 1.5s infinite ease-in-out;
  opacity: 1;
}

@keyframes wave-effect {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
.product-card img:hover {
  transition: all 0.4s;
  transform: scale(1.2);
}
.products-section .container-fluid .row .col-lg-12 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* justify-content: spa; */
}
/* Back to top Css */
.button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  z-index: 1000;
  display: none;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.button:hover {
  background-color: #222;
}
/* Back to top Css */

