.products {
    /* gap: 1rem; */
    position: relative;
}

.products.splide {
    position: static;
}

.products.splide .splide__arrows {
    position: absolute;
    top: 1rem;
    right: 0;
    width: var(--saw);
    height: 2em;
}

.products.splide .splide__arrows .splide__arrow {
    background: var(--c1);
}

.products.splide .splide__slide.is-active:not(.splide__slide--clone) .product-card {
    box-shadow: 0 0 6px var(--c1);
}

.product-card {
    --br: 0.5rem;
    background-color: var(--c8);
    border: 1px solid var(--br1);
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--br);
}

.product-card .product-images {
    position: relative;
}

.product-card .product-images img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--br) - 1px);
    transition: all ease 300ms;
}

.product-card .product-images img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card .product-images:hover img:nth-child(2) {
    opacity: 1;
}

.product-card .discount-percent {
    position:absolute;
    top: 45%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
}

.product-card .sale-sticker,
.product-card .discount-sticker {
    position: absolute;
}
    
.product-card .sale-sticker {
    top: -4px;
    left: -4px;
    width: 25%;
    pointer-events: none;
}

.product-card .discount-sticker {
    top: -4px;
    right: 4%;
    width: 25%;
    pointer-events: none;
}

.product-card .pricing > .mrp::before,
.product-card .pricing > .sp::before {
    content: "₹ ";
}

.product-card .pricing > .mrp,
.product-card .pricing > .sp {
    color: var(--c1);
    font-weight: bold;
}

.product-card .pricing > .sp + .mrp {
    text-decoration: line-through;
    font-weight: normal;
    color: var(--dark-text);
}

@media screen and (min-width: 768px) {
    .product-card {
    }
}