/* Add custom CSS styles below */ 

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 Categories */
.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{
      background-color: unset;
}
.two-row .banner-entry {
    height: 250px;
    width: calc((100% - 12.7rem) / 6);
}
.banner-entry .lazy__bg {
    background-size: contain !important;
    transition: all 0.2s linear;
}
.banner-entry:hover .lazy__bg {
    scale: 0.9;
}
@media(max-width: 767px){
  .two-row .banner-entry {
    width: calc((100% - 5rem) / 2);
}
}
.one-row.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media(min-width:768px){  
.one-row.md\:grid-cols-2 .banner-entry{
      height: 500px;
}
}


/* Start Product */
.s-slider-block__title h2::before{
  content: "🎈";
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}
/*
.s-slider-block__title h2 {
    background: var(--color-primary);
    padding: 10px;
    border-radius: 0 10px 0 10px;
    box-shadow: 5px 5px color-mix(in srgb, var(--color-primary), transparent 50%);
    color: #fff;
}
*/
.s-product-card-vertical .s-product-card-image{
      background: unset;
}
.s-product-card-entry {
    border: 2px solid var(--color-primary);
}
.s-button-primary-outline {
    background: var(--color-primary);
    color: #fff;
}
.s-button-primary-outline:hover{
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary)
}


/* Start Features */
.s-block--features__item .feature-icon i {
    color: #fff;
}

/* start footer */
.footer-is-light .store-footer{
  background-image: linear-gradient(-45deg, #efb6b999, #efb6b9, #efb6b973, var(--color-primary));
  background-size: 400% 400%;  
  animation: smooth-color 8s linear infinite forwards;
}
.footer-is-light .store-footer .store-footer__inner {
 background-color: var(--color-primary);
 color: #fff;
 border: none;
}
.store-footer h3,
.copyright-text p {
  color: #fff;
}
.store-footer h3{
  background: var(--color-primary);
    padding: 10px;
    border-radius: 0 10px 0 10px;
    box-shadow: 2px 2px 10px #e3e3e3b0;
    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{
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}

@keyframes float {
0%{
  transform: translateY(0); 
}
  50%{
    transform: translateY(-10px); 
  }
  100%{
    transform: translateY(0); 
  }
}