/* Add custom CSS styles below */ 

/* Start Welcome Text */
body.index::before {
    content: "";
    width: 100%;
    height: 100%;
    background: transparent url(https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/LjaJ/stores/logos/TdsOEueefeZaWS6AAgvbgQlzt1xNUGZMn6yGVeqO.png);
    position: fixed;
    z-index: 100 !important;
    transform: scale(0);
    background-size: 120px !important;
    background-repeat: no-repeat;
    background-position: center !important;
    backdrop-filter: blur(1rem);
    animation: logobg 5s forwards ease-in-out;  
}

@keyframes logobg{
  0% {
        opacity: 1;
        transform: scale(1); 
    }
    80% {
        opacity: 1; 
        transform: scale(1);
    }
    100% {
        opacity: 0; 
        transform: scale(1); 
        visibility: hidden; 
    }
}

/* start hero banner */
body.index section:first-of-type{
  margin-top: 0;
}
salla-slider.photos-slider .swiper-slide {
    margin: 0;
    padding: 0;
    width: 100%;
    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 */
.s-block__title{
  justify-content: center;
}
.right-side{
  padding: 0;
}
.md\:grid-cols-3 {
    display: flex;
    justify-content: center;
    align-items: center;
  flex-wrap: wrap;
}
.two-row .banner-entry:first-child {
    height: stretch;
}
.banner-entry {
    width: calc((100% - 12.7rem) / 5);
    background-color: unset;
}
a.banner-entry .lazy__bg {
    background-size: contain;
    transition: all 0.2s linear;
}
a.banner-entry:hover .lazy__bg {
    scale: 0.9;
}
@media(max-width: 767px){
  .banner-entry {
    width: calc((100% - 5rem) / 2);
}
}

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


/* Start Product */
  .s-slider-block__title h2 {
background: var(--color-primary);
padding: 10px;
border-radius: 0 10px 0 10px;
box-shadow: 5px 5px #f4a013;
color: #fff;
}
.s-product-card-vertical .s-product-card-image{
      background: unset;
}
.s-button-primary-outline {
    color: #ffffff;
    background-color: var(--color-primary);
}
.s-product-card-image:hover {
    opacity: 1;
}
.s-product-card-image,
.s-product-card-content{
  background-color: #fff !important;
}
.s-product-card-entry{
  position: relative;
  overflow: hidden;
  padding: 4px;
}
.s-product-card-entry::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%; 
    height: 150%;
    transform: translate(-50%, -50%) rotate(0deg);
    background-image: linear-gradient(90deg, transparent 10%, #844a09 50%,transparent 10%);
    animation: border-spin 15s linear infinite; 
}

/* Start Features */
.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;
}

.store-footer h3{
    color: #fff;
    background: var(--color-primary);
    padding: 10px;
    border-radius: 0 10px 0 10px;
    box-shadow: 2px 2px 10px #f7b21b4f;
    color: #fff;
    width: max-content;
}

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


/* Start Animations */
@keyframes smooth-color{
100% {
    background-size: 200%;
}
}
@keyframes border-spin{
0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}