.new-product-card {
    padding: 24px 20px;
    background-color: #fff;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.new-product-card .new-product-card-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    font-weight: 700;
    font-size: 14px;
    color: #13B2BA;
    background: #13B2BA1A;
    border-radius: 50px;
    padding: 6px 10px;
}

.new-product-card .new-card-img-box {
    padding-bottom: 100%;
    position: relative;
    width: 100%;
    display: block;
    /* margin-top: 20px; */
}

.new-product-card .new-card-img-box>div {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.3s ease;
}

.new-product-card .new-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.new-product-card .new-card-img-box .product-img-one {
    z-index: 2;
}

.new-product-card .new-card-img-box.is-img-two .product-img-one {
    opacity: 1;
    transition: 0.3s 0.3s ease;
}

.new-product-card .new-card-img-box .product-img-two {
    z-index: 3;
    opacity: 0;
    transition: 0.3s 0.3s ease;
}

.new-product-card .new-card-img-box .product-img-three {
    z-index: 1;
    opacity: 0;
    max-width: 50px;
    max-height: 50px;
    border-radius: 100px;
    overflow: hidden;
    transition: 0.3s ease;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.new-product-card .new-card-img-box.is-img-two:hover .product-img-one {
    opacity: 0;
    transition: 0.3s ease;
}

.new-product-card .new-card-img-box:hover .product-img-two {
    z-index: 3;
    opacity: 1;
    transition: 0.3s ease;
}

.new-product-card .new-card-img-box:hover .product-img-three {
    z-index: 1;
    opacity: 1;
    max-width: 500px;
    max-height: 500px;
    border-radius: 0;
    transition: 1.5s ease;
}

.new-product-card .new-card-img-box.is-img-two:hover .product-img-three {
    transition: 1.5s 0.3s ease;
}

.new-product-card .new-card-info-box .product-tag {
    color: #F00;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    min-height: 18px;
}

.new-product-card .new-card-info-box .product-title {
    color: #00080B;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin: 4px 0;
}

.new-product-card .new-card-info-box .product-describe {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    padding-top: 4px;
}

.new-product-card .new-card-info-box .price-box {
    margin-top: 24px;
}
.new-product-card .new-card-info-box .price-box .new-product-card-price .price__container {
    display: flex;
}
.new-product-card .new-card-info-box .price-box .price-position-sale .itrans-money {
    /* color: #13B2BA; */
    color: rgb(var(--color-custom-theme));
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-right: 16px;
}

.new-product-card .new-card-info-box .price-box .price-position-origin .itrans-money {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: line-through;
    font-style: italic;
}
.new-product-card .new-card-info-box .price-box .price-position-origin .itrans-money span {
    vertical-align:unset ;
}
.new-product-card .new-card-info-box .btn .product-card-btn {
    font-size: 14px;
    padding: 10px 30px;
}

@media (min-width: 769px) {
    .new-product-card .new-card-info-box .btn {
        /* padding-top: 14px; */
        transition: 0.3s ease;
        height: 0;
        overflow: hidden;
    }

    .new-product-card:hover .new-card-info-box .btn {
        padding-top: 14px;
        height: 36px;
        box-sizing: content-box;
    }
    
}
@media (max-width: 768px) {
    .new-product-card {
        min-height: 454px;
    }
    .new-product-card .new-card-info-box .btn {
        padding-top: 16px;
    }
    .new-product-card:hover .new-card-info-box .btn {
        padding-top: 16px;
    }
    .new-product-card .new-product-card-tags {
        zoom:0.85;
    }
       
}