body {
  background-color: #f3eee7;
}

/* hero */
.navbar-brand img {
  max-width: unset;
  max-height: unset;
  width: 70px;
  height: auto;
}
.s-block--photos-slider {
  margin: 0;
}

.s-block--photos-slider .s-slider-block__title {
  display: none;
}

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

salla-slider.photos-slider .swiper-slide {
  margin: 0;
  padding: 0;
  width: 100%;
  border-radius: 0;
}

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

/* Banner */
.s-block--fixed-banner .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
section[component-id="356710582"] .container {
  text-align: center !important;
  max-width: 1280px;
  margin: auto;
}

section[component-id="356710582"] .banner--fixed {
  display: inline-block !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  line-height: 0 !important;
}

section[component-id="356710582"] .banner--fixed picture {
  display: inline-block !important;
  width: auto !important;
  max-width: 100% !important;
}

section[component-id="356710582"] .banner--fixed picture img {
  content: url("https://res.cloudinary.com/drujlnrnc/image/upload/v1790007431/Long-Banner_1_g8zigf.webp") !important;
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
/* Categories */
.s-block--categories .s-slider-block__title {
  justify-content: center;
}

.s-block--categories .s-slider-block__title * {
  padding: 0;
}

.s-block--categories .s-slider-block__title h2 {
  font-size: clamp(0.9rem, 4vw, 2rem);
}

.s-block--categories .s-slider-block__title .s-slider-block__title-left {
  display: none;
}

.banner--fixed img,
.banner-entry {
  background: #fff0;
}

.s-block--categories .swiper-wrapper {
  justify-content: center;
}

.slide--cat-entry {
  background: #fff0;
  height: auto;
  border: 0;
  border-radius: 0;
  transition: 0.3s;
}

.slide--cat-entry img {
  border-radius: 0;
  height: auto;
  width: 22rem;
}

.slide--cat-entry:hover {
  transform: translateY(-5px);
}

/* Products */
.s-products-slider-card {
  padding: 8px 2px;
}

.s-product-card-entry {
  box-shadow: rgb(99 99 99 / 0.2) 0 2px 8px 0;
}

.s-product-card-entry .s-button-btn {
  background-color: #c9b4a1;
  color: #fff;
}

.s-product-card-entry * {
  justify-content: center;
  text-align: center;
}

.s-product-card-entry {
  transition: 0.3s;
}

.s-product-card-entry:hover {
  transform: translateY(-5px);
}

/* Reviews*/
.s-reviews-container .swiper-slide {
  padding: 8px;
}

.s-block--features .s-block--features__item {
  box-shadow: rgb(99 99 99 / 0.2) 0 2px 8px 0;
}

.s-block--features .feature-icon i {
  color: #c9b4a1;
  font-size: 3rem;
}
.s-block--features__item .feature-icon {
  background-color: transparent;
}

section[data-testid="store-home-features"] {
  overflow: hidden;
  padding-bottom: 30px;
}

section[data-testid="store-home-features"] .s-block--features__item {
  position: relative;
  overflow: hidden;
  padding: 24px 18px;
  border-radius: 20px;
  background: rgb(255 255 255 / 0.8);
  border: 1px solid rgb(0 0 0 / 0.06);
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  animation: glowline-feature-in 0.8s both;
}

section[data-testid="store-home-features"]
  .s-block--features__item:nth-child(1) {
  animation-delay: 0.05s;
}

section[data-testid="store-home-features"]
  .s-block--features__item:nth-child(2) {
  animation-delay: 0.18s;
}

section[data-testid="store-home-features"]
  .s-block--features__item:nth-child(3) {
  animation-delay: 0.31s;
}

@keyframes glowline-feature-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section[data-testid="store-home-features"] .s-block--features__item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgb(0 0 0 / 0.08);
  border-color: rgb(0 0 0 / 0.1);
}

section[data-testid="store-home-features"] .s-block--features__item::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -55%;
  width: 30%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 0.7),
    transparent
  );
  transform: rotate(22deg);
  pointer-events: none;
  opacity: 0;
}

section[data-testid="store-home-features"]
  .s-block--features__item:hover::before {
  animation: glowline-feature-shine 0.9s ease;
}

@keyframes glowline-feature-shine {
  0% {
    left: -55%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    left: 135%;
    opacity: 0;
  }
}

section[data-testid="store-home-features"] .feature-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-inline: auto;
  margin-bottom: 14px;
  border-radius: 50%;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  animation: glowline-icon-float 3s ease-in-out infinite;
}

@keyframes glowline-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

section[data-testid="store-home-features"]
  .s-block--features__item:nth-child(2)
  .feature-icon {
  animation-delay: 0.5s;
}

section[data-testid="store-home-features"]
  .s-block--features__item:nth-child(3)
  .feature-icon {
  animation-delay: 1s;
}

section[data-testid="store-home-features"] .feature-icon i {
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}

section[data-testid="store-home-features"] .feature-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: 0.14;
  animation: glowline-icon-pulse 2.8s ease-out infinite;
}

@keyframes glowline-icon-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.18;
  }

  70% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

section[data-testid="store-home-features"]
  .s-block--features__item:hover
  .feature-icon {
  transform: translateY(-4px) scale(1.08);
}

section[data-testid="store-home-features"]
  .s-block--features__item:hover
  .feature-icon
  i {
  transform: scale(1.08);
}

section[data-testid="store-home-features"] .s-block--features__item h2 {
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

section[data-testid="store-home-features"] .s-block--features__item p {
  opacity: 0.7;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

section[data-testid="store-home-features"] .s-block--features__item:hover h2 {
  transform: translateY(-2px);
}

section[data-testid="store-home-features"] .s-block--features__item:hover p {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  custom-salla-product-card.s-product-card-entry:hover {
    transform: none;
    box-shadow: none;
  }

  section[data-testid="store-home-features"] .s-block--features__item {
    padding: 18px 10px;
    border-radius: 16px;
  }

  section[data-testid="store-home-features"] .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }

  section[data-testid="store-home-features"] .feature-icon i {
    font-size: 22px;
  }

  section[data-testid="store-home-features"] .s-block--features__item h2 {
    font-size: 14px;
  }

  section[data-testid="store-home-features"] .s-block--features__item p {
    font-size: 11px;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  custom-salla-product-card *,
  section[data-testid="store-home-features"] * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.store-footer,.store-footer__inner {
    background-color: #A4A391!important;
    color: #fff
}

.store-footer__inner * {
    justify-content: center;
    text-align: center
}

.store-footer .grid {
    grid-template-columns: repeat(3,minmax(0,1fr))
}

.store-footer .grid>div {
    grid-column: span 1 / span 1
}

.copyright-text p {
    color: #fff
}

.s-comments-product {
    background-color: #fff0
}

.content--single-page {
    box-shadow: rgb(99 99 99 / .2) 0 2px 8px 0
}

@media(max-width: 768px) {
    .store-footer .grid {
        grid-template-columns:repeat(1,minmax(0,1fr))
    }
    .s-block--categories .swiper-wrapper {
        justify-content:start
    }
}