
.our-products-promotion {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 75px 65px;
}

.pro-products .pro-products-img img {
    width: 100%;
    border-radius: 10px;
    height: 234px;
    object-fit: cover;
}

.pro-products .pro-products-img a {
    display: block;
}

.pro-products-content {
    display: flex;
    justify-content: space-between;
}

.pro-products-img {
    margin-bottom: 26px;
}

.products-content-wrap h4 a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #262626;
}   

.products-content-wrap h4 a:hover {
    color: #014289;
}

.products-content-wrap h4 {
    margin-bottom: 7px;
}

.products-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.promotion-price span.product-price,
.promotion-percentage span {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: #014289;
}

.promotion-price span.product-tag,
.promotion-price span.product-line-through,
.promotion-description span {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #262626;
}

span.product-line-through {
    text-decoration: line-through;
}

/* .products-share a:hover svg path {
    fill: #014289;
} */

.products-share .share-popup.show a:hover span {
    opacity: 1;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}


/* social icon popup */
        .share-btn {
            cursor: pointer;
        }

        .share-btn:hover svg path {
            fill: #014289;
        }

        .products-share {
            position: relative;
        }

        .share-popup {
            visibility: hidden;
            display: flex;
            position: absolute;
            width: max-content;
            z-index: 11;
            background: #e1e1e1;
            padding: 10px;
            border-radius: 10px;
            right: 27px;
            top: 0;
            box-shadow: 0 9px 5px -5px rgba(0,0,0,.2);
        }

        .share-popup::before {
            content: "";
            position: absolute;
            bottom: 64%;
            right: -10px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent #e1e1e1;
        }

        .share-popup.show {
            visibility: visible;
        }

/* social icon popup END */



@media only screen and (max-width: 1280px) {

    .pro-products .pro-products-img img {
        height: 200px;
    }
    
    .our-products-promotion {
        gap: 50px;
    }
    
    .pro-products-img {
        margin-bottom: 20px;
    }
}



@media only screen and (max-width: 1024px) {

    .pro-products .pro-products-img img {
        height: 170px;
    }
    
    .our-products-promotion {
        gap: 50px 20px;
    }
    
    .promotion-price span.product-price, .promotion-percentage span {
        font-size: 16px;
        line-height: 22px;
    }
    
    .promotion-price span.product-tag, .promotion-price span.product-line-through, .promotion-description span {
        font-size: 14px;
        line-height: 22px;
    }
}


@media only screen and (max-width: 768px) {

    .pro-products .pro-products-img img {
        height: 190px;
    }
    
    .our-products-promotion {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }
    
    .products-content-wrap h4 a {
        font-size: 16px;
        line-height: 22px;
    }
    
    .pro-products-content {
        gap: 10px;
    }
}


@media only screen and (max-width: 430px) {

    .our-products-promotion {
        gap: 27px 14px;
    }

    .pro-products-img {
        margin-bottom: 10px;
    }

    .products-content-wrap h4 {
        margin-bottom: 0;
    }

    .products-content-wrap {
        gap: 3px;
    }
}


@media only screen and (max-width: 410px) {

    .pro-products .pro-products-img img {
        height: 113px;
    }

    .share-popup {
        scale: 0.7;
        right: -7px;
        top: -7px;
    }
}