.tp-product-details-price-wrapper .price::after,
.tp-product-details-price-wrapper .tp-product-price::after,
.tp-product-details-price-wrapper span::after {
    content: " (incl. VAT)";
    font-size: 12px;
    color: #777;
    margin-left: 4px;
}


.ec-checkout-total-row .col-6 strong::after {
    content: " (incl. VAT)";
    font-weight: normal;
    font-size: 12px;
    color: #777;
    margin-left: 4px;
}

.tp-cart-checkout-total span:first-child::after {
    content: " (incl. VAT)";
    font-weight: normal;
    font-size: 12px;
    color: #777;
    margin-left: 4px;
}



.tp-featured-item-3 p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-featured-thumb-3 {
    height: 400px; /* adjust to whatever suits your design */
}

.tp-featured-thumb-3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Animations */
.tp-category-item-3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tp-category-item-3.tp-category-visible {
    opacity: 1;
    transform: translateY(0);
}

.tp-featured-item-3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tp-featured-item-3.tp-featured-visible {
    opacity: 1;
    transform: translateY(0);
}