/* All products hover with title */
.item-wrapper {
    position: relative;
    background-color: lightgray;
    overflow-y: hidden;
    box-shadow: 0.1rem 0.1rem 1rem rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 430px;
}

.item-title {
    margin: 0;
    display: block;
    background-color: turquoise;
    padding: 1rem;
    text-align: center;
}

.item-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 300ms;
    background-color: green;
    transform: translate(0%, calc(100% + -3.5rem));

}

.item-wrapper:hover .item-overlay {
    transform: translate3d(0, 0, 0);
}

.item-body {
    flex-grow: 1;
    padding: 1rem;
}

/* Our Products hover CSS */
.kiwiera-all-product-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.kiwiera-all-product-wrapper>.wc-block-components-product-image>a>img {
    display: block;
    width: 100%;
    height: auto;
}

.kiwiera-all-product-wrapper:hover>.kiwiera-all-product-text-outer-wrapper {
    bottom: 0;
    height: 100%;
}

.kiwiera-all-product-text-outer-wrapper {

    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #f3d28c;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.kiwiera-all-product-text-inner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.kiwiera-all-product-text-inner-wrapper>h3,
.kiwiera-all-product-text-inner-wrapper {
    color: black;
}