/* Add custom CSS styles below */ 
.inner.bg-inherit,
.s-button-primary-outline,
footer,
footer > div {
  background: #675078;
  background: linear-gradient(90deg, #675078 0%, #4d3e5c 100%) !important;
}

.s-button-primary-outline {
  color: white !important;
  border-radius: 20px !important;
}

@keyframes animate {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(3px, -3px);
  }
  50% {
    transform: translate(-3px, 3px);
  }
  75% {
    transform: translate(3px, 3px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

.s-product-card-entry:hover img {
  animation: animate 0.6s linear;
}

.s-block.s-block--photos-slider {
  margin-top: 0 !important;
}

.s-block.s-block--photos-slider salla-slider.photos-slider .swiper {
  padding: 0 !important;
}

salla-slider.photos-slider .swiper-slide {
  border-radius: 0 !important;
}

.s-product-card-image {
  background-color: white !important;
}

.s-product-card-image-cover {
  padding: 5px !important;
  border-radius: 20px !important;
}

.s-product-card-entry {
  overflow: hidden;
  border-radius: 20px !important;
}

.product-single div.main-content.lg\:overflow-hidden > h1,
.fq-main-title,
.s-reviews-header,
.sf_head h2,
.s-block__title h2 {
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #d0ad00 0%,
    #4d3e5c 29%,
    #ffbf00 67%,
    #614f73 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  display: inline-block;
  font-weight: 800;
  line-height: 2.5rem;
}
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}