/* 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: 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 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 #335880;
    color: #fff;
}
.s-product-card-vertical .s-product-card-image{
      background: unset;
}
.s-product-card-entry {
    border: 2px solid var(--color-primary);
}
/* 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: 0;
    background: var(--color-primary);
    border-radius: 6px;
    bottom: 0;
    transition: all 0.3s linear;
}

.s-button-primary-outline:hover:before{
  height: 100% !important;
}
.s-button-primary-outline:hover span.s-button-text {
    z-index: 2;
    color: #fff;
}

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

/* start footer */
.footer-is-light .store-footer{
  background-image: linear-gradient(-45deg, #011633, #011633eb, #011633, 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 #335880;
    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;
  }
  .lg\:col-span-2.rtl\:lg\:pl-20.ltr\:lg\:pr-20 .max-w-sm.leading-6.mb-6 {
    margin: 10px auto;
}
}


/* Start Animations */
@keyframes smooth-color{
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}