/* Add custom CSS styles below */ 

/* Start Welcome Text */
body.index::before {
    content: "";
    width: 100%;
    height: 100%;
    background: transparent url(https://i.ibb.co/m5RHmS1p/Group-2087330999-1-1.png);
    position: fixed;
    z-index: 100 !important;
    transform: scale(0);
    background-size: 10%;
    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; 
    }
}



/* Header */
.top-navbar {
    background: var(--color-primary);
}
.main-nav-container.fixed-header .inner {
    background: #fbfbfb5e;
    backdrop-filter: blur(16px);
}

/* 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 fixed banner */
section.s-block.s-block--fixed-banner .container {
    max-width: 100%;
    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 color-mix(in srgb, var(--color-primary), transparent 50%);
    color: #fff;
}
.s-product-card-vertical .s-product-card-image{
      background: unset;
}
@media(min-width:1200px){  
.s-product-card-entry{
  padding: 2px;
  background: transparent;
  transition: all 0.3s linear;
}
.s-product-card-entry::before,
.s-product-card-entry::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    border: 2px solid transparent;
    transition: all 0.3s linear;
}
.s-product-card-entry::before{
  left: 0;
  top: 0;
}
.s-product-card-entry::after{
  right: 0;
  bottom: 0;

}
.s-product-card-entry:hover::before,
.s-product-card-entry:hover::after{
  width: 100%;
  height: 100%;
}
.s-product-card-entry:hover::before{
  border-top-color: var(--color-primary);
  border-left-color: var(--color-primary);
}
.s-product-card-entry:hover::after{
  border-bottom-color: var(--color-primary);
  border-right-color: var(--color-primary);
}
}

@media(max-width:1199px){
.s-product-card-entry {
    border: 2px solid var(--color-primary);
}
}

/* start footer */
.footer-is-light .store-footer{
 background-color: #F5F5F5;
 border-radius: 100px 100px 0 0;
}
.footer-is-light .store-footer .store-footer__inner {
 background-color: transparent;
 border: none;
}
.store-footer h3 {
  color: #fff;
}
.store-footer h3{
  background: var(--color-primary);
    padding: 10px;
    border-radius: 0 10px 0 10px;
    box-shadow: 2px 2px 10px #000000b0;
    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;
  }
}