/* background-color/*/
body{
  background-color: white;
}
/* img section 1 */
section:nth-of-type(1){
  margin: unset;
}
/* img section 1 /// img section 6*/
section:nth-of-type(1) .container ,
section:nth-of-type(6) .container{
  max-width: unset;
  padding: unset;
}
/* img section 2 */
section:nth-of-type(2) .container{
  max-width: 300px;
}
/* grid section 3 */
section:nth-of-type(3) div {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.two-row .banner-entry:first-child{
  grid-row: span 1 / sapn 1;
}
.banner--fixed img, .banner-entry{
  background-color: transparent;
}
/* media section 3*/
@media (max-width:425px){
  section:nth-of-type(3) div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .banner-entry{
    width: 90px;
    height: 100px;
  }
}
@media (max-width:768px){
    section:nth-of-type(3) div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
      gap: 0;
  }
  .banner-entry{
    width: 144px;
    height: 100px;
  }
    .two-row .banner-entry:first-child {
        height: -webkit-fill-available;
    }
}
/* slider*/
.carousel-slider .swiper-wrapper>div {
  padding: 0.625erm;
}
.s-product-card-entry{
  height: 95%;
  margin: 10px;
  box-shadow: 0 0 10px black;
}
/* buttom card // footer */
.s-button-primary-outline ,
.footer-is-light .store-footer .store-footer__inner ,
.footer-is-light .store-footer ,
.copyright-text p{
  background-color: #97435B;
  color: white;
}
.s-button-primary-outline:hover{
  background-color: #97435B;
  color: white;
  opacity: 1;
}
/*footer text copyright */
.hover\:text-primary:hover{
  color: #ffffffe3;
}