.inner {
  background-color: #fff;
}
.main-menu li.root-level > a {
  color: #000;
}

.main-nav .icon {
color: black;}


.s-cart-summary-total {
  color: #2C1A06;
}

.navbar-brand img {
  max-height: 4rem;
  max-width: 180px !important;
 
}

/*swiper photos start*/

.s-block--photos-slider .swiper-slide {
  width: 100% !important;
  padding: 0px !important;
  margin: 0px !important;
}

.s-block--photos-slider {
  margin-top: 0px !important;
}
.swiper {
  padding: 0px !important;
}
/*swiper photos end*/

/*grid start*/


.md\:grid-cols-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.banner-entry .lazy__bg {
  background-size: contain;

  background-repeat: no-repeat;
}

.banner-entry {
  height: 250px !important;
  background-color: transparent;
}
@media (max-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
 
}
}

@media (max-width: 768px) {
  .banner-entry {
    background-color: transparent;
     height: 150px !important;
  }
}

/*grid end*/



section:nth-child(1 of section.s-block--fixed-banner) {

  margin: auto;
  margin-top: 50px;
  background-color: transparent;
  max-width: 350px;

}

/*slider card start*/

.s-products-slider-card.swiper-slide {
  width: 50%;
}

.s-products-slider-card.swiper-slide {
  margin-bottom: 30px;
}

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

/*slider card button  start*/
.s-product-card-entry .s-button-element  {
  background-color: #E2C9C7 !important;
}
button.undefined {
  color: white;
}
.s-button-primary {
  background-color: #E2C9C7 !important;


}

.s-product-card-content-title a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*slider card button end*/

/*slider card end*/

.banner--fixed img {
  background-color: transparent;
}



/*footer start*/
.store-footer__inner {
  background-color: #E2C9C7 !important;
  color: #000;
}

footer * {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media(min-width:1024px){
footer .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

footer * {
    margin: 0 auto;
    text-align: center;
}

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

/*footer end*/

/*animations*/

@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }

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

.s-product-card-entry {
  animation: moveUpDown 2s ease-in-out infinite;
}


section:nth-child(1 of section.s-block--fixed-banner) {margin: auto;margin-top: 50px;background-color: transparent;max-width: 620px;}

/* Hover Effect */

.banner-entry > div {
  background-repeat: no-repeat;
  display: inline-block;
  transition: 0.3s;
}

.banner-entry > div:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);
  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
}

.banner-entry > div:hover:after {
  opacity: 1;
  left: 130%;
  transition-property: left, top, opacity;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: ease;
}

/* Active state */
.banner-entry > div:active:after {
  opacity: 0;
}

.banner-entry > div:not(:hover) {
  transform: scale(0.95);
}