quick-add-card {
    position: absolute;
    bottom: -50%;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transition: all .3s ease;
    margin: .5em
}

.card-wrapper .card__content {
    overflow: hidden
}

.card-wrapper:hover quick-add-card,
.quick-add_card-plus:hover quick-add-card {
    transition: all .3s ease;
    opacity: 1;
    bottom: 0
}

.quick-add_card-plus {
    position: absolute;
    top: -5%;
    right: -8%;
    background: #111;
    border-radius: 50%;
    display: grid;
    place-content: center;
    max-width: 65px;
    max-height: 65px;
    width: 100%;
    height: 100%;
    margin: .5em;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 3;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: .1rem;
    line-height: calc(1 + .2 / var(--font-body-scale));
    text-align: center;
    font-weight: 600
}

@media screen and (min-width:1050px) {
    .quick-add_card-plus {
        opacity: 0
    }

    .card-wrapper:hover .quick-add_card-plus {
        opacity: 1
    }
}

@media screen and (max-width:450px) {
    .quick-add_card-plus {
        font-size: 1.1rem;
        max-width: 47px;
        max-height: 47px;
        right: -11%;
        top: -10%
    }
}

@media screen and (max-width:1050px) {
    .quick-add_card-plus::before {
        content: '';
        display: block;
        min-width: 90px;
        min-height: 120px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 5
    }
}

.quick-add_card-plus:hover {
    transform: scale(111%);
    transition: .3s ease
}

.card__heading.has-quick-shop a::after {
    content: none
}

.quick-add-link {
    content: '';
    display: block !important;
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 50%;
    bottom: 0
}