.product-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    padding: 14px 16px;
    background-color: #E81939;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.013em;
    border: none;
    cursor: pointer;
}

.product-card__button:hover {
    background-color: #aa0000;
}

.modal-swatch__list {
    overflow-y: initial;
}

.product-card {
    overflow: visible;
}

.scroll-container {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 100%;
    padding-bottom: 84px;
}

.product-card__add {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    height: 74px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #fff;
    transition: max-height 0.35s ease-in-out, visibility 0.35s ease-in-out;
    z-index: 5;
}

.product-card:hover .product-card__add {
    max-height: 74px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-swatch__item {
    height: 100%;
}

@media screen and (max-width: 767px) {
    .product-card__add {
        position: initial;
        opacity: 1;
        visibility: visible;
        max-height: 100%;
        transition: none;
        pointer-events: all;
    }

    .scroll-container {
        padding-bottom: 0;
    }
}