@keyframes pulse {
  0%, 100% {
    transform: scale(1);   /* normal size */
  }
  50% {
    transform: scale(0.90); /* shrink a bit */
  }
}

.navbar-brand img {
  animation: pulse 3s ease-in-out infinite;
  cursor: pointer;
}


   /* national day offers,  grid view */
.s-modal-entering .s-slider-container .swiper-wrapper {
    display: grid!important;
    grid-template-columns: repeat(2,1fr)!important;
    gap: 7px!important;
    transform: none!important;
    transition: none!important;
    height: auto!important;
}

.s-modal-entering .s-slider-container .swiper-slide {
    margin-left: 0!important;
    padding: 0!important;
    width: 348px !important;
    max-width: 199px;
    /* height: 109px !important; */
}

.s-modal-entering .product-card--rounded .product-card__content {
    padding: 0 !important;
}

@media (min-width: 768px) {
    .s-modal-entering .s-slider-container .swiper-slide {
        margin-left: 0!important;
        padding: 0!important;
        width: 364px !important;
        max-width: 96% !important;
    }
}

@media (max-width: 768px) {
  

    .s-modal-entering .s-slider-container .swiper-wrapper {
        grid-template-columns: repeat(2,1fr)!important;
    }
}

@media (max-width: 500px) {
    .s-modal-entering .s-slider-container .swiper-slide {
        width: 299px !important;
        max-width: 47vw;
    }    .product-card__title a {
        font-size: 12px;
        margin: 0;
    }
}

.s-modal-entering .product-card--fit-height .product-card__image {
    height: 12rem;
    max-height: var(--product-image-height);
}