.id--15 .up-sell {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    order: 2;
    justify-content: space-between;
}

.id--15 .up-sell h3 {
    width: 100%;
}

.id--15 .up-sell .up-sell-item {
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    color: #000;
    display: flex;
    padding: 20px 5px;
    width: calc(25% - 16px);
    flex-direction: column;
    gap: 20px;
}

.id--15 .up-sell .up-sell-item a {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    width: 100%;
}

.id--15 .up-sell .up-sell-item a img {
    max-width: 50%;
}


@media (min-width: 768px) and (max-width: 991px) {
    .id--15 .up-sell {
        justify-content: space-between;
    }
}


@media (max-width: 768px) {
    .id--15 .up-sell {
        justify-content: center;
    }

        .id--15 .up-sell .up-sell-item {
        width: calc(100% - 16px);
    }

        .id--15 .up-sell .up-sell-item a img {
        max-width: 30% !important;
    }
}