/* Add custom CSS styles below */ 

/* start hero banner */
body.index section:first-of-type{
  margin-top: 0;
}
salla-slider.photos-slider .swiper-slide {
    margin: 0;
    padding: 0;
    width: 90%;
    border-radius: 0;
}
salla-slider.photos-slider .swiper:where([dir=rtl],[dir=rtl] *) {
    padding: 0;
}
.s-slider-v-centered .s-slider-block__title-nav {
    display: none;
}

/* start grid categories */
.two-row .banner-entry:first-child {
    grid-column: span 1 / span 1;
    grid-row: span 1 / span 1;
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
}

.lazy__bg.loaded{
  background-size: contain;
  background-repeat: no-repeat;
  background-color: unset;
}
a.banner-entry .lazy__bg {
    transition: all 0.2s linear;
}
a.banner-entry:hover .lazy__bg {
    scale: 0.9;
}
@media (min-width:768px) and (max-width:1024px){
.md\:grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
}
@media(max-width:767px){
.md\:grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
} 

/* start fixed banner */
section.s-block.s-block--fixed-banner .container {
    max-width: 90%;
    padding: 0;
    margin: auto;
}
.banner--fixed img {
    background-color: unset !important;
}

/* start product */

.s-product-card-entry {
    border: 2px solid var(--color-primary);
}
.s-product-card-image:hover img {
    transform: scale(1.1);
    transition: all 0.5s linear;
}

/* product button animation */

.s-button-primary-outline:hover{
  background-color: #fff;
}
.s-button-primary-outline{
  position: relative;
  overflow: hidden;
}
.s-button-primary-outline::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 6px;
    left: 0;
    inset: 70%;
    transform: skew(90deg);
    transition: all 0.3s linear;
}

.s-button-primary-outline:hover:before{
  transform: skew(0);
  inset: 0;
}
.s-button-primary-outline:hover span.s-button-text {
    z-index: 2;
    color: #fff;
}


/* start features */
.s-block--features__item .feature-icon {
    background: linear-gradient(45deg, #FA9898, #FFDDD0);
}
.s-block--features__item .feature-icon i{
  color: #fff;
}


/* start footer */
.footer-is-light .store-footer .store-footer__inner {
 background-color: var(--color-primary);
 color: #fff;
 border: none;
}


@media(max-width:767px){  
.container.grid.grid-col-1.lg\:grid-cols-6.gap-8.lg\:gap-6 * {
    text-align: center;
    justify-content: center;
}
}